body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: #1e1e1e;
    background: #fff;
}
.container {
    width: 80rem;
}
a {
    color: inherit;
}
button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
}
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    outline: none;
}

section {
    margin-bottom: 3.5rem;
}
.section-title {
    font-size: 2.5rem;
    letter-spacing: -0.05rem;
    font-weight: 600;
}
.section-title span {
    color: #4d77d9;
}
.section-title.small {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.full-width {
    width: 100%;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 3.125rem;
    padding: 0 1.5rem;
    border-radius: 3.125rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-size: 0.9rem;
    gap: 0.65rem;
    font-weight: 600;
}
.btn i {
    font-size: 1.65rem;
}
.btn.blue {
    background: #3b61bb;
    backdrop-filter: blur(2px);
    color: #fff;
}
.btn.blue:hover {
    background: #7ba0f7;
    box-shadow: 0 4px 4px 0 #3b61bb;
}
.btn.light {
    background: #ecebf1;
    color: #1e1e1e;
}
.btn.light:hover {
    background: #7ba0f7;
}
.btn.blue-light {
    background: #4d77d9;
    color: #fff;
}
.btn.blue-light:hover {
    background: #fff;
    color: #4d77d9;
}
.btn.blue-pale {
    background: #d5e2ff;
    color: #3b61bb;
}
.btn.blue-pale:hover {
    background: #7ba0f7;
    color: #1e1e1e;
}

/* HEADER */
.header {
    padding: 1.25rem 0;
    /* background: white; */
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.35rem;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.logo img {
    height: 2.5rem;
}
.header-addr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
}
.header-addr img {
    width: 1.3125rem;
    height: 1.875rem;
    flex-shrink: 0;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.header-nav > a {
    transition: color 0.25s ease-in;
}
.header-nav > a:hover, .header-nav > a.active {
    color: #3d63db;
}
.header-drop {
    position: relative;
}
.header-drop > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.25s ease-in;
}
.header-drop > a img {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.25s ease-in;
}
.header-drop:hover > a {
    color: #3d63db;
}
.header-drop:hover > a img {
    transform: rotate(180deg);
}
.header-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    display: grid;
    min-width: 24rem;
    margin-top: 1.25rem;
    padding: 0.85rem 1.5rem;
    background: #fff;
    border-radius: 1.25rem;
    box-shadow: 0 1rem 3rem rgba(30, 30, 30, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.75rem);
    transition: all 0.25s ease-in;
}
.header-submenu::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1.25rem;
    width: 100%;
    height: 1.25rem;
}
.header-drop:hover .header-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-submenu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    height: 3rem;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.25s ease-in;
}
.header-submenu-icon {
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    object-fit: contain;
}
.header-submenu-arrow {
    width: 1.15rem;
    height: 1.15rem;
    flex-shrink: 0;
    margin-left: auto;
    object-fit: contain;
    transition: transform 0.25s ease-in;
}
.header-submenu a:hover, .header-submenu a.active {
    color: #4d77d9;
}
.header-submenu a:hover .header-submenu-arrow {
    transform: translateX(0.2rem);
}

.header-soc {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.soc-link {
    color: #3b61bb;
    font-size: 2rem;
    transition: opacity 0.25s ease-in;
}
.soc-link:hover {
    opacity: 0.75;
}
.burger {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #3d63db;
    padding: 0.75rem;
}
.burger img {
    width: 100%;
    height: 100%;
}

/* MOB MENU */
.mob-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: all 0.35s ease;
}
.mob-menu.open {
    visibility: visible;
    opacity: 1;
}
.mob-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(30, 30, 30, 0.5);
}
.mob-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 24rem;
    max-width: 90%;
    height: 100%;
    padding: 1.1rem;
    background: #fff;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}
.mob-menu.open .mob-menu-inner {
    transform: translateX(0);
}
.mob-menu-head {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 2rem;
}
.mob-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #3d63db;
    padding: 0.65rem;
}
.mob-close img {
    width: 100%;
    height: 100%;
}
.mob-nav {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 1.25rem;
    font-weight: 500;
}
.mob-nav-drop > a {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}
.mob-nav-drop > a img {
    width: 1.35rem;
    transition: transform 0.25s ease-in;
}
.mob-nav-drop.open > a img {
    transform: rotate(180deg);
}
.mob-nav-submenu {
    display: grid;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.mob-nav-drop.open .mob-nav-submenu {
    max-height: 30rem;
    padding: 0.5rem 0 0 0.5rem;
}
.mob-nav-submenu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    height: 3.25rem;
    font-size: 1.15rem;
    font-weight: 500;
}
.mob-nav-submenu .header-submenu-arrow {
    width: 1.35rem;
    height: 1.35rem;
}
.mob-menu-addr {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}
.mob-menu-addr img {
    width: 1.5rem;
    flex-shrink: 0;
}
.mob-menu-soc {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.mob-menu-inner .btn {
    margin-top: auto;
}

/* HERO */
.hero-section {
    padding-top: 7rem;
}
.hero-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 22.5rem 15.35rem;
    gap: 1.25rem;
}
.hero-main {
    grid-column: 1 / 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #efeff3;
}
.hero-main-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}
.hero-main-text {
}
.hero-video {
    grid-column: 1 / 2;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #4d77d9;
}
.hero-video-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}
.hero-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background: rgba(249, 249, 249, 0.46);
    backdrop-filter: blur(10px);
    transform: translate(-50%, -50%);
    transition: background 0.25s ease-in;
}
.hero-video-play img {
    width: 1.5rem;
    margin-left: 0.25rem;
}
.hero-video-play:hover {
    background: rgba(255, 255, 255, 0.5);
}
.hero-services {
    grid-column: 2 / 3;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #efeff3;
}
.hero-services-avatars {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}
.hero-services-avatars img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    border: 0.125rem solid #efeff3;
    margin-left: -0.75rem;
}
.hero-services-avatars img:first-child {
    margin-left: 0;
}
.hero-services-circle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -3.5rem;
    width: 6.25rem;
    height: 6.25rem;
    border-radius: 50%;
    background: #4d77d9;
}
.hero-services-circle img {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.45rem;
}
.hero-services-content {
    position: relative;
    z-index: 2;
}
.hero-services-text {
    font-size: 0.9rem;
}
.hero-photo {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #4a6ce0;
}

