* {
    font-family: "Kumbh Sans", sans-serif;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

:root {
    --white-color: #ffffff;
    --e-global-color-primary: #FDFDFD;
    --e-global-color-secondary: #FFFFFF;
    --e-global-color-text: #FFFFFF;
    --e-global-color-accent: #FFFFFF;
    --e-global-color-e3ca38d: #666666;
    --e-global-color-62bcfa4: #4E2D86;
    --e-global-color-3e15134: #272727;
    --e-global-color-950d44c: #30164B;
    --e-global-color-074f597: #2C1948;
    --e-global-color-c8878f9: #333333;
    --e-global-color-transparent-black: #FFFFFF33;
    --e-global-color-black: #000000;
    --breadcrumbs-gradient: rgba(0, 0, 0, .5);
    --file-label: #d26659;
    --services-container: #141414;
    --footer-background: #111112;
    --body-hr: #00000033;
    --header-mobile-background: #000000;
    --filters: #F7F7F7;
    --filters-first-gradient: #4E2D86;
    --filters-second-gradient: #542F87;
    --even-background: #6666661A;
    --bottom-layer: rgba(0, 0, 0, 0.4);
    --halfgrey: rgba(255, 255, 255, 0.5);
    --wvm-first-back-color: #30164B;
    --wvm-second-back-color: #542F87;
    --b-overlay: #30164B80;
    --before-after-first-gradient-color: #000000;
    --before-after-second-gradient-color: #1C1526;
    --page-sidebar-1st-gradient: #3A1B57;
    --page-sidebar-2nd-gradient: #1B1B1B;
}

#preloader {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
}

.blinking-image {
    height: 100px;
    width: auto;
    animation: blink 5s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

a,
p,
li,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

body {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    padding: 0;
    margin: 0;
    width: 100%;
}

.my-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 30px;
    column-gap: 15px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

li {
    position: relative;
}

.right-menu>li:hover>.dropdown,
.left-menu>li:hover>.dropdown {
    visibility: visible;
    opacity: 1;
}

.dropdown {
    background-color: var(--e-global-color-62bcfa4);
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 40px;
    width: max-content;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: visibility 0.2s, opacity 0.2s linear;
    padding-left: 0;
}

.menu-link {
    padding: 10px;
    font-size: 16px;
    font-weight: 500;
    color: var(--e-global-color-text);
    display: flex;
    flex-direction: row;
    align-items: center;
    width: max-content;
}

.menu-link>i {
    font-size: 10px;
    margin-left: 5px;
}

.d-menu-link {
    font-weight: 500;
    transition: .4s;
    font-size: 14px;
    color: var(--e-global-color-text);
    transition: .5s;
    padding: 10px 20px;
    display: flex;
    width: 100%;
}

.nav-container {
    width: 45%;
}

.left-menu,
.right-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 15px;
    list-style-type: none;
    width: max-content;
}

.left-menu {
    margin-left: auto;
}

.right-menu {
    margin-right: auto;
}

.dropdown {
    width: max-content;
}

.dropdown>li {
    width: 100%;
}

.d-menu-link:hover {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-62bcfa4);
}

.header-logo-container {
    width: 7%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: 10px;
    margin-right: 10px;
}

.main-logo {
    height: 42px;
    margin-left: auto;
    margin-right: auto;
}

