/* New style */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    margin: 0;
    padding: 0;
    color: #0d1430;
}

* {
    box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
    text-align: center;
    font-weight: 400;
    color: #0d1430;
}

h1 {
    font-size: 2.2em;
    text-align: left;
    margin: 0 auto 10px;
}

h2 {
    font-size: 1.8em;
    text-align: center;
    margin: 0 auto 10px;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.6em;
}

h4 {
    font-size: 1.4em;
}

section {
    margin: 50px 0 0 0;
}

.container {
    width: 100%;
    padding-right: 100px;
    padding-left: 100px;
}

a {
    color: inherit;
}

a:active,
a:hover {
    outline: 0;
}


button {
    cursor: pointer;
    border: 0;
}

ul li {
    list-style: disc;
}

ul li::marker {
    color: #edc113;
    font-size: 1.3em;
}

table {
    border-spacing: 0;
    border-collapse: collapse;
}

address {
    font-style: normal;
}

.clear-both {
    clear: both;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    background: #fff;
}

.header-shadow {
    box-shadow: 0px 2px 4px rgba(50, 50, 71, 0.06), 0px 4px 4px rgba(50, 50, 71, 0.06);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 130px;
}

.top-ban {
    margin-top: 180px;
    width: 100%;
    height: 450px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
    position: relative;
}

.logo-wrapper {
    text-align: center;
}

.logo-wrapper a {
    text-decoration: none;
}

.logo-image {
    width: 50px;
    margin: 0 auto;
}

.logo-wrapper img {
    width: 100%;
}

.top-phone {
    font-size: 20px;
    margin-bottom: 10px;
}

.top-phone a {
    text-decoration: none;
}

.top-phone-button-wrapper .buttonAppointment {
    width: fit-content;
    margin: 0 auto;
}

.buttonAppointment button {
    color: #fff;
    text-transform: uppercase;
    /* background: #959387; */
    background: #0d1430;
    padding: 15px 30px;
}

.button-in-text button {
    margin: 80px auto 40px;
    display: block;
    border-radius: 0;
    width: 210px;
    height: 111px;
    background-color: transparent;
    background-image: url('/assets/img/house.svg');
    padding: 0;
    padding-top: 40px;
    position: relative;
    font-size: 1.1em;
}

.header-address {
    text-align: center;
    padding: 0 55px 10px 10px;
}

.header-shadow .header-address {
    display: none;
}



.shadow-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d1430ba;
    backdrop-filter: blur(5px);
}

.ban-text {
    position: absolute;
    top: 80px;
    padding: 0 30px;
}

.ban-huge-title {
    font-size: 60px;
}

.ban-huge-title {
    font-size: 60px;
    line-height: 1em;
    margin-bottom: 10px;
}

.ban-big-title {
    font-size: 46px;
    text-align: left;
    padding: 5px 10px;
}

.ban-title {
    font-size: 32px;
    margin-top: 15px;
}


.features-icons {
    display: flex;
    gap: 50px;
    text-transform: uppercase;
    font-size: 20px;
    color: #0d1430;
    width: fit-content;
    margin: 0 auto;
    padding: 50px 0;
    text-align: center;
}

.features-icons img {
    height: 50px;
    display: block;
    margin: 0 auto;
}

.page-image {
    width: 100%;
    margin: 30px 0;
}

/* Top Menu Begin */
.main-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-menu li {
    position: relative;
    height: 100%;
    padding: 15px 0 0 0;
}

.main-menu li.dropdown {
    padding-right: 15px;
}


.header-fixed .main-menu li {
    padding-top: 7px;
}

.main-menu li.dropdown::after {
    content: '▼';
    font-size: 12px;
    position: absolute;
    right: 0;
    bottom: 2px;
    transition: all 0.3s ease 0s;
    -webkit-transition: all 0.3s ease 0s;
}

.main-menu li {
    list-style: none;
}


.main-menu>li>a {
    text-transform: uppercase;
    font-size: 13px;
    text-decoration: none;
}

.main-menu a.special-item {
    color: #ffff00;
}

.main-menu-close,
.nav-button-mobile-wrapper {
    display: none;
}

.icon-bar {
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background-color: #0d1430;
    margin: 4px 0;
}

/* Top Menu End */

/* Dropdown Menu Begin */

.dropdown-menu {
    /* display: none;
    opacity: 0; */
    /* transition: opacity 0.3s; */
    /* -webkit-transition: aopacity 0.3s; */
    max-height: 0;
    transition: max-height 0.9s;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 46px;
    list-style: none;
    padding: 0;
    background-color: #fff;
    box-shadow: 0 0 30px -3px rgb(0 0 0 / 30%);
    -webkit-box-shadow: 0 0 30px -3px rgb(0 0 0 / 30%);
    -moz-box-shadow: 0 0 30px -3px rgba(0, 0, 0, 0.3);
    width: 500px;
    z-index: 10;
}

.main-menu li.dropdown.active>.dropdown-menu,
.main-menu li.dropdown:hover>.dropdown-menu {
    max-height: 1000px;
    transition: all 1.2s;
}

