/* =============================
   APPOINTMENT SECTION BASE
============================= */

.appointment-slider {
    background: linear-gradient(135deg, #efefef, #e4e4e4);
    padding: 80px 0 0 0;
    position: relative;
    overflow: hidden;
    height:100%;
    min-height:100vh;
    /* max-height:100vh; */
}

/* =============================
   SWIPER
============================= */

.balador-appointment-swiper {
    position: relative;
    overflow: hidden;
}

.balador-appointment-swiper .swiper-wrapper {
    align-items: stretch;
}

.balador-appointment-swiper .swiper-slide {
    height: auto;
}

/* =============================
   CONTAINER
============================= */

.appointment-slider .container {
    max-width: 1280px;
    margin: 0 auto;
    min-height: 750px;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

/* =============================
   CONTENT LAYOUT
============================= */

.appointment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

/* =============================
   LEFT CONTENT
============================= */

.appointment-left {
    flex: 1;
}

.appointment-title {
    font-family: "Montserrat", sans-serif;
    color: #002D4C;
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -3%;
    margin: 0 0 20px !important;
}

.appointment-subtitle {
    color: #353B44;
    margin-bottom: 15px;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: -2%;
}

.appointment-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.appointment-description p {
    margin-bottom: 10px;
}

/* =============================
   BUTTON
============================= */

.appointment-btn {
    background: #2DDF80;
    padding: 10px 22px;
    border-radius: 99px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    font-family: "Montserrat", sans-serif;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-top: 20px;

    transition: 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
}

/* =============================
   RIGHT IMAGE
============================= */

.appointment-right {
    flex: 1;
    text-align: center;
}

.appointment-right img {
    max-width: 100%;
    width: 800px;
    height: auto;
    display: block;
}

/* =============================
   DECOR IMAGES
============================= */

.appointment-decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.appointment-decor img {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================
   PAGINATION
============================= */

.balador-appointment-swiper .swiper-pagination {
    position: absolute;
    bottom: 20px !important;
    z-index: 9;
    text-align: center;
}

/* .balador-appointment-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #2DDF80;
    opacity: 0.5;
}

.balador-appointment-swiper .swiper-pagination-bullet-active {
    opacity: 1;
} */


.appointment-description {
    /* min-height:340px !important; */
    /* overflow: hidden; */
    transition: height 0.4s ease;
    position: relative;
}

.appointment-description.expanded {
    overflow-y: auto;
    max-height: 500px !important;
    padding-right: 5px;
}

/* BUTTON */
.dynamic-toggle-wrap {
    margin-top: 20px;
    text-align: left;
}

.dynamic-toggle-btn {
    padding: 5px 20px;
    border: none;
    background: #2DDF80;
    color: #fff;
    cursor: pointer;
    border-radius: 30px;
}

/*=============================
   IPad (≤1350px)
============================= */
@media (max-width:1350px){
.appointment-slider {
    padding: 80px 50px 0 50px;
}

}

/* =============================
   TABLET (≤1024px)
============================= */

@media (max-width: 1024px) {

    .appointment-slider{
        min-height:100%;
        max-height:100%;
    }
    .appointment-slider .container {
        max-width: 100%;
        min-height: auto;
        padding: 80px 15px 0 15px;
    }

    /* STACK LAYOUT */
    .appointment-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .appointment-description{
        width: 60%;
        margin: 0 auto;
        text-align: left;
    }

    .appointment-left,
    .appointment-right {
        width: 100%;
    }

    /* CONTENT FIRST */
    .appointment-left {
        order: 1;
    }

    .appointment-right {
        order: 2;
    }

    .appointment-right img {
        max-width: 100%;
        width: 500px;
        height: 500px;
        object-fit: contain;
        margin: 0 auto;
    }

    .appointment-title {
        font-size: 32px;
        line-height: 1.2;
    }

    .appointment-subtitle {
        font-size: 24px;
    }
    /* BUTTON */
    .dynamic-toggle-wrap {
        margin-top: 20px;
        text-align: center;
    }
}

/* =============================
   MOBILE (≤767px)
============================= */

@media (max-width: 767px) {

    .appointment-slider {
        padding: 50px 0;
        min-height:100%;
        max-height:100%;
    }

    .appointment-slider .container {
        padding: 60px 15px 0 15px;
    }

    .appointment-content {
        gap: 30px;
    }

    .appointment-right img {
        max-width: 100%;
        width:500px;
        height: 500px;
        object-fit: contain;
    }

    .appointment-title {
        font-size: 24px;
    }

    .appointment-subtitle {
        font-size: 20px;
    }

    .appointment-description {
        font-size: 13px;
        line-height: 1.6;
    }

    .appointment-btn {
        /* width: 100%; */
        font-size: 14px;
        padding: 10px 20px;
    }
    /* BUTTON */
    .dynamic-toggle-wrap {
        margin-top: 20px;
        text-align: center;
    }
}

/* =============================
   RTL SUPPORT
============================= */

/* DESKTOP RTL */
body.rtl .appointment-content {
    /* flex-direction: row-reverse; */
}

/* TABLET + MOBILE RTL RESET */
@media (max-width: 1024px) {

    body.rtl .appointment-content {
        flex-direction: column !important;
    }

    body.rtl .appointment-description{
        width: 80%;
        margin: 0 auto;
        text-align: right;
    }

    body.rtl .appointment-left,
    body.rtl .appointment-right {
        text-align: center;
    }
}

/* =================================================
   SWIPER FIX
================================================= */

/* .balador-appointment-swiper {
    overflow: hidden;
    position: relative;
}

.balador-appointment-swiper .swiper-wrapper {
    align-items: stretch;
}

.balador-appointment-swiper .swiper-slide {
    height: auto;
} */
/* =================================================
   APPOINTMENT SWIPER
================================================= */

/* .balador-appointment-swiper {
    position: relative;
} */

/* =================================================
   APPOINTMENT SECTION
================================================= */

/* .appointment-slider {
    position: relative;
    overflow: hidden;

    background: linear-gradient(
        135deg,
        #efefef,
        #e4e4e4
    );

    padding: 80px 0;
} */

/* =================================================
   CONTAINER
================================================= */

/* .appointment-slider .container {
    max-width: 1280px;
    margin: 0 auto;

    padding: 100px 20px;

    position: relative;
    z-index: 2;
} */

/* =================================================
   CONTENT LAYOUT
================================================= */

/* .appointment-content {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
} */

/* =================================================
   LEFT CONTENT
================================================= */

/*.appointment-left {
    flex: 1;
}

.appointment-title {
    font-family: "Montserrat", sans-serif;

    font-size: 52px;
    font-weight: 600;

    line-height: 1.1;

    color: #353B44;

    margin-bottom: 20px;
}

.appointment-subtitle {
    font-family: "Montserrat", sans-serif;

    font-size: 24px;
    font-weight: 500;

    color: #2DDF80;

    margin-bottom: 20px;
}

.appointment-description {
    font-size: 15px;
    line-height: 1.8;

    color: #555;

    margin-bottom: 30px;
}

.appointment-description p {
    margin-bottom: 15px;
}*/

/* =================================================
   BUTTON
================================================= */

/* .appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    border-radius: 999px;

    background: #2DDF80;

    color: #fff;

    text-decoration: none;

    font-weight: 600;
    font-size: 16px;

    transition: 0.3s ease;
}

.appointment-btn:hover {
    transform: translateY(-2px);
}*/

/* =================================================
   RIGHT IMAGE
================================================= */

/* .appointment-right {
    flex: 1;

    display: flex;
    justify-content: center;
}

.appointment-right img {
    max-width: 100%;
    height: auto;

    display: block;
} */

/* =================================================
   DECOR IMAGES
================================================= */
/* 
.appointment-decor {
    position: absolute;

    z-index: 1;

    pointer-events: none;
}

.appointment-decor img {
    width: 100%;
    height: auto;
} */

/* =================================================
   PAGINATION
================================================= */

/* .balador-appointment-swiper .swiper-pagination {
    position: relative;

    margin-top: 30px;
}

.balador-appointment-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;

    background: #2DDF80;

    opacity: 0.5;
}

.balador-appointment-swiper .swiper-pagination-bullet-active {
    opacity: 1;
} */

/* =================================================
   TABLET
================================================= */

/* @media (max-width: 1024px) {

    .appointment-slider .container {
        max-width: 100%;

        padding: 80px 15px;
    }

    .appointment-content {
        flex-direction: column;

        text-align: center;

        gap: 40px;
    }

    .appointment-left,
    .appointment-right {
        width: 100%;
    }

    .appointment-right {
        justify-content: center;
    }

    .appointment-right img {
        max-width: 80%;
        margin: 0 auto;
    }

    .appointment-title {
        font-size: 40px;
    }

    .appointment-subtitle {
        font-size: 22px;
    }
} */

/* =================================================
   MOBILE
================================================= */

/* @media (max-width: 767px) {

    .appointment-slider {
        padding: 50px 0;
    }

    .appointment-slider .container {
        padding: 60px 15px;
    }

    .appointment-content {
        gap: 30px;
    }

    .appointment-title {
        font-size: 28px;
    }

    .appointment-subtitle {
        font-size: 18px;
    }

    .appointment-description {
        font-size: 14px;
    }

    .appointment-right img {
        max-width: 100%;
    }

    .appointment-btn {
        width: 100%;
    }
} */

/* =================================================
   RTL SUPPORT
================================================= */

/* DESKTOP RTL */
/* body.rtl .appointment-content {
    flex-direction: row-reverse;
} */

/* TABLET/MOBILE RTL RESET */
/* @media (max-width: 1024px) {

    body.rtl .appointment-content {
        flex-direction: column;
    }

    body.rtl .appointment-left,
    body.rtl .appointment-right {
        text-align: center;
    }
} */