.hero-photo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-tag {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    height: 2.5rem;
    padding: 0 1rem 0 0.625rem;
    border-radius: 3.125rem;
    border: 0.5px solid #fff;
    background:
        linear-gradient(
            0deg,
            rgba(49, 37, 82, 0.2) 0%,
            rgba(49, 37, 82, 0.2) 100%
        ),
        linear-gradient(
            97deg,
            rgba(249, 249, 249, 0.09) 48.86%,
            rgba(249, 249, 249, 0) 128.5%
        );
    backdrop-filter: blur(10px);
    color: #fff;
    letter-spacing: -0.02rem;
    font-weight: 500;
}
.hero-tag span {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #fff;
}
.hero-tag.one {
    top: 2.875rem;
    left: 1.5rem;
}
.hero-tag.two {
    top: 22rem;
    left: 2.125rem;
}
.hero-tag.three {
    top: 32.5rem;
    left: 7.25rem;
}

/* ABOUT */
.about-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 19rem 19rem;
    gap: 1.25rem;
}
.about-content {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.about-content .section-title {
    margin-bottom: 1.25rem;
}
.about-text {
    display: grid;
    gap: 1.25rem;
    margin-bottom: auto;
    letter-spacing: -0.02rem;
}
.about-content .btn {
    width: 20rem;
}
.about-photo {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
    overflow: hidden;
    border-radius: 1.25rem;
    background: #efeff3;
}
.about-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #ecebf1;
}
.about-card-num {
    font-size: 4rem;
    font-weight: 600;
    letter-spacing: -0.08rem;
    color: #4d77d9;
    white-space: nowrap;
}
.about-card-text {
    font-size: 1.25rem;
    font-weight: 600;
}

/* SERVICES */
.services-head {
    margin-bottom: 1.85rem;
}
.services-head .section-title {
    margin-bottom: 1.25rem;
}
.services-head-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.services-head-text {
}
.services-head .btn {
    flex-shrink: 0;
    padding: 0 1rem 0 2rem;
    gap: 1.15rem;
}
.services-head .btn img {
    width: 1.35rem;
    height: 1.35rem;
    flex-shrink: 0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}
.service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 0;
    height: 22.5rem;
    padding: 1.25rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #1e1e1e;
}
.service-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(1deg, #1e1e1e 10.36%, rgba(0, 0, 0, 0) 52.05%);
}
.service-tag {
    top: 1.25rem;
    left: 1.25rem;
}
.service-card-text {
    position: relative;
    z-index: 3;
    margin-bottom: 1.25rem;
    color: #fff;
    font-weight: 500;
}
.service-card .btn {
    position: relative;
    z-index: 3;
    width: 75%;
}

