:root {
    --white-color: #ffffff;
    --black-color: #000000;
    --green-color: #49C496;
    --light-green-color: #58d2a4;
    --blue-color: #007aff;
    --blue-light-color: #1685ff;
    --text-dark-color: #2D3958;
    --text-gray-color: #7B88A8;
    --text-dark-gray-color: #474f62;
    --border-color: #E7E5EA;
    --header-bottom-bg-color: #F8F8F8;
    --swiper-nav-bullets-bg: #D9D9D9;
}

@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Assistant";
    src: url("../fonts/Assistant-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Assistant", sans-serif;
    font-size: 14px;
    color: var(--text-dark-color);
    padding: 0;
    margin: 0;
    font-weight: 400;
    background-color: transparent;
    overflow-x: hidden;
    letter-spacing: -0.3px;
}
body a {
    color: inherit;
}

* {
    font-size: inherit;
    font-family: inherit;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    color: inherit;
    text-decoration: none;
}

input,
textarea {
    width: 100%;
}

button {
    outline: none;
    border: none;
    background-color: transparent;
    background-image: none;
    color: inherit;
    cursor: pointer;
}

li {
    display: inline-block;
}

.title {
    font-weight: 700;
    font-size: 34px;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    margin: 0 auto;
}

.full-container {
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

.row {
    display: flex;
    align-items: center;
}

.description-text {
    color: var(--text-dark-gray-color);
    font-size: 20px;
    white-space: pre-line;
}
.description-text p {
    margin: 16px 0;
}

.form-review .form-fields-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 32px;
}
.form-review .form-fields-wrapper input::placeholder, .form-review .form-fields-wrapper textarea::placeholder {
    color: var(--text-dark-gray-color);
}
.form-review .form-fields-wrapper .review-field {
    width: 66%;
}
.form-review .form-fields-wrapper .short-fields {
    width: 34%;
}
.form-review .btn {
    width: 100%;
    margin-top: 15px;
}

.swiper.swiper-reviews {
    padding: 10px 20px 50px;
    --swiper-pagination-bottom: 0;
    --swiper-pagination-bullet-size: 6px;
    --swiper-pagination-bullet-inactive-color: var(--swiper-nav-bullets-bg);
    --swiper-pagination-color: var(--green-color);
    --swiper-pagination-bullet-inactive-opacity: 1;
    margin-bottom: 45px;
}

.input, .textarea {
    border: 1px solid #d8d9e1;
    color: #827B74;
    padding: 12px 38px;
    font-size: 16px;
    border-radius: 5px;
    outline: unset;
}
.input:focus, .input:focus-visible, .input:focus-within, .textarea:focus, .textarea:focus-visible, .textarea:focus-within {
    border-color: #cecece;
}

.textarea {
    resize: none;
    height: 111px;
}

.short-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.select-rating {
    display: flex;
    align-items: center;
}
.select-rating .star {
    cursor: pointer;
    position: relative;
    padding: 7px;
}
.select-rating .star:first-child {
    margin-right: -7px;
}
.select-rating .star::before {
    content: attr(data-value);
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    font-size: 12px;
    color: var(--text-dark-gray-color);
}
.select-rating .star .star-icon {
    pointer-events: none;
    color: transparent;
    transition: 0.2s all linear;
    width: 34px;
    height: 32px;
}
.select-rating .star.hovered::before,
.select-rating .star.selected::before {
    color: var(--white-color);
}
.select-rating .star.hovered .star-icon,
.select-rating .star.selected .star-icon {
    color: var(--green-color);
}
.select-rating input[type=radio] {
    display: none;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    width: 183px;
}
.social-icons .social-icon-link {
    width: 49px;
    height: 49px;
    background-color: rgba(73, 196, 150, 0.44);
    position: relative;
    border-radius: 5px;
    transition: 0.2s all linear;
}
.social-icons .social-icon-link:hover {
    background-color: rgb(73, 196, 150);
}
.social-icons .social-icon-link .icon-social {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
}
.social-icons .social-icon-link .social-icon-link__bg {
    width: 100%;
    height: 100%;
}
.background-filter {
    position: relative;
}
.background-filter::after {
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: #262F5A;
    left: 0;
    z-index: 0;
    opacity: 0.7;
}
.background-filter > * {
    position: relative;
    z-index: 1;
}

