/* hero section style start */
.hero-wrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
    gap: 5rem;
}
.hero-left-wrapper
{
    max-width: 360px;
}
.hero-image-wrapper
{
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
}
.hero-heading
{
    font-family: 'Poppins';
    font-weight: 600;
    color: var(--black-1);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4rem;
    text-transform: capitalize;
}
.hero-info
{
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--black-2);
    line-height: 2rem;
}
.button-wrapper
{
    text-align: center;
}

/* design for larger screen */
@media only screen and (min-width:768px) 
{
    .hero-wrapper
    {
        flex-direction: row;
        gap: 0;
    }
    .hero-left
    {
        flex: 3;
    }
    .hero-right
    {
        flex: 4;
    }
    .hero-heading
    {
        font-size: 3.6rem;
        line-height: 6rem;
        margin-bottom: 2rem;
        text-align: left;
    }
    .hero-info
    {
        margin-bottom: 2rem;
        text-align: left;
        font-size: 1.8rem;
    }
    .button-wrapper
    {
        text-align: left;
    }
    .hero-image-wrapper
    {
        max-width: none;
        width: 90%;
    }
}
/* hero section style end */



/* our special section style start */
#our-special
{
    padding-top: 10rem;
}
.our-special-wrapper
{
    display: flex;
    gap: 3rem;
    flex-direction: column;
}
.our-special-left
{
    display: flex;
    gap: 1rem;
}
.our-special-item
{
    background-color: var(--lightGreen-1);
    padding: 1.2rem;
    padding-top: 5rem;
    border-radius: 12px;
    width: 45%;
    margin: 0 auto;
}
.our-special-item-image
{
    margin-top: calc(-50% - 2rem);
    margin-bottom: 2rem;
    border-radius: 12px;
    height: 150px;
    overflow: hidden;
}
.our-special-item-image img{
    object-fit: cover;
}
.our-special-item-title
{
    font-size: 1.4rem;
    color: var(--black-1);
    font-weight: 600;
    margin-bottom: 1rem;
}
.our-special-item-price
{
    color: var(--green-1);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.our-special-item-star
{
    height: 1.5rem;
    width: max-content;
    margin-bottom: 1rem;
}
.our-special-item-text
{
    font-size: 1.4rem;
    color: var(--black-2);
    font-weight: 500;
}
.our-special-right-title
{
    font-size: 1.8rem;
    color: var(--black-1);
    margin-bottom: 1.5rem;
}
.our-special-right-text
{
    font-size: 1.4rem;
    color: var(--black-2);
    margin-bottom: 1rem;
}
/* design for large devices */
@media only screen and (min-width:768px)
{
    #our-special
    {
        padding-top: 15rem;
    }
    #our-special .container
    {
        max-width: 900px;
    }
    .our-special-wrapper
    {
        flex-direction: row;
    }
    .our-special-right
    {
        flex: 2;
    }
    .our-special-left
    {
        flex: 4;
        gap: 2rem;
    }
    .our-special-item
    {
        padding: 2rem;
        width: 45%;
    }
    .our-special-item-title
    {
        font-size: 2.4rem;
        line-height: 1.4em;
        margin-bottom: 1.5rem;
    }
    .our-special-item-price
    {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    .our-special-item-star
    {
        margin-bottom: 2rem;
    }
    .our-special-item-text
    {
        font-size: 1.6rem; 
        line-height: 2.8rem;  
    }
    .our-special-right-title
    {
        font-size: 3.6rem;
        margin-bottom: 1.5rem;
    }
    .our-special-right-text
    {
        margin-bottom: 1.5rem;
        line-height: 2.8rem;
        font-size: 1.8rem;
    }

}

/* design for extra small device */
@media only screen and (max-width:300px)
{
    .our-special-left
    {
        gap: 10rem;
        flex-wrap: wrap;
    }
    .our-special-item
    {
        width: 100%;
    }
}

/* our special section style end */



/* event media section style start */
.event-media-wrapper
{
    display: flex;
    gap: 1rem;
}
.event-media-1
{
    position: relative;
}
.event-media-1-play-button
{
    display: inline-block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 50px;
}
/* design for large device */
@media only screen and (min-width: 768px)
{
    .event-media-wrapper
    {
        gap: 2rem;
    }
    .event-media-1-play-button
    {
        max-width: 1080px;
    }
}

/* event media section style end */




/* why us section style start */
.why-us-wrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4rem;
}
.why-us-left
{
    text-align: center;

}
.why-us-title
{
    font-family: 'Poppins';
    font-size: 1.6rem;
    color: var(--black-1);
    font-weight: 500;
    margin-bottom: 1rem;
}
.why-us-text
{
    font-size: 1.4rem;
}
.why-us-item-wrapper
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.why-us-item
{
    background-color: var(--lightGreen-1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}
.why-us-item-icon
{
    max-width: 56px;
    margin: 0 auto;
    margin-bottom: 1rem;
}
.why-us-item-text
{
    font-family: 'Poppins';
    font-size: 1.4rem;
    font-weight:600;
    color: var(--black-1);
}

/* design for large device */
@media only screen and (min-width:768px)
{
    .why-us-wrapper
    {
        flex-direction: row;
        max-width: 900px;
        margin: 0 auto;
    }
    .why-us-left
    {
        flex: 4;
        text-align: left;
    }
    .why-us-right
    {
        flex: 3;
    }
    .why-us-title
    {
        font-size: 3.6rem;
        margin-bottom: 2rem;
    }
    .why-us-text
    {
        font-size: 1.8rem;
        line-height: 1.4em;
    }
    .why-us-item-wrapper
    {
        gap: 1.5rem;
    }
    .why-us-item
    {
        padding: 2rem;
    }
    .why-us-item-icon
    {
        max-width: 65px;
        margin-bottom: 1.5rem;
    }
    .why-us-item-text
    {
        font-size: 1.8rem;
    }
}
/* why us section style end */




/* testimonial section style start */
.testimonial-wrapper
{
    max-width: 400px;
    margin: 0 auto;
}
.testimonial-title
{
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-align: center;
    text-transform: capitalize;
    color: var(--black-1);
}
.testimonial-item-wrapper
{
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.testimonial-item
{
    padding: 1rem;
    display: flex;
    gap: 1rem;
    background-color: var(--lightGreen-1);
    border-radius: 12px;
}
.testimonial-item-info
{
    flex: 4;
}
.testimonial-item-image
{
    flex: 2;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}
.testimonial-item-image img{
    object-fit: cover;
}
.testimonial-item-name
{
    font-size: 1.4rem;
    font-family: 'Poppins';
    margin-bottom: 1rem;
    color: var(--black-1);
} 
.testimonial-item-star
{
    max-height: 15px;
    width: max-content;
    margin-bottom: 1.5rem;
}
.testimonial-item-text
{
    font-size: 1.4rem;
}
/* design for large device */
@media only screen and (min-width:768px)
{
    .testimonial-wrapper
    {
        max-width: 900px;
    }
    .testimonial-title
    {
        font-size: 3.6rem;
        font-family: 'Poppins';
    }
    .testimonial-item-wrapper
    {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .testimonial-item
    {
        padding: 2rem;
    }
    .testimonial-item-name
    {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    .testimonial-item-star
    {
        margin-bottom: 2rem;
    }
    .testimonial-item-text
    {
        font-size: 1.6rem;
        line-height: 1.4rem;
    }
}
/* for extra small device design */
@media only screen and (max-width: 358px)
{
    .testimonial-item
    {
        flex-direction: column;
    }
    .testimonial-item-image,
    .testimonial-item-info
    {
        flex: auto;
    }   
}
/* testimonial section style end */



/* newsletter section style  start*/
.news-letter-wrapper
{
    display: flex;
    flex-direction: column;
    background-color: var(--green-2);
    padding: 1.5rem;
    border-radius: 8px;
    gap: 2rem;
}
.news-letter-title
{
    font-size: 1.8rem;
    color: var(--black-1);
    font-weight: 600;
    margin-bottom: 1.3rem;
}
.news-letter-text
{
    font-size: 1.4rem;
    color: var(--black-2);
    font-weight: 500;
}
.news-letter-form
{
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}
.news-letter-form label
{
    width: 100%;
}
.news-letter-form input{
    width: 100%;
    font-size: 1.4rem;
    padding: 1.5rem 1rem;
    border: none;
}
.news-letter-form input::placeholder
{
    color: rgb(168,166,166);
}
.news-letter-form button[type=submit]
{
    background-color: var(--green-1);
    color: var(--white-1);
    border: none;
    font-size: 1.4rem;
    padding: 0 2rem;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
/* design for large device */
@media only screen and (min-width: 768px)
{
    .news-letter-wrapper
    {
        flex-direction: row;
        padding: 5rem;
        align-items: center;
    }
    .news-letter-form,
    .news-letter-info
    {
        flex: 1;
    }
    .news-letter-title
    {
        font-size: 3.6rem;
        max-width: 400px;
    }
    .news-letter-text
    {
        font-size: 1.8rem;
        line-height: 2.6rem;
        max-width: 400px;
    }
    .news-letter-form
    {
        max-width: 450px; 
        border-radius: 12px;
    }
    .news-letter-form input 
    {
        font-size: 1.8rem;
        padding: 2rem;
    }
    .news-letter-form button[type=submit]
    {
        font-size: 1.8rem;
        padding: 0 3rem;
    }

}