.main-menu li.dropdown:hover::after {
    transform: rotate(180deg);
}

.right-menu-item .dropdown-menu {
    right: 0;
    left: auto;
}

.header-fixed .dropdown-menu {
    top: 40px;
}

.dropdown-menu li {
    color: #181818;
    padding: 10px;
    border-bottom: 1px solid #cfcfcf;
}

.dropdown-menu li.active {
    background-color: #0d143022;
}

.dropdown-menu li:hover {
    border-bottom: 1px solid #0d1430;
    background-color: #0d143011;
}

.dropdown-menu a {
    text-decoration: none;
}

/* Dropdown Menu End */

/* Price Table Begin */
.price-list-table {
    width: 100%;
    overflow: hidden;
    -webkit-box-shadow: 4px 4px 11px 2px rgba(34, 60, 80, 0.1);
    -moz-box-shadow: 4px 4px 11px 2px rgba(34, 60, 80, 0.1);
    box-shadow: 4px 4px 11px 2px rgba(34, 60, 80, 0.1);
    margin-bottom: 50px;
}

.price-list-table h4 {
    /* color: #a58b56; */
    margin: 0;
    font-weight: 700;
    font-size: 1.2em;
}

.price-list-table th {
    padding: 10px 5px 10px 15px;
}

.price-list-table td {
    padding: 5px;
    padding-left: 15px;
}

.price-list-table tr:nth-child(odd) {
    background-color: #0d143011;
}

.price-list-table th {
    /* background-color: #95938722; */
    /* color: #a58b56; */
    font-size: 1.2em;
    text-align: left;
}

/* Price Table End */

/* Questions Begin */
.question-item {
    margin-bottom: 20px;
}

.question-title {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.question-text {
    margin-left: 20px;
}

.answer-title {
    font-weight: 700;
}

.question-title .answer-title {
    color: #0d1430;
}

.question-text .answer-title {
    color: #edc113;
}

/* Questions End */

.right-img-text {
    float: right;
    padding-left: 30px;
    max-height: 250px;
}

.video-block {
    width: fit-content;
    margin: 30px auto;
}

.liz-block {
    text-align: center;
    margin: 30px auto;
}

.links-block {
    width: fit-content;
    margin: 0 auto 30px;
}

.links-block li {
    padding-bottom: 15px;
}

.page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    width: fit-content;
    margin: 15px auto 30px;
    padding: 0;
}

.page-tags li {
    list-style: none;
    color: #0d1430;
    border: 1px solid;
    text-align: center;
    transition: all 0.5s;
}

.page-tags li:hover {
    background-color: #e8e9ef;
    transition: all 0.5s;
}

.page-tags li a {
    text-decoration: none;
    padding: 5px 15px;
    display: block;
}

/* Swiper Begin */
.swiper {
    margin: 50px auto 10px;
}

.picture-slide {
    padding: 15px;
    background-color: #95938722;
    text-align: center;
}

.feedback-wrapper.swiper {
    height: auto;
    margin: 10px auto 10px;
}

.feedback-block {
    padding: 15px;
    border: 1px solid #959387;
    background-color: #95938722;
}

.feedback-name {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
}

.swiper-slide img {
    width: auto;
    height: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 25px;
    position: static;
    margin-bottom: 40px;
}

.swiper-pagination-bullet-active {
    background-color: #0d1430;
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 6px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 6px));
}

.swiper-pagination-feedback {
    text-align: center;
}

/* Swiper End */
/* Footer Begin */
footer {
    border-top: 1px solid #e8e9ef;
    margin: 20px 0;
}

footer a {
    text-decoration: none;
}

.footer-wrapper {
    display: flex;
    gap: 50px;
    padding: 20px 0;
    margin: 0 auto;
    width: fit-content;
}

/* .footer-block {
    width: 50%;
} */

.footer-block ul {
    padding-left: 20px;
}



.footer-bottom {
    text-align: right;
    font-size: 0.85em;
}

/* Footer End */

/* Whatsapp Telegram */
.whatsapp-phone-wrapper {
    display: flex;
    align-items: center;
}

.whatsapp-phone-wrapper .top-phone {
    margin-left: 20px;
    font-size: 32px;
}

.consult-2-section .consult-content__text .section-title {
    color: #fff;
}

.whatsapp-phone-wrapper .top-phone a {
    color: #fff;
}

.telegram-wrapper,
.whatsapp-wrapper-page {
    height: 45px;
}

.header .telegram-wrapper,
.header .whatsapp-wrapper-page {
    height: 30px;
}

.whatsapp-wrapper-page img {
    height: 100%;
    width: auto;
}

.telegram-whatsapp-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header .telegram-whatsapp-wrapper {
    margin-bottom: 10px;
}

.phone-block {
    font-size: 1.2em;
}

.phone-block a {
    text-decoration: none;
}

.telegram-whatsapp-wrapper.telegram-whatsapp-wrapper__contacts {
    margin: 20px 0;
    gap: 20px;
}