@media (max-width: 1280px) {
    .container {
        padding: 0 25px;
    }
    .title {
        font-size: 28px;
    }
    .description-text {
        font-size: 16px;
    }
    .social-icons .social-icon-link {
        width: 38px;
        height: 38px;
    }
}
@media (max-width: 768px) {
    .input, .textarea {
        padding: 10px 16px;
    }
    .form-review .form-fields-wrapper {
        gap: 15px;
    }
    .form-review .form-fields-wrapper .short-fields {
        width: 100%;
        justify-content: space-around;
    }
    .form-review .form-fields-wrapper .review-field {
        width: 100%;
    }
}
.btn {
    padding: 18px 22px;
    color: var(--white-color);
    text-align: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: 0.2s all linear;
}
.btn.btn-primary {
    background-color: var(--green-color);
}
.btn.btn-primary:hover {
    background-color: var(--light-green-color);
}
.btn.btn-secondary {
    background-color: var(--blue-color);
}
.btn.btn-secondary:hover {
    background-color: var(--blue-light-color);
}

@media (max-width: 1280px) {
    .btn {
        padding: 14px 18px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {
    .btn {
        font-size: 14px;
        padding: 10px 12px;
    }
}
.header {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: var(--white-color);
    z-index: 10;
}

.header-top {
    border-bottom: 1px solid var(--border-color);
}
.header-top .row {
    display: flex;
    justify-content: space-between;
}
.header-top .header__site-logo {
    display: flex;
    gap: 45px;
}
.header-top .header__site-logo .logo {
    height: 85px;
    max-width: 242px;
}
.header-top .header__site-logo .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header-top .header__site-logo .btn {
    display: flex;
    align-items: center;
    align-self: center;
    font-size: 20px;
    font-weight: 600;
    gap: 14px;
}
.header-top .header__site-name .header__site-name__name {
    color: var(--text-dark-color);
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.header-top .header__site-name .header__site-name__place {
    display: flex;
    align-items: center;
    gap: 17px;
    color: var(--text-dark-gray-color);
    font-size: 20px;
    font-weight: 600;
}

.header-bottom {
    background-color: var(--header-bottom-bg-color);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px 2px rgba(0, 0, 0, 0.05);
}
.header-bottom .menu-items {
    display: flex;
}
.header-bottom .menu-items .menu-item {
    flex: 1 0 auto;
}
.header-bottom .menu-items .menu-item a {
    display: block;
    width: 100%;
    color: var(--text-dark-color);
    font-size: 14px;
    font-weight: 600;
    padding: 16px 0;
    transition: 0.3s all linear;
}
.header-bottom .menu-items .menu-item a:hover, .header-bottom .menu-items .menu-item a.active {
    color: var(--green-color);
}

@media (max-width: 1280px) {
    .header .header__site-logo {
        gap: 25px;
    }
    .header .header__site-logo .logo {
        width: 150px;
    }
    .header .header__site-logo .logo img {
        width: 100%;
    }
    .header .header__site-logo .btn {
        font-size: 16px;
        gap: 10px;
    }
    .header-top .row {
        padding: 5px 0;
    }
    .header-top .header__site-name .header__site-name__name {
        font-size: 32px;
    }
    .header-top .header__site-name .header__site-name__place {
        font-size: 18px;
    }
    .header-bottom .menu-items .menu-item a {
        padding: 12px 0;
    }
}
@media (max-width: 768px) {
    .header .header__site-logo {
        gap: 10px;
    }
    .header .header__site-logo .btn {
        font-size: 0;
        padding-left: 2px;
        margin-left: 10px;
    }
    .header .header-top .header__site-name .header__site-name__name {
        font-size: 18px;
    }
    .header .header-top .header__site-name .header__site-name__place {
        font-size: 14px;
        margin-top: 5px;
        gap: 10px;
    }
    .header .header-top .header__site-name .header__site-name__place svg {
        width: 10px;
    }
}
@media (max-width: 480px) {
    .header .header__site-logo .btn {
        display: none;
    }
}
.footer {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 128px 0;
    font-size: 20px;
    color: var(--white-color);
}
.footer .footer-columns-wrapper {
    display: flex;
    gap: 50px;
}
.footer .footer-columns-wrapper .footer-column {
    flex: 1;
}
.footer .footer-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.footer .footer-column .footer-column-block {
    padding-right: 32px;
    position: relative;
    min-height: 154px;
}
.footer .footer-column .footer-column-block .footer-column-block__icon {
    position: absolute;
    right: 0;
    top: 3px;
}
.footer .footer-column .footer-column-block .footer-column-block__title {
    font-weight: 600;
    color: var(--green-color);
    margin-bottom: 12px;
}
.footer .footer-column .footer-column-block .footer-column-block__content {
    font-weight: 700;
}
.footer .footer-column .footer-column-block .footer-column-block__content .footer-address-branches {
    padding-inline-start: 20px;
}
.footer .footer-column .footer-column-block .footer-column-block__content .footer-address-branches li {
    display: list-item;
}
.footer .footer-column .footer-column-block .footer-column-block__content .big-content {
    font-size: 32px;
}
.footer .footer-column .footer-column-block .footer-column-block__content .mail-link, .footer .footer-column .footer-column-block .footer-column-block__content .site-link {
    text-decoration: underline;
}
.footer .footer-column .footer-column-block .footer-column-block__content .work-hours-work-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .footer-column .footer-column-block .footer-column-block__content .work-hours-work-line .time-range {
    direction: ltr;
}

@media (max-width: 1280px) {
    .footer {
        font-size: 16px;
        padding: 64px 0 128px;
    }
    .footer .footer-columns-wrapper {
        gap: 23px;
    }
    .footer .footer-column {
        min-height: 260px;
    }
    .footer .footer-column .footer-column-block .footer-column-block__content .big-content {
        font-size: 18px;
    }
}
@media (max-width: 768px) {
    .footer .footer-columns-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .footer .footer-column {
        min-height: auto;
        gap: 15px;
    }
    .footer .footer-column .footer-column-block {
        min-height: 70px;
    }
}
.section-banner {
    height: 80vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
}
.section-banner .banner-text {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: absolute;
    margin-left: auto;
    top: 50%;
    transform: translateY(-50%);
}
.section-banner .banner-text .welcome-text {
    width: fit-content;
    font-size: 54px;
    font-weight: 800;
    border-radius: 20px;
    position: relative;
    color: var(--text-dark-color);
    padding: 10px 52px 14px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.74);
}
.section-banner .banner-text .clinic-name {
    font-size: 54px;
    font-weight: 800;
    border-radius: 20px;
    background-color: var(--green-color);
    color: var(--white-color);
    line-height: 1.25;
    padding: 10px 52px 14px;
}

.section-sticky-form {
    position: fixed;
    bottom: 0px;
    z-index: 2;
    width: 100%;
    padding: 10px 0;
}
@media (max-width: 1440px) {
    .section-sticky-form .container {
        padding: 0 50px;
    }
}

.section-sticky-form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(38, 47, 90, 0.5);
    backdrop-filter: blur(17px);
}
.section-sticky-form .sticky-whatsapp {
    z-index: 3;
    position: absolute;
    left: 10%;
    width: fit-content;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 1600px) {
    .section-sticky-form .sticky-whatsapp {
        left: 50px;
    }
    
}
@media (max-width: 1440px) {
    .section-sticky-form .sticky-whatsapp {
        left: 20px;
    }
}

.section-sticky-form .form-sticky {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    gap: 20px;
    height: 52px;
}
.section-sticky-form .form-sticky > * {
    width: 25%;
}
.section-sticky-form .form-sticky .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}
.section-sticky-form .form-sticky .btn-go-to-clinic {
    font-size: 18px;
}
.section-sticky-form .form-sticky .sticky-whatsapp {
    width: fit-content;
    align-self: center;
    position: absolute;
    left: 135px;
}
.section-about {
    text-align: center;
    padding: 51px 0 45px;
}
.section-about .brand-img {
    margin-bottom: 27px;
}
.section-about .title {
    margin-bottom: 21px;
}

