html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background: rgba(0, 0, 0, 0)
}

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

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: bold
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

.content-hide {
    max-height: 150px; /* Высота видимой части до нажатия */
    overflow: hidden;
    position: relative;
    transition: max-height 0.5s ease;
}

/* Эффект плавного исчезновения текста снизу */
.content-hide::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(transparent, white); /* Белый фон для слияния с сайтом */
    transition: opacity 0.5s;
}

/* Стили при развернутом состоянии */
.content-show {
    max-height: 2000px; /* Достаточно большое число, чтобы влез весь текст */
}

.content-show::after {
    opacity: 0; /* Убираем градиент, когда текст открыт */
    pointer-events: none;
}

.btn-primary {
    background-color: #007bff; /* Можно заменить на ваш фирменный цвет */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox], input[type=radio] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

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

td, th {
    padding: 0
}

* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    outline: none
}

:root {
    --green: #0F723F;
    --green-light: #209458;
    --green-dark: #113934;
    --orange: #FFAB5A;
    --blue: #0057FF;
    --gray: #EEEEEE;
    --white: #fff;
    --black: #242828;
    --rad-10: 10px;
    --rad-20: 20px
}

html {
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    color: var(--black);
    background-color: var(--white);
    font-family: "Onest", sans-serif;
    font-optical-sizing: auto
}

body.active {
    overflow: hidden
}

.h1, .h2, .h3, .h4, .h5 {
    margin: 0
}

h1, .h1 {
    font-weight: 700;
    font-size: 44px;
    line-height: 50.16px;
    margin: 0 0 60px
}

h2, .h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 41.04px;
    margin: 0 0 60px
}

h3, .h3 {
    font-weight: 700;
    font-size: 28px;
    line-height: 31.92px
}

h4, .h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 27.36px
}

hr {
    display: block;
    width: 100%;
    background-color: #dbdbdb;
    margin: 30px 0;
    height: 1px
}

img {
    max-width: 100%
}

a, button {
    color: var(--black);
    display: inline-block;
    text-decoration: none;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    background-color: rgba(0, 0, 0, 0)
}

a:active, button:active {
    -webkit-transform: scale(0.98);
    -ms-transform: scale(0.98);
    -o-transform: scale(0.98);
    transform: scale(0.98)
}

a img, button img {
    display: block
}

strong, b {
    font-weight: 700
}

.text-center {
    text-align: center
}

.bg {
    position: relative;
    z-index: 1;
    margin-top: 60px
}

.bg::before {
    content: "";
    display: block;
    width: 100%;
    min-height: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center bottom;
    -webkit-background-size: auto 100%;
    -o-background-size: auto 100%;
    background-size: auto 100%;
    background-image: url("../images/bg-top.svg");
    pointer-events: none
}

.bg::after {
    content: "";
    display: block;
    width: 100%;
    height: -webkit-calc(100% - 69px);
    height: calc(100% - 69px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    background-color: #edf4ea;
    pointer-events: none
}

mark {
    background-color: rgba(255, 255, 255, 0);
    color: var(--green)
}

mark.orange {
    color: var(--orange)
}

ul {
    margin-bottom: 30px;
    list-style: none
}

ul li {
    padding-left: 26px;
    background-image: url("../images/bool.svg");
    background-repeat: no-repeat;
    background-position: top 5px left;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px
}

ul li:last-of-type {
    margin-bottom: 0 !important
}

ul mark {
    font-weight: 600
}

ul.list-arrow li {
    padding-left: 19px;
    background-image: url("../images/list__arrow.svg");
    background-position: top 11px left;
    margin-bottom: 16px
}
input.error {
    border: 1px solid #ff0000;
}
.btn {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    text-align: center;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-border-radius: var(--rad-10);
    border-radius: var(--rad-10);
    color: var(--white);
    background-color: var(--green);
    padding: 17px;
    text-align: center;
    cursor: pointer
}

.btn:hover {
    background-color: var(--green-light)
}

.btn__white {
    color: var(--green);
    background-color: var(--white);
    outline: 2px solid rgba(0, 0, 0, 0)
}

.btn__white:hover {
    background-color: var(--white);
    color: var(--green-light);
    outline-color: var(--green-light)
}

.btn__play {
    position: relative;
    z-index: 1;
    text-align: left;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    padding: 17px 100px 17px 30px;
    background-color: var(--white);
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    -webkit-box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, .1098039216);
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, .1098039216)
}

.btn__play::after {
    content: "";
    display: inline-block;
    width: 60px;
    height: 60px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: var(--blue);
    -webkit-background-size: 40% auto;
    -o-background-size: 40% auto;
    background-size: 40% auto;
    background-repeat: no-repeat;
    background-position: center left 58%;
    background-image: url("../images/play.svg");
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
    position: absolute;
    right: 30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%)
}

.btn__play:hover {
    color: var(--green)
}

.btn__play:hover::after {
    background-color: var(--green)
}

.btn__play.--sm, .btn__play.--md {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 60px 8px 14px
}

.btn__play.--sm::after, .btn__play.--md::after {
    width: 40px;
    height: 40px;
    right: 10px
}

.btn__play.--md {
    padding: 16px 60px 16px 14px;
    font-size: 18px;
    line-height: 20px
}

.btn__icon, .btn__outline {
    font-weight: 600;
    padding: 13px 20px;
    background-color: var(--white);
    color: var(--green);
    border: 1px solid #dbdbdb
}

.btn__icon:hover, .btn__outline:hover {
    background-color: var(--white);
    color: var(--green-light);
    border-color: var(--green-light)
}

.btn__icon {
    padding: 9px 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--black);
    gap: 10px
}

.btn__icon img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain
}

.btn__icon:hover {
    color: var(--green);
    border-color: var(--green)
}

input {
    font-size: 16px;
    width: 100%;
    height: 58px;
    display: block;
    padding: 0 20px;
    background-color: var(--white);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #dbdbdb;
    margin: 0 0 20px;
    -webkit-transition: border .3s ease;
    -o-transition: border .3s ease;
    transition: border .3s ease;
    color: var(--black)
}

input:hover {
    border-color: var(--green)
}

input:focus {
    border-color: var(--blue)
}

input::-webkit-input-placeholder {
    color: #999f9f
}

input::-moz-placeholder {
    color: #999f9f
}

input:-ms-input-placeholder {
    color: #999f9f
}

input::-ms-input-placeholder {
    color: #999f9f
}

input::placeholder {
    color: #999f9f
}

.vid {
    display: block;
    overflow: hidden;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    position: relative
}

.vid-top, .vid-bottom {
    width: 100%;
    padding: 21px 5px;
    position: absolute;
    text-align: center;
    left: 0;
    z-index: 11
}

.vid-top {
    top: 0
}

.vid-bottom {
    bottom: 0
}

.vid .btn__play {
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-transform: uppercase
}

.vid__img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.vid.--wide .vid__img {
    width: 100%;
    aspect-ratio: 16/7.4194
}

.vid.--wide .vid-bottom {
    padding: 20px;
    text-align: left
}

.link {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: var(--blue);
    text-decoration: underline;
    padding: 10px 0 0
}

.link:hover {
    opacity: .9;
    color: #4d89ff
}

.form__policy {
    font-size: 12px;
    line-height: 18px;
    color: #999f9f
}

