/* ---FORM STYLES--- */

.form_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 5vw;
    background: var(--blue);
}

.form_section img {
    width: 6vw;
}

.form_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.form_section .title_box h1,
.form_section .title_box h2 {
    color: white;
    text-align: center;
}

.form_section .title_box span {
    font-weight: 400;
}

.form_section .title_box p {
    color: white;
    text-align: center;
}

.form_section .title_box .subtitle {
    font-size: 1.2vw;
    font-weight: 400;
}

.form_section .form_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    width: 70%;
    padding: 3vw;
    border-radius: 2vw;
    background: white;
}

.form_section .input_box {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1vw;
}

.form_section .input_item {
    /* width: calc(50% - .5vw); */
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.form_section .text_item {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5vw;
}

.form_section label {
    color: var(--blue);
    font-size: 1vw;
    font-weight: bold;
}

.form_section input,
.form_section textarea {
    width: 100%;
    font-size: 1vw;
    padding: 1vw;
    border: none;
    border-radius: .5vw;
    transition: .5s;
    background: #F0F0F0;
}

.form_section input:focus-visible,
.form_section textarea:focus-visible {
    outline: none;
    background: #f3f5ff;
}

.form_section ::placeholder {
    opacity: 1;
}

.form_section .message_box p {
    text-align: center;
}

.form_section .notice,
.form_section .call {
    color: white;
    text-align: center;
}

.form_section .call {
    font-size: 1.5vw;
    text-align: center;
}

.form_section ul {
    list-style-position: outside;
}

.form_section ::marker {
    color: var(--red);
}

.form_section .call a {
    color: white;
    text-decoration: underline;
}

.form_section .call a:hover {
    opacity: .8;
}

.form_section .recaptcha_notice {
    color: white;
    font-size: .7vw;
    text-align: center;
}

.form_section button {
    color: var(--blue);
    font-size: 1vw;
    font-weight: bold;
    padding: 1vw 2vw;
    border: none;
    border-radius: 1vw;
    background: white;
    transition: .5s;
}

.form_section button:hover {
    color: white;
    background: var(--light-blue);
}


.form_section .terms_contain {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: .5vw;
}

.form_section .terms_contain input {
    width: inherit;
    cursor: pointer;
}

.form_section .terms_contain label {
    font-weight: inherit;
    font-size: .7vw;
    cursor: pointer;
}


.form_section .main_btn {
    color: white;
    background: var(--blue);
}

.form_section .title_box .main_btn {
   color: var(--blue);
    background: white;
}

.form_section .title_box .main_btn:hover {
    background: red;
    color: white;
}

.form_section .main_btn:hover {
    color: var(--blue);
    background: white;
}

@media (max-width: 996px) {

    .form_section .terms_contain {
        gap: 1.5vw;
    }

    .form_section .terms_contain label {
        font-size: 3vw;
    }

    .form_section {
        gap: 5vw;
        padding: 10vw;
    }

    .form_section img {
        width: 20vw;
    }

    .form_section .title_box {
        gap: 5vw;
    }

    .form_section .form_box {
        gap: 5vw;
        width: 100%;
        padding: 5vw;
        border-radius: 5vw;
    }

    .form_section .input_box {
        flex-direction: column;
        gap: 5vw;
    }

    .form_section .input_item {
        width: 100%;
        gap: 2vw;
    }

    .form_section .text_item {
        gap: 2vw;
    }

    .form_section label {
        font-size: 3.5vw;
    }

    .form_section input,
    .form_section textarea {
        font-size: 3vw;
        padding: 3vw;
        border-radius: 1vw;
    }

    .form_section .call {
        font-size: 4.5vw;
    }

    .form_section .recaptcha_notice {
        font-size: 2vw;
    }

    .form_section button {
        font-size: 3vw;
        padding: 2vw 4vw;
        border-radius: 1vw;
    }
}



/* ---TEAM STYLES--- */

.team_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 5vw 5vw 2.5vw 5vw;
}

.team_section .info_box {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    text-align: center;
}

.team_section .info_box h2 {
    text-align: center;
}

.team_section .info_box span {
    font-weight: 400;
}

.team_section .doctor_box {
    width: 70%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 2vw;
}

.team_section .card_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: .25vw solid var(--blue);
    border-radius: 1vw;
    overflow: hidden;
}

.team_section .card_box img {
    width: 100%;
}

.team_section .details_box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: .25vw;
    padding: 1vw;
    background: var(--blue);
}

.team_section .details_box * {
    color: white;
    text-align: center;
}

.team_section .details_box h3 {
    font-size: 1.2vw;
}

.team_section .details_box p {
    font-size: 1vw;
}