.section-treatment {
    padding: 110px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    position: relative;
}
.section-treatment .title {
    color: var(--white-color);
    margin-bottom: 50px;
    text-align: center;
}
.section-treatment .points-lists {
    display: flex;
    max-width: 823px;
    justify-content: space-between;
    margin: 0 auto;
}
.section-treatment .points-lists .points-list {
    display: flex;
    flex-direction: column;
}
.section-treatment .points-lists .points-list .point-treatment {
    display: list-item;
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 3.167;
}

.section-gallery {
    padding: 90px 0 22px;
}
.section-gallery .title {
    text-align: center;
    margin-bottom: 40px;
}
.section-gallery .swiper.gallery-swiper-thumb .swiper-slide {
    cursor: pointer;
    width: 260px;
    height: 141px;
    position: relative;
}
.section-gallery .swiper.gallery-swiper-thumb .swiper-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #ffffff;
    opacity: 0.6;
    transition: 0.2s all linear;
}
.section-gallery .swiper.gallery-swiper-thumb .swiper-slide::after {
    content: url("../img/minisite/icon-zoom.png");
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    transition: 0.2s all linear;
}
.section-gallery .swiper.gallery-swiper-thumb .swiper-slide.swiper-slide-thumb-active::after, .section-gallery .swiper.gallery-swiper-thumb .swiper-slide:hover::after {
    opacity: 0;
}
.section-gallery .swiper.gallery-swiper-thumb .swiper-slide.swiper-slide-thumb-active::before, .section-gallery .swiper.gallery-swiper-thumb .swiper-slide:hover::before {
    opacity: 0;
}
.section-gallery .swiper.gallery-swiper-main {
    margin-bottom: 13px;
}
.section-gallery .swiper.gallery-swiper-main .swiper-image {
    object-fit: contain;
}
.section-gallery .swiper.gallery-swiper-main .swiper-slide {
    height: 600px;
}
.section-gallery .swiper .swiper-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.section-reviews .button-next, .section-reviews .button-prev {
    color: var(--green-color);
    fill: currentColor;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9;
    height: 44px;
    width: auto;
}

