@import url('https://fonts.googleapis.com/css2?family=Niramit:wght@400;600;700&family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');
:root
{
    --primaryColor: #7581AB;
    --secounderyColor: #E7BD98;
    --themeLightColor: #A7BFE1;
    --themeTextLightColor: darkslategray;
}

*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html,body
{
    width: 100%;
    min-height: 100%;
}

.container
{
    max-width: 1600px;
    margin: 0 auto;
}

.main_body_element
{
    width: 100%;
    overflow-x: hidden;
}

/* Header Section Style Start */
header
{
    width: 100%;
    padding: 10px 3%;
    background-color: var(--primaryColor);
}

.header_main_box
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header_main_box .header_logo
{
    width: 275px;
}

.header_main_box .header_logo img
{
    width: 100%;
}

.header_buttons_main_container
{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header_buttons_main_container button
{
    padding: 10px 20px;
    background: transparent;
    border-radius: 32px;
    color: #FFF;
    border: 2px solid #FFF;
    font-weight: bold;
    font-size: 12px;
    transition: all 0.3s linear;
    cursor: pointer;
}

.header_buttons_main_container button.header_contactus_btn
{
    background: transparent;
    color: var(#FFF);
}

.header_buttons_main_container button:hover
{
    background: #FFF;
    color: var(--primaryColor);
}

@media screen and (max-width: 767px) {
    .header_main_box .header_logo
    {
        width: 200px;
    }
    .header_buttons_main_container button
    {
        padding: 10px 15px;
        font-size: 10px;
    }
}

/* Header Section Style End */

/* Main Content Section Style Start */
.main_content_container
{
    width: 100%;
    padding: 30px 0;
    background-color: var(--primaryColor);
}

.main_content_box
{
    width: 100%;
    position: relative
}

.main_content_box .banner_image_layer_container
{
    width: 100%;
    padding-top: 100px;
    text-align: end;
}

.main_content_box .banner_image_layer_container img
{
    width: 100%;
    max-width: 750px;
    margin-bottom: -150px;
    overflow-x: hidden;
}

.main_data_container
{
    width: 60%;
    padding: 0 7%;
    position: absolute;
    top: 0;
    left: 0;
    color: #FFF;
}

.main_data_container .main_heading
{
    font-size: 52px;
    padding: 25px 0;
}

.main_data_container .banner_box_btn
{
    font-size: 24px;
    padding: 25px 45px;
    border-radius: 47px;
    border: none;
    margin-top: 50px;
    font-weight: 700;
    transition: all 0.3s linear;
    cursor: pointer;
    border: 2px solid #FFF;
    background: transparent;
    color: #fff;
    
}

.main_data_container .banner_box_btn:hover
{
    border: 2px solid var(--themeLightColor);
    background: var(--themeLightColor);
    color: #fff;
}

@media screen and (max-width: 1024px)
{
    .main_content_container
    {
        margin-top: -5px;
    }
    .main_content_box .banner_image_layer_container
    {
        width: 100%;
        padding-top: 200px;
        text-align: end;
    }
    .main_data_container
    {
        width: 100%;
    }
    .main_data_container .main_heading
    {
        font-size: 48px;
    }

    .main_data_container .banner_box_btn
    {
        font-size: 20px;
        padding: 15px 25px;
        margin-top: 0px;
    }

    .main_content_box .banner_image_layer_container 
    {
        padding-top: 150px;
    }    
    .main_content_box .banner_image_layer_container img
    {
        margin-bottom: -155px;
    }
}


@media screen and (max-width: 767px) {
    .main_content_container
    {
        margin-top: -5px;
    }
    .main_content_box .banner_image_layer_container
    {
        width: 100%;
        padding-top: 200px;
        text-align: end;
    }
    .main_data_container
    {
        width: 100%;
    }
    .main_data_container .main_heading
    {
        font-size: 28px;
    }

    .main_data_container .banner_box_btn
    {
        font-size: 20px;
        padding: 15px 25px;
        margin-top: 0px;
    }

    .main_content_box .banner_image_layer_container 
    {
        padding-top: 200px;
    }
    
    .main_content_box .banner_image_layer_container img
    {
        margin-bottom: -95px;
        margin-right: -70px;
    }
}

/* Main Content Section Style End */

/* faq Content Section Style Start */

.faq_content_container
{
    width: 100%;
    margin: -80px 0 0;
}

.faq_content_container_1
{
    padding-top: 175px;
}

.faq_content_box
{
    width: 100%;
    /*padding: 75px 0;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.banner_image_faq_container
{
    width: 50%;
}

.banner_image_faq_container img
{
    width: 100%;
    margin-left: -60px;    
}

.faq_container_content
{
    width: 100%;
    min-width: 250px;
    padding: 0px 7%;
}

.faq_container_content h1
{
    color: var(--primaryColor);
    margin-bottom: 20px;
    font-size: 40px;
}

.faq_container_content h2
{
    color: var(--themeTextLightColor);
    margin-bottom: 20px;
    margin-top: 20px;
    font-size: 28px;
    line-height: 32px;
    
}

.faq_container_content h4
{
    color: var(--primaryColor);
    margin: 20px 0;
    font-size: 28px;
}

.faq_container_content p
{
    font-size: 20px;
    color: var(--themeTextLightColor);
    line-height: 32px;
}

.faq_container_content li
{
    font-size: 20px;
    color: var(--themeTextLightColor);
    line-height: 32px;
    margin-bottom: 20px;
    margin-left: 20px;

    
}

@media screen and (max-width: 1024px) {
    .faq_content_container
    {
        margin: 0;
    }
    .faq_content_container_1
    {
        padding-top: 100px;
    }
    .faq_content_container:nth-child(1)
    {
        margin-top: 30px;
    }
    .faq_content_box
    {
        padding: 10px 0;
    }
    .faq_content_box_2
    {
        flex-direction: column-reverse;
    }
    .banner_image_faq_container
    {
        width: 100%;
    }
    .faq_container_content
    {
        width: 100%;
    }
    .faq_container_content h1
    {
        font-size: 28px;
    }    
    .faq_container_content h2
    {
        font-size: 28px;
    }
    .faq_container_content h4
    {
        font-size: 20px;
    }
    .faq_container_content p
    {
        font-size: 18px;
    }
    .faq_container_content li
    {
        font-size: 18px;
    }    
}

/* faq Content Section Style End */

/* Whychooseus Content Section Style Start */

.whychooseus_content_container
{
    width: 100%;
    margin: -80px 0 0;
}

.whychooseus_content_container_1
{
    padding-top: 175px;
}

.whychooseus_content_box
{
    width: 100%;
    padding: 75px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.banner_image_whychoose_container
{
    width: 50%;
}

.banner_image_whychoose_container img
{
    width: 100%;
    margin-left: -60px;    
}

.whychooseus_container_content
{
    width: 50%;
    min-width: 250px;
    padding: 0px 7%;
}

.whychooseus_container_content h2
{
    color: var(--primaryColor);
    margin-bottom: 20px;
    font-size: 40px;
}

.whychooseus_container_content h4
{
    color: var(--primaryColor);
    margin: 20px 0;
    font-size: 28px;
}

.whychooseus_container_content p
{
    font-size: 20px;
    color: var(--themeTextLightColor);
    line-height: 32px;
}


@media screen and (max-width: 1024px) {
    .whychooseus_content_container
    {
        margin: 0;
    }
    .whychooseus_content_container_1
    {
        padding-top: 100px;
    }
    .whychooseus_content_container:nth-child(1)
    {
        margin-top: 30px;
    }
    .whychooseus_content_box
    {
        padding: 10px 0;
    }
    .whychooseus_content_box_2
    {
        flex-direction: column-reverse;
    }
    .banner_image_whychoose_container
    {
        width: 100%;
    }
    .whychooseus_container_content
    {
        width: 100%;
    }
    .whychooseus_container_content h2
    {
        font-size: 28px;
    }
    .whychooseus_container_content h4
    {
        font-size: 20px;
    }
    .whychooseus_container_content p
    {
        font-size: 18px;
    }
}

/* Whychooseus Content Section Style End */


/* Bottom button Section Style Start */
.bottom_button_container
{
    width: 100%;
    padding: 50px 3%;
}

.bottom_button_box
{
    width: 100%;
    text-align: center;
}

.bottom_button_box button
{
    padding: 20px 35px;
    background: var(--primaryColor);
    border-radius: 37px;
    color: #FFF;
    border: 2px solid #FFF;
    font-weight: bold;
    font-size: 24px;
    transition: all 0.3s linear;
    cursor: pointer;
}

.bottom_button_box button:hover
{
    border: 2px solid var(--primaryColor);
    color: var(--primaryColor);
    background: transparent;
}

		
/* Bottom button Section Style End */
/* Footer Banner Style Start */
.footer_banner_container
{
    width: 100%;
    padding: 50px 0 0;
}
.footer_banner_box
{
    /* height: 200px; */
    padding-top: 50px;
    width: 100%;
    position: relative;
}
.hero_area {
    width: 100%;
    /* height: 100%; */
}
.waves {
    position: absolute;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    bottom: 0;
    left: 0;
}
.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}
.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}
.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}
.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}
@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }
    100% {
        transform: translate3d(85px, 0, 0);
    }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}
/* Footer Banner Style End */