.telegram-whatsapp-wrapper.telegram-whatsapp-wrapper__contacts .whatsapp-wrapper-page,
.telegram-whatsapp-wrapper.telegram-whatsapp-wrapper__contacts .telegram-wrapper {
    margin: 0;
}

.whatsapp-wrapper {
    height: 40px;
    background-color: #20B038;
    display: flex;
    align-items: center;
    padding: 0 15px;
    border-radius: 20px;
    -webkit-box-shadow: -5px -5px 5px -5px rgba(20, 152, 42, 0.77) inset;
    -moz-box-shadow: -5px -5px 5px -5px rgba(20, 152, 42, 0.77) inset;
    box-shadow: -5px -5px 5px -5px rgba(20, 152, 42, 0.77) inset;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.2);
}

.whatsapp-wrapper span {
    color: #fff;
    font-size: 11px;
    line-height: 12px;
    text-transform: uppercase;
    display: inline-block;
    text-align: left;
    margin-left: 10px;
}

.whatsapp-wrapper img {
    height: 30px;
    width: auto;
}

.telegram-wrapper img {
    height: 100%;
    width: auto;
}

.whatsapp-wrapper,
.telegram-wrapper {
    margin: 0 5px;
}

.whatsapp-wrapper-page,
.telegram-wrapper,
.adress-button {
    border: 0;
    padding: 0;
    background-color: transparent;
    margin: 0 5px;
}

.footer-block .telegram-whatsapp-wrapper {
    margin-bottom: 20px;
}

/* Whatsapp Telegram */

/* Payment Begin */
ul.payment-methods-wrapper li {
    list-style: none;
    display: flex;
    align-items: center;
}

.payment-methods-wrapper li {
    margin-bottom: 20px;
}

.payment-methods-icon {
    padding-right: 10px;
}

.payment-methods-icon img {
    width: 40px;
}

.footer-block .payment-methods-wrapper {
    padding-left: 0;
}

.footer-block .payment-methods-wrapper li {
    margin-bottom: 5px;
}

.footer-block .payment-methods-icon img {
    width: 20px;
}

/* Payment End */

.video-wrapper {
    width: 609px;
    margin: 0 auto;
}

.center-img-text {
    display: block;
    margin: 20px auto;
}

.wrapper-photo img {
    height: 300px;
}

/* Photo Block Begin */
.wrapper-photo-outer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.photo-point-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
    height: 100px;
}

.photo-point-number {
    background-color: #959387;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    line-height: 24px;
}

/* Photo Block End */

/* Important Ban Begin */
.important-ban-wrapper {
    display: flex;
    gap: 50px;
    width: fit-content;
    margin: 0 auto;
    align-items: center;
}

.important-ban-img {
    height: 200px;
}

.important-ban-img img {
    height: 100%;
}

.important-ban-big-title {
    font-size: 30px;
}

.important-ban-title {
    font-size: 18px;
    margin-top: 20px;
}

.important-ban-point {
    display: flex;
    padding-left: 50px;
    position: relative;
    margin-bottom: 15px;
}

.important-ban-point::before {
    content: '';
    width: 40px;
    height: 30px;
    background-image: url(/assets/img/red-cross.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    left: 0px;
}

/* Important Ban End */
.page-block-section {
    margin: 50px 0;
}

/* Page Blocks Begin */
.page-block-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.page-block-item {
    border: 1px solid #cacaca;
    padding: 15px;
}

.page-block-img {
    height: 300px;
}

.page-block-img img {
    height: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
}

.page-block-title {
    font-size: 24px;
    margin-bottom: 20px;
}

.page-block-title a {
    text-decoration: none;
}

.page-block-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.page-block-buttons button {
    padding: 10px 20px;
    background: #0d1430;
    color: #fff;
    text-transform: uppercase;
}

.block-price {
    color: #fc3f1d;
}

/* Page Blocks End */

/* Licenses Begin */
#mobile-licenses {
    display: none;
}

.licenses-wrapper {
    display: flex;
    gap: 0 20px;
    width: fit-content;
    margin: 0 auto;
}

.licenses-wrapper img {
    max-height: 300px;
}

/* Licenses End */

/* Features Begin */
.features-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.feature-content {
    width: 30%;
}

.feature-content a {
    text-decoration: none;
}

.feature-content:nth-child(-n+3) {
    margin-bottom: 20px;
}

.feature-icon span {
    color: #01bafd;
    border: 1px solid #01bafd;
    font-size: 25px;
    padding: 10px 15px;
    width: fit-content;
}

.feature-icon {
    height: 80px;
}

.feature-icon img {
    height: 100%;
}

.feature-content .read-more {
    color: #edc113;
    border: 1px solid #edc113;
    display: inline-block;
    font-size: 14px;
    margin-top: 10px;
    padding: 5px 10px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.feature-title {
    margin-bottom: 15px;
    margin-top: 15px;
    padding-bottom: 10px;
    position: relative;
}

.feature-title::after {
    background-color: #b7b2b2;
    content: '';
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    width: 70px;
    position: absolute;
}

.feature-title a {
    text-decoration: none;
}

/* Features End */

/* Guarantee ban Begin */
.guarantee-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
    background-image: url(../images/icons/guarantee.webp);
    background-position: center top;
    background-repeat: no-repeat;
    /* padding-top: 40px; */
}