/* WHY */
.why-inner .section-title {
    margin-bottom: 2.75rem;
}
.why-list {
    display: grid;
    gap: 1.25rem;
}
.why-item {
    position: relative;
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr) 25rem;
    align-items: center;
    gap: 1.85rem;
    min-height: 7.5rem;
    padding: 1.25rem 2.5rem;
    border-radius: 1.25rem;
    background: #ecebf1;
    cursor: pointer;
    transition: background 0.4s ease;
}
.why-item.active {
    background: #4d77d9;
}
.why-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    padding: 0.625rem;
    background: #819fe2;
    border-radius: 50%;
    flex-shrink: 0;
}
.why-item-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #4d77d9;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.4s ease;
    flex-shrink: 0;
}
.why-item.active .why-item-num {
    background: #fff;
    color: #1e1e1e;
}
.why-item-name {
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.4s ease;
}
.why-item.active .why-item-name {
    color: #fff;
}
.why-item-text {
    transition: color 0.4s ease;
}
.why-item-text span {
    font-weight: 700;
    color: #4d77d9;
    transition: color 0.4s ease;
}
.why-item.active .why-item-text,
.why-item.active .why-item-text span {
    color: #fff;
}
.why-item-photo {
    position: absolute;
    top: 50%;
    left: 49%;
    z-index: 5;
    width: 15rem;
    height: 11.25rem;
    border-radius: 0.625rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem rgba(30, 30, 30, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.85) rotate(-4deg);
    transition: all 0.45s ease;
}
.why-item.active .why-item-photo {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotate(-4deg);
}
.why-item-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5.5625rem;
    height: 3.125rem;
    border-radius: 3.125rem;
    background: #ecebf1;
    backdrop-filter: blur(2px);
    color: #1e1e1e;
    font-weight: 200;
    transition: all 0.3s ease;
}
.slider-arrow svg {
    width: 1.2rem;
    height: 1.2rem;
}
.slider-arrow:hover {
    background: #3b61bb;
    color: #fff;
    backdrop-filter: blur(2px);
}
.slider-arrow.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* DOCTORS */
.doctors-section .container {
    position: relative;
}
.doctors-section .container:after {
    position: absolute;
    top: 0;
    right: 101%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #fff;
}
.doctors-head {
    margin-bottom: 1.85rem;
}
.doctors-head .section-title {
    margin-bottom: 1rem;
}
.doctors-head-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.doctors-head-text {
    width: 40rem;
}
.doctors-arrows {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}
.doctors-slider .slick-list {
    overflow: visible;
    margin: 0 -0.615rem;
}
.doctors-slider .slick-slide {
    padding: 0 0.615rem;
    box-sizing: border-box;
    height: auto;
}
.doctor-card {
    min-width: 0;
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
}
.doctor-card-photo {
    position: relative;
    overflow: hidden;
    height: 22.5rem;
    margin-bottom: 1.25rem;
    border-radius: 1.25rem;
    background: #353b52;
}
.doctor-card-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doctor-tag {
    bottom: 1.25rem;
    left: 1.25rem;
    max-width: calc(100% - 3rem);
}
.doctor-card-name {
    margin-bottom: 0.65rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}
.doctor-card-post {
    margin-bottom: 1.25rem;
    min-height: 2.5rem;
}
.doctor-card .btn {
    width: 100%;
}
.doctor-card .btn.blue-pale {
    margin-bottom: 0.75rem;
}

.clean-inner {
    position: relative;
    height: 22.5rem;
    padding: 2.5rem;
    border-radius: 1.25rem;
    background: #3b61bb;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.clean-img {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    object-fit: cover;
}
.clean-content {
    position: relative;
    display: flex;
    width: 25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
    color: white;
    z-index: 1;
}
.clean-content span {
    font-weight: 700;
}
.clean-content .btn {
    width: 17.8125rem;
}

/* REVIEWS */
.reviews-section {
    overflow: hidden;
}
.reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.85rem;
}
.reviews-slider .slick-list {
    /* overflow: visible; */
    margin: 0 -0.615rem;
}
.reviews-slider .slick-track {
    display: flex;
}
.reviews-slider .slick-slide {
    padding: 0 0.615rem;
    box-sizing: border-box;
    height: auto;
}
.reviews-slider .slick-slide > div {
    height: 100%;
}
.review-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #ecebf1;
}
.review-card-name {
    margin-bottom: 0.65rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
    color: #3b61bb;
}
.review-card-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.review-card-date {
    font-style: italic;
}
.review-card-stars {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
    font-size: 1rem;
    color: #ffa616;
}

/* RESULTS */
.results-head {
    margin-bottom: 1.85rem;
}
.results-head .section-title {
    margin-bottom: 1.25rem;
}
.results-head-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.85rem;
}
.results-head .btn {
    flex-shrink: 0;
    width: 13.5rem;
}
.results-tabs {
    display: flex;
    align-items: center;
    margin-bottom: 1.85rem;
    border-bottom: 0.0625rem solid #ecebf1;
}
.results-tab {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.35rem 1rem;
    border-bottom: 0.125rem solid transparent;
    font-weight: 500;
    white-space: nowrap;
    color: rgba(30, 30, 30, 0.5);
    transition: all 0.3s ease;
}
.results-tab:not(.active) img{
    filter: grayscale(1);
}
.results-tab img {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0.45;
    transition: opacity 0.3s ease;
}
.results-tab:hover {
    color: #4d77d9;
}
.results-tab:hover img {
    opacity: 1;
}
.results-tab.active {
    color: #3b61bb;
    border-bottom-color: #3b61bb;
}
.results-tab.active img {
    opacity: 1;
}
.results-body {
    display: none;
}
.results-body.active {
    display: block;
}
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}
.result-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.result-card-name {
    margin-bottom: 0.65rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}
.result-card-text {
    margin-bottom: auto;
    padding-bottom: 1.25rem;
}
.result-card .btn {
    width: 13rem;
    justify-content: space-between;
    padding: 0 1.35rem 0 1.5rem;
}
.result-card .btn img {
    width: 1.05rem;
    height: 1.05rem;
    flex-shrink: 0;
    object-fit: contain;
}

