@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@400;600;800&display=swap');
* {
    font-family: 'Inter', sans-serif;
}

.header-image {
    width: 50%;
    /* background: green; */
    height: 100%;
}

.header-image img {
    width: 130%;
    height: 90%;
    border-radius: 0 0 0px 150px;
}

.header-section {
    width: 100%;
    height: 40vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-section-main {
    width: 80%;
    height: 100%;
    /* background: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-section-text {
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80%;
}

.header-section-text h1 {
    font-size: 3.5vw;
    color: white;
    font-family: 'Dosis', sans-serif;
}

.header-section-text button {
    width: 40%;
    height: 5vh;
    font-size: 1vw;
    border: none;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    color: white !important;
    border: 2px solid white;
    font-family: 'Dosis', sans-serif;
    transition: 0.8s;
    position: relative;
    overflow: hidden;
    z-index: 5;
}

.header-section-text button::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 00%;
    background: white;
    transition: 0.5s;
    bottom: 0;
    border-radius: 50% 50% 0 0;
    z-index: -1;
}

.header-section-text button:hover::before {
    height: 180%;
}

.header-section-text button:hover {
    font-weight: bold;
    font-size: 1.3vw;
    z-index: 5;
}

@media only screen and (max-width: 1080px) {
    .header-section {
        height: 20vh;
    }
    .header-section-text p {
        font-size: 1.5vw;
    }
    .header-section-text button {
        height: 2vh;
        width: 40%;
        font-size: 1.4vw;
    }
}

@media only screen and (max-width: 700px) {
    .header-section-text {
        height: 60%;
    }
}

.contents {
    width: 100%;
    /* background:red; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

.contents .content {
    /* background: blue; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 90%;
}

.heading-and-content {
    display: flex;
    flex-direction: column;
}

.contents .content .text-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contents .content .text-content .heading-and-content {
    width: 50%;
}

.contents .content .text-content .image-content {
    width: 50%;
    overflow: hidden;
}

.contents .content .text-content .image-content img {
    width: 100%;
    transition: 1s;
}

.contents .content .text-content .image-content img:hover {
    scale: 1.2;
}

.contents .content .text-content .content-text {
    height: 10%;
}

.contents .content .content-heading {
    /* background-color: green; */
    display: flex;
    align-items: center;
    margin-top: 7vh;
    margin-bottom: 5vh;
}

.contents .content .content-heading .circle {
    width: 10px;
    height: 10px;
    background: var(--second-color);
    clip-path: circle();
}

.contents .content .content-heading .heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-left: 12px;
    /* background: pink; */
}

.contents .content .content-heading .heading p {
    margin: 0;
    padding-bottom: none !important;
    font-size: 2.5vw;
    font-weight: 600;
    font-family: 'Dosis', sans-serif;
}

.contents .content .content-heading .heading .underline {
    background: var(--second-color);
    height: 3px;
    width: 100%;
}


.contents .content .content-text p,
.contents .content .content-text ul li {
    font-size: 1vw;
    line-height: 2vw;
    padding-left: 10px;
    text-align: justify;
}

.swiper {
    margin-bottom: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.swiper h1 {
    color: black;
    padding-bottom: 30px;
}

.card {
    width: 70%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card .thumbnail-img {
    width: 100%;
    height: 90%;
    /* background-color: grey; */
}

.card .thumbnail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.card .card-text .title {
    font-size: 1.3vw;
    font-weight: 500;
}

.card .card-text .link {
    color: var(--main-color);
    text-decoration: underline;
    font-size: 1vw;
    cursor: pointer;
}

@media only screen and (max-width: 1080px) {
    .header-section {
        height: 20vh;
    }
    .header-section .header-section-main h1 {
        font-size: 3vw;
    }
    .header-section .header-section-main button {
        font-size: 1.5vw;
        width: 55%;
        height: 32%;
    }
    /* 
    .contents {
        height: 45vh;
    } */
    .contents .content {
        width: 90%;
        margin-top: 10%;
    }
    .contents .content .content-heading .heading p {
        font-size: 2vw;
    }
    .contents .content .content-text p,
    li {
        font-size: 1.8vw;
    }


    .swiper .swiper-wrapper .swiper-slide {
        height: 25vh;
    }
    .swiper .swiper-wrapper .swiper-slide .card .card-text .title {
        font-size: 2vw;
    }
    .swiper .swiper-wrapper .swiper-slide .card .card-text .link {
        font-size: 1.8vw;
    }
}

@media only screen and (max-width: 500px) {
    .header-section {
        height: 12vh;
    }
    .header-section .header-section-main h1 {
        font-size: 4vw;
    }
    .header-section .header-section-main button {
        width: 30%;
        height: 40%;
        font-size: 2vw;
    }
    .contents .content .content-heading .circle {
        width: 8px;
        height: 8px;
    }
    .contents .content .content-heading .heading p {
        font-size: 7vw;
        padding-bottom: 0 !important;
    }
    .contents .content .content-text p, .contents .content .content-text ul li {
        font-size: 3vw;
        padding-top: 5px;
        line-height: 5vw;
    }


    

    .contents .content .text-content {
        flex-direction: column-reverse;
        width: 100%;   
    }

    .contents .content .text-content .image-content {
        width: 110%;
    }

    .contents .content .text-content .heading-and-content {
        width: 100%;

    }



    .swiper {
        margin-top: 10%;
    }
    .swiper h1 {
        font-size: 5vw;
    }
    .swiper-button-next::after {
        font-size: 7vw !important;
    }
    .swiper-button-prev::after {
        font-size: 7vw !important;
    }
    .swiper .swiper-wrapper .swiper-slide .card .card-text .title {
        font-size: 3vw;
    }
    .swiper .swiper-wrapper .swiper-slide .card .card-text .link {
        font-size: 2.8vw;
    }
}


/* FAQ COLLAPSE/EXPAND STYLES */

* {
    box-sizing: border-box;
}

.faqanswer {
    display: none;
    width: 90%;
    padding: 12px 20px 0 30px;
    margin-bottom: 7vh;
    border: 2px solid;
}

.faqanswer p {
    font-size: 13px;
    line-height: 17px;
}

a.active {
    font-weight: bold;
}


/* FAQ COLLAPSE/EXPAND STYLES */

* {
    box-sizing: border-box;
}

.faqanswer {
    display: none;
    width: 100%;
    box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, .5);
    border: none;
}

.faqanswer p {
    font-size: 13px;
    line-height: 17px;
}

.togglefaq {
    text-decoration: none;
    font-size: 20px;
    width: 100%;
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3%;
    box-shadow: 10px 10px 30px -10px rgba(0, 0, 0, .5);
    margin-top: 3%;
}

p {
    margin: 0;
    padding-bottom: 20px;
}