.guarantee-item-wrapper {
    margin: 0 auto;
    width: 1140px;
    position: relative;
}

.guarantee-title {
    margin: 0 auto;
    /* color: #0d1430; */
    font-size: 1.5em;
    text-align: center;
    padding: 10px 70px;
    width: fit-content;
    border-radius: 10px;
    -webkit-box-shadow: -2px 4px 10px 6px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 2px 4px 10px 6px rgba(34, 60, 80, 0.2);
    box-shadow: 2px 4px 10px 6px rgba(34, 60, 80, 0.2);
}

.guarantee-item {
    width: 180px;
    line-height: 18px;
    text-align: center;
    position: absolute;
}

.guarantee-item strong {
    display: inline-block;
    margin-bottom: 5px;
    /* color: #0d1430; */
}

.guarantee-1 {
    top: 230px;
    left: 55px;
}

.guarantee-2 {
    top: 310px;
    left: 265px;
}

.guarantee-3 {
    top: 335px;
    left: 475px;
}

.guarantee-4 {
    top: 310px;
    left: 695px;
}

.guarantee-5 {
    top: 230px;
    left: 905px;
}

/* Guarantee ban End */

/* Narcolog-devices Begin */
.narcolog-devices-section {
    text-align: center;
}

.narcolog-devices-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.narcolog-devices-item {
    width: 20%;
}

.narcolog-devices-item__img {
    height: 120px;
    width: 120px;
    border-radius: 60px;
    overflow: hidden;
    border: 3px solid #edc113;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.narcolog-devices-item__img img {
    width: auto;
    height: 100%;
}

/* .narcolog-devices-item__img img.ekg-image {
    height: 60%;
}

.narcolog-devices-item__img img.cardiomonitor-img {
    height: 80%;
}

.narcolog-devices-item__img img.cardiomonitor-img {
    height: 80%;
}

.narcolog-devices-item__img img.modern-complex-img {
    height: 80%;
}

.narcolog-devices-item__img img.stoika-img {
    height: 80%;
}

.narcolog-devices-item__img img.gloves-img {
    height: 80%;
} */

.narcolog-devices-item__text {
    margin-top: 20px;
    line-height: 18px;
}

/* Narcolog-devices End */

/* Anonim-call-wrapper Begin */
.anonim-call-wrapper {
    display: flex;
    gap: 20px;
}

.anonim-call-wrapper img {
    height: 200px;
}

.anonim-call-wrapper ul {
    /* color: #0d1430; */
    font-size: 20px;
}

/* Anonim-call-wrapper End */

/* how_does_we_Work Begin */
.how-we-work-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 0 20px;
}

.how-we-work-content {
    width: 25%;
}

.how-we-work-content:nth-child(odd) {
    margin-top: 40px;
}

/* Fonts */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu5mxKOzY.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2) format('woff2');
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

.how-we-work-content__number {
    font-family: "Roboto", sans-serif;
    color: #edc113;
    font-size: 30px;
    border: 3px solid;
    padding: 5px 12px;
    line-height: 30px;
    border-radius: 23px;
    margin: 5px auto 10px;
    display: block;
    width: fit-content;
    position: relative;
}

/* .how-we-work-content__number::after {
    content: "";
    width: 65px;
    height: 17px;
    background-image: url(../images/icons/arrow.svg);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 100px;
    top: -30px;
}

.how-we-work-content:nth-child(2) .how-we-work-content__number::after {
    transform: rotate(20deg);
    top: 10px;
    left: 120px;
}

.how-we-work-content:nth-child(4) .how-we-work-content__number::after {
    background-image: none;

} */

/* how_does_we_Work End */

/* Form on page Begin */
.form-on-page__wrapper-all {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-around;
    padding: 40px;
}

.form-on-page__wrapper-input {
    padding: 20px;
    border: 10px solid #fff;
    width: 50%;
}

.form-side-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.form-discription {
    text-align: center;
    font-size: 1.5em;
    max-width: 400px;
}