/* COMPARE */
.compare {
    position: relative;
    overflow: hidden;
    height: 17.5rem;
    margin-bottom: 1.25rem;
    border-radius: 1.25rem;
    background: #ecebf1;
    user-select: none;
    touch-action: pan-y;
    cursor: ew-resize;
}
.compare img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.compare-after {
    position: absolute;
    inset: 0;
}
.compare-before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 50%;
    height: 100%;
    overflow: hidden;
}
.compare-before img {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--compare-w, 100%);
    height: 100%;
    max-width: none;
}
.compare-line {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 3;
    width: 0.125rem;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    pointer-events: none;
}
.compare-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    border: 0.5px solid rgba(255, 255, 255, 0.83);
    background: linear-gradient(
        241deg,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(255, 255, 255, 0) 248.52%
    );
    backdrop-filter: blur(2px);
    transform: translate(-50%, -50%);
}
.compare-handle img {
    width: 0.75rem;
    height: 0.75rem;
}

.input {
    display: block;
    width: 100%;
    height: 3.125rem;
    padding: 0 1.25rem;
    border: none;
    border-radius: 3.125rem;
    background: #fff;
    font-size: 1rem;
    color: #1e1e1e;
    transition: box-shadow 0.3s ease;
}
.input::placeholder {
    color: #9a9aa5;
}
.input:focus {
    box-shadow: 0 0 0 0.1rem #4d77d9;
}

/* CONSULT */
.consult-section {
    position: relative;
}
.consult-photo-img {
    position: absolute;
    width: 37.625rem;
    height: 29.0625rem;
    left: 0;
    z-index: 2;
    top: -2.15rem;
}
.consult-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 24rem;
    border-radius: 1.25rem;
    overflow: hidden;
    background: #ecebf1;
    padding: 1.85rem 0;
    padding-right: 2.25rem;
}
.form-back {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    inset: 0;
}
.consult-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: 33.875rem;
}
.consult-form .section-title {
    margin-bottom: 1.25rem;
    line-height: 100%;
    letter-spacing: -0.05rem;
    color: #3b61bb;
}
.consult-form .input {
    margin-bottom: 1rem;
}
.consult-form-policy {
    margin-bottom: 1.25rem;
}
.consult-form .btn {
    width: 17.25rem;
    align-self: flex-end;
}

/* FAQ */
.faq-head {
    margin-bottom: 2.75rem;
}
.faq-head .section-title {
    margin-bottom: 0.85rem;
}
.faq-list {
    display: grid;
    gap: 1.25rem;
    width: 64.5rem;
    margin: 0 auto;
}
.faq-item {
    position: relative;
    padding: 1.25rem;
    border-radius: 1.25rem;
    background: #ecebf1;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item::before {
    content: "";
    position: absolute;
    top: 0.21rem;
    bottom: 0.21rem;
    left: -0.25rem;
    z-index: -1;
    width: 3rem;
    border-radius: 1rem;
    background: #3b61bb;
    opacity: 0;
    transform: translateX(0.5rem);
    transition:
        opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open::before {
    opacity: 1;
    transform: translateX(0);
}
.faq-head-row {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    cursor: pointer;
}
.faq-toggle {
    position: relative;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: #fff;
    transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-toggle {
    background: #c3d4f9;
}
.faq-toggle::before,
.faq-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8rem;
    height: 0.09rem;
    border-radius: 0.09rem;
    background: #3b61bb;
    transform: translate(-50%, -50%);
    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}
.faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.open .faq-toggle::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}
.faq-content {
    min-width: 0;
    padding-top: 0.35rem;
}
.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-question {
    color: #3b61bb;
}
.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: max-height;
}
.faq-answer {
    padding-top: 0.35rem;
    opacity: 0;
    transform: translateY(-0.5rem);
    transition:
        opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}
.faq-item.open .faq-answer {
    opacity: 1;
    transform: translateY(0);
}