.form__policy a {
    display: inline;
    color: #999f9f;
    text-decoration: underline
}

.nowrap {
    white-space: nowrap;
    font-style: normal
}

.fancybox-bg {
    background-color: var(--black) !important
}

.fancybox-toolbar {
    padding: 30px
}

@media screen and (max-width: 767px) {
    .fancybox-toolbar {
        padding: 12px
    }
}

.fancybox-slide--video .fancybox-content {
    max-width: 1280px;
    max-height: 720px
}

.fancybox-button {
    background-color: rgba(30, 30, 30, 0) !important
}

.fancybox-button div {
    background-color: var(--white);
    -webkit-border-radius: 50%;
    border-radius: 50%
}

.fancybox-button[disabled], .fancybox-button[disabled]:hover {
    opacity: .7 !important;
    color: #888 !important
}

.fancybox-button--close {
    padding: 6px !important;
    width: 40px !important;
    height: 40px !important;
    background-color: var(--white) !important;
    -webkit-border-radius: 50% !important;
    border-radius: 50% !important
}

.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
    color: var(--black) !important
}

.fancybox-infobar, .fancybox-button--play, .fancybox-button--thumbs, .fancybox-button--zoom {
    display: none !important
}

.fancybox-slide--image {
    padding: 44px 100px !important
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 24px !important
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 24px !important
}

@media screen and (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 1194px !important
    }
}

@media screen and (max-width: 1194px) {
    .h1, h1 {
        font-size: 36px;
        line-height: 41.04px;
        margin: 0 0 40px
    }

    .h2, h2 {
        font-size: 30px;
        line-height: 34.2px;
        margin: 0 0 60px
    }
    .services h2 {
        font-size: 36px;
        line-height: 41.04px;
    }

    .h3, h3 {
        font-size: 24px;
        line-height: 27px
    }

    ul {
        margin-bottom: 20px
    }

    ul li {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px
    }

    .btn__play {
        padding: 17px 90px 17px 20px
    }

    .btn__play::after {
        right: 20px
    }
}

@media screen and (max-width: 1194px)and (min-width: 992px) {
    .row > * {
        padding-right: 15px;
        padding-left: 15px
    }
}

@media screen and (max-width: 1194px) {
    .fancybox-slide--image {
        padding: 44px 88px !important
    }

    .fancybox-navigation .fancybox-button--arrow_right {
        right: 19px !important
    }

    .fancybox-navigation .fancybox-button--arrow_left {
        left: 19px !important
    }
}

@media screen and (max-width: 992px) {
    ul li {
        font-size: 16px;
        line-height: 24px
    }

    ul.list-arrow li {
        background-position: top 8px left
    }

    .h2, h2 {
        font-size: 28px;
        line-height: 31.92px
    }

    .btn__play {
        padding: 17px 100px 17px 30px
    }

    .btn__play::after {
        right: 30px
    }

    .btn__play.--sm {
        font-size: 12px;
        line-height: 15px;
        padding: 11px 60px 11px 14px
    }

    .h3, h3 {
        font-size: 22px;
        line-height: 25px
    }
    .h1, h1 {
        font-size: 30px;
        line-height: 34.2px;
    }
    .main-content {
        margin-top: 40px;
    }
    .main-row {
        min-height: 600px;
    }
    .signup ul li {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .container-md, .container-sm, .container {
        max-width: 732px
    }
}

@media screen and (max-width: 767px) {
    .container {
        padding: 0 14px
    }

    .row {
        margin-right: -14px !important;
        margin-left: -14px !important
    }

    .row > * {
        padding-right: 14px !important;
        padding-left: 14px !important
    }

    .h1, h1 {
        font-size: 26px;
        line-height: 29.64px;
        margin-bottom: 20px
    }

    ul {
        margin-bottom: 30px
    }

    .btn {
        padding: 17px 20px
    }

    .btn__play {
        font-size: 14px;
        line-height: 20px;
        padding: 15px 70px 15px 20px
    }

    .btn__play::after {
        width: 50px;
        height: 50px;
        right: 10px
    }

    .btn__play.--md {
        font-size: 16px
    }

    .btn__icon {
        padding: 9px 20px
    }

    .btn__outline {
        padding: 13px 20px
    }

    .h2, h2 {
        font-size: 22px;
        line-height: 25.08px;
        margin-bottom: 20px
    }

    .h3, h3 {
        font-size: 20px;
        line-height: 22.8px
    }

    .vid-top {
        padding: 20px 5px
    }

    .fancybox-slide {
        padding: 14px !important
    }
}

.header {
    padding-top: 20px
}

.header .location__heading, .header .location__address {
    font-size: 400;
    font-size: 14px;
    line-height: 22px;
    display: block;
    font-style: normal
}

.header-right {
    gap: 20px
}

.header-contacts {
    text-align: right
}

.header .btn {
    padding: 12px 20px
}

.header__phone {
    font-size: 16px;
    line-height: 24px;
    display: block;
    font-weight: 600;
    margin-bottom: 2px
}

.header__phone:last-of-type {
    margin: 0
}

.header__phone:hover {
    text-decoration: underline
}

.header__open {
    font-weight: 400;
    font-size: 12px;
    line-height: 16px
}

@media screen and (max-width: 1194px) {
    .header .location {
        display: none
    }
}

@media screen and (max-width: 992px) {
    .header .logo__text {
        font-size: 13px
    }

    .header-contacts, .header__open {
        display: none
    }

    .header-right {
        gap: 10px
    }

    .header__call {
        width: 48px;
        height: 48px;
        -webkit-border-radius: var(--rad-10);
        border-radius: var(--rad-10);
        background-image: url("../images/phone.svg");
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-background-size: 42% auto;
        -o-background-size: 42% auto;
        background-size: 42% auto;
        background-color: #fff
    }
	
	    .header__kz {
        width: 48px;
        height: 48px;
        -webkit-border-radius: var(--rad-10);
        border-radius: var(--rad-10);
        background-image: url("../images/kz.png");
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-background-size: 42% auto;
        -o-background-size: 42% auto;
        background-size: 42% auto;
        background-color: #fff
    }
	
		    .header__ru {
        width: 48px;
        height: 48px;
        -webkit-border-radius: var(--rad-10);
        border-radius: var(--rad-10);
        background-image: url("../images/ru.png");
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-background-size: 42% auto;
        -o-background-size: 42% auto;
        background-size: 42% auto;
        background-color: #fff
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding-top: 10px;
        padding-bottom: 30px
    }

    .header__call {
        width: 40px;
        height: 40px
    }

    .header .btn {
        display: none
    }

    .header .logo {
        gap: 10px
    }

    .header .logo__text {
        font-size: 11px;
        line-height: 13px
    }

    .header .logo__img {
        max-width: 140px
    }
}

.logo {
    gap: 20px
}

.logo__img {
    max-width: 158px
}

.logo__text {
    font-size: 400;
    font-size: 13px;
    line-height: 16px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999;
    background-color: rgba(36, 40, 40, .9);
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: none
}

.modal-content {
    width: -webkit-calc(100% - 28px);
    width: calc(100% - 28px);
    min-height: 100px;
    max-width: 1370px;
    max-height: 100%;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    overflow-y: scroll;
    color: #000;
    text-align: left;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    padding: 60px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.modal-content::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0
}

.modal-row {
    gap: 50px
}

.modal__heading {
    margin-bottom: 10px
}

.modal__textline {
    font-size: 16px;
    line-height: 24px
}

.modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    background-color: rgba(0, 0, 0, 0);
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url("../images/close.svg");
    color: var(--black);
    line-height: 26px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.modal.--sent .modal-content, .modal.--form .modal-content {
    max-width: 411px;
    gap: 20px;
    padding: 54px 30px 30px
}

.modal.--sent .btn, .modal.--form .btn {
    width: 100%
}

.modal-left {
    width: 59.52%
}

.modal-left-top {
    gap: 40px
}

.modal-left .vid__img {
    -webkit-transition: opacity ease .3s;
    -o-transition: opacity ease .3s;
    transition: opacity ease .3s
}

.modal-left .vid.--wide:hover .vid__img {
    opacity: .8
}

.modal-left .vid.--wide:hover .btn__play {
    color: var(--green)
}

.modal-left .vid.--wide:hover .btn__play::after {
    background-color: var(--green)
}

.modal__img {
    display: block;
    width: 100%
}

.modal-review {
    background-color: #f5f5f5;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
}

.modal-review .vid {
    width: 52.418%
}

.modal-review .vid__img {
    height: 100%
}

.modal-review__heading {
    font-size: 24px;
    line-height: 24px;
    margin: 0 0 10px
}

.modal-review__text {
    font-size: 16px;
    line-height: 24px
}

.modal-review-title {
    width: 47.582%;
    padding: 30px
}

.modal-sub {
    gap: 20px;
    padding: 20px;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    background-color: #edf4ea
}

.modal-sub__img {
    min-width: 60px;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.modal-sub__text {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600
}

.modal-box {
    gap: 40px 5.2%
}

.modal-item {
    gap: 10px;
    width: 47.4%
}

.modal-item__img {
    min-width: 60px;
    width: 60px;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain
}

.modal-item__text {
    font-size: 16px;
    line-height: 24px
}

.modal-item.--wide {
    width: 100%
}

.modal-apoint {
    margin-top: 40px;
    border: 1px solid #dbdbdb;
    gap: 30px;
    padding: 40px;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20)
}

.modal-apoint__heading {
    margin-bottom: 20px
}

.modal-apoint__btns {
    gap: 10px
}

.modal-apoint__form {
    margin-bottom: 20px
}

.modal-apoint__form input {
    width: 48.65%
}

.modal-apoint__form .btn {
    width: 100%
}

.modal-right {
    width: 36.48%;
    gap: 10px
}

.modal-right__text {
    margin: 0 0 10px
}

.modal-right__text.--subtext {
    margin: 0 0 2px
}

.modal-right ul {
    margin: 0 0 10px
}

.modal-right ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px
}