.main-banner {
    max-height: 95vh;
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.b-image {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.b-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: grayscale(100%);
    z-index: 2;
    pointer-events: none;
}

.b-overlay {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    background: var(--b-overlay);
    z-index: 3;
}

.d-flex {
    display: flex;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.my-auto {
    margin-top: auto;
    margin-bottom: auto;
}

.my-0 {
    margin-top: 0;
    margin-bottom: 0;
}

.mb-20px {
    margin-bottom: 20px;
}

.mb-16px {
    margin-bottom: 16px;
}

.mb-10px {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-5px {
    margin-bottom: 5px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.before-banner-title {
    font-size: 24px;
    font-weight: 400;
    padding: 15px;
    color: var(--e-global-color-text);
}

.line {
    flex-grow: 1;
    background-color: var(--e-global-color-primary);
    height: 1px;
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-animation {
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fade-animation-2s {
    animation: fadeInAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes zoomAnimation {
    0% {
        transform: scale(.1);
    }

    100% {
        transform: scale(1);
    }
}

.fade-zoom-2s {
    animation: zoomAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeUpAnimation {
    0% {
        opacity: 0;
        transform: translateY(20px);
        /* Start slightly below and then move up */
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        /* End at original position */
    }
}



.fadeUp-animation {
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fadeUp-animation-2s {
    animation: fadeUpAnimation ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.pre-title-container {
    width: 100%;
    max-width: 650px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.banner-title {
    color: var(--e-global-color-primary);
    font-size: clamp(5rem, 3.2821rem + 2.6816vw, 6.5rem);
    font-weight: 600;
    letter-spacing: 15px;
    margin-top: 0;
    overflow-wrap: anywhere;
}


.w-max-content {
    width: max-content;
    max-width: 100%;
}

.s-button {
    padding: 20px 30px;
    border: 0;
    outline: 0;
    font-size: 15px;
    font-weight: 500;
    background: url(../media/button.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    cursor: pointer;
    color: var(--e-global-color-primary);
    transition: .2s;
}

.s-button:hover {
    background: none;
    background-color: var(--e-global-color-3e15134);

}

.header-ca-button {
    padding: 12px 20px;
    min-width: max-content;
    text-wrap: nowrap;
}

.header-phone-button {
    font-weight: 700;
    color: var(--e-global-color-text);
}

.header-phone-button>i {
    margin-right: 8px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    z-index: 90;
}



.banner-content>* {
    z-index: 91;
}

.services {
    width: 100%;
    padding: 80px 40px 100px 40px;
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    min-height: 1000px;
}

.s-flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 1.5%;
    max-width: 1280px;
    margin-left: auto;
    justify-content: center;
}

.s-flex-item {
    width: 32.3%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
}

.s-flex-item>img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.s-flex-item:hover>img {
    opacity: 1;
}

.s-flex-item>h4 {
    margin: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: 60px;
    font-size: 18px;
    color: var(--e-global-color-e3ca38d);
    text-transform: uppercase;
    width: max-content;
}

.container-1340 {
    width: 100%;
    max-width: 1340px;
}

.beforeafter {
    background-color: transparent;
    background-image: linear-gradient(180deg, var(--before-after-first-gradient-color) 50%, var(--before-after-second-gradient-color) 50%);
}

.mobile-only {
    display: none;
}

.content-absolute-block {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.position-relative {
    position: relative;
}

.c-a-b {
    row-gap: 20px;
}

.c-a-b>h3 {
    font-size: 37px;
    letter-spacing: 10px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    color: var(--e-global-color-primary);
}

.c-a-b>h2 {
    font-weight: 600;
    line-height: 1.3em;
    letter-spacing: 10px;
    text-shadow: 0px 0px 58px rgba(0, 0, 0, 0.3);
    color: var(--e-global-color-primary);
    font-size: clamp(2.8125rem, 2.0251rem + 1.2291vw, 3.5rem);
    text-align: center;
}

.ba-image-container {
    position: relative;
}

.ba-image {
    height: 88px;

}

.c-a-b>* {
    margin-top: 0;
    margin-bottom: 0;
}

.c-a-b>h2>span {
    font-weight: 300;
}

.learn-more {
    background-color: var(--e-global-color-62bcfa4);
    color: var(--e-global-color-accent);
    padding: 20px 35px;
    font-weight: 500;
    transition: .5s;
    width: max-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    cursor: pointer;
    border: 0;
}

.learn-more>i {
    margin-left: 10px;
}

.learn-more:hover {
    color: var(--e-global-color-62bcfa4);
    background-color: var(--e-global-color-accent);
}

.about-section {
    width: 100%;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-block-start: 20%;
    padding-block-end: 10%;
    position: relative;
}

.about-section .mobile-background-layer {
    display: none;
}

.about-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 804px;
    row-gap: 20px;
    z-index: 2;
    position: relative;
}

.about-content-right {
    margin-left: auto;
    margin-right: 230px;
}

.about-content-left {
    margin-right: auto;
    margin-left: 230px;
}

.about-description>p {
    color: var(--e-global-color-text);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: .9rem;
    line-height: 1.7em;
}

.about-description>ul>li {
    color: var(--e-global-color-text);
    font-weight: 400;
    margin-top: 0;
    margin-bottom: .9rem;
    line-height: 1.7em;
}

.about-pre-title {
    font-family: 'Lato', sans-serif;
    font-size: 27px;
    font-weight: 600;
    line-height: 1.4em;
    color: var(--e-global-color-primary);
}

.about-title {
    font-size: clamp(2.8125rem, 2.0251rem + 1.2291vw, 3.5rem);
    line-height: 1.3em;
    letter-spacing: 10px;
    font-weight: 400;
    color: var(--e-global-color-primary);
}

.partners {
    width: 100%;
    padding: 40px;
}

.partner-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-slide>img {
    height: 111px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.cert-slide>a>img {
    height: auto;
    width: 100%;
}

.swiper-partners>.swiper-pagination {
    position: relative;
    margin-top: 20px;
    top: 0;
    bottom: 0;
}

.swiper-pagination-bullet {
    height: 6px;
    width: 6px;
}

.swiper-pagination-bullet-active {
    background: var(--e-global-color-c8878f9);
}

.social-section {
    width: 100%;
    padding-top: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.s-buttons {
    display: flex;
    flex-direction: row;
    column-gap: 140px;
    margin-bottom: 350px;
}

.cta {
    height: 425px;
    width: auto;
}

.cta-container {
    gap: 60px;
}

.cta-container>button {
    opacity: 0;
    transition: .5s;
}

.cta-container:hover>button {
    opacity: 1;
}

.s-links {
    width: 100%;
    height: 541px;
    background-position: top center;
    background-size: cover;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 32px;
    padding-top: 160px;
}

.s-links>img {}

.follow-title {
    font-weight: 600;
    letter-spacing: 10px;
    line-height: 1.3em;
    color: var(--e-global-color-primary);
    font-size: clamp(2.8125rem, 2.0251rem + 1.2291vw, 3.5rem);
    margin-top: 0;
    margin-bottom: 20px;
}

.follow-title>span {
    font-weight: 300;
}

.instagram-id {
    font-size: 25px;
    font-weight: 400;
    color: var(--e-global-color-text);
    align-self: end;
}

.social-icons {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
}

.social-icons>a {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    background-color: var(--e-global-color-text);
    transition: .5s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
}

.social-icons>a>i {
    color: var(--e-global-color-074f597);

}

.social-icons>a:hover {
    transform: scale(1.1);
    opacity: .9;
}

.ar-r>img {
    height: 138px;
}

.footer-big-link {
    display: flex;
    flex-direction: row;
    column-gap: 15px;
    align-items: center;
}

.f-i-container {
    background-color: var(--e-global-color-074f597);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.footer-big-link>.f-i-container>i {
    margin: 20px;
    font-size: 40px;
    width: 40px;
    color: var(--e-global-color-text);
    display: flex;
    justify-content: center;
}


.f-c-container>* {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
}

.f-c-container>p {
    margin-bottom: 10px;
    ;
}

.f-c-container>p>b,
.f-c-container>p>strong {
    font-size: 30px;
    font-weight: 700;
}

footer {
    background-color: var(--footer-background);
    width: 100%;
    padding: 80px 40px 80px 40px;
    gap: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: auto;
}

.footer-logo {
    width: max-content;
    max-width: 150px;
}

.qa-logo {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
    background-color: var(--footer-background);
}

.qa-logo>img {
    max-width: 200px;
}

.footer-top-part {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.social-footer-links {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    justify-content: center;
}

.social-footer-links>a {
    transition: .5s;
}

.social-footer-links>a>i {
    color: var(--e-global-color-text);
    font-size: 18px;
}

.social-footer-links>a:hover {
    transform: scale(1.1);
}

.footer-text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    color: var(--e-global-color-text);
    text-align: center;
}

.section-reviews {
    min-height: 930px;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    padding-left: 40px;
    padding-right: 40px;
}

.reviews-title>h2 {
    font-weight: 600;
    font-size: clamp(2.8125rem, 2.0251rem + 1.2291vw, 3.5rem);
    line-height: 1.1em;
    letter-spacing: 10px;
    color: var(--e-global-color-primary);
}

.reviews-title>h2>span {
    letter-spacing: 10px;
    color: var(--e-global-color-primary);
    font-size: 34px;
    font-weight: 300;
}

.reviews-title>.total {
    font-size: 17px;
    line-height: 1.7em;
    color: var(--e-global-color-transparent-black);
}

.ms-auto {
    margin-left: auto;
}

.reviews-main-block {
    max-width: 680px;
    width: 100%;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
}

.circle {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    border: 1px solid var(--e-global-color-primary);
    border-radius: 50%;
    max-width: 195px;
    max-height: 195px;
    min-width: 195px;
    min-height: 195px;
    align-items: center;
}

.circle>p {
    font-size: 46px;
    font-weight: 700;
    text-align: center;
    color: var(--e-global-color-text);
}

.circle>span {

    font-size: 12px;
    opacity: .6;
    font-weight: 600;
    text-align: center;
    color: var(--e-global-color-text);
}

.circle>img {
    width: 90px;
}

.cg-20px {
    column-gap: 20px;
}

.cg-30px {
    column-gap: 30px;
}

.mt-20px {
    margin-top: 20px;
}

.mb-30px {
    margin-bottom: 30px;
}

.review-body {
    color: var(--e-global-color-accent);
    font-size: 17px;
    line-height: 1.7em;
}

.review-bottom {
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    color: var(--e-global-color-transparent-black);
    font-family: 'Cormorant Garamond', sans-serif;
}

.review-slide {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.review-prev,
.review-next {
    position: relative;
    background-color: var(--e-global-color-c8878f9);
    color: var(--e-global-color-text);
    font-size: 14px;
    height: 41px;
    width: 41px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.slider-nav-buttons {
    display: flex;
    flex-direction: row;
    column-gap: 20px;
    margin-top: 32px;
    justify-content: center;
}

.contact-us {
    padding-block-start: 330px;
    padding-block-end: 40px;
    width: 100%;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.contact-us>* {
    width: max-content;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    font-size: 50px;
    text-align: center;
    background-color: var(--white-color);
    color: var(--e-global-color-black);
    border-radius: 50%;
}

.contact-icon>i {
    margin: 0;
    line-height: 1;
}

.contact-heading {
    color: var(--e-global-color-primary);
    font-weight: 600;
    font-size: clamp(2.8125rem, 2.0251rem + 1.2291vw, 3.5rem);
    line-height: 1.3em;
    letter-spacing: 10px;
    text-align: center;
}

.contact-heading>span {
    font-weight: 300;

}

.contact-form-block {
    background-color: var(--e-global-color-primary);
    width: 100%;
    max-width: 1300px !important;
    gap: 60px;
    display: flex;
    flex-direction: row;
    padding: 50px;
    border-radius: 20px;
}

.contact-form-block>form {
    display: flex;
    flex-direction: column;
    max-width: 50%;
}

.forms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.forms>div {
    display: flex;
    flex-direction: column;

}

.forms>div>* {
    width: 100%;
}

.separator {
    width: 60px;
    background-color: var(--e-global-color-62bcfa4);
    height: 4px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.h-separator {
    height: 100%;
    background-color: var(--e-global-color-62bcfa4);
    width: 2px;
}

.rg-10px {
    row-gap: 10px;
}

.c-line {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 4px;
    align-items: center;
}

.c-line>i {

    max-width: 20px;
    min-width: 20px;
}

.c-line>a {
    color: var(--e-global-color-c8878f9);
    word-break: break-all;
    min-width: 0;
}

.photo-container {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    width: 120px;
    border-radius: 50%;
}

.dr-name {
    font-size: 24px;
}

label {
    font-size: 13px;
    font-weight: normal;
    line-height: 1.3em;
    padding-bottom: 10px;
}

input,
textarea,
select {
    padding: .75em;
    border: 2px solid var(--e-global-color-e3ca38d);
    font-size: 13px;
    line-height: 22px;
    background-color: var(--e-global-color-primary);
    width: 100%;
    flex: 1;
}

.textarea {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

ul {
    padding-left: 1rem;
}

.forms-comment {
    margin-top: 20px;
    margin-bottom: 20px;
}

.forms-comment>* {
    font-size: 13px;
}

.forms-comment>p {
    margin-bottom: 1em;
}

.accept {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.accept>input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.accept-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 2px solid var(--e-global-color-62bcfa4);
    border-radius: 5px;
    background-color: var(--e-global-color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.accept>input[type="checkbox"]:checked+.accept-mark {
    background-color: var(--e-global-color-62bcfa4);
    border-color: var(--e-global-color-62bcfa4);
}

.accept>input[type="checkbox"]:checked+.accept-mark::after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid var(--e-global-color-secondary);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.accept>input[type="checkbox"]:focus-visible+.accept-mark {
    box-shadow: 0 0 0 3px rgba(78, 45, 134, 0.25);
}

.accept-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--e-global-color-c8878f9);
    padding: 0;
    font-weight: 400;
}

.map-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 50%;
}

#image-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

#image-container>.image-block>img {
    height: 70px;
}

#image-container>.image-block {
    position: relative;
}

#image-container>.image-block>button {
    position: absolute;
    top: 5px;
    right: 5px;
    color: var(--e-global-color-accent);
    background: transparent;
    font-size: 14px;
    border: none;
    background-color: red;
    border-radius: 50%;
}

.upload-file-input {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.file-input {
    padding: .75em;
    border: 2px solid var(--e-global-color-e3ca38d);
    font-size: 13px;
    line-height: 22px;
    background-color: var(--e-global-color-primary);
    width: 100%;

}

#file-input {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

input[type=file] {
    border: none;

}

.file-label {
    text-align: center;
    color: var(--file-label);
}

.scroll-header {
    background-color: var(--footer-background);
}

.scroll-header>div>.menu {
    padding-top: 0;
    padding-bottom: 0;
}

#Header {
    transition: .5s;
}

.iframe-container {
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.iframe-container iframe {
    display: block;
    width: 100%;
    max-width: 100%;
}

.hands-image {
    position: absolute;
    bottom: -110px;
    right: 0;
    height: auto;
    max-height: 844px;
    max-width: min(100%, 400px);
    object-fit: contain;
}

.align-items-end {
    align-items: end;
}

.lang-menu {
    position: fixed;
    bottom: 32px;
    left: 20px;
    background-color: var(--e-global-color-secondary);
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
    z-index: 10;
    border-radius: 15px;
}

.qa-form-button {
    position: fixed;
    bottom: 32px;
    right: 20px;
    margin-left: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
    background-color: var(--e-global-color-secondary);
    z-index: 92;
    border: 5px solid var(--e-global-color-secondary);
    border-radius: 50%;
}

.qa-form {
    /* display: none; */
    position: fixed;
    bottom: 32px;
    right: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
    background-color: var(--e-global-color-primary);
    border-radius: 15px;
    overflow: hidden;
    z-index: 92;
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 0 0 120px 0;
}

.qa-form-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
}

.qa-input {
    width: 100%;
    min-height: 50px;
    border-radius: 10px;
    padding: 15px 15px;
    font-size: 14px;
    border: 1px solid #d3d3d3;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}

.qa-input[type="text"],
.qa-input[type="email"],
.qa-input[type="tel"] {
    max-height: 50px;
}

select.qa-input {
    max-height: 50px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 14px;
    padding-right: 45px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.2;
}

.qa-s-button {
    background-color: var(--e-global-color-62bcfa4);
    border-radius: 10px;
    border: none;
    width: 100%;
    min-height: 3rem;
    font-size: 14px;
    cursor: pointer;
    color: var(--e-global-color-text);
}

.gender-block {
    width: 50%;
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
}

.gender-block>p {
    font-size: 18px;
}

.gender-block>input {
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.chain-arrows {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 16px;
}

.chain-arrows>button {
    border: none;
    background-color: transparent;
    font-size: 32px;
    cursor: pointer;
}

.chain-arrows>button:disabled {
    opacity: 0;
}

.chain-arrows>button:last-child {
    margin-left: auto;
}

.chain-arrows>button>i {
    color: var(--e-global-color-074f597);
}

.gender-block>img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    opacity: .3;
}

.gender-block>input:checked~img {
    opacity: 1;
}

.chain-element {
    margin-left: 8px;
    margin-right: 8px;
    display: none;
    flex-direction: column;
    flex: 1;
    min-height: 400px;
}

.chain-element>.d-flex {
    flex: 1;
}

.active-ce {
    display: flex;
}

.show-qa-form {
    display: flex;
}

.a-variant {
    position: relative;
    width: 100%;
    display: flex;
    background-color: transparent;
    border: 1px solid var(--e-global-color-62bcfa4);
    border-radius: 16px;
}

.a-variant>input {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

.a-variant>div {
    padding: 16px;
    width: 100%;
    font-size: 20px;
}

.a-variant>input:checked~div {
    font-weight: 700;
}

.back-container {
    background-color: var(--e-global-color-62bcfa4);
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.back-container>p {
    color: var(--e-global-color-text);
}

.qa-form-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
    padding: 20px;
}

.window {
    max-height: 50vh;
    min-width: min(400px, calc(100vw - 40px));
    max-width: min(400px, calc(100vw - 40px));
    overflow-y: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.back-button {
    background-color: var(--e-global-color-secondary);
    color: var(--e-global-color-62bcfa4);
    font-size: 16px;
    border-radius: 50%;
    cursor: pointer;
}

.qa-form-menu>a,
.qa-form-menu>button {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    background-color: var(--e-global-color-secondary);
    gap: 10px;
    border-radius: 5px;
    font-size: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
    border: none;
    cursor: pointer;
}

.qa-form>i {
    color: var(--e-global-color-074f597);

}

.call-qa-form {
    border: none;
    border-radius: 50%;
    background-color: var(--e-global-color-62bcfa4);
    cursor: pointer;
}

.call-qa-form>i {
    color: var(--e-global-color-text);
    font-size: 48px;
    margin: 16px;
}

.window {
    display: none;
}

.qa-input-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    justify-content: center;
    position: relative;
}

.qa-input-box>p {
    font-size: 20px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.a-category {}

.active-window {
    display: flex;
}

.btn-lang {
    display: flex;
    flex-direction: row;
    padding: 10px 16px;
    gap: 10px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--header-mobile-background);
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
}

.active-language {}

.btn-lang>img {
    height: 20px;
}

.lang-list {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: .5s;
}

.show-lang-list {
    max-height: 300px;
}

.opened-lang-list>i {
    transform: rotate(180deg);
}

.breadcrumbs-area {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 200px;
    padding-bottom: 170px;
    justify-content: center;
    align-items: center;
    position: relative;
    background-position: top center;
    background-size: cover;
    background-attachment: fixed;
}

.breadcrumbs-area>h1 {
    text-align: center;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.2em;
    font-size: clamp(2.8125rem, 0.3073rem + 3.9106vw, 5rem);
    color: var(--e-global-color-primary);
    z-index: 2;

}

.breadcrumbs {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 2;

}

.breadcrumbs>* {
    font-size: 16px;
    line-height: normal;
    color: var(--e-global-color-primary);
    text-decoration: none;
}

.breadcrumb-gradient {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--breadcrumbs-gradient);
    z-index: 1;
}

.services-container {
    width: 100%;
    background-color: var(--services-container);
}

.services-fg {
    display: flex;
    flex-direction: column;
}

.service-row {
    display: flex;
    transition: .5s;
}

.service-row:hover {
    background-color: var(--e-global-color-950d44c);
}

.service-row:nth-child(odd) {
    flex-direction: row-reverse;
}

.service-row:nth-child(even) {
    flex-direction: row;
}

.service-cover {
    width: 50%;
    height: 620px;
}

.service-cover>img {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
}

.details {
    flex: 1;
    transition: .5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}



.my-container-fhd {
    width: 100%;
    max-width: 1920px;
    margin: auto;
}

.details>h3 {
    color: var(--e-global-color-primary);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3em;
}

.details>p {
    color: var(--e-global-color-text);
    max-width: 75%;
    text-align: center;
    line-height: 24px;
}

.contact-us-page {
    padding-block-start: 50px;
    padding-block-end: 50px;
}

.page-section {
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1360px;
    display: flex;
    flex-direction: row;
    gap: 60px;
}

.page-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.page-sidebar {
    background-image: linear-gradient(180deg, var(--page-sidebar-1st-gradient) 0%, var(--page-sidebar-2nd-gradient) 100%);
    width: 100%;
    max-width: 33.3333%;
    padding: 40px;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: max-content;
}

.search-form {
    background-color: transparent;
    border-radius: 3px;
    overflow: hidden;
    border: 1px solid var(--e-global-color-secondary);
    display: flex;
    flex-direction: row;
}

.search-form>input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--e-global-color-text);
}

.search-form>button {
    background: transparent;
    outline: none;
    border: none;
    height: 100%;
    padding: 16px;
    color: var(--e-global-color-text);
}

.search-form>button>i {
    color: var(--e-global-color-text);
}

.links-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.n-title {
    font-size: 24px;
    text-transform: uppercase;
    color: var(--e-global-color-primary);
    font-weight: 400;
}

.links-group>ul {
    list-style: none;
    padding: 0;
}

.links-group>ul>li {
    padding: 13px 0;
    border-bottom: 1px solid rgba(153, 153, 153, 0.40);
}

.links-group>ul>li>a {
    color: var(--e-global-color-text);
    font-weight: 600;
    line-height: 21px;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
}

.links-group>ul>li>a:hover {
    opacity: .5;
}

.links-group>ul>li>a>img {
    width: 48px;
    margin-right: 15px;
}

.angle-container {
    border-radius: 50%;
    border: 1px solid var(--e-global-color-secondary);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-ul>li>a:hover {
    color: var(--e-global-color-62bcfa4);
    opacity: 1 !important;
}

.page-body>p {
    color: var(--e-global-color-c8878f9);
    line-height: 2;
}



.page-body>p>img,
.page-body>img {
    width: 100%;
}

.page-body img,
.page-body table,
.page-body pre,
.page-body video,
.page-body iframe,
.other-information img,
.other-information table,
.other-information pre {
    max-width: 100%;
}

.page-body table,
.other-information table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.page-body td,
.page-body th,
.other-information td,
.other-information th {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.page-body pre,
.other-information pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
}

.page-body>h3,
.page-body>h2,
.page-body>h1,
.page-body>h4,
.page-body>h5,
.page-body>h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 800;
    line-height: 1.3em;
    color: var(--e-global-color-950d44c);
    font-family: 'Lato', sans-serif;
    font-size: 28px;
}

.page-body-title {

    font-size: 48px !important;
}

.page-body>h3>span,
.page-body>h2>span,
.page-body>h1>span,
.page-body>h4>span,
.page-body>h5>span,
.page-body>h6>span {
    font-weight: 400;
}

.page-body>hr {
    color: var(--body-hr);
    width: 100%;
}

.page-body>iframe,
.page-body>p>iframe {
    width: 100%;
}

.price-container {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 20px rgba(180, 184, 193, 0.17);
    border-radius: 16px;
    overflow: hidden;
}

.price-p {
    font-size: 20px;
}

.price-container>button {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    align-items: center;
    padding-right: 16px;
    padding-left: 16px;
    color: var(--e-global-color-text);
    background-color: var(--e-global-color-62bcfa4);
}

.price-table {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: 1s;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

table.price-table {
    table-layout: fixed;
    width: 100%;
}

.price-container .price-table.show-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.show-table {
    max-height: 9999px;
}

.active-table-button>i {
    transform: rotate(180deg);
}

td {
    padding: 8px;
    border: 1px solid #dddddd;
    font-size: 18px;
    font-weight: 500;
    word-break: break-word;
    overflow-wrap: anywhere;
}

thead>tr>td {
    color: var(--e-global-color-074f597)
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-link {
    position: relative;
    display: flex;
    flex-direction: column;
}

.video-preview {
    height: 262px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.video-title {
    width: 100%;
    padding: 25px;
    background-color: var(--e-global-color-950d44c);
    text-align: center;
    color: var(--e-global-color-primary);
    font-weight: 600;
}

.video-link:hover>.video-title {
    background-color: var(--e-global-color-62bcfa4);
}

.beforeafter-archive {
    display: flex;
    flex-direction: row;
    padding: 10rem 5rem;
    gap: 24px;
}

.filters {
    padding: 55px 30px;
    background-color: var(--filters);
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
    max-width: 30%;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.sf-categories {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.sf-categories>img {
    width: 95px;
    height: min-content;
    margin: auto;
}

.sf-button {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-button>button {
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    border: none;
    outline: none;
    padding: 10px;
    line-height: 26px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    justify-content: space-between;
    cursor: pointer;
    white-space: normal;
    text-align: left;
    gap: 8px;
}

.sf-divider {
    margin-top: 10px;
    margin-bottom: 10px;
    height: 1px;
    width: 100%;
    background-color: var(--e-global-color-074f597);
}

.sf-button-categories {
    display: flex;
    flex-direction: column;
}

.filters>.divider {
    margin-top: 30px;
    margin-bottom: 30px;
    height: 2px;
    width: 100%;
    background-color: var(--e-global-color-074f597);
}

.filters-title {
    color: var(--e-global-color-62bcfa4);
    font-size: 27px;
    font-weight: 600;
    text-transform: uppercase;
}

.sf-button-categories {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: .5s;
    gap: 10px;
    align-items: start;
    width: 100%;
}

.sf-button-categories>div {
    padding: 5px 20px;
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
}

.sf-button-categories>div>input {
    opacity: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.sf-button-categories>div>label {
    color: var(--e-global-color-62bcfa4);
    font-size: 20px;
    font-weight: 400;
}

.sf-button-categories>div>input:checked~label {
    font-weight: 700;
}

.show-sf {
    max-height: 9999px;
}

.open-additional-filters {
    width: 100%;
    border: none;
    outline: none;
    background-image: linear-gradient(180deg, var(--filters-first-gradient) 0%, var(--filters-second-gradient) 100%);
    background-color: transparent;
    color: var(--e-global-color-text);
    padding: 20px;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-top: 16px;
}

.additional-filters {
    display: flex;
    flex-direction: column;
    max-height: 0;
    gap: 20px;
    overflow: hidden;
}

.show-filters {
    max-height: 9999px !important;
    padding: 20px;
}

.add-filters-group {
    display: flex;
    flex-direction: column;
}

.add-filters-group>h3 {
    color: var(--e-global-color-62bcfa4);
    font-size: 23px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.checkbox-row {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    margin-bottom: 16px;
}

.checkbox-row>label {
    margin: 0;
    padding: 0;
    font-size: 22px;
    font-weight: 500;
    color: var(--e-global-color-62bcfa4);
    word-break: break-word;
    min-width: 0;
}

.checkbox-row>input {
    width: max-content;
    transform: scale(2);
}

.filters-active>i {
    transform: rotate(180deg);
}

.category-page-title {
    color: var(--e-global-color-62bcfa4);
    font-size: 32px;
    font-weight: 600;
    word-spacing: 0px;
}

.works {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 32px;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    overflow: hidden;
}



.work-grid-item {
    box-shadow: 7px 10px 4px -2px rgba(195.5, 189.97500000000002, 189.97500000000002, 0.32);
}

.works-grid>.work-grid-item:nth-child(2)~.work-grid-item {
    display: none;
}

.work-grid-item>.work-img {
    background-color: var(--e-global-color-3e15134);
    border-radius: 10px 10px 0 0;
    border-width: 8px;
    border-color: var(--e-global-color-3e15134);
    width: 100%;
    height: 651px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.work-grid-item>.work-img>img {
    max-width: 100%;
}

.show-all-works-grid-item>.work-grid-item:nth-child(2)~.work-grid-item {
    display: flex;
    flex-direction: column;
}

.work-slider-container {
    background-color: var(--e-global-color-3e15134);
    border-radius: 10px 10px 0 0;
    border-width: 8px;
    border-color: var(--e-global-color-3e15134);
    width: 100%;

    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.work-details {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.work-details>h3 {
    color: var(--e-global-color-62bcfa4);
    font-size: 24px;
    font-weight: 600;
    line-height: 34px;
    margin-bottom: 32px;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    margin-bottom: 32px;
}

.detail-grid>div:nth-child(even) {
    text-align: end;
}

.detail-grid>div:nth-child(odd) {
    text-align: start;
}

.detail-grid>div>p {
    font-size: 18px;
}

.work-view-more {
    font-weight: 500;
    color: var(--e-global-color-primary);
    font-size: 15px;
    padding: 17px 30px;
    background-image: radial-gradient(at center center, var(--wvm-first-back-color) 0%, var(--wvm-second-back-color) 100%);
    text-transform: uppercase;
    width: max-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    align-self: center;
    cursor: pointer;
}

.single-work-section {
    display: flex;
    flex-direction: column;
    margin-top: 8rem;
    margin-bottom: 8rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    max-width: 1360px;
}

.main-details {
    display: flex;
    flex-direction: column;
}

.main-details>* {
    text-align: center;
}

.main-details>h3 {
    text-align: center;
    color: var(--e-global-color-62bcfa4);
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    margin-bottom: 60px;
}

.work-prev,
.work-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--e-global-color-text);
    font-size: 24px;
    z-index: 100;
    cursor: pointer;
}

.work-prev {
    left: 2%;
}

.work-next {
    right: 2%;
}

.single-work-details {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-color: var(--e-global-color-primary);
    border: 10px solid var(--e-global-color-c8878f9);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.26);
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.detail-row {
    display: flex;
    flex-direction: row;
}

.detail-row>a {
    width: 50%;
    text-align: center;
    font-size: 24px;
    padding: 10px;
    word-break: break-word;
    overflow-wrap: anywhere;
    min-width: 0;
}

.detail-row:nth-last-child(even) {
    background-color: var(--even-background);
}

.other-information {
    display: flex;
    flex-direction: column;
    text-align: start;
}

.other-information>h4 {
    font-size: 27px;
    font-weight: 600;
    color: var(--e-global-color-62bcfa4);
    margin-bottom: 16px;
}

.other-information>div {
    display: flex;
    flex-direction: row;
    margin-bottom: 32px;
}

.other-information>div>p {
    font-size: 18px;
    line-height: 2;
}

.about-main-section {
    width: 100%;
    display: flex;
    flex-direction: row;
}

.about-main-section>div {
    width: 50%;
}

.left-about {
    background-position: center;
    background-size: cover;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.right-about {
    height: 812px;
    overflow: hidden;
    background-position: center 20%;
    background-size: cover;
}

.about-details {
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-top: auto;
    margin-bottom: auto;
    max-width: 500px;
}

.about-details>h1 {
    font-weight: 400;
    line-height: 1.2em;
    margin-bottom: 15px;
    color: var(--e-global-color-e3ca38d);
    position: relative;
    font-size: 54px;
}

.about-separator {
    width: 130px;
    height: 7px;
    background-color: var(--e-global-color-62bcfa4);
    margin-bottom: 15px;
}

.about-details>p,
.middle-about-block>p,
.middle-details>p {
    font-size: 16px;
    line-height: 2em;
    max-width: 500px;
}

.middle-about-block {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 740px;
    margin-top: 100px;
    margin-bottom: 100px;
    padding-bottom: 50px;
    padding-right: 50px;
    position: relative;
    height: max-content;
    background-position: right bottom, right 15% center;
    background-repeat: no-repeat, no-repeat;
    background-size: 100px, 45% 85%;
}




.middle-about-block>p {
    padding-top: 100px;
    padding-bottom: 100px;
    z-index: 1;
}

.middle-about-block-2 {
    display: flex;
    flex-direction: row;
    max-width: 1560px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
}

.middle-img-container {
    height: 684px;
    width: 50%;
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
}

.middle-detail-container {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.middle-details {
    display: flex;
    flex-direction: column;
    padding: 15px 0 15px 80px;
    margin-top: auto;
    margin-bottom: auto;
    gap: 20px;
    max-width: 80%;
}

.bottom-about-block {
    height: 1165px;
    width: 100%;
    background-position: center;
    background-size: cover;
    display: flex;
    position: relative;
}

.bottom-details {
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 55%;
    gap: 15px;
    display: flex;
    flex-direction: column;
    max-width: 420px;
    z-index: 2;
}

.bottom-details>* {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .8);
}

.bottom-details>h2 {
    font-size: 52px;
    color: var(--e-global-color-text);
    font-weight: 300;
    line-height: 1.2em;
    letter-spacing: 1.4px;
}

.bottom-separator {
    height: 7px;
    width: 130px;
    background-color: var(--e-global-color-text);
}

.bottom-details>p {
    color: var(--e-global-color-text);
    font-weight: 300;
    line-height: 2em;
    letter-spacing: 1.07px;
    font-size: 15px;
}

form {
    position: relative;
}

.contact-form-response {
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: .5s;
    background-color: var(--e-global-color-secondary);
    text-align: center;
}

.show-cfr {
    width: 100%;
    height: 100%;
}

.d-none {
    display: none !important;
}

.bottom-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bottom-layer);
    z-index: 1;
}

.certs-section {
    display: flex;
    flex-direction: column;
    padding: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.certs-section>h4 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2em;
    margin-bottom: 24px;
    color: var(--e-global-color-e3ca38d);
}

.certs {
    max-width: 100%;
}

.qa-file-input {
    position: relative;
    background-color: var(--e-global-color-62bcfa4);
    padding: 10px;
    border-radius: 16px;
    font-size: 16px;
    color: var(--e-global-color-accent);
    width: 100%;
    padding: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.qa-file-input>input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
}

.short-desc {
    font-size: .75rem;
}

.answer-container {
    padding: 10px;
}

.answer-container>p {
    font-size: 16px;
    line-height: 32px;
}

.qa-question {
    font-size: 19px !important;
}

.view-results {
    background-color: var(--e-global-color-62bcfa4);
    border-radius: 16px;
    padding: 20px;
    font-size: 20px;
    line-height: 30px;
    color: var(--e-global-color-text);
    text-decoration: none;
}

@media screen and (min-width: 1390px) {
    .menu-toggler {
        display: none;
    }

    .mobile-header-banner {
        display: none;
    }

    .mobile-right-menu {
        display: none;
    }

    .mobile-only {
        display: none;
    }

    .m-menu {
        display: none;
    }
}

@media screen and (min-width: 992px) {
    .b-video {
        display: block;
    }
}

@media screen and (max-width: 1389.9px) {
    .header-logo-container {
        width: max-content;
    }

    .m-menu-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: max-content;
        overflow: hidden;
        height: max-content;
        max-height: 0;
        padding-left: 1em;
        list-style: none;
        width: 100%;
    }

    .opened {
        max-height: 9999px;
    }

    .mm-li {
        padding: 0;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1em;
        align-items: center;
    }

    .mm-li>a {
        text-transform: uppercase;
        color: var(--e-global-color-secondary);
        font-size: 18px;
        font-weight: 500;
    }

    .mm-li>button {
        background: transparent;
        border: none;
        outline: none;
        padding: 0;
        font-size: 18px;
        color: var(--e-global-color-secondary);
    }

    .active-button>i {
        transform: rotate(90deg);
    }

    .m-menu {
        width: 100%;
        height: 100%;
        position: fixed;
        left: 0;
        overflow: hidden;
        max-width: 0;
        transition: 2s;
        background-color: rgba(0, 0, 0, .8);
        z-index: 999;
    }

    .show-menu {
        max-width: 1390px;
    }

    .menu-inner {
        background-color: var(--header-mobile-background);
        width: 70%;
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-top: 1em;
        padding-bottom: 1em;
        gap: 7em;
    }

    .close-menu {
        background: transparent;
        border: none;
        outline: none;
        padding: 0;
        font-size: 24px;
        color: var(--e-global-color-secondary);
        margin-right: 1em;
    }

    .close-menu>i {
        color: var(--e-global-color-secondary);
    }

    .mobile-header-banner {
        font-size: 15px;
        background-color: var(--e-global-color-074f597);
        text-align: center;
        text-transform: uppercase;
        padding: 16px;
        color: var(--e-global-color-text);
        font-weight: 500;
        max-height: 999px;
        transition: .5s;
        overflow: hidden;
        width: 100%;
        white-space: normal;
        word-break: break-word;
    }

    .menu-toggler {
        display: flex;
        flex-direction: column;
        background-color: transparent;
        border: none;
        outline: none;
        color: var(--e-global-color-text);
        font-size: 24px;
    }

    .menu {
        padding: 10px;
        align-items: center;
        justify-content: start;
    }

    .left-menu {
        display: none;
    }

    .right-menu {
        display: none;
    }

    #Header {
        background-color: var(--header-mobile-background);
        position: sticky;
    }

    .mobile-right-menu {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        margin-left: auto;
    }

    .mobile-right-menu>a {
        color: var(--e-global-color-text);
        font-size: 14px;
        padding: 10px;
        border-radius: 50%;
        background: url(../media/button.png);
        background-position: center;
        background-size: cover;
        overflow: hidden;
    }

    .scroll-header>.mobile-header-banner {
        max-height: 0 !important;
        padding: 0;
    }

    .nav-container {
        display: none;
    }
}

@media screen and (max-width: 1299.9px) {
    .beforeafter {
        background-image: none;
        background-color: var(--e-global-color-074f597);
        padding: 40px 20px;
    }

    .beforeafter>.mx-auto {
        width: 100%;
        max-width: 720px;
    }

    .beforeafter .mobile-hide {
        display: none;
    }

    .beforeafter .mobile-only {
        display: block;
    }

    .beforeafter .mobile-ba-bg {
        width: 100%;
        display: block;
    }

    .beforeafter .ba-divider {
        max-width: 80%;
    }

    .beforeafter .content-absolute-block {
        max-width: 100%;
        position: relative;
        top: 0;
        transform: none;
    }

    .beforeafter .c-a-b>h2 {
        font-size: clamp(1.5rem, 4vw, 30px);
        letter-spacing: 3px;
    }

    .beforeafter .c-a-b>h3 {
        font-size: clamp(1.25rem, 3vw, 25px);
        letter-spacing: 2px;
    }

    .beforeafter .ba-image {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 72px;
        width: auto;
    }

    .beforeafter .ba-image-container {
        width: 100%;
        position: relative;
    }

    .beforeafter .mobile-invert-colors {
        background-color: var(--e-global-color-accent);
        color: var(--e-global-color-62bcfa4);
    }

    .about-section {
        max-width: 100%;
        padding: 40px 20px;
        background-image: none !important;
    }

    .about-section .about-content-left,
    .about-section .about-content-right {
        margin-left: auto;
        margin-right: auto;
    }

    .about-section .about-content {
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .about-section .about-pre-title {
        font-size: clamp(1rem, 2.5vw, 16px);
        text-align: center;
    }

    .about-section .about-title {
        font-size: clamp(1.25rem, 3.5vw, 22px);
        letter-spacing: 2px;
        text-align: center;
    }

    .about-section .about-description {
        text-align: center;
    }

    .about-section .mobile-only {
        display: block;
    }

    .about-section .mobile-background-layer {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--e-global-color-074f597);
        z-index: 1;
    }

    .about-section .mobile-content-image {
        width: 100%;
    }
}

@media screen and (max-width: 991.9px) {
    .about-details>h1 {
        font-size: 34px;
    }

    .right-about {
        display: none;
    }

    .about-main-section>div {
        width: 100%;
    }

    .middle-about-block {
        padding: 20px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .bottom-details>h2 {
        font-size: 34px;
    }

    .middle-about-block-2 {
        flex-direction: column;
    }

    .middle-img-container {
        width: 100%;
    }

    .middle-detail-container {
        width: 100%;

    }

    .middle-details {
        padding: 20px;
        width: 100%;
        max-width: 100%;
    }

    .bottom-about-block {
        height: max-content;
        position: relative;
        background-position: left center;
    }

    .bottom-about-block::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--halfgrey);
        z-index: -1;
    }

    .bottom-details {
        margin-left: auto;
        margin-right: auto;
        padding: 20px;
        z-index: 2;
    }

    .beforeafter-archive {
        flex-direction: column;
        padding: 4rem 1rem;
    }

    .filters {
        max-width: 100%;
        padding: 30px 30px;
    }

    .sf-categories>img {
        width: 50px;
    }

    .open-additional-filters {
        font-size: 16px;
    }

    .works-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .work-grid-item>.work-img {
        height: max-content;
    }

    .work-img>img {
        width: 100%;
    }

    .work-view-more {
        max-width: 90%;
        text-align: center;
    }

    .detail-row>a {
        font-size: 20px;
    }

    .single-work-section {
        width: 90%;
        margin-top: 5rem;
        margin-bottom: 5rem;
    }

    .detail-row {
        flex-direction: column;
        justify-content: center;
    }

    .detail-row>a {
        width: 100%;
    }

    .page-body-title {
        font-size: 28px !important;
    }

    .video-gallery {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .page-section {
        flex-direction: column;
        max-width: 100%;
        margin-top: 50px;
        margin-bottom: 50px;
        overflow-x: hidden;
    }

    .page-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .page-body>* {
        max-width: 100%;
    }

    .details {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .details>h3 {
        font-size: 20px;
        text-align: center;
    }

    .details>p {
        max-width: 90%;
    }

    .breadcrumbs-area {
        padding-top: 100px;
        padding-bottom: 100px;

        background-attachment: scroll;
    }

    .service-row {
        flex-direction: column-reverse !important;
    }

    .service-cover {
        width: 100%;
        height: 300px;
    }

    .opacity-0 {
        opacity: 0;
    }

    .main-banner {
        height: 440px;
    }

    .before-banner-title {
        font-size: 15px;
    }

    .banner-title {
        font-size: 43px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .my-container {
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .mb-m-0px {
        margin-bottom: 0;
    }

    .mb-m-20px {
        margin-bottom: 20px;
    }

    .mb-m-30px {
        margin-bottom: 30px;
    }

    .mx-m-auto {
        margin-left: auto;
        margin-right: auto;
    }

    .s-flex-container {
        flex-direction: column;
        width: 80%;
        margin-right: auto;
        gap: 25px;
    }

    .s-flex-item {
        width: 100%;
    }

    .s-flex-item>h4 {
        bottom: 60px;
    }

    .s-flex-item>img {
        max-width: 100%;
    }

    .services {
        padding: 40px;
    }

    .s-buttons {
        flex-direction: column;
        row-gap: 60px;
        margin-bottom: 150px;
    }

    .social-section {
        padding-top: 120px;
    }

    .cta {
        height: auto;
        max-width: 80%;
    }

    .s-links {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 50px;
        padding-top: 100px;
        height: auto;
    }

    .follow-title {
        letter-spacing: 0;
        font-size: 22px;
        line-height: 1.3em;
        margin-bottom: 5px;
        text-align: center;
    }

    .instagram-id {
        font-size: 20px;
        text-align: center;
        align-self: center;
    }

    .ar-r {
        display: none;
    }

    .social-icons>a {
        font-size: 32px;
        height: 64px;
        width: 64px;
    }

    .social-section {
        background-size: cover;
        background-position: left;
        overflow: hidden;
    }

    .hands-image {
        height: auto;
        max-width: min(100%, 200px);
        bottom: 200px;
    }

    .flex-m-column {
        flex-direction: column;
        gap: 30px;
    }

    .reviews-title>h2 {
        font-size: 40px;
        font-weight: 600;
        line-height: 1.1em;
        letter-spacing: 2px;
    }

    .review-title>h2>span {
        font-size: 34px;
        letter-spacing: 3px;
    }

    .section-reviews {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        padding-bottom: 20px;
        background-position: top left;
    }

    .contact-us {
        padding-top: 60px;
        padding-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .contact-us>*:not(.contact-icon) {
        width: 100%;
        max-width: 100%;
    }

    .contact-us>.contact-icon {
        width: 100px;
        height: 100px;
        max-width: 100px;
    }

    .forms {
        grid-template-columns: 1fr;
    }

    .contact-heading {
        font-size: 22px;
        letter-spacing: 2px;
    }

    .contact-form-block {
        flex-direction: column;
    }

    .contact-form-block>form {
        max-width: 100%;
    }

    .map-section {
        max-width: 100%;
    }

    .flex-m-column-reverse {
        flex-direction: column-reverse;
    }

    .footer-top-part {
        flex-direction: column;
        gap: 20px;
    }

    .footer-big-link {
        flex-direction: column;
    }

    .f-i-container {
        margin-bottom: 20px;
    }

    .footer-big-link>.f-i-container>i {
        font-size: 20px;
        width: auto;

    }

    .f-c-container {
        text-align: center;
    }

    .b-video {
        display: none;
    }

    .circle {
        align-self: center;
    }

    .photo-container {
        height: 80px;
        width: 80px;
    }

    .c-line {
        gap: 5px;
    }

    .c-line>a {
        font-size: 14px;
    }

    .dr-name {
        font-size: 18px;
    }

    .contact-form-block {
        padding: 16px;
    }

    .iframe-container {
        height: 300px;
    }

    body.qa-form-open {
        overflow: hidden;
    }

    .qa-form.show-qa-form {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        height: 100%;
        height: 100dvh;
        max-height: none;
        border-radius: 0;
        padding: 0;
        overflow: hidden;
        z-index: 1000;
    }

    body.qa-form-open .qa-form-button {
        z-index: 1001;
    }

    .qa-form .window {
        min-width: 0;
        max-width: 100%;
        max-height: none;
        flex: 1;
        min-height: 0;
        overflow: hidden;
    }

    .qa-form .qa-form-menu {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .qa-form .window form {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
    }

    .qa-form .chain {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        overflow: hidden;
    }

    .qa-form .chain-element {
        min-height: 0;
    }

    .qa-form .chain-element.active-ce {
        flex: 1;
        min-height: 0;
        overflow: hidden;
        flex-direction: column-reverse;
    }

    .qa-form .chain-element>.d-flex.flex-row {
        flex: 1;
        min-height: 0;
        align-items: center;
    }

    .qa-form .chain-element>.d-flex.flex-column {
        flex: 1;
        min-height: 0;
        display: flex;
        flex-direction: column-reverse;
        overflow: hidden;
    }

    .qa-form .chain-element>.d-flex.flex-column .qa-input-box {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .qa-form .chain-arrows {
        flex-shrink: 0;
        margin: 8px 16px 12px;
    }

    .qa-form .back-container {
        flex-shrink: 0;
    }

    .qa-form .qa-form-container {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .gender-block>img {
        max-height: clamp(70px, 20vh, 130px);
    }

    .gender-block>p {
        font-size: 15px;
    }

    .gender-block {
        padding: 5px;
        gap: 5px;
    }

    .qa-logo>img {
        max-width: 150px;
    }

    .qa-input,
    select.qa-input,
    textarea.qa-input {
        font-size: 16px;
    }

    .call-qa-form>i {
        font-size: 24px;
        margin: 8px;
    }

    .accept {
        width: 100%;
        margin-bottom: 16px;
    }

    .accept-text {
        font-size: 12px;
        line-height: 1.45;
    }

    .accept-mark {
        width: 20px;
        height: 20px;
    }

    .checkbox-row>label {
        font-size: 16px;
    }

    .sf-button>button {
        font-size: 16px;
    }

    footer {
        padding: 40px 20px;
    }

    .detail-row>a {
        font-size: 18px;
    }

    .filters {
        max-width: 100%;
        overflow-x: hidden;
    }

    .beforeafter-archive {
        overflow-x: hidden;
    }

    section,
    .my-container,
    .page-body,
    .contact-form-block,
    .services,
    .about-section,
    .main-banner {
        max-width: 100%;
        overflow-x: hidden;
    }

}