/* CONTACTS */
.contacts-inner {
    position: relative;
    overflow: hidden;
    padding: 1.25rem;
    border-radius: 1.25rem;
}
.contacts-map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.contacts-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}
.con-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        0deg,
        rgba(77, 119, 217, 0.27) 0%,
        rgba(77, 119, 217, 0.27) 100%
    );
    pointer-events: none;
}
.contacts-card {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 31.35rem;
    padding: 1.85rem;
    border-radius: 1.25rem;
    background: #fff;
}
.contacts-card .section-title {
    margin-bottom: 1.25rem;
}
.contacts-addr {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.85rem;
    color: #3b61bb;
    transition: opacity 0.25s ease-in;
}
.contacts-addr img {
    width: 1.75rem;
    height: 2.5rem;
    flex-shrink: 0;
}
.contacts-addr:hover {
    opacity: 0.75;
}
.contacts-work {
    margin-bottom: 1.85rem;
}
.contacts-phone {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    /* letter-spacing: -0.03rem; */
    color: #3b61bb;
    transition: opacity 0.25s ease-in;
}
.contacts-phone:hover {
    opacity: 0.75;
}
.contacts-phone-text {
    margin-bottom: 1.85rem;
}
.contacts-soc-title {
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.contacts-soc {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    margin-bottom: 1.85rem;
}
.contacts-soc-link {
    font-size: 2rem;
    transition: opacity 0.25s ease-in;
}
.contacts-soc-link.whatsapp {
    color: #60d669;
}
.contacts-soc-link.instagram {
    background: linear-gradient(45deg, #e6c400, #e818ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.contacts-soc-link:hover {
    opacity: 0.75;
}
.contacts-card .btn {
    width: 18rem;
}

/* FOOTER */
.footer {
    padding-bottom: 2.5rem;
}
.footer-inner {
    display: grid;
    grid-template-columns: 22rem minmax(0, 1fr) 16rem;
    align-items: center;
    gap: 1.25rem;
}
.footer-logo {
    justify-content: flex-start;
}
.footer-logo img {
    width: 13.5625rem;
    height: 4.00206rem;
}
.footer-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-weight: 500;
}
.footer-nav a {
    transition: color 0.25s ease-in;
}
.footer-nav a:hover {
    color: #3b61bb;
}
.footer-contact {
    justify-self: end;
    text-align: left;
}
.footer-phone {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.03rem;
    color: #3b61bb;
    transition: opacity 0.25s ease-in;
}
.footer-phone:hover {
    opacity: 0.75;
}
.footer-addr {
    font-weight: 500;
    align-self: start;
    transition: color 0.25s ease-in;
}
.footer-addr:hover {
    color: #3b61bb;
}
.footer-form {
    align-self: start;
}
.footer-form-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.65rem;
}
.footer-form .input {
    background: #ecebf1;
}
.footer-form .btn {
    flex-shrink: 0;
    width: 13.5rem;
    position: relative;
}
.btn-img {
    width: 1.875rem;
    height: 1.875rem;
    background: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    right: 0.65rem;
    transform: rotate(-45deg);
    transition: all 0.25s ease-in;
}
.btn-img img {
    width: 0.79825rem;
    height: 1rem;
    flex-shrink: 0;
}
.footer-form .btn:hover .btn-img {
    transform: rotate(0deg);
}
.footer-soc {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    align-self: start;
    padding-top: 0.5rem;
}
.footer-soc-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: #c8d7f7;
    color: #3b61bb;
    font-size: 1.5rem;
    transition: all 0.25s ease-in;
}
.footer-soc-link:hover {
    background: #3b61bb;
    color: #fff;
}
.footer-policy {
    font-weight: 600;
    transition: color 0.25s ease-in;
}
.footer-policy:hover {
    color: #3b61bb;
}
.footer-made {
    grid-column: 3 / 4;
    justify-self: end;
    text-align: right;
    font-weight: 700;
    transition: color 0.25s ease-in;
}
.footer-made:hover {
    color: #3b61bb;
}

.page-top-section {
    padding-top: 6.5rem;
    margin-bottom: 2rem;
}
.page-top-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.page-top-inner a {
    font-weight: 600;
    color: #3b61bb;
}
.page-top-inner img {
    width: 1.25rem;
    height: 1.25rem;
}

/* PAGE HERO */
.page-hero-section {
    position: relative;
}
.page-hero-back {
    position: absolute;
    z-index: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ph-overlay {
    position: absolute;
    z-index: 0;
    inset: 1;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(77, 119, 217, 0.81) 0%,
        rgba(77, 119, 217, 0.81) 100%
    );
}
.page-hero-img {
    position: absolute;
    width: 72.42969rem;
    height: 48.28644rem;
    right: -14rem;
    bottom: -4rem;
}
.page-hero-inner {
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 20.5rem;
    border-radius: 1.25rem;
    color: #fff;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    width: 36.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-left: 2.5rem;
}
.page-hero-tag {
    position: relative;
    top: unset;
    left: unset;
}

.mis-section {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.mis-fon {
    position: absolute;
    z-index: -1;
    width: 101%;
    top: 3rem;
    opacity: 0.6;
}
.mis-inner {
    display: flex;
    flex-direction: column;
    width: 63rem;
    margin: 0 auto;
    text-align: center;
    gap: 1rem;
}
.mis-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.mis-inner img {
    border-radius: 0.625rem;
}
.mis-img1 {
    width: 9.5625rem;
    height: 6.8125rem;
}
.mis-img2 {
    width: 10.25rem;
    height: 12.5rem;
}
.mis-img3 {
    width: 12.3125rem;
    height: 8rem;
    margin-top: 1.5rem;
}

/* blue-section */
.blue-section {
    position: relative;
}
.circle-back {
    background: #4d77d9;
    border-radius: 50% 50% 0 0;
    height: 42rem;
    width: 100%;
    position: absolute;
    z-index: -1;
    top: -6rem;
}
.blue-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.blue-grid .about-card {
    height: 19.5rem;
}
.blue-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.about-doctors {
    background: #4d77d9;
    padding-bottom: 3rem;
}
.about-doctors .doctors-inner {
    color: white;
}

.about-doctors .container:after {
    background: #4d77d9;
}

/* CALM */
.calm-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 5rem;
}
.calm-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    gap: 1.25rem;
}
.calm-text {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    font-style: italic;
}
.calm-btns {
    display: flex;
    align-items: center;
    border-radius: 3.125rem;
    background: #ecebf1;
}
.calm-btns .btn {
    height: 3.125rem;
}
.calm-btns .btn.blue {
    width: 16.5rem;
}
.calm-btns .btn.light {
    padding: 0 1.5rem 0 1.25rem;
    background: none;
    color: #3b61bb;
    font-weight: 500;
}
.calm-btns .btn.light i {
    font-size: 1.75rem;
}
.calm-btns .btn.light:hover {
    color: #4d77d9;
}
.calm-video {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 1.25rem;
    background: #ecebf1;
}
.calm-video-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.calm-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
}