.team_section .bio_box {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

@media (max-width: 996px) {
    .team_section {
        gap: 5vw;
        padding: 10vw 10vw 5vw 10vw;
    }

    .team_section .info_box {
        width: 100%;
        gap: 5vw;
    }

    .team_section .doctor_box {
        width: 100%;
        grid-template-columns: 1fr;
        place-items: center;
        gap: 5vw;
    }

    .team_section .card_box {
        width: 80%;
        border: .5vw solid var(--blue);
        border-radius: 2vw;
    }

    .team_section .details_box {
        gap: 1vw;
        padding: 5vw 2vw;
    }


    .team_section .details_box h3 {
        font-size: 4vw;
    }


    .team_section .details_box p {
        font-size: 3.5vw;
    }

    .team_section .bio_box {
        gap: 3vw;
    }
}



/* ---REVIEWS STYLES--- */

.reviews_section {
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 2.5vw 5vw 5vw 5vw;
}

.reviews_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.reviews_section .title_box h2 {
    text-align: center;
}

.reviews_section .title_box p {
    text-align: center;
}

.reviews_section .review_item {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    padding: 1vw;
    border-radius: .5vw;
    background: #f3f5ff;
    cursor: grab;
}

.reviews_section .name {
    font-size: 1.1vw;
    font-weight: 500;
}

.reviews_section .stars {
    display: flex;
    align-items: center;
    gap: .25vw;
}

.reviews_section .stars i {
    color: #ffb921;
    font-size: 1vw;
}

.reviews_section .stars p {
    font-size: .8vw;
    opacity: .7;
}

.reviews_section .verified {
    margin-top: auto;
    margin-left: auto;
    font-size: .8vw;
    opacity: .4;
}

@media (max-width: 996px) {
    .reviews_section {
        gap: 5vw;
        padding: 5vw 10vw 10vw 10vw;
    }

    .reviews_section .reviews_box {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .reviews_section .review_item {
        gap: 5vw;
        padding: 5vw;
        border-radius: 1vw;
    }

    .reviews_section .review_item span {
        font-size: 3.5vw;
    }

    .reviews_section .stars {
        gap: .5vw;
    }

    .reviews_section .stars i {
        font-size: 3.5vw;
    }

    .reviews_section .stars p {
        font-size: 2.5vw;
    }
}



/* ---WHY STYLES--- */

.why_section {
    padding: 5vw;
    background: var(--blue);
}

.why_section .why_box {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.why_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.why_section .title_box h2,
.why_section .title_box p {
    color: white;
    text-align: center;
}

.why_section .title_box p {
    width: 60%;
}

.why_section .cards_section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.why_section .card_item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: .5vw;
    padding: 4vw 2vw 2vw 2vw;
    border-radius: .5vw;
    background: #ffffff08;
    overflow: hidden;
    cursor: pointer;
    transition: .5s;
}

.why_section .card_item:hover {
    transform: scale(1.01);
    background: #ffffff10;
}

.why_section .card_item span {
    position: absolute;
    top: 0;
    left: 1vw;
    color: #ffffff10;
    font-size: 7vw;
    font-weight: bold;
    line-height: 1;
    transition: .5s;
}

.why_section .card_item:hover span {
    transform: scale(1.1);
}

.why_section .card_item p {
    position: relative;
    color: white;
    z-index: 1;
}

@media (max-width: 996px) {
    .why_section {
        padding: 10vw;
    }

    .why_section .why_box {
        gap: 5vw;
    }

    .why_section .title_box {
        gap: 5vw;
    }

    .why_section .title_box p {
        width: 100%;
    }

    .why_section .cards_section {
        grid-template-columns: 1fr;
        gap: 5vw;
    }

    .why_section .card_item {
        gap: 1vw;
        padding: 15vw 5vw 5vw 5vw;
        border-radius: 1vw;
    }

    .why_section .card_item span {
        left: 5vw;
        font-size: 22vw;
    }

}

/** insurance slider section **/

.insurance-slider-section {
    padding-top: 0;
    overflow-x: hidden;

}

.insurance-slider-section .insurance-slider-container .title {
    padding-top: 8%;
    text-align: center;
    font-size: 20px;
    margin-bottom: 50px;
}

@media (max-width: 996px) {
    .services-container .slick-initialized .slick-slide {
        padding-left: 1px !important;
    }

    .insurance-slide-box .slick-dots {
        bottom: 0;
    }
}

@media (max-width: 996px) {
    .slick-dots {
        display: none !important;
    }
}

/* ---CARDS STYLES--- */

.card_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    padding: 5vw;
}

.card_section .title_box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1vw;
}

.card_section .title_box h2 {
    text-align: center;
}

.card_section .title_box span {
    font-weight: 400;
}

.card_section .card_box {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
}

.card_section .card_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1vw;
}

.card_section .card_item svg {
    height: 3vw;
}

.card_section .card_item h2 {
    width: 70%;
    font-size: 1.5vw;
}

.card_section .card_item img {
    border-radius: .5vw;
}

@media (max-width: 996px) {
    .card_section {
        gap: 10vw;
        padding: 10vw;
    }

    .card_section .card_box {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 15vw;
    }

    .card_section .card_item {
        align-items: center;
        gap: 5vw;
    }

    .card_section .card_item svg {
        height: 10vw;
    }

    .card_section .card_item h2 {
        width: 100%;
        font-size: 4.5vw;
        text-align: center;
    }

    .card_section .card_item img {
        border-radius: 1vw;
    }

    .card_section .card_item p {
        text-align: center;
    }
}


/* ---CAPTCHA STYLES--- */

.grecaptcha-badge {
    visibility: hidden;
}