.modal-right__text, .modal-feature__text {
    font-size: 16px;
    line-height: 24px
}

.modal-feature {
    border: 1px solid #dbdbdb;
    padding: 30px;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    margin-top: 10px
}

.modal-feature .vid {
    max-width: 340px;
    margin: 0 auto
}

.modal-feature__text {
    padding-top: 36px;
    background-repeat: no-repeat;
    background-position: top 10px center;
    -webkit-background-size: 22px auto;
    -o-background-size: 22px auto;
    background-size: 22px auto;
    background-image: url("../images/coma.svg")
}

.modal.--sent .modal-content {
    text-align: center
}

.modal__icon {
    display: block;
    margin: 0 auto;
    width: 60px;
    height: 60px;
    -o-object-fit: contain;
    object-fit: contain
}

@media screen and (max-width: 1194px) {
    .modal-content {
        max-width: 930px;
        padding: 64px 30px 30px
    }

    .modal-row {
        gap: 0
    }

    .modal .vid.--wide .vid__img {
        min-height: 180px
    }

    .modal .vid.--wide .vid-bottom {
        padding: 10px
    }

    .modal .vid.--wide .btn__play {
        font-size: 14px;
        padding: 15px 58px 15px 14px
    }

    .modal .vid.--wide .btn__play::after {
        width: 38px;
        height: 38px;
        right: 10px
    }

    .modal-left {
        width: 44.6%
    }

    .modal-left-top {
        gap: 30px
    }

    .modal-apoint {
        padding: 30px
    }

    .modal-apoint .btn {
        width: 100%
    }

    .modal-apoint__heading {
        font-size: 22px;
        line-height: 25.08px
    }

    .modal-apoint__form input {
        width: 100%
    }

    .modal-right {
        width: 51.9545%
    }
}