/* img-inner1 */
.img-inner1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: center;
    z-index: 5;
}
.img-box2 {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1.25rem;
    font-weight: 500;
}
.in-img1 {
    width: 100%;
    height: 22.1875rem;
    border-radius: 1.25rem;
    object-fit: cover;
}
.in-img1.img2 {
    height: 25.5rem;
    z-index: 5;
}
.img-box1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
    height: 100%;
}
.img-box-top1 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.img-box-top1 p {
    font-weight: 500;
}

/* MARQUEE */
.marquee-section {
    overflow: hidden;
}
.marquee-inner {
    display: flex;
    width: 100vw;
    margin-left: calc((80rem - 100vw) / 2);
    padding-left: calc((100vw - 80rem) / 2);
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    box-sizing: border-box;
}
.marquee-inner::-webkit-scrollbar {
    display: none;
}
.marquee-inner.dragging {
    cursor: grabbing;
    user-select: none;
}
.marquee-track {
    display: flex;
    align-items: stretch;
    gap: 1.25rem;
    padding-right: 1.25rem;
    /*animation: marquee-move 28s linear infinite;*/
}
.marquee-inner:hover .marquee-track {
    animation-play-state: paused;
}
@keyframes marquee-move {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.marquee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-shrink: 0;
    width: 12.3125rem;
    height: 8.75rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #ecebf1;
    text-align: center;
    cursor: pointer;
    color: inherit;
    font: inherit;
    transition: background 0.25s ease-in, color 0.25s ease-in;
    border: 1px solid transparent;
    user-select: none;
    -webkit-user-drag: none;
}
.marquee-card * {
    user-select: none;
    -webkit-user-drag: none;
}
.marquee-card.active {
    background: #fff;
    color: #3b61bb;
    border-color: #3b61bb;
}
.marquee-card img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}
.marquee-card-name {
    font-weight: 600;
}

/* PAGINATION */
.pagination {
    margin-top: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 1.5rem; */
}
.pagination li {
    list-style: none;
}
.pagination li button,
.pagination-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    background: none;
    font-family: inherit;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e1e1e;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pagination li button:hover,
.pagination-item:hover {
    color: #3b61bb;
}
.pagination li.slick-active button,
.pagination-item.active {
    background: #3b61bb;
    box-shadow: 0 0 0 0.5rem #7ba0f7;
    color: #fff;
    margin-right: 0.5rem;
}

/* SERVICE HERO */
.srv-hero-section {
}
.srv-hero-inner {
    display: grid;
    grid-template-columns: 38rem minmax(0, 1fr);
    align-items: center;
    gap: 2rem;
}
.srv-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.srv-hero-content .section-title {
    margin-bottom: 1.35rem;
    color: #4d77d9;
    font-size: 2.25rem;
}
.srv-hero-text {
    margin-bottom: 1.5rem;
}
.srv-hero-subtitle {
    margin-bottom: 0.65rem;
    font-weight: 600;
}
.srv-hero-list {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-left: 1.15rem;
    list-style: none;
}
.srv-hero-list li {
    position: relative;
}
.srv-hero-list li::before {
    content: "";
    position: absolute;
    top: 0.65rem;
    left: -1.15rem;
    width: 0.25rem;
    height: 0.25rem;
    border-radius: 50%;
    background: #1e1e1e;
}
.srv-hero-photo {
    position: relative;
    overflow: hidden;
    height: 31rem;
    border-radius: 1.25rem;
    background: #1e1e1e;
}
.srv-hero-photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.srv-hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(1deg, #1e1e1e 10.36%, rgba(0, 0, 0, 0) 52.05%);
}
.srv-hero-photo-name {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.05rem;
    color: #fff;
}