.section-reviews {
    padding: 90px 0 60px;
}
.section-reviews .title {
    text-align: center;
    margin-bottom: 55px;
}
.section-reviews .review-card {
    width: 29%;
    padding: 48px 40px 60px 45px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 2px rgba(0, 0, 0, 0.08);
}
.section-reviews .review-card .reviewer-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 2px;
}
.section-reviews .review-card .rating {
    direction: ltr;
    margin-bottom: 19px;
    display: flex;
    justify-content: flex-end;
}
.section-reviews .review-card .rating-count {
    font-size: 18px;
    margin-right: 13px;
    color: var(--text-dark-gray-color);
}
.section-reviews .review-card .review-text {
    font-size: 18px;
    color: var(--text-dark-gray-color);
    line-height: 1.56;
    height: 120px;
}
.section-reviews .sub-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.review-page .sub-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.container .business-logo {
    max-width: 100%;
}

.leads-iframe-wrapper {
    height: 485px;
}

@media (max-width: 607px) {
    .leads-iframe-wrapper {
        height: 670px;
    }
}

@media (max-width: 1280px) {
    .section-banner .banner-text .welcome-text {
        font-size: 27px;
    }
    .section-banner .banner-text .clinic-name {
        font-size: 49px;
    }
    .section-sticky-form .form-sticky {
        gap: 15px;
    }
    .section-sticky-form .form-sticky .btn-go-to-clinic {
        font-size: 16px;
    }
    .section-about {
        padding: 25px 0 20px;
    }
    .section-about .brand-img {
        width: 120px;
        margin-bottom: 5px;
    }
    .section-about .title {
        margin-bottom: 16px;
    }
    .section-treatment {
        padding: 70px 0;
    }
    .section-treatment .title {
        margin-bottom: 28px;
    }
    .section-treatment .points-lists {
        padding: 0 25px;
    }
    .section-treatment .points-lists .points-list .point-treatment {
        font-size: 16px;
    }
    .section-gallery {
        padding: 48px 0 14px;
    }
    .section-gallery .title {
        margin-bottom: 22px;
    }
    .section-reviews .title {
        margin-bottom: 30px;
    }
    .section-reviews .review-card {
        padding: 27px 22px 33px 25px;
    }
    .section-reviews .review-card .review-text {
        font-size: 16px;
    }
}
@media (max-width: 880px) {
    .section-gallery .swiper.gallery-swiper-main .swiper-slide {
        height: 40vh;
    }
}
@media (max-width: 768px) {
    .section-banner .banner-text .welcome-text {
        font-size: 20px;
    }
    .section-banner .banner-text .clinic-name {
        font-size: 36px;
    }
    .section-sticky-form .form-sticky {
        flex-wrap: wrap;
    }
    .section-sticky-form .form-sticky > * {
        width: calc(50% - 10px);
    }
    .section-sticky-form .form-sticky .sticky-whatsapp {
        left: -45px;
    }
    .section-treatment .points-lists {
        flex-direction: column;
    }
    .section-treatment .points-lists .points-list .point-treatment {
        font-size: 14px;
    }
    .section-gallery .swiper.gallery-swiper-thumb .swiper-slide {
        width: 208px;
        height: 108px;
    }
}


/*Review page*/
.review-page.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .review-page .form-fields-wrapper {
        flex-direction: column;
    }
}