@media screen and (max-width: 1194px)and (min-width: 992px) {
    .modal-review {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .modal-review-title, .modal-review .vid {
        width: 100%
    }
}

@media screen and (max-width: 1194px) {
    .modal-review__heading {
        font-size: 22px;
        line-height: 25px;
        margin-bottom: 20px
    }

    .modal-sub__text {
        font-size: 16px;
        line-height: 24px
    }
}

@media screen and (max-width: 1194px)and (min-width: 992px) {
    .modal-box {
        gap: 20px
    }

    .modal-item {
        width: 100%
    }
}

@media screen and (max-width: 1194px) {
    .modal.--sent .modal-content, .modal.--form .modal-content {
        gap: 10px;
        max-width: 411px
    }
}

@media screen and (max-width: 992px) {
    .modal-content {
        max-width: 708px
    }

    .modal-row {
        gap: 30px
    }

    .modal-left, .modal-right {
        width: 100%
    }

    .modal .vid.--wide {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .modal-right {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .modal__heading {
        font-size: 30px;
        line-height: 34.2px
    }

    .modal-left {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .modal-sub {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .modal__img {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
        -moz-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .modal-box {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .modal-review {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .modal-review__heading {
        font-size: 18px;
        line-height: 20.52px;
        margin-bottom: 10px
    }

    .modal-feature {
        padding: 0;
        margin-top: 30px;
        border: none
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .modal-feature .vid {
        width: 55.63%
    }

    .modal-feature__text {
        width: 44.37%;
        padding: 0 0 0 42px;
        background-position: left 10px top
    }
}

@media screen and (max-width: 992px) {
    .modal.--service .modal__close {
        width: 100%;
        height: 64px;
        top: 0;
        left: 0;
        background-position: center right 20px
    }

    .modal-box {
        gap: 20px
    }
}

@media screen and (max-width: 767px) {
    .modal-row {
        gap: 20px
    }

    .modal__textline {
        font-size: 14px;
        line-height: 22px
    }

    .modal-review {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
        -moz-box-orient: vertical;
        -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .modal-review-title, .modal-review .vid {
        width: 100%
    }

    .modal-item {
        width: 100%
    }

    .modal-apoint__heading {
        font-size: 18px;
        line-height: 20.52px
    }

    .modal.--service .modal {
        background-color: var(--white)
    }

    .modal.--service .modal-content {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        width: 100%;
        height: 100%;
        -webkit-border-radius: 0;
        border-radius: 0;
        padding: 54px 14px 40px
    }

    .modal.--service .modal__close {
        width: 100%;
        background-color: var(--white);
        position: fixed;
        z-index: 9999;
        height: 54px;
        top: 0;
        left: 0;
        background-position: center right 20px
    }

    .modal-item, .modal-box {
        gap: 20px
    }
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider {
    margin: 0 !important;
    position: relative
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    margin: 0;
    min-height: 1px;
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none;
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-slide .slick-initialized {
    display: block
}

.slick-slide .slick-loading {
    visibility: hidden
}

.slick-slide .slick-vertical {
    display: block;
    height: auto;
    border: 1px solid rgba(0, 0, 0, 0)
}

.slick-arrow.slick-hidden {
    display: none
}

.slick-arrow {
    width: 40px;
    height: 40px;
    background-color: var(--green);
    color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 48%;
    -webkit-transform: translateY(-50%) !important;
    -ms-transform: translateY(-50%) !important;
    -o-transform: translateY(-50%) !important;
    transform: translateY(-50%) !important;
    z-index: 100;
    border: none;
    background-image: url("../images/slider-arrow.svg");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: 55% auto;
    -o-background-size: 55% auto;
    background-size: 55% auto;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    -o-transform-origin: 50% 0;
    transform-origin: 50% 0
}

.slick-arrow::before {
    display: none
}

.slick-arrow:hover {
    background-color: var(--green-light)
}

.slick-prev {
    left: -100px;
    -webkit-transform: scale(-1) translateY(-50%) !important;
    -ms-transform: scale(-1) translateY(-50%) !important;
    -o-transform: scale(-1) translateY(-50%) !important;
    transform: scale(-1) translateY(-50%) !important
}

.slick-next {
    right: -100px
}

.slick-disabled {
    cursor: no-drop;
    pointer-events: none;
    opacity: 0
}

.slick-dots {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    list-style: none
}

.slick-dots li {
    font-size: 0;
    line-height: 0;
    width: unset;
    display: inline-block;
    margin: 0;
    padding: 0 5px;
    background: none
}

.slick-dots li::before {
    display: none
}

.slick-dots li.slick-active button {
    background-color: var(--green)
}

.slick-dots button {
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: #edf4ea;
    margin: 0;
    padding: 0;
    color: rgba(0, 0, 0, 0)
}

@media screen and (max-width: 1520px) {
    .slick-prev {
        left: -40px
    }

    .slick-next {
        right: -40px
    }
}

@media screen and (max-width: 992px) {
    .slick-prev {
        left: -54px
    }

    .slick-next {
        right: -54px
    }
}

.main {
    position: relative;
    z-index: 1;
    overflow: hidden
}

@media screen and (min-width: 767px) {
    .main__bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -111111;
        -o-object-fit: cover;
        object-fit: cover
    }

    .main::before {
        content: "";
        display: block;
        width: 100%;
        min-width: 1920px;
        height: 70px;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 0;
        z-index: -1;
        background-repeat: no-repeat;
        background-image: url("../images/main__bottom.svg");
        -webkit-background-size: 100% auto;
        -o-background-size: 100% auto;
        background-size: 100% auto;
        background-position: center bottom
    }
}

.main h1 {
    margin-bottom: 30px
}

.main-row {
    min-height: 774px;
    padding-bottom: 65px
}

.main-btns {
    gap: 13px
}

.main-btns .btn {
    width: 44.3%
}

.main-content {
    margin: auto 0
}

.main__subheading {
    font-size: 22px;
    line-height: 25.08px;
    margin-bottom: 4px
}

.main__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    margin: 0 0 20px
}

@media screen and (max-width: 1500px) {
    .main {
        -webkit-background-size: 1920px auto, cover;
        -o-background-size: 1920px auto, cover;
        background-size: 1920px auto, cover
    }
}

@media screen and (max-width: 1194px) {
    .main-row {
        min-height: 640px;
        padding-bottom: 70px
    }

    .main h1 {
        margin-bottom: 20px
    }

    .main-btns .btn {
        width: 47.8%
    }
}

@media screen and (max-width: 992px) {
    .main__text {
        margin-bottom: 10px
    }

    .main-btns {
        gap: 13px
    }

    .main-btns .btn {
        padding: 17px 20px;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content
    }
}

@media screen and (max-width: 767px) {
    .main {
        background-color: #f4f4f4
    }

    .main-row {
        max-height: unset;
        height: unset;
        padding-bottom: 60px
    }

    .main__bg {
        height: 310px;
        -webkit-border-radius: var(--rad-20);
        border-radius: var(--rad-20);
        -o-object-fit: cover;
        object-fit: cover;
        display: block;
        width: 100%;
        margin: 0 auto 20px
    }

    .main-btns .btn {
        width: 100%
    }

    .main__subheading {
        font-size: 18px;
        line-height: 20.52px
    }
}

.problems {
    padding: 50px 0
}

.problems .btn__play {
    text-transform: uppercase
}

.problems-img {
    position: relative
}

.problems-img .btn__play {
    position: absolute;
    bottom: 30px;
    right: 40px
}

.problems__img {
    display: block;
    height: 100%;
    aspect-ratio: 16/9.875;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20)
}

.problems-items {
    gap: 20px;
    margin-bottom: 20px
}

.problems-item {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    border: 1px solid #dbdbdb;
    padding: 20px 26px;
    -webkit-border-radius: var(--rad-10);
    border-radius: var(--rad-10);
    color: var(--green);
    display: inline-block
}

.problems-item i {
    font-style: normal;
    font-size: 28px;
    line-height: 40px;
    margin-left: 3px
}

.problems-item__heading {
    white-space: nowrap;
    font-weight: 700;
    font-size: 44px;
    line-height: 50px;
    display: block;
    margin-bottom: 4px
}

.problems-item__text {
    display: block;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    line-height: 24px
}

.problems .list-arrow {
    margin-bottom: 0
}

@media screen and (max-width: 1194px) {
    .problems-img .btn__play {
        bottom: 10px;
        right: 22px
    }

    .problems-items {
        gap: 18px
    }

    .problems-item {
        padding: 19px 13px
    }

    .problems-item__heading {
        font-size: 34px;
        line-height: 40px;
        margin: 0
    }
}

@media screen and (max-width: 992px) {
    .problems {
        padding: 40px 0
    }

    .problems h2 {
        margin-bottom: 40px
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .problems .btn__play {
        bottom: 20px;
        right: 32px;
        padding: 21px 100px 21px 30px
    }
}

@media screen and (max-width: 992px) {
    .problems-img {
        margin-bottom: 30px
    }

    .problems-items {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -moz-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .problems ul li {
        line-height: 26px
    }
}

@media screen and (max-width: 992px) {
    .problems-item {
        width: 32%;
        padding: 19px 29px
    }
}

@media screen and (max-width: 767px) {
    .problems {
        padding: 60px 0 30px
    }

    .problems h2 {
        margin-bottom: 20px
    }

    .problems h2 br {
        display: none
    }

    .problems-items {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 20px 0
    }

    .problems .btn__play {
        left: 19%;
        right: auto
    }

    .problems-item {
        width: 48%
    }

    .problems-item:first-child {
        width: 100%
    }
}

.signup {
    padding: 70px 0 114px
}

.signup-box {
    position: relative;
    z-index: 1;
    padding: 70px;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    background-color: #edf4ea
}

.signup h2 {
    margin-bottom: 30px
}

.signup__subheading {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin: 0 0 12px
}

.signup ul {
    margin: 0
}

.signup ul li {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 12px
}

.signup-title {
    width: 42.8%
}

.signup-form {
    width: 401px
}

.signup-form .btn {
    width: 100%
}

.signup .form__policy {
    padding: 10px 0 0;
    text-align: center
}

.signup__tool, .signup__tooth {
    position: absolute;
    z-index: -1;
    pointer-events: none
}

.signup__tool {
    top: 0;
    left: 40%
}

.signup__tooth {
    bottom: -20px;
    left: 45%
}

@media screen and (max-width: 1194px) {
    .signup {
        padding-bottom: 134px
    }

    .signup-box {
        padding: 40px
    }

    .signup h2 {
        margin-bottom: 20px
    }

    .signup-title {
        width: 36%
    }

    .signup__tool {
        left: 34%
    }

    .signup__tooth {
        bottom: -55px;
        left: 35%
    }
}

@media screen and (max-width: 992px) {
    .signup {
        padding: 50px 0
    }

    .signup-title {
        width: 74.7%;
        margin-bottom: 25px
    }

    .signup-form {
        width: 74.7%
    }

    .signup .form__policy {
        text-align: left
    }

    .signup__tool {
        left: auto;
        right: 40px
    }

    .signup__tooth {
        left: auto;
        right: 20px;
        bottom: 70px
    }
}

@media screen and (max-width: 767px) {
    .signup {
        padding: 30px 0
    }

    .signup__tool, .signup__tooth {
        display: none
    }

    .signup-box {
        padding: 30px
    }

    .signup-title, .signup-form {
        width: 100%
    }

    .signup__subheading {
        margin-bottom: 14px
    }

    .signup ul li {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 14px
    }
}

.equipment {
    padding: 0 0 60px;
    text-align: center
}

.equipment h2 {
    margin: 0
}

.equipment__img {
    display: block;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    margin: 60px auto 20px
}

.equipment-countries {
    text-align: left;
    color: #999f9f;
    font-size: 14px;
    line-height: 22px;
    padding: 0 20px
}

.equipment-countries img {
    display: block;
    margin-right: 4px
}

@media screen and (max-width: 1194px) {
    .equipment {
        padding-bottom: 95px
    }
}

@media screen and (max-width: 992px) {
    .equipment {
        padding: 40px 0 60px
    }

    .equipment__img {
        margin: 40px auto 20px
    }

    .equipment-countries {
        gap: 20px 40px;
        padding: 0
    }

    .equipment-countries span {
        min-width: 15%
    }
    .services h2 {
        font-size: 28px;
        line-height: 32px;
    }
    .appointment-box {
        padding: 40px;
    }
    .specialists .slide-img {
        height: 240px;
    }
}

@media screen and (max-width: 767px) {
    .equipment {
        padding: 30px 0 0
    }

    .equipment__img {
        margin: 20px auto 20px
    }

    .equipment-countries {
        gap: 20px 0;
        padding: 0 10px
    }

    .equipment-countries span {
        min-width: 45%
    }
}

.system {
    position: relative;
    bottom: 100px
}

.system h2 {
    margin-bottom: 30px
}

.system__text {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 10px
}

.system__img {
    display: block;
    margin: 0 0 0 auto
}

@media screen and (max-width: 1194px) {
    .system__text {
        font-size: 18px;
        line-height: 26px;
        padding-bottom: 5px
    }
}

@media screen and (max-width: 992px) {
    .system {
        bottom: 90px
    }

    .system h2 {
        margin-bottom: 10px
    }

    .system__text {
        font-size: 16px;
        line-height: 24px;
        padding-bottom: 0
    }

    .system__img {
        margin-bottom: 42px
    }
}

@media screen and (max-width: 767px) {
    .system {
        bottom: 0;
        padding-bottom: 30px
    }

    .system__img {
        margin: 0
    }

    .system__text {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 10px
    }
}

.services {
    text-align: center;
    padding: 20px 0 0;
    gap: 30px 0
}
.services label{
    cursor:pointer;
}

.services h2 {
    margin-bottom: 30px
}

.services-card {
    width: 100%;
    padding: 30px;
    min-height: 100%;
    -webkit-border-radius: var(--rad-10);
    border-radius: var(--rad-10);
    border: 1px solid #dbdbdb;
    background-color: var(--white);
    outline: 2px solid rgba(255, 255, 255, 0);
    -webkit-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s
}

.services-card:hover {
    border-color: rgba(255, 255, 255, 0);
    outline-color: var(--green)
}

.services-card__img {
    width: 68px;
    height: 68px;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    margin: 0 auto 10px
}

.services-card__heading {
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    margin: 0 0 20px
}

.services-card .btn {
    margin: auto auto 0
}

@media screen and (max-width: 1194px) {
    .services-card__heading {
        font-size: 20px;
        line-height: 26px
    }
}

@media screen and (max-width: 992px) {
    .services {
        padding-top: 0
    }

    .services h2 {
        margin-bottom: 10px
    }

    .services-card__heading {
        font-size: 24px;
        line-height: 30px
    }
}

@media screen and (max-width: 767px) {
    .services {
        padding: 30px 0 0;
        gap: 20px
    }

    .services h2 {
        margin-bottom: 0;
        font-size: 22px;
        line-height: 25px;
    }
    .painless .h1 {
        margin: 0 0 20px;
    }
    .reviews__text {
        font-size: 14px;
        line-height: 22px;
    }
}

.appointment {
    padding: 127px 0 126px;
    background-repeat: no-repeat;
    background-position: top center;
    -webkit-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-image: url("../images/appointment-bg.jpg");
    overflow: hidden
}

.appointment h2 {
    margin-bottom: 20px
}

.appointment-box {
    background-color: var(--white);
    max-width: 1370px;
    margin: 0 auto;
    -webkit-border-radius: 80px;
    border-radius: 80px;
    padding: 70px;
    border: 1px solid #dbdbdb
}

@media screen and (min-width: 992px) {
    .appointment-box {
        background-repeat: no-repeat;
        background-position: bottom right;
        -webkit-background-size: auto 300px;
        -o-background-size: auto 300px;
        background-size: auto 300px;
        background-image: url("../images/appointment.png")
    }
}

.appointment input, .appointment .btn {
    width: 32%;
    margin: 0
}

.appointment-form {
    margin-bottom: 10px
}

@media screen and (max-width: 1194px) {
    .appointment-box {
        padding: 60px 20px
    }
}

@media screen and (max-width: 992px) {
    .appointment {
        padding: 115px 0
    }

    .appointment-box {
        max-width: 708px;
        padding: 40px 38px;
        -webkit-border-radius: 40px;
        border-radius: 40px
    }

    .appointment-form {
        gap: 20px
    }

    .appointment input {
        width: -webkit-calc(50% - 10px);
        width: calc(50% - 10px)
    }

    .appointment .btn {
        width: 100%
    }
}

@media screen and (max-width: 767px) {
    .appointment-box {
        padding: 30px 18px;
        -webkit-border-radius: 20px;
        border-radius: 20px;
        max-width: -webkit-calc(100% - 28px);
        max-width: calc(100% - 28px)
    }

    .appointment input {
        width: 100%
    }
}

@media screen and (max-width: 1194px) {
    .appointment {
        padding: 148px 0 147px
    }

    .appointment-box {
        padding: 60px 15px;
        -webkit-border-radius: 60px;
        border-radius: 60px
    }
}

@media screen and (max-width: 992px) {
    .appointment {
        padding: 115px 0
    }

    .appointment h2 {
        max-width: 90%
    }
}

@media screen and (max-width: 767px) {
    .appointment {
        padding: 60px 0
    }

    .appointment h2 {
        max-width: 100%
    }

    .appointment-box {
        padding: 30px 16px;
        -webkit-border-radius: var(--rad-20);
        border-radius: var(--rad-20)
    }
}

.specialists {
    padding: 120px 0;
    overflow: hidden
}

.specialists h2 {
    text-align: center;
    margin-bottom: 40px
}

.specialists .slide {
    width: 222px;
    display: inline-block;
    vertical-align: top
}

.specialists .slide-img {
    position: relative;
    z-index: 1;
    height: 268px;
    margin-bottom: 20px
}

.specialists .slide-img::before {
    content: "";
    display: block;
    width: 100%;
    height: -webkit-calc(100% - 20px);
    height: calc(100% - 20px);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -11;
    background-color: #edf4ea;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20)
}

.specialists .slide__img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center bottom;
    object-position: center bottom;
    z-index: 1
}

.specialists .slide__heading {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    padding-right: 10px;
    margin: 0 0 6px
}

.specialists .slide__text {
    font-size: 13px;
    line-height: 18px;
    color: #999f9f
}

.specialists .slick-track {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -moz-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.specialists .slick-dots {
    padding-top: 40px
}
.atmosphere .vid__img {
    max-height: 262px;
    object-fit: cover;
}
.specialists .slick-slide {
    padding: 0 7px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    float: none;
    height: unset;
    gap: 40px
}

.specialists .slick-slide > div {
    min-height: -webkit-calc(50% - 20px);
    min-height: calc(50% - 20px)
}

@media screen and (max-width: 1194px) {
    .specialists {
        padding-right: 40px;
        padding-left: 40px
    }
}

@media screen and (max-width: 992px) {
    .specialists {
        padding: 90px 56px
    }

    .specialists .slick-slide {
        gap: 20px
    }

    .specialists .slick-slide > div {
        min-height: -webkit-calc(50% - 25px);
        min-height: calc(50% - 25px)
    }
}

@media screen and (max-width: 767px) {
    .specialists {
        padding: 60px 0
    }

    .specialists h2 {
        padding: 0 12px;
        margin-bottom: 20px
    }

    .specialists .col-12, .specialists .container {
        padding: 0
    }

    .specialists .slide {
        margin-bottom: 0
    }

    .specialists .slide-img {
        height: 176px
    }

    .specialists .slide__heading {
        padding: 0;
        font-size: 14px;
        line-height: 20px
    }

    .specialists .slide__text {
        font-size: 12px;
        line-height: 16px
    }

    .specialists .slick-dots {
        padding-top: 20px
    }

    .specialists .slick-list {
        padding: 0 7px
    }

    .specialists .slick-slide {
        width: 326px;
        padding: 0 5px;
        min-height: 310px
    }
}

.painless {
    padding: 60px 0;
    margin-bottom: 120px;
    -webkit-border-radius: 100px;
    border-radius: 100px;
    background-color: #edf4ea
}
.painless .vid__img {
    max-height: 464px;
    object-position: center;
}

.painless .h1 {
    margin-bottom: 0
}

.painless__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px
}

.painless__text mark {
    font-weight: 600
}

.painless-box {
    background-color: var(--white);
    padding: 20px;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    gap: 40px;
    margin-top: 20px
}

.painless .row {
    gap: 35px
}

@media screen and (max-width: 1194px) {
    .painless {
        -webkit-border-radius: 60px;
        border-radius: 60px
    }

    .painless .row {
        gap: 13px
    }
}

@media screen and (max-width: 1194px)and (min-width: 992px) {
    .painless .col-lg-6 {
        width: 55.3%
    }

    .painless .col-lg-5 {
        width: 40.8%
    }
}

@media screen and (max-width: 992px) {
    .painless {
        -webkit-border-radius: 40px;
        border-radius: 40px;
        margin-bottom: 90px;
        padding: 40px 0 20px
    }

    .painless .h1 {
        font-size: 30px;
        line-height: 34.2px;
        margin: 0 0 40px
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .painless .h1 br {
        display: none
    }
}

@media screen and (max-width: 992px) {
    .painless .row {
        gap: 0
    }

    .painless-box {
        gap: 10px;
        margin: 0 0 10px;
        padding: 10px 20px;
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .painless .container {
        max-width: 710px
    }

    .painless .col-md-6 {
        width: 52.54%
    }

    .painless .col-md-6:nth-child(2) {
        max-width: 46.9%
    }
}

@media screen and (max-width: 767px) {
    .painless {
        padding: 30px 16px;
        -webkit-border-radius: var(--rad-20);
        border-radius: var(--rad-20);
        margin: 0 auto;
        max-width: -webkit-calc(100% - 28px);
        max-width: calc(100% - 28px);
        margin-bottom: 60px
    }

    .painless .h1 {
        font-size: 26px;
        line-height: 29.64px;
        max-width: 310px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .painless-box {
        margin: 20px 0 0;
        padding: 10px
    }

    .painless__text {
        font-size: 14px;
        line-height: 22px
    }
}

.reviews {
    text-align: center;
    max-width: 1894px;
    margin: 0 auto;
    padding: 0 48px 60px;
    overflow: hidden
}

.reviews-slider {
    padding-bottom: 120px;
    border-bottom: 1px solid #dbdbdb
}

.reviews h2 {
    padding: 0 14px;
    margin-bottom: 40px
}

.reviews h2 img {
    display: block;
    margin: 0 auto 10px
}

.reviews-item {
    text-align: left;
    width: 314px;
    margin: 0 10px
}

.reviews-item .vid__img {
    -webkit-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease
}

.reviews-item .vid-bottom {
    padding-bottom: 20px
}

.reviews-item .vid:hover .vid__img {
    opacity: .8
}

.reviews-item .vid:hover .btn__play {
    color: var(--green)
}

.reviews-item .vid:hover .btn__play::after {
    background-color: var(--green)
}

.reviews__text {
    margin-top: 10px;
    font-size: 16px;
    line-height: 24px;
    padding: 26px 0 0;
    background-repeat: no-repeat;
    background-position: top left;
    background-image: url("../images/coma.svg");
    -webkit-background-size: 22px auto;
    -o-background-size: 22px auto;
    background-size: 22px auto
}

.reviews .slick-arrow {
    outline: 3px solid var(--white);
    top: 36%
}

.reviews .slick-prev {
    left: 0
}

.reviews .slick-next {
    right: 0
}

@media screen and (max-width: 1500px) {
    .reviews {
        padding: 0 0 60px
    }

    .reviews-item {
        width: 340px
    }

    .reviews .slick-list {
        padding: 0 47px
    }

    .reviews .slick-dots {
        margin-top: 40px
    }

    .reviews .slick-prev {
        left: 27px
    }

    .reviews .slick-next {
        right: 27px
    }
}

@media screen and (max-width: 992px) {
    .reviews {
        padding: 0 0 45px
    }

    .reviews-item {
        width: 301px
    }

    .reviews-slider {
        padding-bottom: 90px
    }
}

@media screen and (max-width: 767px) {
    .reviews {
        padding: 0 0 30px
    }

    .reviews h2 {
        margin-bottom: 20px
    }

    .reviews-item {
        width: 290px
    }

    .reviews-item .vid-bottom {
        padding-bottom: 10px
    }

    .reviews .slick-dots {
        margin-top: 20px
    }

    .reviews .slick-list {
        padding: 0 16px
    }

    .reviews-slider {
        padding-bottom: 60px
    }
}

.team {
    padding: 60px 0 0
}

@media screen and (min-width: 1194px) {
    .team {
        position: relative;
        z-index: 1;
        padding-bottom: 40px
    }

    .team::after {
        pointer-events: none;
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        bottom: 0;
        left: 0;
        height: -webkit-calc(100% - 300px);
        height: calc(100% - 300px);
        background-color: #edf4ea;
        z-index: -111
    }
}

.team .h1 {
    text-align: center
}

.team__img {
    display: block;
    margin: 0 auto;
    -webkit-border-radius: 100px 100px var(--rad-20) var(--rad-20);
    border-radius: 100px 100px var(--rad-20) var(--rad-20)
}

@media screen and (max-width: 1194px) {
    .team__img {
        -webkit-border-radius: 60px 60px 10px 10px;
        border-radius: 60px 60px 10px 10px
    }
}

@media screen and (max-width: 992px) {
    .team {
        padding: 45px 0
    }

    .team .h1 {
        font-size: 28px;
        line-height: 31.92px
    }
}

@media screen and (max-width: 767px) {
    .team {
        padding: 30px 0 0
    }

    .team__img {
        -webkit-border-radius: var(--rad-10);
        border-radius: var(--rad-10);
        width: -webkit-calc(100% - 24px);
        width: calc(100% - 24px);
        margin: 0 auto
    }

    .team .h1 {
        padding: 0 15px;
        font-size: 22px;
        line-height: 25.08px
    }
}

.author {
    -webkit-border-radius: 80px;
    border-radius: 80px;
    background-color: var(--white);
    padding: 80px 100px;
    max-width: 1370px;
    margin: 0 auto
}

@media screen and (min-width: 1194px) {
    .author {
        position: relative;
        z-index: 1;
        top: -200px
    }
}

.author-col {
    width: 43.7%
}

.author__img {
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    display: block;
    width: 100%;
    margin-bottom: 24px
}

.author__name {
    margin-bottom: 4px
}

.author__position {
    font-size: 18px;
    line-height: 26px;
    color: #999f9f;
    margin-bottom: 24px
}

.author__text {
    font-size: 18px;
    line-height: 26px
}

.author h2 {
    margin-bottom: 30px
}

.author-content {
    border: 1px solid #dbdbdb;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    padding: 40px;
    width: 52.357%;
    position: relative;
    z-index: 1
}

.author-content::before {
    content: "";
    display: inline-block;
    width: 79px;
    height: 58px;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    background-image: url(../images/coma.svg);
    position: absolute;
    left: 40px;
    top: -32px
}

.author-box {
    background-color: var(--white);
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    border: 1px solid #dbdbdb;
    padding: 0 42px 0 30px;
    gap: 44px
}

.author-box__img {
    position: relative;
    top: -20px
}

.author-box__medal {
    position: absolute;
    top: -1px;
    left: -35px
}

.author-box__paper {
    display: block;
    margin: auto 0 auto auto;
    -webkit-border-radius: var(--rad-10);
    border-radius: var(--rad-10)
}

.author-box__text {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    padding: 20px 0
}

.author-box__text a:not(.link) {
    display: inline
}

.author-box-img {
    position: relative;
    z-index: 1;
    width: 37%;
    padding-bottom: 8px
}

.author-box.--second {
    gap: 30px;
    padding: 0 30px 0 20px;
    margin-top: 10px
}

.author-box.--second .author-box__text {
    width: 53%
}

@media screen and (max-width: 1194px) {
    .author {
        padding: 60px 0 120px
    }

    .author__text {
        font-size: 16px;
        line-height: 24px
    }

    .author-col {
        width: 48.1%
    }

    .author-content {
        width: 48.1%
    }

    .author-box {
        gap: 16px;
        padding: 0 20px 0 30px
    }

    .author-box-img {
        width: 31%
    }

    .author-box__medal {
        left: -26px
    }

    .author-box.--second .author-box__text {
        width: 61%
    }
}

@media screen and (max-width: 1194px)and (min-width: 992px) {
    .author__name {
        font-size: 28px;
        line-height: 27px
    }
}

@media screen and (max-width: 992px) {
    .author {
        padding: 60px 0 90px
    }

    .author-col {
        width: 47.89%
    }

    .author-content {
        width: 49.3%;
        padding: 20px
    }

    .author-content h2 {
        margin-bottom: 20px
    }

    .author-content::before {
        width: 39px;
        height: 29px;
        top: -17px;
        left: 59px
    }

    .author__img {
        margin-bottom: 20px
    }

    .author__position {
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px
    }

    .author-box {
        gap: 0;
        padding: 0 20px 0 30px
    }

    .author-box__medal {
        left: -20px
    }

    .author-box__paper {
        margin: 20px 0 20px auto
    }

    .author-box__img {
        top: 0
    }

    .author-box__text {
        display: block
    }

    .author-box.--second {
        padding: 0 30px 20px
    }

    .author-box.--second .author-box-img {
        width: 100%;
        padding: 0
    }

    .author-box.--second .author-box__text {
        padding: 0;
        width: 100%
    }
}

@media screen and (max-width: 767px) {
    .author {
        padding: 20px 0 60px
    }

    .author-col {
        width: 100%;
        margin-bottom: 20px
    }

    .author-content {
        width: 100%
    }

    .author__text {
        font-size: 14px;
        line-height: 22px
    }

    .author-box {
        padding: 0 20px 0 20px
    }

    .author-box__img {
        margin-left: 17px
    }

    .author-box.--second {
        padding: 0 20px 20px 20px
    }

    .author-box__paper {
        margin: 20px 0 10px auto
    }

    .author__name {
        margin: 0
    }
}

.qualification {
    text-align: center;
    padding: 80px 0 0
}

.qualification h2 {
    max-width: 792px;
    margin: 0 auto 40px
}

.qualification-wrap {
    gap: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.qualification__img {
    max-width: 30%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20)
}

@media screen and (max-width: 1194px) {
    .qualification {
        padding-top: 120px
    }

    .qualification h2 {
        max-width: 610px
    }

    .qualification__img {
        max-height: 28.13vw
    }
}

@media screen and (max-width: 992px) {
    .qualification {
        padding-top: 90px
    }

    .qualification-wrap {
        max-width: 572px;
        margin: 0 auto
    }

    .qualification__img {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -moz-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        height: 354px;
        max-height: unset;
        max-width: unset
    }

    .qualification__img:nth-child(1) {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -moz-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .qualification__img:nth-child(4) {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -moz-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

@media screen and (max-width: 767px) {
    .qualification {
        padding-top: 60px
    }

    .qualification h2 {
        margin-bottom: 20px
    }

    .qualification-wrap {
        width: 100vw;
        position: relative;
        z-index: 1;
        left: -12px
    }

    .qualification-wrap:not(.slick-slider) {
        overflow-y: scroll;
        padding: 0 12px;
        -webkit-box-pack: start !important;
        -webkit-justify-content: flex-start !important;
        -moz-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .qualification__img {
        width: unset;
        max-width: 96vw;
        height: 364px;
        margin: 0 5px
    }

    .qualification .slick-slider {
        display: block !important
    }

    .qualification .slick-list {
        padding: 0 14px
    }

    .qualification .slick-dots {
        padding-top: 20px
    }
}

@media screen and (min-width: 1194px) {
    .atmosphere {
        position: relative;
        top: -80px
    }
}

.atmosphere h2 {
    font-size: 56px;
    line-height: 63px;
    margin: 0 0 20px
}

.atmosphere__text {
    font-weight: 700;
    font-size: 36px;
    line-height: 41.04px
}

.atmosphere .vid-bottom {
    padding: 20px 10px;
    text-align: right
}

@media screen and (max-width: 1194px) {
    .atmosphere {
        padding: 120px 0;
        background-color: #edf4ea
    }

    .atmosphere h2 {
        font-size: 48px;
        line-height: 54.72px
    }

    .atmosphere__text {
        font-size: 28px;
        line-height: 31px
    }
}

@media screen and (max-width: 992px) {
    .atmosphere {
        padding: 90px 0 0
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .atmosphere {
        background-color: var(--white);
        position: relative;
        z-index: 1
    }

    .atmosphere::after {
        pointer-events: none;
        content: "";
        display: block;
        width: 100%;
        height: 45%;
        background-color: #edf4ea;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1
    }
}

@media screen and (max-width: 992px) {
    .atmosphere h2 {
        font-size: 36px;
        line-height: 41px;
        margin-bottom: 10px
    }

    .atmosphere__text {
        font-size: 26px;
        line-height: 29px;
        margin-bottom: 30px
    }
}

@media screen and (max-width: 767px) {
    .atmosphere {
        padding: 60px 0
    }

    .atmosphere h2 {
        font-size: 29px;
        line-height: 33px
    }

    .atmosphere__text {
        font-size: 20px;
        line-height: 22px
    }

    .atmosphere .vid-bottom {
        padding: 10px
    }

    .atmosphere .btn__play.--md {
        padding: 14px 56px 14px 14px;
        font-size: 14px
    }

    .atmosphere .btn__play.--md::after {
        width: 36px;
        height: 36px;
        right: 10px
    }
}

.galery {
    gap: 10px;
    margin-top: 40px
}

.galery__img {
    position: relative;
    z-index: 1
}

.galery__img img {
    width: 100%;
    height: 100%;
    -webkit-border-radius: var(--rad-10);
    border-radius: var(--rad-10);
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (min-width: 767px) {
    .galery__img {
        width: 100%
    }

    .galery__img.--long {
        width: -webkit-calc(50% - 5px);
        width: calc(50% - 5px)
    }

    .galery__img::after {
        -webkit-border-radius: var(--rad-10);
        border-radius: var(--rad-10);
        -webkit-transition: all ease .3s;
        -o-transition: all ease .3s;
        transition: all ease .3s;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 11;
        background-color: rgba(0, 0, 0, .2);
        background-repeat: no-repeat;
        background-position: center center;
        background-image: url("../images/zoom.svg");
        opacity: 0
    }

    .galery__img:hover::after {
        opacity: 1
    }
}

.galery-left {
    width: 40.086%;
    gap: 10px
}

.galery-left .galery__img {
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px)
}

.galery-left .galery__img:first-child {
    width: 100%
}

.galery-right {
    gap: 10px;
    width: -webkit-calc(59.914% - 10px);
    width: calc(59.914% - 10px)
}

.galery-col {
    gap: 10px;
    width: -webkit-calc(50% - 5px);
    width: calc(50% - 5px)
}

@media screen and (max-width: 992px) {
    .galery {
        margin-top: 50px
    }

    .galery-left {
        width: 100%
    }

    .galery-right {
        width: 100%
    }
}

@media screen and (min-width: 767px) {
    .galery-slider {
        display: none !important
    }
}

@media screen and (max-width: 767px) {
    .galery {
        display: none
    }

    .galery__img {
        min-width: 200px;
        max-width:200px;
        height: 170px
    }
    .galery__img img
    {
        max-width:200px;
    }

    .galery-slider {
        width: 100vw;
        max-width: 540px;
        position: relative;
        left: 0;
        padding: 50px 0 0 !important
    }

    .galery-slider .slick-list {
        padding: 0 10px
    }

    .galery-slider .slick-dots li button {
        background-color: var(--white)
    }

    .galery-slider .slick-dots li.slick-active button {
        background-color: var(--green)
    }

    .galery-slider .slick-slide {
        margin: 0 5px 20px
    }
}

.footer {
    padding: 120px 0 0
}

.footer-map {
    max-width: 1370px;
    min-height: 549px;
    margin: 0 auto 10px;
    position: relative;
    z-index: 1
}

.footer__text {
    font-size: 14px;
    line-height: 22px
}

.footer-bottom {
    width: 100%;
    padding: 30px 0;
    gap: 122px
}

.footer h2 {
    margin: 0
}

.footer-content {
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    padding: 30px;
    gap: 20px
}

.footer h2 {
    font-size: 28px;
    line-height: 31.92px
}

.footer__phone {
    font-weight: 700;
    font-size: 18px;
    line-height: 26px;
    display: block
}

.footer__phone:hover {
    text-decoration: underline
}

.footer__cont {
    font-size: 16px;
    line-height: 24px;
    font-style: normal
}

.footer iframe {
    -webkit-border-radius: var(--rad-20);
    border-radius: var(--rad-20);
    width: 100% !important;
    background-color: #eee
}

@media screen and (min-width: 767px) {
    .footer-content {
        position: absolute;
        z-index: 1;
        top: 50%;
        background-color: var(--white);
        left: 100px;
        -webkit-box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, .1019607843);
        box-shadow: 0px 14px 20px 0px rgba(0, 0, 0, .1019607843);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    .footer iframe {
        height: 100% !important;
        position: absolute;
        top: 0;
        left: 0
    }
}

@media screen and (max-width: 1194px) {
    .footer {
        padding-top: 60px
    }

    .footer-content {
        left: 47px
    }

    .footer-map {
        margin: 0
    }

    .footer-bottom {
        padding: 30px 0;
        gap: 52px
    }
}

@media screen and (max-width: 992px) {
    .footer {
        padding-top: 45px
    }

    .footer h2 {
        font-size: 24px;
        line-height: 27.36px
    }

    .footer-content {
        left: 30px
    }

    .footer__text {
        text-align: right
    }

    .footer-bottom {
        padding: 30 0 30px
    }
}

@media screen and (max-width: 992px)and (min-width: 767px) {
    .footer__cont {
        font-size: 14px;
        line-height: 22px
    }

    .footer__phone {
        font-size: 16px;
        line-height: 24px
    }
}

@media screen and (max-width: 767px) {
    .footer {
        padding-top: 60px
    }

    .footer-map {
        padding: 0 12px
    }

    .footer-content {
        padding: 0 0 40px
    }

    .footer iframe {
        height: 549px !important
    }

    .footer__text {
        width: 100%;
        text-align: center
    }

    .footer-bottom {
        padding: 40px 0 30px;
        gap: 30px
    }
}

/*# sourceMappingURL=style.css.map */