/* SYMPTOMS */
.symptoms-section {
    position: relative;
    /* overflow: hidden; */
}
.symptoms-section .container {
    position: relative;
}
.symptoms-section .container:after {
    position: absolute;
    top: 0;
    right: 100%;
    bottom: 0;
    width: 50%;
    content: "";
    background: #fff;
    z-index: 3;
}
.symptoms-back {
    position: absolute;
    top: -6rem;
    left: -0.5rem;
    z-index: 4;
    width: 33.8125rem;
    height: 25.35938rem;
    flex-shrink: 0;
}
.symptoms-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 38.5rem minmax(0, 1fr);
    align-items: flex-end;
    gap: 2rem;
}
.symptoms-box {
    flex-shrink: 0;
    width: 102%;
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    background: white;
    z-index: 10;
    align-items: flex-end;
    height: 100%;
    min-width: 0;
}
.symptoms-slider {
    min-width: 0;
}
.symptoms-left .section-title {
    color: #4d77d9;
}
.symptoms-arrows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.symptoms-slider .slick-list {
    overflow: visible;
    margin: 0 -0.615rem;
}
.symptoms-slider .slick-slide {
    padding: 0 0.615rem;
    box-sizing: border-box;
}
.symptom-card {
    position: relative;
    overflow: hidden;
    height: 17rem;
    border-radius: 1.25rem;
}
.symptom-card-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.symptom-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(1deg, #1e1e1e 4.63%, rgba(0, 0, 0, 0) 38.96%);
}
.symptom-card-name {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

/* PRICE */
.price-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 0.0625rem solid rgba(77, 119, 217, 0.43);
}
.price-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-shrink: 0;
    font-weight: 600;
    transition: color 0.25s ease-in;
}
.price-all img {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.25s ease-in;
}
.price-all:hover {
    color: #3b61bb;
}
.price-all:hover img {
    transform: translateX(0.35rem);
}
.price-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 16rem 16.5rem;
    align-items: center;
    gap: 2rem;
    padding: 1.25rem 0;
    border-bottom: 0.0625rem solid rgba(77, 119, 217, 0.43);
}
.price-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.price-category {
    padding: 2rem 0 0.75rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #3b61bb;
}
.price-body {
    display: none;
}
.price-body.active {
    display: block;
}
.price-row-name {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}
.price-row-cost {
    text-align: center;
}
.price-row .btn {
    width: 100%;
}

/* GALLERY */
.gallery-section {
    overflow: hidden;
}
.gallery-inner {
    position: relative;
}
.gallery-slider .slick-list {
    padding: 0 !important;
}
.gallery-slider .slick-track {
    display: flex;
    align-items: center;
}
.gallery-slide {
    padding: 0 0.625rem;
    box-sizing: border-box;
}
.gallery-slide img {
    display: block;
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1.25rem;
    transition: height 0.4s ease;
}
.gallery-slider .slick-current .gallery-slide img,
.gallery-slider .slick-slide.slick-active.gallery-center img {
    height: 29rem;
}
.gallery-inner .slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    transform: translateY(-50%);
}
.gallery-prev {
    left: 1.5rem;
}
.gallery-next {
    right: 1.5rem;
    background: #3b61bb;
    color: #fff;
}
.gallery-next:hover {
    background: #4d77d9;
}
.gallery-inner::before,
.gallery-inner::after {
    content: "";
    position: absolute;
    top: 0;
    z-index: 4;
    width: 22rem;
    height: 100%;
    pointer-events: none;
}
.gallery-inner::before {
    left: 0;
    background: linear-gradient(90deg, #fff 25%, rgba(255, 255, 255, 0) 80%);
}
.gallery-inner::after {
    right: 0;
    background: linear-gradient(270deg, #fff 25%, rgba(255, 255, 255, 0) 80%);
}

/* FEAT */
.feat-inner {
    position: relative;
    overflow: hidden;
    height: 20rem;
    border-radius: 1.25rem;
}
.feat-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(77, 119, 217, 0.81) 0%,
        rgba(77, 119, 217, 0.81) 100%
    );
}
.feat-fon {
    position: absolute;
    inset: 0;
    width: 100%;
    top: -7rem;
}
.feat-tag {
    background: rgba(255, 255, 255, 0.14);
}
.feat-tag.one {
    top: 5.35rem;
    left: 3rem;
}
.feat-tag.two {
    top: 11.15rem;
    left: 8.5rem;
}
.feat-tag.three {
    top: 3rem;
    left: 38rem;
}
.feat-tag.four {
    top: 8rem;
    right: 3rem;
}
.feat-tag.five {
    top: 16.15rem;
    left: 30.35rem;
}

.feat-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.85rem;
}
.feat-text {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    font-weight: 500;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* DOCTOR PAGE */
.doc-section {
}
.doc-inner {
    display: grid;
    grid-template-columns: 32.5rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
}
.doc-photo {
    overflow: hidden;
    height: 39rem;
    border-radius: 1.25rem;
}
.doc-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.doc-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}
.doc-tags {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
.doc-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    height: 2.5rem;
    padding: 0 1.25rem 0 0.85rem;
    font-weight: 500;
    color: #3b61bb;
    border-radius: 3.125rem;
    border: 0.5px solid #fff;
    background: linear-gradient(
        97deg,
        rgba(129, 159, 226, 0.3) 48.86%,
        rgba(129, 159, 226, 0.3) 128.5%
    );
    backdrop-filter: blur(10px);
}
.doc-tag span {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #3b61bb;
}
.doc-content .section-title {
    margin-bottom: 0.65rem;
}
.doc-post {
    width: 100%;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid rgba(77, 119, 217, 0.43);
}
.doc-block {
    margin-bottom: 1.75rem;
}
.doc-block p,
.doc-block li {
    font-weight: 500;
}
.doc-block-title {
    margin-bottom: 0.65rem;
    font-weight: 600;
    color: #3b61bb;
}
.doc-list {
    margin-bottom: 0;
    gap: 0.35rem;
}
.doc-content .btn {
    width: 20rem;
}