.form-control {
    width: 100%;
    border: 1px solid #0d1430;
    padding: 5px;
    display: block;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.form-on-page {
    background-color: #0d143088;
    background-image: url(/assets/img/main-page.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 15px;
    position: relative;
}


.form-on-page__wrapper.form-on-page-contacts {
    display: block;
}

.form-on-page__wrapper.form-on-page-contacts .form-control {
    width: 300px;
    margin-bottom: 5px;
}

.form-on-page__wrapper.form-on-page-contacts .form-control:last-child {
    margin-bottom: 0;
}

.form-on-page__wrapper-button {
    margin-top: 20px;
}

.form-on-page__first-line,
.form-on-page__second-line {
    display: flex;
    justify-content: space-between;

}

.form-on-page label {
    font-weight: 400;
}


.form-button {
    margin: 0 auto 20px;
    display: block;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    font-size: 1.3em;
    background: #0d1430;
    white-space: nowrap;
    padding: 5px 15px;
    -webkit-box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
    -moz-box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
    box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
}

.form-button:disabled {
    opacity: 0.5;
    filter: blur(1px);
}

.form-on-page__wrapper .no-robot {
    display: flex;
    width: fit-content;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
}

.form-on-page__wrapper .no-robot input[type="checkbox"] {
    margin: 0;
    order: 1;
}

.form-on-page__wrapper .no-robot span {
    margin-left: 5px;
    line-height: 16px;
}

.callback_content .form-on-page__wrapper {
    display: block;
    margin-top: 10px;
}

.callback_content .form-on-page {
    background-color: transparent;
    padding: 0 15px;
    border: 0;
}

.callback_content .form-control:first-child {
    margin-bottom: 5px;
}

.callback_content .form-on-page__wrapper .no-robot {
    width: fit-content;
    margin-bottom: 10px;
}

.callbackImg {
    width: 50px;
    height: 50px;
    padding: 15px;
    border-radius: 100%;
    border: 1px solid #fff;
    fill: #fff;
    position: relative;
    margin: 0 auto 10px;
    box-sizing: content-box;
}

.callbackImg span {
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    top: 8px;
    left: 8px;
    transform: rotate(45deg);
    -webkit-animation-name: spin;
    -webkit-animation-duration: 4000ms;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: spin;
    -moz-animation-duration: 4000ms;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: spin;
    -ms-animation-duration: 4000ms;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.callbackImg span:before,
.callbackImg span:after {
    content: '';
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    left: 0;
    top: 0;
    background-color: #ffe7b0;
    border-radius: 100%;
}

.callbackImg span:after {
    left: auto;
    top: auto;
    right: 0;
    bottom: 0;
}

.form-ok-massage-wrapper {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d1430dd;
    color: #ffffff;
}

.form-ok-massage {
    text-align: center;
    width: fit-content;
    margin: auto;
    font-size: 1.5em;
}

.callback_content .form-ok-massage {
    font-size: 1.3em;
}

.form-ok-massage-close {
    margin: 0 5px 0 0;
    font-size: 1.5em;
    opacity: 0.7;
    cursor: pointer;
}

.form-ok-massage-close:hover {
    opacity: 1;
}

/* Form on page End */

/* Modal Window Begin */
.call-modal {
    cursor: pointer;
}

body.modal-global-open {
    height: 100vh;
    overflow-y: hidden;
}

.modal-window__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000cc;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
    overflow: auto;
    z-index: 10;
}

.modal-window__text-wrapper {
    display: none;
    position: fixed;
    will-change: transform;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
    overflow: auto;
    background-color: #000000aa;
    padding: 15px;
    box-sizing: border-box;
}

.modal-window__text {
    font-size: 14px;
    background-color: #f7faff;
    color: #333;
    padding: 15px 15px 30px;
    text-align: left;
    position: relative;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}

.modal-window__text.active {
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}

.modal-window__text p {
    margin: 0;
}

.modal-window__text h3 {
    text-align: center;
}

.modal-window__close {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 1.3em;
    padding: 10px 8px 14px;
    cursor: pointer;
    line-height: 1px;
    border: 1px solid;
    border-radius: 50%;
    color: #fff;
    -webkit-box-shadow: 4px 4px 13px 7px rgb(34 60 80 / 33%);
    -moz-box-shadow: 4px 4px 13px 7px rgba(34, 60, 80, 0.33);
    box-shadow: 4px 4px 13px 7px rgb(34 60 80 / 33%);
    background-color: #00000088;
    z-index: 1;
}

/* Modal Window End */

/* Picts Gallery Begin */
.picts-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: fit-content;
}

.clinik-photo {
    flex-wrap: wrap;
}

img.picts-gallary__item {
    cursor: pointer;
    width: 100%;
}

.gallary-big-img {
    max-width: 99%;
    height: 99%;
    display: flex;
    align-items: center;
    position: relative;
}

.gallary-big-img img {
    max-width: 100%;
    max-height: 100%;
}

.loader-wrapper {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    filter: alpha(opacity=100);
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.loder-crcil {
    box-shadow: 3px 0 0px #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    animation: loader 1s linear infinite;
}

.loader-wrapper.hide {
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    0% {
        transform: rotate(360deg);
    }
}

.completed-projects-slider__control-wrapper {
    position: absolute;
    width: 100%;
}

.completed-projects-slider__control-wrapper>div {
    position: absolute;
    width: 50px;
    cursor: pointer;
    opacity: 0.8;
}

.completed-projects-slider__control-wrapper>div:hover {
    opacity: 1.0;
}

.completed-projects-slider__control-left {
    left: -10px;
}

.completed-projects-slider__control-right {
    right: -10px;
    transform: rotate(180deg);
}

/* Picts Gallery End */

.doctors-photo {
    margin: 0 auto;
}

.doctors-photo img {
    border: 1px solid #0d143011;
}

.picts-wrapper__text {
    padding: 20px;
    max-width: 250px;
    text-align: center;
}

/* Calculator Begin */
.form-calculator {
    border: 1px solid #0d1430;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.form-calculator__discription {
    text-align: center;
    font-weight: 700;
    margin: 15px 0 30px;
    color: #0d1430;
}

.form-calculator__wrapper {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.form-calculator__wrapper label {
    font-weight: normal;
    color: #0d1430;
}

.form-calculator__wrapper .form-control {
    width: 100%;
}

.form-calculator__item {
    width: 48%;
}

.form-calculator__item-comment,
.form-calculator__item-name {
    order: 1;
}

.form-calculator__item-comment {
    width: 98%;
}

.form-calculator .form-control {
    border: 1px solid #0d1430;
    background-color: #0d143011;
    padding: 5px;
    font-size: 17px;
}

.form-calculator .form-calculator__item-phone .form-control {
    border: none;
    background-color: #fff;
    margin-top: 15px;
    padding: 10px;
}

.form-calculator .no-robot-calculator {
    color: #0d1430;
    border: 1px solid;
    border-radius: 5px;
    margin-top: 15px;
    padding: 10px 30px;
    background-color: #0d143011;
    /* -webkit-box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
    -moz-box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
    box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;*/
}

.form-button-calculator {
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 5px 15px;
    -webkit-box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
    -moz-box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
    box-shadow: -5px -5px 17px -5px rgba(20, 42, 77, 0.6) inset;
}

.form-button-calculator:disabled {
    opacity: 0.5;
}

.no-robot-calculator {
    display: flex;
    width: fit-content;
    flex-direction: row-reverse;
    align-items: center;
    margin: 0 auto;
    cursor: pointer;
}

.no-robot-calculator input[type="checkbox"] {
    margin: 0;
    order: 1;
}

.no-robot-calculator input {
    width: auto;
}

.no-robot-calculator span {
    margin-left: 5px;
    line-height: 16px;
}

.calculate-block-wrapper {
    position: absolute;
    height: 0;
    overflow: hidden;
    background-color: #0d1430ee;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0;
    /* display: none; */
}

.calculate-block-wrapper.active {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    height: auto;
}

.calculate-block {
    width: 300px;
    text-align: center;
    position: relative;
}

.right-number {
    position: absolute;
    color: #fff;
    margin-top: 20px;
}

.calculate-block-wrapper label {
    font-weight: normal;
    color: #ffffff;
}

.form_phone_calculator {
    width: 95%;
    margin: 0 auto 20px;
}

.calculate-block-wrapper .form-ok-massage-close {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #fff;
    background-color: #ffffff;
    padding: 5px;
    width: 22px;
    height: 22px;
}

/* Calculator End */

/* Media Queries */
@media (max-width: 1600px) {
    .wrapper-photo-outer {
        grid-template-columns: repeat(3, 1fr);
    }

    .page-block-img {
        height: 250px;
    }
}

@media (min-width: 992px) {
    .swiper {
        width: 900px;
        height: 300px;
    }
}

@media (min-width: 1600px) {
    .swiper {
        width: auto;
        height: 350px;
    }
}

@media (max-width: 1400px) {
    .page-block-img {
        height: 200px;
    }

    /* Guarantee ban Begin */
    .guarantee-wrapper {
        background-image: none;
        height: auto;
    }

    .guarantee-item-wrapper {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 15px 30px;
        width: auto;
    }

    .guarantee-item {
        position: static;
        width: 30%;
    }

    .guarantee-item::before {
        display: block;
        margin: 10px auto;
        width: 50px;
        height: 50px;
        content: '';
        background-size: contain;
        background-repeat: no-repeat;
    }

    .guarantee-1::before {
        background-image: url(../images/icons/guarantee-1.webp);
    }

    .guarantee-2::before {
        background-image: url(../images/icons/guarantee-2.webp);
    }

    .guarantee-3::before {
        background-image: url(../images/icons/guarantee-3.webp);
    }

    .guarantee-4::before {
        background-image: url(../images/icons/guarantee-4.webp);
    }

    .guarantee-5::before {
        background-image: url(../images/icons/guarantee-5.webp);
    }

    .guarantee-title {
        padding: 0 0 10px;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
    }

    /* Guarantee ban End */
}

@media (max-width: 1200px) {
    .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .logo-text {
        width: min-content;
    }

    .phone-block {
        font-size: 1.1em;
    }

    .features-icons {
        font-size: 16px;
    }

    .wrapper-photo-outer {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-block-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .page-block-img {
        height: 250px;
    }
}

@media (max-width: 992px) {
    .phone-block {
        font-size: 1em;
    }

    .buttonAppointment button {
        padding: 15px 20px;
    }

    .swiper {
        width: 609px;
        height: 300px;
    }

    .main-menu {
        gap: 8px;
    }

    .main-menu>li>a {
        font-size: 11px;
    }

    .features-icons {
        gap: 30px;
    }

    .important-ban-img {
        height: 100px;
    }

    .page-block-img {
        height: 200px;
    }

    /* how_does_we_Work Begin */
    .how-we-work-content__number::after {
        left: 60px;
    }

    .how-we-work-content:nth-child(2) .how-we-work-content__number::after {
        left: 70px;
    }

    /* how_does_we_Work End */
}

@media (max-width: 840px) {
    .logo-text {
        font-size: 0.7em;
    }

    .phone-block {
        font-size: 0.9em;
    }

    .buttonAppointment button {
        padding: 15px 10px;
        font-size: 0.7em;
    }
}

@media (max-width: 768px) {
    .buttonAppointment button {
        padding: 15px;
        font-size: 1em;
    }

    .dropdown-menu {
        width: 100%;
    }

    .logo-wrapper {
        display: flex;
        width: auto;
        gap: 20px;
        align-items: center;
        text-align: left;
    }

    #licenzii-section {
        display: none;
    }

    #mobile-licenses {
        display: block;
        position: relative;
    }

    .page-block-wrapper {
        grid-template-columns: 1fr;
    }

    .page-block-img {
        height: 250px;
    }

    .wrapper-photo-outer {
        grid-template-columns: repeat(1, 1fr);
    }

    .wrapper-photo img {
        display: block;
        margin: 0 auto;
    }

    .main-menu>li>a {
        font-size: 13px;
    }

    .video-wrapper {
        width: auto;
    }

    .header-address {
        padding: 0 0 10px;
    }

    .nav-button-mobile-wrapper {
        position: absolute;
        top: 80px;
        left: 20px;
        width: 40px;
        border: 1px solid #959387;
        background-color: #95938744;
        border-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    .phone-block {
        font-size: 1.1em;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .header {
        padding-top: 10px;
        align-items: flex-start;
        height: 115px;
    }

    .top-menu-wrapper {
        background-color: #fff;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        box-shadow: 0px 2px 4px rgba(50, 50, 71, 0.06), 0px 4px 4px rgba(50, 50, 71, 0.06);
        max-height: 0;
        transition: all 0.5s;
        overflow: hidden;
    }

    .top-menu-wrapper.active {
        max-height: 1000px;
        transition: all 1.5s;
    }

    .main-menu {
        display: block;
        padding: 40px 0 40px 40px;
    }

    .main-menu-close {
        position: absolute;
        display: block;
        right: 10px;
        top: 10px;
        font-size: 1.3em;
        padding: 10px 8px 14px;
        cursor: pointer;
        line-height: 1px;
        border: 1px solid;
        border-radius: 50%;
        color: #898989;
    }

    .main-menu li {
        padding: 7px 10px;
    }

    .footer-wrapper {
        width: fit-content;
        display: block;
        margin: 0 auto;
    }

    .footer-block {
        width: 100%;
        border-bottom: 1px solid #e8e9ef;
    }

    .footer-wrapper .footer-block:last-child {
        border-bottom: 0;
    }

    .features-icons {
        gap: 10px;
    }

    .ban-huge-title {
        font-size: 50px;
    }

    .ban-big-title {
        line-height: 42px;
    }

    .swiper {
        width: auto;
        height: 270px;
    }

    .feedback-wrapper.swiper {
        width: auto;
    }

    .center-img-text {
        width: 100%;
    }

    .top-ban {
        background-position: top;
        top: 40%;
        margin-top: 150px;
    }

    .ban-big-title,
    .ban-title {
        text-align: center;
    }

    .ban-big-title br {
        display: none;
    }

    .ban-title {
        margin-top: 5px;
        font-size: 22px;
    }

    /* how_does_we_Work Begin */
    .how-we-work-wrapper {
        display: block;
    }

    .how-we-work-content {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 0 10px;
        margin-bottom: 20px;
    }

    .how-we-work-content:last-child {
        margin-bottom: 0;
    }

    .how-we-work-content__number {
        margin: 0;
    }

    .how-we-work-content__number::after {
        background-image: none;
    }

    .how-we-work-content:nth-child(odd) {
        margin-top: 0;
    }

    /* how_does_we_Work End */

    .dropdown-menu {
        max-height: 0 !important;
        transition: max-height 0.9s;
        overflow: hidden;
        display: block;
        opacity: 1;
        box-shadow: 0 0 7px -3px rgb(0 0 0 / 30%);
        -webkit-box-shadow: 0 0 7px -3px rgb(0 0 0 / 30%);
        -moz-box-shadow: 0 0 7px -3px rgba(0, 0, 0, 0.3);
    }

    .main-menu li.dropdown>.dropdown-menu {
        margin-top: 0;
    }

    .main-menu li.dropdown.active>.dropdown-menu {
        max-height: 700px !important;
        margin-top: 10px;
        transition: all 1.5s;
    }

    .main-menu li.dropdown:hover::after {
        transform: rotate(0deg);
    }

    .main-menu li.dropdown.active::after {
        transform: rotate(180deg);
    }

    .main-menu li.dropdown {
        cursor: pointer;
    }

    .dropdown-menu {
        position: static;
        background-color: #ffffff77;
    }

    .main-menu li.dropdown::after {
        top: 8px;
        right: 18px;
        height: fit-content;
    }
}

@media (max-width: 640px) {
    .features-icons {
        flex-wrap: wrap;
    }

    .features-icons>div {
        width: 45%;
        text-align: center;
    }

    .right-img-text {
        float: none;
        padding-left: 0;
        display: block;
        margin: 0 auto;
    }

    .ban-huge-title {
        font-size: 40px;
    }

    .ban-big-title {
        font-size: 24px;
    }

    .ban-title {
        font-size: 20px;
        margin-top: 5px;
    }

    .logo-added {
        display: none;
    }

    .price-list-table td {
        padding-left: 5px;
    }

    .page-tags li {
        margin: 0 auto;
    }

    .top-ban {
        height: 400px;
    }

    .important-ban-wrapper {
        flex-direction: column-reverse;
    }

    .important-ban-img {
        height: 150px;
    }

    .anonim-call-wrapper {
        display: block;
    }

    .anonim-call-wrapper img {
        height: 100px;
        float: left;
        margin: 0 40px 20px 0;
    }

    /* Features And Services Begin */
    .features-wrapper {
        display: block;
    }

    .feature-content {
        width: 100%;
    }

    .feature-content,
    .feature-content:nth-child(-n+3) {
        margin-bottom: 40px;
    }

    .feature-icon {
        width: fit-content;
        margin: 0 auto;
    }

    .feature-title {
        width: fit-content;
        margin: 15px auto;
    }

    .feature-title::after {
        height: 1px;
        width: 100%;
    }

    /* Features And Services End */

    .narcolog-devices-item__img {
        width: 100px;
        height: 100px;
    }

    .form-on-page__wrapper-all {
        display: block;
    }

    .form-on-page__wrapper-input {
        width: 100%;
    }

    .form-discription {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .form-on-page__wrapper-all {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .main-menu li.dropdown.active>.dropdown-menu {
        max-height: 500px;
        overflow-y: auto;
    }

    .main-menu li {
        height: auto;
    }

    .buttonAppointment button {
        padding: 7px 15px;
    }

    .top-menu-wrapper.active {
        max-height: 100%;
        overflow-y: auto;
    }

    .features-icons {
        padding-top: 0;
    }

    .guarantee-item {
        width: 100%;
    }

    .wrapper-photo img {
        width: 100%;
        height: auto;
    }

    .footer-wrapper {
        min-width: auto;
    }

    .features-icons {
        display: block;
    }

    .features-icons>div {
        width: 100%;
    }

    .ban-text {
        padding: 0 10px;
    }

    .ban-big-title {
        line-height: normal;
    }

    .logo-main {
        font-size: 24px;
    }

    .top-phone {
        font-size: 16px;
    }

    .video-block iframe {
        width: 100%;
    }

    .important-ban-big-title {
        font-size: 26px;
    }

    .page-block-img {
        height: 180px;
    }

    .narcolog-devices-item {
        width: 40%;
    }

    .form-on-page__wrapper {
        display: block;
    }

    .form-control {
        display: block;
        margin-bottom: 10px;
    }

    .form-on-page__wrapper .no-robot {
        margin-bottom: 10px;
    }

    .phone-block {
        font-size: 14px;
    }
}

@media (max-width: 360px) {
    .photo-point-wrapper {
        height: 150px;
    }

    .logo-wrapper {
        gap: 7px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-image {
        width: 40px;
    }

    .nav-button-mobile-wrapper {
        left: 15px;
        top: 75px;
    }

    .price-list-section {
        width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 320px) {
    .container {
        padding-right: 5px;
        padding-left: 5px;
    }

    .nav-button-mobile-wrapper {
        left: 5px;
    }

    .page-block-img {
        height: 150px;
    }

    .page-block-buttons button {
        padding: 7px 10px;
    }

    .ban-big-title {
        line-height: 32px;
    }

    .ban-title {
        font-size: 17px;
    }

    .buttonAppointment button {
        padding: 7px 10px;
    }
}

/* Cookie Styles Begin */
#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: flex-end;
    position: fixed;
    bottom: 15px;
    left: 50%;
    width: 90%;
    transform: translateX(-50%);
    padding: 25px;
    background-color: #ffffffdd;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
}

.cookie-button {
    padding: 10px 15px;
    border: 1px solid #cdcdcd;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

#cookie_notification p {
    margin: 0;
    font-size: 0.9rem;
    text-align: left;
}


@media (min-width: 576px) {
    #cookie_notification.show {
        display: flex;
        align-items: center;
    }

    .cookie_accept {
        margin: 0 0 0 25px;
    }
}

@media (max-width: 575px) {
    #cookie_notification.show {
        display: block;
        text-align: left;
    }

    .cookie_accept {
        margin: 10px 0 0 0;
    }
}

/* Cookie Styles End */