/* EDUCATION */
.edu-inner {
    display: grid;
    grid-template-columns: 28rem minmax(0, 1fr) 5.35rem;
    align-items: center;
    gap: 2rem;
}
.edu-years {
    min-width: 0;
}
.edu-year {
    display: flex !important;
    align-items: center;
    gap: 1.5rem;
    height: 5.25rem;
    padding-left: 1.5rem;
    font-size: 3rem;
    font-weight: 600;
    color: #b5b5bd;
    cursor: pointer;
    transition: all 0.35s ease;
}
.edu-year span {
    flex-shrink: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: #c8d7f7;
    transition: background 0.35s ease;
}
.edu-years-slider .edu-year.slick-current {
    color: #1e1e1e;
    font-size: 3.5rem;
}
.edu-years-slider .edu-year.slick-current span {
    background: #3b61bb;
}
.edu-content-slider {
    min-width: 0;
}
.edu-content {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    height: 15.75rem;
    overflow: hidden;
}
.edu-content-title {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}
.edu-content-text {
    width: 48rem;
    max-width: 100%;
}
.edu-arrows {
    display: grid;
    gap: 1rem;
    justify-items: center;
}
.edu-arrows .slider-arrow {
    height: 5.5625rem;
    width: 3.125rem;
    border-radius: 2rem;
    background: #3b61bb;
    color: #fff;
}
.edu-arrows .slider-arrow:hover {
    background: #ecebf1;
    color: black;
}

/* CERTIFICATES */
.cert-section {
    position: relative;
    border-radius: 2.5rem;
    background: linear-gradient(
        0deg,
        rgba(77, 119, 217, 0.8) 0%,
        rgba(77, 119, 217, 0.8) 100%
    );
    padding: 2.5rem 0;
    overflow: hidden;
}
.cert-inner {
    position: relative;
}
.cert-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cert-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(77, 119, 217, 0.88) 0%,
        rgba(77, 119, 217, 0.88) 100%
    );
}
.cert-content {
    position: relative;
    z-index: 2;
}
.cert-content .section-title {
    margin-bottom: 1.85rem;
    color: #fff;
}
.cert-slider {
    margin-bottom: 2rem;
}
.cert-slider .slick-list {
    /* overflow: visible; */
    margin: 0 -0.625rem;
}
.cert-slider .slick-slide {
    padding: 0 0.625rem;
    box-sizing: border-box;
}
.cert-card {
    display: block;
    overflow: hidden;
    height: 34rem;
    border-radius: 1.25rem;
    transition: background 0.3s ease;
}
.cert-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cert-arrows {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

/* CHOOSE */
.choose-inner .section-title {
    margin-bottom: 2rem;
}
.choose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: flex-start;
    gap: 1.5rem;
}
.choose-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-align: center;
}
.choose-card img {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
    object-fit: contain;
}
.choose-card-name {
    margin-bottom: 0.65rem;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
}

.search {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 8.5rem;
    height: 3.125rem;
    padding: 0 1.25rem;
    border-radius: 3.125rem;
    background: #ecebf1;
    backdrop-filter: blur(2px);
    transition:
        width 0.35s ease,
        background 0.35s ease;
}
.search.active {
    width: 16rem;
    background: #dee6fa;
}
.search-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-right: 0.65rem;
}
.search-input {
    width: 100%;
    min-width: 0;
    border: none;
    background: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e1e1e;
}
.search-input::placeholder {
    color: #1e1e1e;
    transition: color 0.35s ease;
}
.search.active .search-input::placeholder {
    color: #9a9aa5;
}

.case-img {
    position: absolute;
    width: 32.8125rem;
    height: 24.35938rem;
    flex-shrink: 0;
    right: 0;
    top: -1rem;
    pointer-events: none;
}

/* CASE PAGE */
.case-top {
    display: grid;
    grid-template-columns: 40rem minmax(0, 1fr);
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2rem;
}
.case-compare {
    height: 26rem;
    margin-bottom: 0;
}
.case-content {
    min-width: 0;
}
.case-content .section-title {
    margin-bottom: 1.25rem;
    color: #4d77d9;
    font-size: 2.25rem;
}
.case-lead {
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.case-text {
    margin-bottom: 2rem;
}
.case-doctor {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.case-doctor img {
    width: 5.5625rem;
    height: 5.625rem;
    flex-shrink: 0;
    border-radius: 50%;
    object-fit: cover;
}
.case-doctor-name {
    margin-bottom: 0.35rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
    transition: color 0.25s ease-in;
}
.case-doctor:hover .case-doctor-name {
    color: #3b61bb;
}
.case-doctor-post {
    font-style: italic;
}
.case-block {
    margin-bottom: 2rem;
}
.case-block:last-child {
    margin-bottom: 0;
}
.case-block-title {
    margin-bottom: 0.85rem;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.03rem;
    color: #4d77d9;
}
.case-block .srv-hero-list {
    margin-bottom: 0;
}
