@charset "utf-8";

/* Fonts */
@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TildaSans';
    src: url('../fonts/TildaSans-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root{
    --accent-color1: #378316;
    --accent-color2: #2D3244;
    --accent-color3: #FCD696;
    --accent-color4: #F7F8FA;
    --accent-color5: #306141;
    --accent-color6: #55B783;
    --accent-font-color1: #fff;
}



/* ===== Modern Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
    height: 100%;
    font-size: 10px;
    -webkit-text-size-adjust: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all ease-out 300ms;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
/* ===== /. Modern Reset ===== */

.main-content{
    flex: 1 0 auto;
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.text-left {
    text-align: left;
}

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

.text-right {
    text-align: right;
}

.text-left-xs {
    text-align: left;
}

.text-center-xs {
    text-align: center;
}

.text-right-xs {
    text-align: right;
}

@media (min-width: 768px) {
    .text-left-sm {
        text-align: left;
    }

    .text-center-sm {
        text-align: center;
    }

    .text-right-sm {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .text-left-md {
        text-align: left;
    }

    .text-center-md {
        text-align: center;
    }

    .text-right-md {
        text-align: right;
    }
}

@media (min-width: 1450px) {
    .container {
        width: 1420px;
    }

    .text-left-lg {
        text-align: left;
    }

    .text-center-lg {
        text-align: center;
    }

    .text-right-lg {
        text-align: right;
    }
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.form-group {
    position: relative;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-row + .form-row{
    margin-top: 15px;
}
.form-row .form-group{
    width: calc(50% - 7px);
}
@media(max-width: 599px){
    .form-row .form-group{
        width: 100%;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 2px solid #EBEFF4;
    background: #EBEFF4;
    color: #727376;
    text-shadow: none;
    font-size: 14px;
    line-height: 1.42857143;
    margin-bottom: 20px;
    border-radius: 5px;
}

.form-control:focus {
    background: #fff;
    border-color: #D9DDE1;
}

.form-control[readonly]:focus {
    border-color: #E3E3E4;
}

.form-control.error {
    border-color: #FF1A00;
}

.form-control::-moz-placeholder {
    color: #6B6F7D;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #6B6F7D;
}

.form-control::-webkit-input-placeholder {
    color: #6B6F7D;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

textarea.form-control {
    height: auto;
    max-width: 100%;
    min-height: 115px;
    resize: none;
    padding-top: 10px;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
}

textarea:focus::-moz-placeholder {
    opacity: 0;
}

textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs,
    .visible-xs-block {
        display: block !important;
    }
    .visible-xs-inline {
        display: inline !important;
    }
    .visible-xs-inline-block {
        display: inline-block !important;
    }
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm,
    .visible-sm-block{
        display: block !important;
    }
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 1449px) {
    .visible-md,
    .visible-md-block{
        display: block !important;
    }
    .visible-md-inline {
        display: inline !important;
    }
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1450px) {
    .visible-lg,
    .visible-lg-block{
        display: block !important;
    }
    .visible-lg-inline {
        display: inline !important;
    }
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1449px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1450px) {
    .hidden-lg {
        display: none !important;
    }
}

.push1 {
    height: 1px;
}

.push2 {
    height: 2px;
}

.push3 {
    height: 3px;
}

.push4 {
    height: 4px;
}

.push5 {
    height: 5px;
}

.push6 {
    height: 6px;
}

.push7 {
    height: 7px;
}

.push8 {
    height: 8px;
}

.push9 {
    height: 9px;
}

.push10 {
    height: 10px;
}

.push11 {
    height: 11px;
}

.push12 {
    height: 12px;
}

.push13 {
    height: 13px;
}

.push14 {
    height: 14px;
}

.push15 {
    height: 15px;
}

.push16 {
    height: 16px;
}

.push17 {
    height: 17px;
}

.push18 {
    height: 18px;
}

.push19 {
    height: 19px;
}

.push20 {
    height: 20px;
}

.push25 {
    height: 25px;
}

.push30 {
    height: 30px;
}

.push35 {
    height: 35px;
}

.push40 {
    height: 40px;
}

.push45 {
    height: 45px;
}

.push50 {
    height: 50px;
}

.push55 {
    height: 55px;
}

.push60 {
    height: 60px;
}

.push70 {
    height: 70px;
}

.push80 {
    height: 80px;
}

.push90 {
    height: 90px;
}

.push100 {
    height: 100px;
}

:invalid {
    box-shadow: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.upper {
    text-transform: uppercase;
}

.jgrowlHide #jGrowl {
    display: none !important;
}

a.absolute {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    text-indent: -999999px;
    overflow: hidden;
}

.red {
    color: #FF4632;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

p {
    margin-bottom: 20px;
}

.full-width{
    width: 100%;
}
.section{
    padding: 60px 0 50px;
}
.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}

/* Fancybox */
.fancybox_modal {
    display: none;
    width: 560px;
    max-width: 100%;
    padding: 30px;
    border-radius: 10px;
}
.fancybox_modal_inner{
    background: #fff;
    padding: 35px 25px;
    font-size: 14px;
}
.fancybox_modal.fancybox_modal_big{
    width: 900px;
}
@media(min-width: 990px){
    .fancybox_modal.fancybox_modal_big{
        width: 960px;
    }
    .fancybox_modal.fancybox_modal_big .fancybox_modal_inner{
        padding: 50px;
    }
}

#responseMessage .fancybox_modal-content.error {
    color: #FF4632;
}
/* /. Fancybox */

@media(min-width: 992px) {

    /* Custom chrome scroll */
    ::-webkit-resizer {
        width: 10px;
        height: 1px;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-button {
        width: 10px;
        height: 0px;
    }

    ::-webkit-scrollbar-thumb {
        -webkit-border-radius: 0px;
        border-radius: 0px;
    }

    ::-webkit-scrollbar-track {
        background-color: #2C2C2C;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--accent-color1);
    }

    /* /. Custom chrome scroll */
}

/* Agreement */
.agreement {
    position: relative;
    margin-bottom: 30px;
    color: #838383;
}

.agreement input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.agreement label {
    padding-left: 25px;
    display: inline-block;
    position: relative;
}

.agreement input+label:before {
    background: url(../images/check-empty.svg) 0 0 no-repeat;
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 5px;
    left: 0px;
}

.agreement input:checked+label:before {
    background: url(../images/checked-no-border.svg) 50% 50% / contain no-repeat #fff;
}

.agreement input.error+label {
    color: red;
}

/* /. Agreement */

/* Mobile menu btn */
.menu-button {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: relative;
    transition: all 200ms ease-out;
    margin-left: 20px;
}

.icon-menu-burger {
    height: 2px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    margin: -1px 0 0 0;
    transition: transform 0.2s ease 0s;
}

.icon-menu-burger__line {
    background: #000;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.2s linear 0.2s;
}

.icon-menu-burger:before,
.icon-menu-burger:after {
    background: #000;
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
}

.menu-button.active .icon-menu-burger__line,
.menu-button.active .icon-menu-burger:before,
.menu-button.active .icon-menu-burger:after {
    background: #FF2C3E !important;
}

.icon-menu-burger:before {
    top: -9px;
    transition: top 0.2s linear 0.4s;
}

.icon-menu-burger:after {
    bottom: -9px;
    transition: bottom 0.2s linear 0.4s;
}

.menu-button.active .icon-menu-burger {
    transform: rotate(45deg);
    transition: transform 0.2s linear 0.4s;
}

.menu-button.active .icon-menu-burger__line {
    transform: rotate(90deg);
}

.menu-button.active .icon-menu-burger:before {
    transition: top 0.2s linear;
    top: 0;
}

.menu-button.active .icon-menu-burger:after {
    transition: bottom 0.2s linear;
    bottom: 0;
}

/* /. Mobile menu btn */

/* Mobile menu */
.mobile-menu-wrapper {
    position: fixed;
    top: 50px;
    right: -240px;
    height: 100%;
    width: 240px;
    max-width: 100%;
    z-index: 1000;
    transition: all 200ms ease-out;
}

.mobile-menu {
    background: var(--accent-color1);
    height: 100%;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: -100;
    opacity: 0;
    transition: opacity 200ms ease-out;
}

.mobile-menu li {
    position: relative;
}

.mobile-menu>ul>li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu>ul>li:first-of-type {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu>ul>li.down>a {
    padding-right: 38px;
}

.mobile-menu .dropdown-button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 45px;
    width: 38px;
    z-index: 10;
}

.mobile-menu .dropdown-button:before {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: 16px;
    left: 16px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all 300ms ease-out;
}

.mobile-menu .dropdown-button.active:before {
    transform: rotate(225deg);
    top: 20px;
}

.mobile-menu>ul>li>ul {
    position: static;
    width: 100%;
    display: none;
}

.mobile-menu>ul>li>a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 12px 20px;
    font-size: 15px;
    line-height: 1.4;
}

.mobile-menu>ul>li>ul>li>a,
.mobile-menu ul ul ul a {
    display: block;
    font-size: 14px;
    line-height: 18px;
    text-decoration: none;
    transition: all 200ms ease-out;
    padding: 10px 30px 10px 20px;
    color: #FFFFFF;
    position: relative;
    font-weight: 300;
}

.mobile-menu ul ul ul a {
    padding: 6px 10px 6px 45px;
    font-size: 13px;
    position: relative;
}

.mobile-menu ul ul ul a:before {
    content: "";
    position: absolute;
    top: 14px;
    left: 33px;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background: rgba(255, 255, 255, 0.8);
}

.mobile-menu ul ul ul ul a:before {
    display: none;
}

.mobile-menu .dropdown-button+ul {
    position: static;
    width: 100%;
    display: none;
    padding-bottom: 10px;
    filter: brightness(0.97);
    background: var(--accent-color1);
}

.mobile-menu ul ul .dropdown-button {
    height: 38px;
    width: 30px;
}

.mobile-menu ul ul .dropdown-button:before {
    content: "+";
    width: 12px;
    height: 10px;
    line-height: 10px;
    top: 50% !important;
    left: 50%;
    font-size: 17px;
    margin-top: -5px;
    margin-left: -6px;
    border: none;
    color: #fff;
    transform: rotate(0) !important;
}

.mobile-menu ul ul .dropdown-button.active:before {
    content: "-";
}

.mobile-menu ul ul ul .dropdown-button {
    height: 30px;
    width: 30px;
}

.mobile-menu ul ul ul .dropdown-button:before {
    margin-top: -6px;
    margin-left: -10px;
}

@media (max-width: 991px) {
    .mobile-menu-wrapper.open {
        right: 0;
    }

    .mobile-menu-wrapper.open+.overlay {
        z-index: 500;
        opacity: 1;
    }

    .swipe-area {
        position: absolute;
        width: 15px;
        right: -15px;
        top: 0;
        bottom: 0;
        background: transparent;
    }

    .mobile-menu {
        overflow-y: scroll;
    }
}

@media (max-width: 767px) {
    .menu-button {
        width: 20px;
    }
}

/* /. Mobile menu */



/* Custom check */
.custom_check {
    position: relative;
    margin-bottom: 10px;
}

.custom_check input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.custom_check label {
    padding-left: 25px;
    display: inline-block;
    position: relative;
}

.custom_check input+label:before {
    background: url(../images/check-empty.svg) 0 0 no-repeat;
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 5px;
    left: 0px;
}

.custom_check input:checked+label:before {
    background: url(../images/checked.svg) 0 0 no-repeat;
}

.custom_check input.error+label {
    color: red;
}

/* /. Custom check */

#up {
    position: fixed;
    overflow: hidden;
    right: 15px;
    bottom: 60px;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--accent-color1);
    color: var(--accent-font-color1);
    text-align: center;
    text-decoration: none;
    transition: .3s all ease-in-out;
    transform: translate3d(0, 150px, 0);
    cursor: pointer;
    border-radius: 3px;
}
#up svg {
    height: 20px;
}
#up.active {
    transform: translate3d(0, 0, 0);
}

#up:hover{
    filter: brightness(115%);
    color: var(--accent-font-color1);
}

@media(max-width:767px) {
    #up {
        bottom: 15px;
    }
}

/* pagination */
.pagination{
    display: inline-block;
    padding: 0;
    margin: 0;
}
.pagination li:first-of-type:before{
    content:"";
    display: block;
    width: 100%;
    height: 30px;
}
.pagination li:last-of-type:after{
    content:"";
    display: block;
    width: 100%;
    height: 30px;
}
.pagination li{
    display: inline-block;
    margin-right: 3px;
}
.pagination li:last-of-type{
    margin-right: 0;
}
.pagination li > span{
    cursor: default;
}
.pagination li > a, 
.pagination li > span {
    display: inline-flex;
    position: relative;
    line-height: 1;
    color: #2c3238;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    margin-right: 2px;
    min-width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    padding: 0 10px;
}
.pagination li:first-child > a,
.pagination li:first-child > span{
    margin-left: 0;
}
.pagination li > a:hover{
    background-color: #EEEEEE;
}
.pagination .active > a, 
.pagination .active > a:hover{
    background-color: var(--accent-color1);
    color: #fff;
    border-color: var(--accent-color1);
    cursor: default;
}
/* /. pagination */

/* Breadcrumbs */
.breadcrumbs-section {
    padding: 10px 0 30px;
    background: #fff;
}

.breadcrumbs-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--accent-color2);
    font-size: 15px;
    line-height: 1.25;
    white-space: nowrap;
}

.breadcrumb li {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    color: var(--accent-color2);
}

.breadcrumb li:not(:last-child) {
    margin-right: 12px;
    padding-right: 18px;
}

.breadcrumb li:not(:last-child)::after {
    content: "";
    width: 5px;
    height: 9px;
    background: url(../images/breadcrumbs-arrow.svg) 0 0 no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    line-height: 1;
    transform: translateY(-60%);
}

.breadcrumb a {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color2);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-color1);
}

.breadcrumb .active {
    color: var(--accent-color2);
}

.breadcrumb-home {
    color: var(--accent-color6) !important;
}

.breadcrumb-home svg {
    width: 23px;
    height: 23px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

@media(max-width: 991px) {
    .breadcrumbs-section {
        padding-bottom: 18px;
    }

    .breadcrumbs-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        max-width: none;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }

    .breadcrumbs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .breadcrumb {
        width: max-content;
        min-width: max-content;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
    }

    .breadcrumb li:not(:last-child) {
        margin-right: 10px;
        padding-right: 16px;
    }

    .breadcrumb-home svg {
        width: 21px;
        height: 21px;
    }
}
@media(max-width: 767px){
    .breadcrumbs-section{
        display: none;
    }
}
/* /. breadcrumbs */

/* Map */
.map {
    height: 500px;
}

.map > div {
    height: 100%;
}

/* /. Map */

blockquote {
    border-left: 3px solid var(--accent-color1);
    margin-bottom: 30px;
    padding-left: 20px;
}

.content ul,
.content ol {
    margin-bottom: 15px;
}

.content ul{
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
}
.content ol{
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
}

.content table {
    width: 100%;
    margin-bottom: 30px;
}

.content th {
    background: #000;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 15px;
    vertical-align: middle;
    border: 1px solid #000;
    border-right-color: #333333;
}
.content td {
    border: 1px solid #E5E5E5;
    padding: 15px;
    vertical-align: middle;
    font-size: 12px 15px;
}
.content img{
    height: auto !important;
}
.table-wrapper {
    width: 100%;
    overflow: auto;
}




body{
    font-family: 'TildaSans';
    color: var(--accent-color2);
    font-size: 16px;
    line-height: 1.6;
}
@media(max-width: 991px){
    body.top-menu-open{
        overflow: hidden;
    }
}

/* Titles */
h1,
.title-h1 {
    margin: 0 0 25px;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 600;
    text-transform: uppercase;
}

h2,
.title-h2 {
    margin: 0 0 35px;
    font-size: 38px;
    line-height: 1.15;
    font-weight: 600;
    text-transform: uppercase;
}

h3,
.title-h3 {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 500;
}

h4,
.title-h4 {
    margin: 0 0 15px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 600;
}

.title-light {
    font-weight: 400;
}

.title-accent {
    color: var(--accent-color1);
}

.title-center {
    text-align: center;
}

.title-white {
    color: #fff;
}

@media(max-width: 1449px) {
    h1,
    .title-h1 {
        font-size: 38px;
    }

    h2,
    .title-h2 {
        font-size: 34px;
    }
}

@media(max-width: 991px) {
    h1,
    .title-h1 {
        font-size: 34px;
    }

    h2,
    .title-h2 {
        font-size: 30px;
    }

    h3,
    .title-h3 {
        font-size: 24px;
    }
}

@media(max-width: 767px) {
    h1,
    .title-h1 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 1.15;
    }

    h2,
    .title-h2 {
        margin-bottom: 25px;
        font-size: 24px;
        line-height: 1.18;
    }

    h3,
    .title-h3 {
        font-size: 21px;
    }

    h4,
    .title-h4 {
        font-size: 18px;
    }
}
/* /. Titles */

a {
    color: var(--accent-color1);
}

a:hover {
    color: var(--accent-color1-hover);
}

a.invert {
    color: var(--accent-color1-hover);
}

a.invert:hover {
    color: var(--accent-color1);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px;
    border: none;
    border-radius: 4px;
    font-weight: normal;
    font-size: 18px;
    color: var(--accent-font-color1);
    background: var(--accent-color1);
    text-align: center;
    transition: all 300ms ease-out;
}

.btn:hover {
    filter: brightness(115%);
    color: var(--accent-font-color1);
}

/* Header */
.header {
    position: relative;
    z-index: 200;
    background: #fff;
}

.header a {
    transition: all 250ms ease-out;
}

.header-desktop {
    display: block;
}

.header-mobile {
    display: none;
}

/* top line */
.header-top {
    background: var(--accent-color2);
    color: #fff;
}

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

.header-slogan {
    color: var(--accent-color3);
    font-size: 16px;
    line-height: 1.2;
    font-style: italic;
    font-weight: 300;
}

.header-top__right {
    display: flex;
    align-items: center;
    gap: 27px;
}

.header-phone {
    color: #fff;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--accent-color3);
}

.header-question {
    color: var(--accent-color3);
    font-size: 17px;
    line-height: 1;
    border-bottom: 1px solid currentColor;
}

.header-question:hover {
    color: #fff;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-social {
    width: 22px;
    height: 22px;
    color: #60DA98;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-social:hover {
    color: var(--accent-color3);
}

/* main desktop header */
.header-main {
    background: #fff;
}

.header-content {
    padding-bottom: 15px;
}
.header-logo-wrapper{
    display: flex;
    justify-content: center;
    padding: 15px 0;
}
.header-logo {
    display: block;
    width: 166px;
}

.header-logo img {
    width: 100%;
    height: auto;
}


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

.header-branch {
    position: relative;
}

.header-direction {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #111;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 500;
}

.header-direction--active {
    color: var(--accent-color6);
}

.header-direction:hover {
    color: var(--accent-color6);
}

.header-direction__arrow {
    width: auto;
    height: auto;
    flex: 0 0 auto;
    margin-top: 4px;
    margin-left: 2px;
    border: none;
    transform: none;
}

.header-direction__arrow::before {
    content: ">";
    display: block;
    color: currentColor;
    font-size: 28px;
    line-height: 1;
    transform: rotate(90deg);
    font-weight: 500;
}

.header-branch-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 50;
    width: 300px;
    background: var(--accent-color2);
    padding: 14px 0 16px;
    display: none;
    border-radius: 6px;
}

.header-branch:hover .header-branch-menu {
    display: block;
}

.header-branch-menu a {
    display: block;
    padding: 10px 28px;
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
}

.header-branch-menu a:hover,
.header-branch-menu .active > a{
    color: var(--accent-color3);
    background: rgba(255, 255, 255, 0.04);
}

.header-nav {
    background: var(--accent-color4);
    border-radius: 28px;
    padding: 0 30px;
}

.header-nav ul {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.header-nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    color: var(--accent-color2);
    font-size: 18px;
    line-height: 1.15;
    white-space: nowrap;
}

.header-nav a:hover {
    color: var(--accent-color6);
}

/* mobile header */
@media(max-width: 1299px){
    .header-direction {
        font-size: 24px;
    }
}
@media(max-width: 991px) {
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: block;
        padding-top: 70px;
    }

    .header-mobile__top {
        background: var(--accent-color2);
        color: #fff;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 500;
        height: 70px;
    }

    .header-mobile__top-inner {
        height: 70px;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .header-mobile__slogan {
        margin-bottom: 8px;
        font-size: 16px;
        line-height: 1.2;
        font-style: italic;
    }

    .header-mobile-contacts{
        display: flex;
        align-items: center;
    }

    .header-mobile__phone {
        color: #fff;
        font-size: 20px;
        line-height: 1.1;
        white-space: nowrap;
    }

    .header-mobile__phone:hover {
        color: var(--accent-color3);
    }

    .header-mobile__socials {
        gap: 10px;
        margin-left: 20px;
    }

    .header-mobile__socials .header-social {
        width: 20px;
        height: 20px;
    }

    .header-mobile .menu-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        width: 40px;
        height: 24px;
        margin: 0;
    }

    .header-mobile .icon-menu-burger,
    .header-mobile .icon-menu-burger__line,
    .header-mobile .icon-menu-burger:before,
    .header-mobile .icon-menu-burger:after {
        background: #fff;
    }

    .header-mobile .icon-menu-burger:before {
        top: -8px;
    }

    .header-mobile .icon-menu-burger:after {
        bottom: -8px;
    }

    .header-mobile .menu-button.active .icon-menu-burger__line,
    .header-mobile .menu-button.active .icon-menu-burger:before,
    .header-mobile .menu-button.active .icon-menu-burger:after {
        background: #fff !important;
    }

    .header-mobile__bottom {
        background: #fff;
    }

    .header-mobile__bottom-inner {
        min-height: 138px;
        position: relative;
        padding-top: 17px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .header-mobile__direction {
        color: #111;
        font-size: 24px;
        line-height: 1;
        font-weight: 500;
    }

    .header-mobile__direction--active {
        color: var(--accent-color6);
    }

    .header-mobile__direction:nth-child(2) {
        text-align: right;
    }

    .header-mobile__logo {
        position: absolute;
        left: 50%;
        top: 20px;
        width: 148px;
        transform: translateX(-50%);
    }

    .header-mobile__logo img {
        width: 100%;
        height: auto;
    }

    .mobile-menu-wrapper {
        top: 103px;
        height: calc(100% - 103px);
    }

    .mobile-menu {
        background: var(--accent-color2);
    }

    .mobile-menu .dropdown-button + ul {
        background: var(--accent-color2);
    }
}

@media(max-width: 479px) {
    .header-mobile__direction {
        font-size: 4.5vw;
    }
}



/* Adaptive top menu */
.header-nav-place {
    width: 100%;
    min-width: 0;
}

.top-menu-wrapper {
    width: 100%;
}

.top-menu-inner {
    width: 100%;
}

.top-menu-wrapper-title,
.top-menu-wrapper-close,
.top-menu-content-mobile {
    display: none;
}

.top-menu {
    width: 100%;
    min-width: 0;
    height: 48px;
    display: flex;
    align-items: center;
    background: var(--accent-color4);
    border-radius: 28px;
    padding: 0 24px;
}

.top-menu.is-calculating {
    opacity: 0;
    visibility: hidden;
}

.top-menu.is-ready {
    opacity: 1;
    visibility: visible;
}

.top-menu-main-list {
    min-width: 0;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-menu-main-list > li,
.top-menu-more-list > li {
    position: relative;
    flex: 0 0 auto;
}

.top-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    color: var(--accent-color2);
    font-size: 18px;
    line-height: 1.15;
    white-space: nowrap;
}

.top-menu li:hover > a,
.top-menu li.active > a{
    color: var(--accent-color6);
}

.top-menu li > ul {
    position: absolute;
    top: calc(100% + 5px);
    left: -20px;
    z-index: 80;
    width: 260px;
    display: none;
    padding: 12px 0;
    background: var(--accent-color4);
    border-radius: 6px;
}
.top-menu li > ul:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    height: 5px;
}

.top-menu li:hover > ul {
    display: block;
}

.top-menu li > ul a {
    min-height: 0;
    display: block;
    padding: 8px 28px;
    color: var(--accent-color2);
    font-size: 18px;
    line-height: 1.25;
    white-space: normal;
}

.top-menu li > ul a:hover {
    color: var(--accent-color3);
}

.top-menu li > ul ul {
    top: 0;
    left: 100%;
}

.top-menu-more-list {
    display: none;
    flex: 0 0 auto;
    margin-left: 24px;
}

.top-menu-more-list.active {
    display: block;
}

.top-menu-more-list > li > span {
    width: 42px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--accent-color2);
}

.top-menu-more-list > li > span::before {
    content: "";
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 
        -9px 0 0 currentColor,
        9px 0 0 currentColor;
}

.top-menu-more-list > li > ul {
    right: -18px;
    left: auto;
}

.top-menu .dropdown-button {
    display: none;
}

.top-menu-overlay {
    display: none;
}

@media(max-width: 991px) {
    .top-menu-wrapper {
        position: fixed;
        top: 0;
        right: -320px;
        z-index: 1000;
        width: 320px;
        max-width: calc(100% - 40px);
        height: 100%;
        background: #fff;
        transition: right 250ms ease-out;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.08);
    }

    .top-menu-wrapper.open {
        right: 0;
    }

    .top-menu-inner {
        height: 100%;
        overflow-y: auto;
        background: #fff;
        padding-bottom: 35px;
    }

    .top-menu-wrapper-title {
        height: 64px;
        display: flex;
        align-items: center;
        padding: 0 55px 0 22px;
        background: var(--accent-color2);
        color: #fff;
        font-size: 22px;
        font-weight: 600;
    }

    .top-menu-wrapper-close {
        position: absolute;
        top: 18px;
        right: 18px;
        z-index: 5;
        width: 28px;
        height: 28px;
        display: block;
        cursor: pointer;
    }

    .top-menu-wrapper-close::before,
    .top-menu-wrapper-close::after {
        content: "";
        position: absolute;
        top: 13px;
        left: 3px;
        width: 22px;
        height: 2px;
        background: #fff;
    }

    .top-menu-wrapper-close::before {
        transform: rotate(45deg);
    }

    .top-menu-wrapper-close::after {
        transform: rotate(-45deg);
    }

    .top-menu {
        height: auto;
        display: block;
        padding: 0;
        border-radius: 0;
        background: #fff;
        opacity: 1 !important;
    }

    .top-menu-main-list {
        display: block;
    }

    .top-menu-main-list > li {
        border-bottom: 1px solid #EBEFF4;
    }

    .top-menu a {
        min-height: 0;
        display: block;
        padding: 15px 48px 15px 22px;
        color: var(--accent-color2);
        font-size: 17px;
        line-height: 1.25;
        white-space: normal;
    }

    .top-menu li > ul {
        position: static;
        width: 100%;
        display: none;
        padding: 0 0 10px;
        background: #F7F8FA;
    }

    .top-menu li:hover > ul {
        display: none;
    }

    .top-menu li > ul a {
        padding: 10px 45px 10px 34px;
        color: var(--accent-color2);
        font-size: 15px;
    }

    .top-menu li > ul ul a {
        padding-left: 48px;
    }

    .top-menu .dropdown-button {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 5;
        width: 48px;
        height: 52px;
        display: block;
        cursor: pointer;
    }

    .top-menu .dropdown-button::before {
        content: "";
        position: absolute;
        top: 19px;
        left: 17px;
        width: 10px;
        height: 10px;
        border-right: 2px solid var(--accent-color1);
        border-bottom: 2px solid var(--accent-color1);
        transform: rotate(45deg);
        transition: transform 250ms ease-out;
    }

    .top-menu .dropdown-button.active::before {
        transform: rotate(225deg);
        top: 23px;
    }

    .top-menu-more-list,
    .top-menu-more-list.active {
        display: none !important;
    }

    .top-menu-content-mobile {
        display: block;
        padding: 22px;
    }

    .top-menu-mobile-phone {
        display: inline-block;
        margin-bottom: 18px;
        color: var(--accent-color2);
        font-size: 22px;
        font-weight: 600;
    }

    .top-menu-overlay {
        position: fixed;
        right: 0;
        top: 0;
        bottom: 0;
        width: 20px;
        z-index: -100;
        display: block;
        background: rgb(255 255 255 / 50%);
        backdrop-filter: blur(10px);
        opacity: 0;
        transition: opacity 250ms ease-out;
    }

    .top-menu-overlay.open {
        z-index: 900;
        opacity: 1;
        inset: 0;
        width: auto;
    }

    .swipe-area {
        position: absolute;
        top: 0;
        right: -15px;
        width: 15px;
        height: 100%;
        background: transparent;
    }
}

@media(max-width: 369px) {
    .top-menu-wrapper {
        right: -100%;
        width: 100%;
        max-width: 100%;
    }
}
/* /. Adaptive top menu */
/* /. Header */


/* Hero section */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 405px;
    background: #eef2f4;
}

.hero-section__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-section__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.92) 0%,
            rgba(255,255,255,0.72) 29%,
            rgba(255,255,255,0.18) 56%,
            rgba(255,255,255,0) 100%
        );
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 95px;
    background: linear-gradient(
        0deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0) 100%
    );
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-section__inner {
    min-height: 405px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    padding: 54px 0 38px;
}

.hero-section__content {
    width: 680px;
    max-width: 100%;
}

.hero-section h1 {
    margin: 0 0 24px;
    font-size: 45px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.hero-section__subtitle {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 500;
}

.hero-section__list {
    margin: 0;
    padding-left: 56px;
    color: #000;
    font-size: 20px;
    line-height: 1.45;
}
.hero-section__list li{
    position: relative;
}
.hero-section__list li:before{
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    top: 12px;
    left: -17px;
    background: var(--accent-color2);
    border-radius: 50%;
}
.hero-section__list li + li {
    margin-top: 5px;
}

/* hero form */
.hero-form {
    width: 390px;
    flex: 0 0 390px;
    margin-top: 175px;
    padding: 15px 14px 12px;
    border-radius: 5px;
    background: rgba(45, 50, 68, 0.84);
    color: #fff;
}

.hero-form__title {
    margin-bottom: 10px;
    color: var(--accent-color3);
    font-size: 18px;
    line-height: 1.25;
}

.hero-form__row {
    display: flex;
    gap: 8px;
}

.hero-form__row .form-group {
    flex: 1 1 auto;
    margin: 0;
}

.hero-form .form-control {
    height: 42px;
    margin: 0;
    padding: 0 16px;
    border: none;
    border-radius: 4px;
    background: #fff;
    color: var(--accent-color2);
    font-size: 22px;
}

.hero-form .form-control.error{
    background: #ffe8e8;
}

.hero-form .form-control::-webkit-input-placeholder {
    color: var(--accent-color2);
}

.hero-form .form-control::-moz-placeholder {
    color: var(--accent-color2);
}

.hero-form__btn {
    height: 42px;
    flex: 0 0 130px;
    padding: 0 18px 2px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 400;
}

.hero-form__messengers {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.2;
}

.hero-form__socials {
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 0;
}

.hero-form__socials a {
    width: 24px;
    height: 24px;
    color: var(--accent-color1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero-form__socials a:hover{
    color: var(--accent-color3);
}

.hero-form__agreement {
    margin: 8px 0 0;
    color: rgba(255,255,255,0.75);
    font-size: 9px;
    line-height: 1.25;
}

.hero-form__agreement label {
    padding-left: 18px;
}

.hero-form__agreement input + label::before {
    width: 10px;
    height: 10px;
    top: 2px;
    background: #fff;
    border-radius: 2px;
}

.hero-form__agreement input:checked + label::before {
    background: url(../images/checked-no-border.svg) 50% 50% / contain no-repeat #fff;
}
.hero-form__agreement a{
    color: #fff;
    text-decoration: underline;
}
.hero-form__agreement a:hover{
    color: #fff;
    text-decoration: none;
}

@media(max-width: 1449px) {
    .hero-section {
        min-height: 380px;
    }

    .hero-section__inner {
        min-height: 380px;
        padding-top: 48px;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-section__subtitle {
        font-size: 26px;
    }

    .hero-form {
        margin-top: 160px;
    }
}

@media(max-width: 991px) {
    .hero-section {
        min-height: 300px;
    }

    .hero-section__inner {
        min-height: 300px;
        display: block;
        padding: 38px 0;
    }

    .hero-section__content {
        width: 460px;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-section__subtitle {
        font-size: 23px;
    }

    .hero-form {
        display: none;
    }
}

@media(max-width: 767px) {
    .hero-section {
        min-height: 1px;
        padding-bottom: 0;
    }

    .hero-section__media img {
        object-position: center center;
    }

    .hero-section::before,
    .hero-section::after{
        opacity: 0;
    }

    .hero-section::after {
        height: 45px;
        background: linear-gradient(
            0deg,
            rgba(255,255,255,0.82) 0%,
            rgba(255,255,255,0) 100%
        );
    }

    .hero-section__inner {
        min-height: 253px;
        padding: 22px 0 24px;
    }

    .hero-section__content {
        width: 100%;
    }

    .hero-section h1 {
        margin-bottom: 16px;
        font-size: 25px;
        line-height: 1.18;
        font-weight: 600;
    }

    .hero-section h1 br{
        display: none;
    }

    .hero-section__subtitle {
        margin-bottom: 9px;
        font-size: 20px;
        line-height: 1.2;
    }

    .hero-section__list {
        padding-left: 36px;
        font-size: 15px;
        line-height: 1.35;
    }

    .hero-section__list li + li {
        margin-top: 4px;
    }

    .hero-section__list li:before {
        width: 5px;
        height: 5px;
        top: 8px;
        left: -15px;
    }
}
/* /. Hero section */


/* About section */
.about-section {
    padding: 55px 0 70px;
    background: #fff;
}

.about-section h2 {
    margin-bottom: 35px;
}

.about-section__row {
    display: grid;
    grid-template-columns: 52% 48%;
    align-items: center;
}

.about-section__media {
    display: flex;
    justify-content: center;
    padding-right: 40px;
}

.about-section__media img {
    max-width: 100%;
    height: auto;
}

.about-section__content {
    padding-left: 25px;
    max-width: 660px;
}

.about-section__content .title-h3 {
    margin-bottom: 22px;
    color: var(--accent-color2);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
}

.about-section__content .content {
    color: #000;
    font-size: 18px;
    line-height: 1.45;
}

.about-section__content .content p {
    margin-bottom: 24px;
}

.about-section__content .content p:last-child {
    margin-bottom: 25px;
}


@media(min-width: 992px){
    .about-section .section-title{
        font-size: 50px;
        font-weight: 700;
    }
}


@media(max-width: 1449px) {
    .about-section__content .title-h3 {
        font-size: 28px;
    }

    .about-section__content .content {
        font-size: 17px;
    }
}

@media(max-width: 991px) {
    .about-section {
        padding: 45px 0 55px;
    }

    .about-section h2 {
        margin-bottom: 30px;
        text-align: center;
    }

    .about-section__row {
        display: block;
    }

    .about-section__media {
        padding-right: 0;
        margin-bottom: 35px;
    }
    
    .about-section__content {
        max-width: 100%;
        padding-left: 0;
    }
}

@media(max-width: 767px) {
    .about-section {
        padding: 34px 0 45px;
    }

    .about-section h2 {
        margin-bottom: 24px;
        text-align: left;
        font-size: 24px;
        line-height: 1.18;
    }

    .about-section__media {
        margin-bottom: 30px;
    }

    .about-section__content .title-h3 {
        margin-bottom: 15px;
        text-align: center;
        font-size: 23px;
        line-height: 1.2;
    }

    .about-section__content .content {
        font-size: 16px;
        line-height: 1.35;
    }

    .about-section__content .content p {
        margin-bottom: 20px;
    }

    .about-section__content .content p:last-child {
        margin-bottom: 25px;
    }

    .about-section__content .btn {
        display: flex;
        width: max-content;
        margin: 0 auto;
    }
}

@media(max-width: 374px) {
    .about-section h2 {
        font-size: 22px;
    }

    .about-section__content .title-h3 {
        font-size: 21px;
    }
}
/* /. About section */

/* Help section */
.help-section {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    color: #fff;
    background: #102411;
}

.help-section__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.help-section__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.help-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.34) 0%,
            rgba(0, 0, 0, 0.08) 42%,
            rgba(0, 0, 0, 0.48) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.1) 34%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.18) 100%
        );
    pointer-events: none;
}

.help-section .container {
    position: relative;
    z-index: 3;
}

.help-section__inner {
    padding: 62px 0 55px;
}

@media(min-width: 992px){
    .help-section h2{
        font-size: 28px;
    }
}

.help-cycle__items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 34px;
}

.help-cycle__title {
    margin-bottom: 10px;
    
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
}

.help-cycle__text {
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

.help-services {
    margin-top: 70px;
}

.help-services h2 {
    margin-bottom: 32px;
}

.help-services__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 34px;
}

.help-service-card {
    position: relative;
    min-height: 194px;
    display: block;
    padding: 24px 28px 42px 35px;
    color: #fff;
    background: rgba(34, 85, 48, 0.78);
    transition: all 250ms ease-out;
}

.help-service-card::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 35px;
    width: 3px;
    height: 29px;
    background: var(--accent-color3);
}

.help-service-card:hover {
    background: rgba(31, 33, 32, 0.6);
}

.help-service-card__title {
    margin-bottom: 22px;
    padding-left: 12px;
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
}

.help-service-card__text {
    color: #fff;
    font-size: 15px;
    line-height: 1.32;
}

.help-service-card__more {
    position: absolute;
    right: 22px;
    bottom: 14px;
    color: var(--accent-color3);
    font-size: 14px;
    line-height: 1.2;
}

.help-services__more {
    margin-top: 34px;
    text-align: center;
}

.help-services__more .btn {
    height: 40px;
    padding-left: 31px;
    padding-right: 31px;
    font-size: 16px;
    font-weight: 400;
}

@media(max-width: 1449px) {
    .help-section__inner {
        padding: 55px 0 50px;
    }

    .help-cycle__items {
        gap: 24px;
    }

    .help-services__items {
        gap: 24px;
    }
}

@media(max-width: 991px) {
    .help-section__inner {
        padding: 45px 0 50px;
    }

    .help-cycle__items {
        grid-template-columns: 1fr;
        gap: 28px;
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .help-cycle,
    .help-services h2{
        text-align: center;
    }

    .help-cycle__title {
        font-size: 18px;
    }

    .help-cycle__text {
        font-size: 16px;
    }

    .help-services {
        margin-top: 55px;
    }

    .help-services__items {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
        gap: 22px;
    }

    .help-service-card {
        min-height: 0;
    }
}

@media(max-width: 767px) {
    .help-section {
        min-height: 0;
    }

    .help-section__bg img {
        object-position: center top;
    }

    .help-section::before {
        background:
            linear-gradient(
                0deg,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.04) 45%,
                rgba(0, 0, 0, 0.18) 100%
            ),
            rgba(0, 0, 0, 0.18);
    }

    .help-cycle h2 {
        max-width: 360px;
        margin: 0 auto 23px;
        font-size: 23px;
        line-height: 1.12;
    }

    .help-cycle__items {
        gap: 26px;
    }

    .help-cycle__title {
        margin-bottom: 7px;
        font-size: 17px;
        line-height: 1.2;
    }

    .help-cycle__text {
        font-size: 15px;
        line-height: 1.32;
    }

    .help-services {
        margin-top: 50px;
    }

    .help-services__items {
        gap: 22px;
    }

    .help-service-card {
        padding: 24px 27px 44px 29px;
        background: rgba(34, 85, 48, 0.78);
    }

    .help-service-card::before {
        top: 21px;
        left: 21px;
        height: 31px;
    }

    .help-service-card__title {
        margin-bottom: 23px;
        padding-left: 10px;
        font-size: 22px;
    }

    .help-service-card__text {
        font-size: 16px;
        line-height: 1.35;
    }

    .help-service-card__more {
        right: 25px;
        bottom: 15px;
        font-size: 15px;
    }

    .help-services__more {
        margin-top: 28px;
    }

    .help-services__more .btn {
        height: 40px;
        min-width: 140px;
    }
}

@media(max-width: 374px) {
    .help-cycle h2 {
        font-size: 21px;
    }

    .help-service-card__title {
        font-size: 20px;
    }

    .help-service-card__text {
        font-size: 15px;
    }
}

/* Help section psychology modifier */
.help-section--psy .help-cycle__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
}

.help-section--psy .help-services__items {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.help-section--psy .help-service-card {
    min-height: 194px;
    padding: 17px 20px 42px 24px;
}

.help-section--psy .help-service-card__title {
    font-size: 20px;
    line-height: 1.08;
}

.help-section--psy .help-service-card__text {
    font-size: 15px;
    line-height: 1.28;
}

.help-section--psy .help-service-card::before {
    top: 12px;
    left: 25px;
}

@media(max-width: 1449px) {
    .help-section--psy .help-cycle__items {
        gap: 48px;
    }

    .help-section--psy .help-services__items {
        gap: 28px;
    }

    .help-section--psy .help-service-card__title {
        font-size: 18px;
    }

    .help-section--psy .help-service-card__text {
        font-size: 14px;
    }
}

@media(max-width: 1199px) {
    .help-section--psy .help-cycle__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 40px;
    }

    .help-section--psy .help-services__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }
}

@media(max-width: 767px) {
    .help-section--psy .help-cycle__items {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .help-section--psy .help-services__items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .help-section--psy .help-service-card {
        min-height: 0;
        padding: 20px 24px 44px 28px;
    }

    .help-section--psy .help-service-card__title {
        font-size: 20px;
        line-height: 1.15;
    }

    .help-section--psy .help-service-card__text {
        font-size: 15px;
        line-height: 1.35;
    }
}
/* /. Help section psychology modifier */
/* /. Help section */

/* Specialists section */
.specialists-section {
    overflow: hidden;
}

.specialists-slider {
    overflow: hidden;
    padding-bottom: 10px;
}

.specialists-item {
    height: auto;
    text-align: center;
    color: #000;

}
.specialists-item__img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 14px;
}

.specialists-item__img img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.specialists-item__name {
    margin-bottom: 6px;
    color: #000;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
}

.specialists-item__position {
    margin-bottom: 6px;
    color: #777;
    font-size: 17px;
    line-height: 1.25;
}

.specialists-item__experience {
    color: #176D33;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
}

.specialists-scrollbar {
    display: none;
}

@media(max-width: 1449px) {
    .specialists-item__name {
        font-size: 15px;
    }

    .specialists-item__position,
    .specialists-item__experience {
        font-size: 14px;
    }
}

@media(max-width: 991px) {
    .specialists-section h2 {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 28px;
        font-size: 28px;
    }

    .specialists-slider {
        padding-bottom: 28px;
    }

    .specialists-item__img {
        margin-bottom: 16px;
    }

    .specialists-item__name {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .specialists-item__position {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .specialists-item__experience {
        font-size: 17px;
    }

    .specialists-scrollbar {
        display: block;
        position: relative;
        width: 305px;
        max-width: calc(100% - 40px);
        height: 5px;
        margin: 30px auto 0;
        border-radius: 10px;
        background: #D9D9D9;
    }

    .specialists-scrollbar .swiper-scrollbar-drag {
        height: 100%;
        border-radius: 10px;
        background: var(--accent-color6);
    }
}

@media(max-width: 767px) {
    .specialists-section h2 {
        max-width: 340px;
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.16;
    }

    .specialists-item__name {
        font-size: 17px;
    }

    .specialists-item__position,
    .specialists-item__experience {
        font-size: 16px;
    }
}

@media(max-width: 374px) {
    .specialists-section h2 {
        font-size: 22px;
    }
}
/* /. Specialists section */


/* features section */
.index-middle-bg-section{
    background: url(../images/features-bg.png) left 0 top 0 / 100% auto no-repeat;
}
.features-section {
    position: relative;
    overflow: hidden;
    min-height: 565px;
    
}

.features-section__bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.features-section__bg img {
    width: 100%;
    height: auto;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-section h2 {
    margin-bottom: 45px;
}

.features-layout {
    position: relative;
    min-height: 400px;
}

.features-center {
    position: absolute;
    top: 0;
    left: 50%;
    width: 190px;
    transform: translateX(-50%);
}

.features-center img {
    width: 100%;
    height: auto;
}

.features-item {
    position: absolute;
    width: 360px;
    color: var(--accent-color2);
}

.features-item--left {
    left: 115px;
    text-align: right;
}

.features-item--right {
    right: 115px;
    text-align: left;
}

.features-item--top {
    top: 0;
}

.features-item--middle {
    top: 142px;
}

.features-item--bottom {
    left: 50%;
    bottom: 0;
    width: 440px;
    text-align: center;
    transform: translateX(-50%);
}

.features-item__title {
    position: relative;
    margin-bottom: 7px;
    color: var(--accent-color2);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 600;
}

.features-item__title::before {
    content: "";
    display: inline-block;
    width: 3px;
    height: 28px;
    margin-right: 8px;
    background: var(--accent-color3);
    vertical-align: -6px;
}

.features-item--bottom .features-item__title::before {
    display: none;
}

.features-item__text {
    color: var(--accent-color2);
    font-size: 18px;
    line-height: 1.2;
}

@media(max-width: 1449px) {
    .features-item--left {
        left: 70px;
    }

    .features-item--right {
        right: 70px;
    }

    .features-item__title {
        font-size: 23px;
    }

    .features-item__text {
        font-size: 17px;
    }
}

@media(max-width: 1199px) {
    .features-item--left {
        left: 0;
    }

    .features-item--right {
        right: 0;
    }

    .features-item {
        width: 330px;
    }
}

@media(max-width: 991px) {
    .features-section {
        min-height: 0;
    }

    .features-section__bg,
    .features-center {
        display: none;
    }

    .features-section h2 {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .features-layout {
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 35px;
    }

    .features-item,
    .features-item--left,
    .features-item--right,
    .features-item--bottom {
        position: static;
        width: 100%;
        max-width: 560px;
        text-align: center;
        transform: none;
    }

    .features-item__title {
        margin-bottom: 8px;
        font-size: 25px;
    }

    .features-item__text {
        font-size: 20px;
        line-height: 1.22;
    }
}

@media(max-width: 767px) {
    .features-section h2 {
        margin-bottom: 26px;
        font-size: 24px;
        line-height: 1.16;
    }

    .features-layout {
        gap: 34px;
    }

    .features-item__title {
        font-size: 24px;
        line-height: 1.15;
    }

    .features-item__title::before {
        height: 27px;
        margin-right: 7px;
        vertical-align: -6px;
    }

    .features-item__text {
        font-size: 19px;
        line-height: 1.18;
    }
}

@media(max-width: 374px) {
    .features-item__title {
        font-size: 22px;
    }

    .features-item__text {
        font-size: 17px;
    }
}
/* /. features section */

/* Treatment section */
.treatment-section h2 {
    margin-bottom: 44px;
}

.treatment-tabs__nav-wrapper {
    margin-bottom: 52px;
}

.treatment-tabs__nav {
    display: flex;
    width: 100%;
    min-height: 52px;
    overflow: hidden;
    border-radius: 3px;
    background: var(--accent-color2);
}

.treatment-tabs__btn {
    --tab-bg: var(--accent-color2);
    --arrow-size: 40px;
    --arrow-half: 10px;

    position: relative;
    flex: 1 1 0;
    min-width: 0;
    height: 52px;
    margin-right: calc(var(--arrow-half) * -1);
    padding: 0 24px 0 34px;
    border: none;
    background: var(--tab-bg);
    color: #fff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
    text-align: center;
    overflow: visible;
    transition: filter 250ms ease-out;
    white-space: nowrap;
}

.treatment-tabs__btn span {
    position: relative;
    z-index: 15;
    display: block;
}

/* порядок наложения стрелок */
.treatment-tabs__btn:nth-child(1) {
    z-index: 10;
}

.treatment-tabs__btn:nth-child(2) {
    z-index: 9;
}

.treatment-tabs__btn:nth-child(3) {
    z-index: 8;
}

.treatment-tabs__btn:nth-child(4) {
    z-index: 7;
}

.treatment-tabs__btn:nth-child(5) {
    z-index: 6;
}

.treatment-tabs__btn:last-child {
    margin-right: 0;
    padding-right: 24px;
}

.treatment-tabs__btn.is-active,
.treatment-tabs__btn.is-passed {
    --tab-bg: var(--accent-color1);
}

/* наконечник справа — как в хлебных крошках */
.treatment-tabs__btn:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 6px;
    right: 0;
    z-index: 3;
    width: var(--arrow-size);
    height: var(--arrow-size);
    background: var(--tab-bg);
    transform: translateX(50%) rotate(-45deg) skew(-10deg, -10deg);
    border-right: 4px solid var(--accent-color2);
    border-bottom: 4px solid var(--accent-color2);
}


.treatment-tabs__btn:hover {
    filter: brightness(108%);
}

.treatment-tabs__pane {
    display: none;
}

.treatment-tabs__pane.active {
    display: block;
}

.treatment-tabs__row {
    display: grid;
    grid-template-columns: 49% 51%;
    align-items: center;
    gap: 34px;
}

.treatment-tabs__media img {
    width: 100%;
    height: auto;
    display: block;
}

.treatment-tabs__text {
    max-width: 620px;
    color: #000;
    font-size: 18px;
    line-height: 1.38;
}

.treatment-tabs__text .title-h3 {
    margin-bottom: 18px;
    color: var(--accent-color2);
    font-size: 27px;
    line-height: 1.2;
    font-weight: 600;
}

.treatment-tabs__text p {
    margin-bottom: 24px;
}

.treatment-tabs__text p:last-child {
    margin-bottom: 0;
}

@media(max-width: 1449px) {
    .treatment-tabs__btn {
        font-size: 18px;
    }

    .treatment-tabs__text {
        font-size: 17px;
    }

    .treatment-tabs__text .title-h3 {
        font-size: 25px;
    }
}

@media(max-width: 991px) {
    .treatment-section h2 {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .treatment-tabs__nav-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 35px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .treatment-tabs__nav-wrapper::-webkit-scrollbar {
        display: none;
    }

    .treatment-tabs__nav {
        width: max-content;
        min-width: 100%;
        border-radius: 0;
    }

    .treatment-tabs__btn {
        padding: 0 44px;
        font-size: 17px;
    }

    .treatment-tabs__row {
        display: block;
    }

    .treatment-tabs__media {
        margin-bottom: 26px;
    }

    .treatment-tabs__text {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.38;
    }
}

@media(max-width: 767px) {
    .treatment-section h2 {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.16;
    }

    .treatment-tabs__nav-wrapper {
        margin-bottom: 30px;
    }

    .treatment-tabs__btn {
        font-size: 16px;
    }

    .treatment-tabs__media {
        margin-bottom: 22px;
    }

    .treatment-tabs__text .title-h3 {
        margin-bottom: 14px;
        font-size: 22px;
        line-height: 1.2;
    }

    .treatment-tabs__text p {
        margin-bottom: 18px;
    }
}
/* /. Treatment section */

/* Reviews section */
.reviews-section {
    overflow: hidden;
    background: #fff;
}

.reviews-section h2 {
    margin-bottom: 36px;
}

.reviews-slider {
    overflow: hidden;
}

.reviews-item {
    height: auto;
    color: #000;
    max-width: 320.5px;
}

.reviews-video {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 327 / 414;
    margin-bottom: 12px;
    background: #e8e8e8;
    color: #fff;
}

.reviews-video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.18);
    transition: background 300ms ease-out;
}

.reviews-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.reviews-video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 4px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease-out;
}

.reviews-video__play::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 17px solid rgba(255, 255, 255, 0.78);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.reviews-video:hover::before {
    background: rgba(0, 0, 0, 0.08);
}

.reviews-video:hover img {
    transform: scale(1.04);
}

.reviews-video:hover .reviews-video__play {
    border-color: var(--accent-color1);
    transform: translate(-50%, -50%) scale(1.08);
}

.reviews-video:hover .reviews-video__play::before {
    border-left-color: var(--accent-color1);
}

.reviews-item__name {
    margin-bottom: 8px;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}

.reviews-item__desc {
    max-width: 250px;
    margin-bottom: 17px;
    color: var(--accent-color2);
    font-size: 16px;
    line-height: 1.25;
}

.reviews-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.reviews-item__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    min-height: 25px;
    padding: 3px 17px 4px;
    border-radius: 20px;
    background: var(--accent-color4);
    color: var(--accent-color2);
    font-size: 13px;
    line-height: 1;
}

.reviews-item__more {
    color: var(--accent-color1);
    font-size: 13px;
    line-height: 1.2;
    text-decoration: underline;
}

.reviews-item__more:hover {
    color: var(--accent-color1);
    text-decoration: none;
}

.reviews-section__bottom {
    margin-top: 30px;
    text-align: center;
}

.reviews-section__text {
    margin-bottom: 30px;
    color: #000;
    font-size: 20px;
    line-height: 1.35;
    text-align: left;
}

.reviews-section__bottom .btn {
    min-width: 137px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
}

.reviews-scrollbar {
    display: none;
}

@media(max-width: 1449px) {
    .reviews-item__name {
        font-size: 20px;
    }

    .reviews-item__desc {
        font-size: 15px;
    }
}

@media(max-width: 1199px){
    .reviews-item {
        max-width: 373px;
    }
}

@media(max-width: 991px) {
    .reviews-section h2 {
        margin-bottom: 28px;
        font-size: 28px;
    }
    .reviews-item {
        max-width: 470px;
    }
    .reviews-item__name {
        font-size: 19px;
    }

    .reviews-section__text {
        max-width: 100%;
        font-size: 18px;
        text-align: center;
    }
    .reviews-slider {
        padding-bottom: 28px;
    }

    .reviews-scrollbar {
        display: block;
        position: relative;
        width: 305px;
        max-width: calc(100% - 40px);
        height: 5px;
        margin: 20px auto 0;
        border-radius: 10px;
        background: #D9D9D9;
    }

    .reviews-scrollbar .swiper-scrollbar-drag {
        height: 100%;
        border-radius: 10px;
        background: var(--accent-color6);
    }
}

@media(max-width: 767px) {
    .reviews-section h2 {
        margin-bottom: 22px;
        font-size: 24px;
        line-height: 1.16;
    }

    .reviews-video {
        aspect-ratio: 320 / 405;
    }

    .reviews-video__play {
        width: 52px;
        height: 52px;
        border-width: 3px;
    }

    .reviews-video__play::before {
        left: 19px;
        top: 14px;
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .reviews-item__desc {
        max-width: none;
    }

    .reviews-section__bottom {
        margin-top: 25px;
    }

    .reviews-section__text {
        margin-bottom: 24px;
    }
}
@media(max-width: 575px){
    .reviews-item {
        max-width: 432px;
    }
}

/* Reviews slider fallback before Swiper init */
.reviews-slider:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 36px;
}

.reviews-slider:not(.swiper-initialized) .reviews-item {
    flex: 0 0 calc((100% - 108px) / 4);
    max-width: none;
}

@media(max-width: 1449px) {
    .reviews-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 32px;
    }

    .reviews-slider:not(.swiper-initialized) .reviews-item {
        flex-basis: calc((100% - 96px) / 4);
    }
}

@media(max-width: 1199px) {
    .reviews-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 26px;
    }

    .reviews-slider:not(.swiper-initialized) .reviews-item {
        flex-basis: calc((100% - 52px) / 3);
    }
}

@media(max-width: 991px) {
    .reviews-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 22px;
    }

    .reviews-slider:not(.swiper-initialized) .reviews-item {
        flex-basis: calc((100% - 22px) / 2);
    }
}

@media(max-width: 575px) {
    .reviews-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 20px;
    }

    .reviews-slider:not(.swiper-initialized) .reviews-item {
        flex-basis: calc((100% - 20px) / 1.25);
    }
}
/* /. Reviews slider fallback before Swiper init */
/* /. Reviews section */


/* Footer */
.footer {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    color: #fff;
    background: #020403;
}

.footer__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.footer__bg img {
    width: 100%;
    object-fit: contain;
    object-position: center top;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.88) 23%,
        rgba(0, 0, 0, 0.28) 55%,
        rgba(0, 0, 0, 0.02) 100%
    );
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 3;
}

.footer__top {
    min-height: 445px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 40px;
    align-items: end;
    padding-top: 27px;
    margin-bottom: 80px;
}

.footer__cta {
    text-align: right;
}

.footer__cta-title {
    color: #fff;
    font-size: 45px;
    line-height: 1.18;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__cta-subtitle {
    margin-top: 14px;
    color: #FF7A00;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.footer__form-wrap {
    width: 470px;
    max-width: 100%;
}

.footer__form-text {
    margin-bottom: 13px;
    color: var(--accent-color2);
    font-size: 20px;
    line-height: 1;
    text-align: center;
}
.footer__form-text strong{
    font-weight: 500;
}

.footer-form {
    padding: 33px 42px 35px;
    border-radius: 20px;
    background: #222538;
}

.footer-form .form-control {
    height: 39px;
    margin-bottom: 15px;
    padding: 0 20px;
    border: none;
    border-radius: 20px;
    background: #F4F4F4;
    color: var(--accent-color2);
    font-size: 14px;
}

.footer-form .form-control::-webkit-input-placeholder {
    color: #9A9DA7;
}

.footer-form .form-control::-moz-placeholder {
    color: #9A9DA7;
}

.footer-form__agreement {
    margin: 4px 0 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 9px;
    line-height: 1.25;
}

.footer-form__agreement label {
    padding-left: 20px;
}

.footer-form__agreement input + label::before {
    width: 11px;
    height: 11px;
    top: 1px;
    border-radius: 2px;
    background: #fff;
}

.footer-form__agreement a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
}

.footer-form .btn {
    height: 40px;
    min-width: 135px;
    font-size: 16px;
    font-weight: 400;
}

.footer__bottom {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 90px;
    padding-bottom: 28px;
}

.footer__company {
    color: #fff;
}

.footer__company-info {
    margin-bottom: 34px;
    font-size: 14px;
    line-height: 1.45;
}

.footer__small-text {
    max-width: 455px;
    margin-bottom: 23px;
    font-size: 10px;
    line-height: 1.55;
}

.footer__policy {
    margin-bottom: 28px;
}

.footer__policy a {
    display: block;
    width: max-content;
    max-width: 100%;
    color: #fff;
    font-size: 13px;
    line-height: 1.35;
    text-decoration: underline;
}

.footer__policy a:hover {
    color: var(--accent-color3);
}

.footer__copy {
    font-size: 13px;
    line-height: 1.35;
}

.footer__menus {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.footer-menu__title {
    margin-bottom: 9px;
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 500;
}

.footer-menu ul {
    margin-bottom: 11px;
}

.footer-menu li + li {
    margin-top: 3px;
}

.footer-menu a {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
}

.footer-menu a:hover {
    color: var(--accent-color3);
}

.footer-contacts {
    position: relative;
}

.footer-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
}

.footer-contacts-row{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
a.footer-contact--phone{
    font-size: 16px;
}
.footer-contact--phone::before {
    content: "";
    width: 18px;
    height: 17px;
    background: url(../images/phone-icon.svg) 0 50% / 18px 17px no-repeat;
    margin-right: 7px;
}

.footer-contact--mail::before {
    content: "";
    background: url(../images/email-icon.svg) 0 50% / 15px 8px no-repeat;
    margin-right: 7px;
    width: 18px;
    height: 17px;
}

.footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-left: 8px;
    vertical-align: middle;
}

.footer-socials a {
    width: 24px;
    height: 24px;
    padding: 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-font-color1);
    background: var(--accent-color5);
    border-radius: 50%;
    transition: all ease-out 200ms;
}

.footer-socials a:hover{
    transform: scale(1.15);
    color: var(--accent-font-color1);
    background: var(--accent-color5);
}

.footer-socials svg {
    width: 100%;
    height: 100%;
}

.footer-contact--mail {
    display: flex;
    width: max-content;
    margin-top: 5px;
    text-decoration: underline;
}


.footer-last-row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer__contraindications {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    line-height: 1.3;
    text-transform: uppercase;
    width: calc(100% - 146px);
    padding-right: 30px;
}

.footer-dev {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color5);
    font-size: 11px;
    line-height: 1.2;
    text-align: right;
    width: 146px;
}

.footer-dev:hover {
    color: rgba(255, 255, 255, 0.75);
}

.footer-dev img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.footer__meta-row {
    display: grid;
    grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
    gap: 90px;
    align-items: end;
    margin-top: 24px;
    margin-bottom: 30px;
}

.footer__meta-contacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
}

.footer__bottom {
    padding-bottom: 0;
}

@media(max-width: 1449px) {
    .footer__top {
        grid-template-columns: minmax(0, 1fr) 430px;
    }

    .footer__cta-title {
        font-size: 40px;
    }

    .footer__cta-subtitle {
        font-size: 27px;
    }

    .footer__bottom {
        gap: 60px;
    }

    .footer__menus {
        gap: 40px;
    }
    .footer__meta-row {
        gap: 60px;
    }

    .footer__meta-contacts {
        gap: 40px;
    }
}

@media(max-width: 1199px){
    .footer__bottom{
        display: flex;
        flex-wrap: wrap;
    }
    .footer__company{
        max-width: calc(100% - 520px);
    }
    .footer__menus{
        width: 520px;
    }
    .footer__meta-row {
        display: flex;
        flex-wrap: wrap;
        gap: 20px 60px;
    }

    .footer__copy {
        max-width: calc(100% - 520px);
        width: 100%;
    }

    .footer__meta-contacts {
        width: 520px;
        margin-right: auto;
    }
}

@media(max-width: 991px) {
    .footer__top {
        grid-template-columns: 1fr;
        gap: 25px;
        min-height: 0;
        align-items: center;
        margin-bottom: 0;
    }

    .footer__cta {
        text-align: center;
        padding-top: 20px;
    }

    .footer__form-wrap {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-form{
        width: 470px;
        margin: auto;
        max-width: 100%;
    }

    .footer__bottom {
        gap: 35px;
        padding-top: 35px;
    }
    .footer__form-text{
        color: #fff;
    }
}

@media(max-width: 899px){
    .footer__company{
        max-width: 100%;
        order: 2;
    }
    .footer__menus{
        width: 100%;
        order: 1;
    }
    .footer__meta-row {
        display: block;
        margin-top: 10px;
    }

    .footer__copy {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .footer__meta-contacts {
        width: 100%;
    }
}

@media(max-width: 767px) {
    .footer {
        min-height: 0;
    }
    .footer__bg:after{
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.2);
    }
    .footer__bg img {
        object-position: center top;
        object-fit: contain;
    }

    .footer__top {
        padding-top: 45px;
        padding-bottom: 20px;
    }

    .footer__cta {
        padding-top: 260px;
    }

    .footer__cta-title {
        font-size: 31px;
        line-height: 1.15;
    }

    .footer__cta-subtitle {
        margin-top: 10px;
        font-size: 22px;
    }

    .footer__form-text {
        color: #fff;
        margin-bottom: 30px;
    }

    .footer-form {
        padding: 28px 22px 30px;
        border-radius: 16px;
        width: 100%;
    }

    .footer__bottom {
        padding-top: 30px;
    }

    .footer__menus {
        gap: 28px;
    }

    .footer__company-info {
        margin-bottom: 22px;
    }

    .footer__small-text {
        max-width: 100%;
    }

    .footer__policy a {
        font-size: 12px;
    }

    .footer__contraindications {
        font-size: 11px;
    }
    .footer__meta-contacts {
        gap: 28px;
    }
}

@media(max-width: 529px){
    .footer__menus {
        grid-template-columns: 1fr;
    }
    .footer__cta-title{
        font-size: 26px;
    }
    .footer__contraindications{
        width: 100%;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .footer__form-text br{
        display: none;
    }
    .footer__form-text strong{
        display: block;
        margin-top: 20px;
    }
    .footer__meta-contacts {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 374px) {
    .footer__cta-title {
        font-size: 7vw;
    }

    .footer__cta-subtitle {
        font-size: 6vw;
    }
    .footer__form-text{
        font-size: 18px;
    }

    .footer-form {
        padding-left: 18px;
        padding-right: 18px;
    }
}
/* /. Footer */


/* About center page */
.about-center-section {
    background: #fff;
}

.about-center-section h1 {
    margin-bottom: 35px;
}

.about-center {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 700px;
    gap: 55px;
    align-items: start;
}

.about-center__content .content {
    color: #000;
    font-size: 20px;
    line-height: 1.27;
}

.about-center__content .content p {
    margin-bottom: 28px;
}

.about-center__content .content p:last-child {
    margin-bottom: 0;
}

.about-center__img {
    margin-bottom: 38px;
}

.about-center__img img {
    display: block;
    width: 100%;
    height: auto;
}

.about-center__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: center;
}

.about-center-stat__value {
    margin-bottom: 5px;
    color: var(--accent-color1);
    font-size: 52px;
    line-height: 1;
    font-weight: 400;
}

.about-center-stat__label {
    color: var(--accent-color2);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 500;
}

@media(max-width: 1449px) {
    .about-center {
        grid-template-columns: minmax(0, 1fr) 590px;
        gap: 45px;
    }

    .about-center__content .content {
        font-size: 18px;
    }

    .about-center-stat__value {
        font-size: 46px;
    }
}

@media(max-width: 1199px) {
    .about-center {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-center__side {
        order: -1;
    }

    .about-center__img {
        max-width: 760px;
        margin: 0 auto 35px;
    }

    .about-center__stats {
        max-width: 760px;
        margin: 0 auto;
    }
}

@media(max-width: 991px) {
    .about-center-section h1 {
        margin-bottom: 28px;
        font-size: 30px;
    }

    .about-center__content .content {
        font-size: 17px;
        line-height: 1.35;
    }

    .about-center__stats {
        gap: 18px;
    }

    .about-center-stat__value {
        font-size: 42px;
    }

    .about-center-stat__label {
        font-size: 15px;
    }
}

@media(max-width: 767px) {
    .about-center-section h1 {
        margin-bottom: 24px;
        font-size: 26px;
    }

    .about-center {
        gap: 28px;
    }

    .about-center__img {
        margin-bottom: 28px;
    }

    .about-center__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 18px;
    }

    .about-center-stat__value {
        font-size: 40px;
    }

    .about-center__content .content {
        font-size: 16px;
        line-height: 1.38;
    }

    .about-center__content .content p {
        margin-bottom: 22px;
    }
}

@media(max-width: 374px) {
    .about-center__stats {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
/* /. About center page */


/* Placement gallery */
.placement-gallery-section {
    background: #fff;
    overflow: hidden;
}

.placement-gallery-section h2 {
    margin-bottom: 55px;
}

.placement-gallery-slider {
    overflow: visible;
}

.placement-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.placement-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 346 / 289;
    background: #f3f3f3;
}

.placement-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.placement-gallery__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0);
    transition: background 300ms ease-out;
}

.placement-gallery__item:hover::before {
    background: rgba(0, 0, 0, 0.16);
}

.placement-gallery__item:hover img {
    transform: scale(1.04);
}

.placement-gallery-scrollbar {
    display: none;
}

@media(max-width: 991px) {
    .placement-gallery-section h2 {
        margin-bottom: 32px;
        font-size: 28px;
    }

    .placement-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
}

@media(max-width: 767px) {
    .placement-gallery-section h2 {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.16;
    }

    .placement-gallery-slider {
        overflow: hidden;
        padding-bottom: 28px;
    }

    .placement-gallery {
        display: flex;
        gap: 0;
    }

    .placement-gallery__item {
        aspect-ratio: 306 / 372;
    }

    .placement-gallery-scrollbar {
        display: block;
        position: relative;
        width: 305px;
        max-width: calc(100% - 40px);
        height: 5px;
        margin: 20px auto 0;
        border-radius: 10px;
        background: #D9D9D9;
    }

    .placement-gallery-scrollbar .swiper-scrollbar-drag {
        height: 100%;
        border-radius: 10px;
        background: var(--accent-color6);
    }

    /* fallback до инициализации swiper */
    .placement-gallery-slider:not(.swiper-initialized) .placement-gallery {
        display: flex;
        gap: 20px;
    }

    .placement-gallery-slider:not(.swiper-initialized) .placement-gallery__item {
        flex: 0 0 100%;
    }
}
/* /. Placement gallery */


/* Certificates */
.certificates-section {
    background: #fff;
    overflow: hidden;
}

.certificates-section h2 {
    margin-bottom: 40px;
}

.certificates-slider {
    overflow: hidden;
}

/* fallback до инициализации Swiper */
.certificates-slider:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 18px;
}

.certificates-slider:not(.swiper-initialized) .certificates-item {
    flex: 0 0 calc((100% - 90px) / 6);
}

.certificates-card {
    display: block;
    width: 100%;
    aspect-ratio: 490 / 733;
    overflow: hidden;
    background: #D9D9D9;
    color: var(--accent-color2);
}

.certificates-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease-out;
}

.certificates-card:hover img {
    transform: scale(1.04);
}

@media(max-width: 1449px) {
    .certificates-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 16px;
    }

    .certificates-slider:not(.swiper-initialized) .certificates-item {
        flex-basis: calc((100% - 80px) / 6);
    }
}

@media(max-width: 1199px) {
    .certificates-slider:not(.swiper-initialized) .certificates-item {
        flex-basis: calc((100% - 48px) / 4);
    }
}

@media(max-width: 991px) {
    .certificates-section h2 {
        margin-bottom: 30px;
        font-size: 28px;
    }

    .certificates-slider:not(.swiper-initialized) .certificates-item {
        flex-basis: calc((100% - 32px) / 3);
    }
}

@media(max-width: 767px) {
    .certificates-section h2 {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.16;
    }

    .certificates-slider:not(.swiper-initialized) .swiper-wrapper {
        gap: 14px;
    }

    .certificates-slider:not(.swiper-initialized) .certificates-item {
        flex-basis: calc((100% - 14px) / 2);
    }
}

@media(max-width: 479px) {
    .certificates-slider:not(.swiper-initialized) .certificates-item {
        flex-basis: 72%;
    }
}
/* /. Certificates */


/* Services page */
.services-page-section {
    background: #fff;
}

.services-page-section h1 {
    margin-bottom: 28px;
}

.services-page__intro {
    max-width: 1300px;
    margin: 0 auto 32px;
    color: #000;
    font-size: 20px;
    line-height: 1.35;
}

.services-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 34px;
    margin-bottom: 40px;
}

.services-page-card {
    position: relative;
    display: block;
    min-height: 194px;
    padding: 22px 28px 42px 35px;
    background: var(--accent-color4);
    color: var(--accent-color2);
    transition: all 250ms ease-out;
}

.services-page-card::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 25px;
    width: 3px;
    height: 29px;
    background: var(--accent-color6);
    transition: background 250ms ease-out;
}

.services-page-card__title {
    margin-bottom: 24px;
    padding-left: 12px;
    color: var(--accent-color2);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 600;
    transition: color 250ms ease-out;
}

.services-page-card__text {
    max-width: 390px;
    color: var(--accent-color2);
    font-size: 15px;
    line-height: 1.35;
    transition: color 250ms ease-out;
}

.services-page-card__more {
    position: absolute;
    right: 20px;
    bottom: 14px;
    color: var(--accent-color2);
    font-size: 14px;
    line-height: 1.2;
    transition: color 250ms ease-out;
}

.services-page-card--accent,
.services-page-card:hover {
    background: var(--accent-color1);
    color: #fff;
}

.services-page-card--accent::before,
.services-page-card:hover::before {
    background: var(--accent-color6);
}

.services-page-card--accent .services-page-card__title,
.services-page-card--accent .services-page-card__text,
.services-page-card--accent .services-page-card__more,
.services-page-card:hover .services-page-card__title,
.services-page-card:hover .services-page-card__text,
.services-page-card:hover .services-page-card__more {
    color: #fff;
}

@media(max-width: 1449px) {
    .services-page__intro {
        font-size: 18px;
    }

    .services-page__grid {
        gap: 18px 28px;
    }

    .services-page-card__title {
        font-size: 20px;
    }
}

@media(max-width: 991px) {
    .services-page-section h1 {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .services-page__intro {
        margin-bottom: 28px;
        font-size: 17px;
    }

    .services-page__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .services-page-card {
        min-height: 185px;
    }
}

@media(max-width: 767px) {
    .services-page-section h1 {
        font-size: 26px;
    }

    .services-page__intro {
        font-size: 16px;
        line-height: 1.4;
    }

    .services-page__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .services-page-card {
        min-height: 0;
        padding: 22px 24px 44px 29px;
    }

    .services-page-card::before {
        left: 20px;
    }

    .services-page-card__title {
        margin-bottom: 20px;
        padding-left: 10px;
        font-size: 20px;
    }

    .services-page-card__text {
        max-width: 100%;
        font-size: 15px;
    }

    .services-page-card__more {
        right: 20px;
    }
}
/* /. Services page */

/* Service detail page */
.service-detail-section {
    background: #fff;
}

.service-detail-section h1 {
    max-width: 1300px;
    margin: 0 auto 42px;
    font-size: 28px;
    line-height: 1.25;
}

.service-detail-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 694px;
    gap: 22px;
    margin-bottom: 30px;
}

.service-detail-box {
    padding: 22px 30px 26px;
    background: var(--accent-color4);
    color: #000;
}

.service-detail-box__title {
    margin-bottom: 17px;
    color: #000;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 600;
}

.service-detail-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-detail-box li {
    position: relative;
    padding-left: 17px;
    color: #000;
    font-size: 18px;
    line-height: 1.35;
}

.service-detail-box li + li {
    margin-top: 11px;
}

.service-detail-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-color6);
}

.service-detail-intro__media {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    background: #f2f2f2;
}

.service-detail-intro__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-intro__media .btn {
    position: absolute;
    right: 23px;
    bottom: 16px;
    z-index: 3;
    min-width: 180px;
    height: 42px;
    font-size: 16px;
    font-weight: 400;
}

.service-detail-content {
    margin-bottom: 30px;
    color: #000;
    font-size: 18px;
    line-height: 1.35;
}

.service-detail-content p {
    margin-bottom: 0;
}

.service-detail-content strong {
    font-weight: 600;
}

.service-detail-box--wide {
    margin-bottom: 30px;
}

.service-detail-box--wide:last-child {
    margin-bottom: 0;
}

.service-detail-box--wide li {
    font-size: 17px;
}

.service-detail-box--wide li + li {
    margin-top: 14px;
}

@media(max-width: 1449px) {
    .service-detail-section h1 {
        font-size: 26px;
    }

    .service-detail-intro {
        grid-template-columns: minmax(0, 1fr) 560px;
    }

    .service-detail-box__title {
        font-size: 23px;
    }

    .service-detail-box li,
    .service-detail-content {
        font-size: 17px;
    }
}

@media(max-width: 1199px) {
    .service-detail-intro {
        grid-template-columns: 1fr;
    }

    .service-detail-intro__media {
        min-height: 360px;
    }
}

@media(max-width: 991px) {
    .service-detail-section h1 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .service-detail-box {
        padding: 22px 24px 25px;
    }

    .service-detail-box__title {
        font-size: 22px;
    }

    .service-detail-intro__media {
        min-height: 320px;
    }
}

@media(max-width: 767px) {
    .service-detail-section h1 {
        margin-bottom: 24px;
        font-size: 22px;
        line-height: 1.25;
    }

    .service-detail-intro {
        gap: 18px;
        margin-bottom: 24px;
    }

    .service-detail-box {
        padding: 20px 18px 22px;
    }

    .service-detail-box__title {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .service-detail-box li,
    .service-detail-box--wide li,
    .service-detail-content {
        font-size: 16px;
        line-height: 1.4;
    }

    .service-detail-box li + li {
        margin-top: 10px;
    }

    .service-detail-intro__media {
        min-height: 250px;
    }

    .service-detail-intro__media .btn {
        right: 15px;
        bottom: 14px;
        min-width: 165px;
        height: 40px;
        font-size: 15px;
    }

    .service-detail-content {
        margin-bottom: 24px;
    }

    .service-detail-box--wide {
        margin-bottom: 24px;
    }
}

@media(max-width: 479px) {
    .service-detail-intro__media {
        min-height: 210px;
    }

    .service-detail-intro__media .btn {
        position: static;
        width: 100%;
        margin-top: 12px;
    }

    .service-detail-intro__media {
        overflow: visible;
        background: transparent;
    }

    .service-detail-intro__media img {
        display: block;
        height: auto;
    }
}
/* /. Service detail page */

/* Service steps */
.service-steps-section {
    background: #fff;
    width: 100%;
    overflow: hidden;
}

.service-steps-section h2 {
    margin-bottom: 50px;
}

.service-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 52px;
}

.service-step {
    position: relative;
    min-height: 190px;
    padding: 20px 20px 26px;
    background: var(--accent-color4);
    color: #000;
    text-align: center;
}

.service-step__num {
    position: absolute;
    top: -16px;
    right: -19px;
    z-index: 2;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent-color1);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    font-weight: 400;
}

.service-step__title {
    margin-bottom: 17px;
    color: #000;
    font-size: 19px;
    line-height: 1.1;
    font-weight: 600;
}

.service-step__text {
    color: #000;
    font-size: 17px;
    line-height: 1.35;
}

@media(max-width: 1449px) {
    .service-steps {
        gap: 40px;
    }

    .service-step__text {
        font-size: 16px;
    }
    .service-step__num{
        right: -5px;
    }
}

@media(max-width: 1199px) {
    .service-steps {
        gap: 28px;
    }

    .service-step {
        padding-left: 16px;
        padding-right: 16px;
    }

    .service-step__title {
        font-size: 18px;
    }

    .service-step__text {
        font-size: 15px;
    }
}

@media(max-width: 991px) {
    .service-steps-section h2 {
        margin-bottom: 38px;
        font-size: 28px;
    }

    .service-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 28px;
    }

    .service-step {
        min-height: 175px;
    }
}

@media(max-width: 767px) {
    .service-steps-section h2 {
        margin-bottom: 32px;
        font-size: 24px;
        line-height: 1.16;
    }

    .service-steps {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .service-step {
        min-height: 0;
        padding: 24px 20px 26px;
    }

    .service-step__num {
        top: -15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .service-step__title {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .service-step__text {
        font-size: 16px;
    }
}
/* /. Service steps */

/* Specialists page */
.specialists-page-section {
    background: #fff;
}

.specialists-page-section h1 {
    margin-bottom: 25px;
}

.specialists-page__intro {
    max-width: 1270px;
    margin: 0 auto 80px;
    color: #000;
    font-size: 20px;
    line-height: 1.35;
}

.specialists-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 85px 95px;
}

.specialists-page-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 45px;
    align-items: end;
}

.specialists-page-card {
    text-align: center;
    color: #000;
}

.specialists-page-card__img {
    height: 280px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 15px;
}

.specialists-page-card__img img {
    width: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.specialists-page-card__name {
    margin-bottom: 8px;
    color: #000;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
}

.specialists-page-card__position {
    margin-bottom: 9px;
    color: #8A8A8A;
    font-size: 15px;
    line-height: 1.25;
}

.specialists-page-card__experience {
    color: #176D33;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 500;
}

.specialists-cert-slider {
    position: relative;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
}

.specialists-certificate {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 980 / 1466;
    overflow: hidden;
    background: #f4f0d6;
}

.specialists-certificate img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 200ms ease-out, transform 400ms ease-out;
}

.specialists-certificate:hover img {
    transform: scale(1.035);
}

.specialists-cert-slider__data {
    display: none;
}

.specialists-cert-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 1px solid #ff6d60;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: all 200ms ease-out;
}

.specialists-cert-slider__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 7px;
    height: 7px;
    border-top: 1px solid #ff6d60;
    border-right: 1px solid #ff6d60;
}

.specialists-cert-slider__arrow--prev {
    left: 14px;
}

.specialists-cert-slider__arrow--prev::before {
    left: 8px;
    transform: translateY(-50%) rotate(-135deg);
}

.specialists-cert-slider__arrow--next {
    right: 14px;
}

.specialists-cert-slider__arrow--next::before {
    right: 8px;
    transform: translateY(-50%) rotate(45deg);
}

.specialists-cert-slider__arrow:hover {
    background: #ff6d60;
}

.specialists-cert-slider__arrow:hover::before {
    border-color: #fff;
}

.specialists-cert-slider.is-single .specialists-cert-slider__arrow {
    display: none;
}

@media(max-width: 1449px) {
    .specialists-page__grid {
        gap: 70px 60px;
    }

    .specialists-page-item {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 34px;
    }

    .specialists-cert-slider {
        width: 220px;
    }

    .specialists-page-card__img {
        height: 260px;
    }
}

@media(max-width: 991px) {
    .specialists-page-section h1 {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .specialists-page__intro {
        margin-bottom: 55px;
        font-size: 18px;
    }

    .specialists-page__grid {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
        gap: 60px;
    }

    .specialists-page-item {
        grid-template-columns: minmax(0, 1fr) 220px;
        gap: 50px;
        align-items: start;
    }
}

@media(max-width: 599px) {
    .specialists-page-section h1 {
        font-size: 26px;
    }

    .specialists-page__intro {
        margin-bottom: 35px;
        font-size: 16px;
        line-height: 1.4;
    }

    .specialists-page__grid {
        max-width: 100%;
        gap: 45px;
    }

    .specialists-page-item {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 35px;
        box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
        border-radius: 6px;
    }

    .specialists-page-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .specialists-page-card__img {
        height: 300px;
    }

    .specialists-cert-slider {
        width: 260px;
    }
}

@media(max-width: 374px) {
    .specialists-page-card__img {
        height: 270px;
    }

    .specialists-cert-slider {
        width: 230px;
    }
}
/* /. Specialists page */

/* Patient stories page */
.patient-stories-section {
    background: #fff;
}

.patient-stories-section h1 {
    margin-bottom: 30px;
}

.patient-stories__intro {
    margin: 0 auto 28px;
    color: #000;
    font-size: 18px;
    line-height: 1.35;
}

.patient-stories__intro p {
    margin-bottom: 22px;
}

.patient-stories__intro p:last-child {
    margin-bottom: 0;
}

.patient-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px 31px;
}

.patient-story-card {
    color: #000;
}

.patient-story-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 320 / 405;
    margin-bottom: 12px;
    background: #EAF0F7;
    color: #A7A7A7;
}

.patient-story-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.18);
    transition: background 300ms ease-out;
}

.patient-story-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.patient-story-card__media:hover::before {
    background: rgba(0, 0, 0, 0.08);
}

.patient-story-card__media:hover img {
    transform: scale(1.04);
}

.patient-story-card__media--empty::before {
    display: none;
}

.patient-story-card__media--empty svg {
    width: 46px;
    height: 46px;
    opacity: 0.78;
}

.patient-story-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 4px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease-out;
}

.patient-story-card__play::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 17px solid rgba(255, 255, 255, 0.78);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.patient-story-card__media:hover .patient-story-card__play {
    border-color: var(--accent-color1);
    transform: translate(-50%, -50%) scale(1.08);
}

.patient-story-card__media:hover .patient-story-card__play::before {
    border-left-color: var(--accent-color1);
}

.patient-story-card__name {
    margin-bottom: 8px;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}

.patient-story-card__desc {
    max-width: 260px;
    margin-bottom: 17px;
    color: var(--accent-color2);
    font-size: 16px;
    line-height: 1.25;
}

.patient-story-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.patient-story-card__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    min-height: 25px;
    padding: 3px 17px 4px;
    border-radius: 20px;
    background: var(--accent-color4);
    color: var(--accent-color2);
    font-size: 13px;
    line-height: 1;
}

.patient-story-card__more {
    color: var(--accent-color1);
    font-size: 13px;
    line-height: 1.2;
    text-decoration: underline;
}

.patient-story-card__more:hover {
    color: var(--accent-color1);
    text-decoration: none;
}

@media(max-width: 1449px) {
    .patient-stories-grid {
        gap: 34px 28px;
    }

    .patient-story-card__name {
        font-size: 20px;
    }

    .patient-story-card__desc {
        font-size: 15px;
    }
}

@media(max-width: 1199px) {
    .patient-stories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 991px) {
    .patient-stories-section h1 {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .patient-stories__intro {
        font-size: 17px;
    }

    .patient-stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media(max-width: 767px) {
    .patient-stories-section h1 {
        font-size: 26px;
    }

    .patient-stories__intro {
        font-size: 16px;
        line-height: 1.4;
    }

    .patient-stories-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .patient-story-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .patient-story-card__play {
        width: 52px;
        height: 52px;
        border-width: 3px;
    }

    .patient-story-card__play::before {
        left: 19px;
        top: 14px;
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .patient-story-card__desc {
        max-width: none;
    }
}
/* /. Patient stories page */


/* Story detail page */
.story-detail__hero {
    margin-bottom: 36px;
    text-align: center;
}

.story-detail__video {
    position: relative;
    display: inline-block;
    width: 283px;
    max-width: 100%;
    overflow: hidden;
    background: #e8e8e8;
    color: #fff;
}

.story-detail__video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.12);
    transition: background 300ms ease-out;
}

.story-detail__video img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 450ms ease-out;
}

.story-detail__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 4px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease-out;
}

.story-detail__play::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 17px solid rgba(255, 255, 255, 0.78);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.story-detail__video:hover::before {
    background: rgba(0, 0, 0, 0.04);
}

.story-detail__video:hover img {
    transform: scale(1.04);
}

.story-detail__video:hover .story-detail__play {
    border-color: var(--accent-color1);
    transform: translate(-50%, -50%) scale(1.08);
}

.story-detail__video:hover .story-detail__play::before {
    border-left-color: var(--accent-color1);
}

@media(max-width: 991px) {
    .story-detail__hero {
        margin-bottom: 28px;
    }
}

@media(max-width: 767px) {
    .story-detail__video {
        width: 240px;
    }

    .story-detail__hero {
        margin-bottom: 22px;
    }

    .story-detail__play {
        width: 52px;
        height: 52px;
        border-width: 3px;
    }

    .story-detail__play::before {
        left: 19px;
        top: 14px;
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}

@media(max-width: 479px) {
    .story-detail__video {
        width: 210px;
    }
}

.story-detail__meta {
    margin-bottom: 30px;
}

.story-detail__desc {
    margin-bottom: 14px;
    color: #000;
    font-size: 18px;
    line-height: 1.35;
}

.story-detail__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.story-detail__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 114px;
    min-height: 25px;
    padding: 3px 17px 4px;
    border-radius: 20px;
    background: var(--accent-color4);
    color: var(--accent-color2);
    font-size: 13px;
    line-height: 1;
}

.story-detail__content {
    color: #000;
    font-size: 18px;
    line-height: 1.45;
}

.story-detail__block {
    margin-bottom: 38px;
}

.story-detail__block:last-child {
    margin-bottom: 0;
}

.story-detail__subtitle {
    margin-bottom: 10px;
    color: #000;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.story-detail__content p {
    margin: 0 0 10px;
}

.story-detail__content p:last-child {
    margin-bottom: 0;
}

.story-detail__content ul {
    margin: 0;
    padding-left: 22px;
}

.story-detail__content li {
    margin-bottom: 6px;
}

.story-detail__content li:last-child {
    margin-bottom: 0;
}

@media(max-width: 1449px) {
    .story-detail__content,
    .story-detail__desc,
    .story-detail__subtitle {
        font-size: 17px;
    }
}

@media(max-width: 991px) {
    .story-detail-section h1 {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .story-detail__hero {
        margin-bottom: 28px;
    }

    .story-detail__meta {
        margin-bottom: 24px;
    }

    .story-detail__content,
    .story-detail__desc,
    .story-detail__subtitle {
        font-size: 16px;
    }

    .story-detail__block {
        margin-bottom: 30px;
    }
}

@media(max-width: 767px) {
    .story-detail-section h1 {
        font-size: 26px;
        line-height: 1.16;
    }

    .story-detail__image {
        width: 240px;
    }

    .story-detail__hero {
        margin-bottom: 22px;
    }

    .story-detail__desc {
        margin-bottom: 12px;
        line-height: 1.4;
    }

    .story-detail__content {
        line-height: 1.5;
    }

    .story-detail__subtitle {
        margin-bottom: 8px;
    }

    .story-detail__block {
        margin-bottom: 26px;
    }
}

@media(max-width: 479px) {
    .story-detail__image {
        width: 210px;
    }
}
/* /. Story detail page */

/* Photo gallery page */
.photo-gallery-page-section {
    background: #fff;
}

.photo-gallery-page-section h1 {
    margin-bottom: 30px;
}

.photo-gallery-page__intro {
    margin: 0 auto 50px;
    color: #000;
    font-size: 20px;
    line-height: 1.35;
}

.photo-gallery-page__intro p {
    margin-bottom: 24px;
}

.photo-gallery-page__intro p:last-child {
    margin-bottom: 0;
}

.photo-gallery-page__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 13px;
}

.photo-gallery-page__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 408 / 245;
    background: #D9D9D9;
}

.photo-gallery-page__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0);
    transition: background 300ms ease-out;
}

.photo-gallery-page__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.photo-gallery-page__item:hover::before {
    background: rgba(0, 0, 0, 0.16);
}

.photo-gallery-page__item:hover img {
    transform: scale(1.04);
}

@media(max-width: 991px) {
    .photo-gallery-page-section h1 {
        margin-bottom: 24px;
        font-size: 30px;
    }

    .photo-gallery-page__intro {
        margin-bottom: 36px;
        font-size: 17px;
    }

    .photo-gallery-page__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media(max-width: 767px) {
    .photo-gallery-page-section h1 {
        font-size: 26px;
        line-height: 1.16;
    }

    .photo-gallery-page__intro {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.4;
    }

    .photo-gallery-page__intro p {
        margin-bottom: 18px;
    }

    .photo-gallery-page__grid {
        gap: 10px;
    }
}

@media(max-width: 575px) {
    .photo-gallery-page__grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-page__item {
        aspect-ratio: 408 / 275;
    }
}
/* /. Photo gallery page */

/* Contacts page */
.contacts-page-section {
    background: #fff;
}

.contacts-page-section h1 {
    margin-bottom: 42px;
}

.contacts-page {
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(0, 710px);
    gap: 95px;
    align-items: start;
}

.contacts-page__company {
    margin-bottom: 26px;
    color: #000;
    font-size: 18px;
    line-height: 1.35;
}

.contacts-page__row {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 25px;
    margin-bottom: 15px;
    color: #000;
    font-size: 18px;
    line-height: 1.45;
}

.contacts-page__label {
    color: #000;
}

.contacts-page__value {
    color: #000;
}

.contacts-page__value a {
    color: #000;
    text-decoration: none;
}

.contacts-page__value a[href^="mailto"] {
    text-decoration: underline;
}

.contacts-page__value a:hover {
    color: var(--accent-color1);
}

.contacts-page__value span {
    color: #000;
}
.contacts-page__value > div + div{
    margin-top: 10px;
}

.contacts-page__map {
    width: 100%;
}

.map {
    width: 100%;
    height: 420px;
    background: #D9D9D9;
}

.map #mapexMap1 {
    width: 100%;
    height: 100%;
}

@media(max-width: 1449px) {
    .contacts-page {
        grid-template-columns: minmax(0, 600px) minmax(0, 620px);
        gap: 70px;
    }

    .contacts-page__row,
    .contacts-page__company {
        font-size: 17px;
    }
}

@media(max-width: 1199px) {
    .contacts-page {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contacts-page__map {
        order: 2;
    }

    .map {
        height: 400px;
    }
}

@media(max-width: 991px) {
    .contacts-page-section h1 {
        margin-bottom: 30px;
        font-size: 30px;
    }

    .contacts-page__row {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 20px;
        margin-bottom: 20px;
        font-size: 16px;
    }

    .contacts-page__company {
        font-size: 16px;
    }
}

@media(max-width: 767px) {
    .contacts-page-section h1 {
        font-size: 26px;
        line-height: 1.16;
    }

    .contacts-page {
        display: block;
    }

    .contacts-page__info{
        margin-bottom: 50px;
    }

    .contacts-page__row {
        display: block;
        margin-bottom: 18px;
        line-height: 1.45;
    }

    .contacts-page__label {
        margin-bottom: 4px;
        font-weight: 600;
    }

    .map {
        height: 340px;
    }
}

@media(max-width: 479px) {
    .map {
        height: 300px;
    }
}
/* /. Contacts page */

/* FAQ page */
.faq-page-section {
    background: #fff;
}

.faq-page-section h1 {
    margin-bottom: 32px;
}

.faq-page__intro {
    margin: 0 auto 28px;
    color: #000;
    font-size: 18px;
    line-height: 1.4;
}

.faq-page__list {
    margin: 0 auto;
}

.faq-page__item {
    margin-bottom: 20px;
}

.faq-page__question {
    width: 710px;
    max-width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 16px 11px 28px;
    border: none;
    border-radius: 24px;
    background: var(--accent-color4);
    color: #000;
    font-size: 18px;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: background 250ms ease-out;
}

.faq-page__question:hover {
    background: #ebedf1;
}

.faq-page__icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.faq-page__icon::before,
.faq-page__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 9px;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}

.faq-page__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page__item.active .faq-page__icon::after {
    display: none;
}

.faq-page__answer {
    display: none;
    max-width: 1230px;
    margin: 18px 0 22px 20px;
    color: #000;
    font-size: 20px;
    line-height: 1.35;
}

.faq-page__item.active .faq-page__answer {
    display: block;
}

@media(max-width: 991px) {
    .faq-page-section h1 {
        margin-bottom: 26px;
        font-size: 30px;
    }

    .faq-page__intro {
        font-size: 17px;
    }

    .faq-page__question {
        width: 100%;
        font-size: 17px;
    }

    .faq-page__answer {
        margin-left: 0;
        font-size: 17px;
    }
}

@media(max-width: 767px) {
    .faq-page-section h1 {
        font-size: 26px;
        line-height: 1.16;
    }

    .faq-page__intro {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.4;
    }

    .faq-page__item {
        margin-bottom: 14px;
    }

    .faq-page__question {
        min-height: 46px;
        padding: 10px 14px 11px 20px;
        border-radius: 23px;
        font-size: 16px;
    }

    .faq-page__answer {
        margin-top: 14px;
        margin-bottom: 18px;
        font-size: 16px;
        line-height: 1.45;
    }
}
/* /. FAQ page */


/* News section */
.news-section {
    background: #fff;
}

.news-section h2 {
    margin-bottom: 36px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}

.news-card {
    position: relative;
    color: #000;
}

.news-card__img {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 327 / 192;
    margin-bottom: 14px;
    background: #e8e8e8;
}

.news-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.news-card__img:hover img {
    transform: scale(1.04);
}

.news-card__date {
    margin-bottom: 12px;
    color: #777;
    font-size: 15px;
    line-height: 1.25;
}

.news-card__title {
    display: block;
    margin-bottom: 13px;
    color: #000;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
    text-decoration: none;
}

.news-card__title:hover {
    color: var(--accent-color1);
}

.news-card__text {
    margin-bottom: 10px;
    color: #777;
    font-size: 16px;
    line-height: 1.35;
}

.news-card__more {
    display: block;
    width: max-content;
    margin-left: auto;
    color: var(--accent-color6);
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.news-card__more:hover {
    color: var(--accent-color1);
    text-decoration: underline;
}

.news-section__more {
    margin-top: 52px;
    text-align: center;
}

.news-section__more .btn {
    min-width: 140px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
}

@media(max-width: 1449px) {
    .news-grid {
        gap: 28px;
    }

    .news-card__title {
        font-size: 16px;
    }

    .news-card__text {
        font-size: 15px;
    }
}

@media(max-width: 1199px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 28px;
    }
}

@media(max-width: 991px) {
    .news-section h2 {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .news-section__more {
        margin-top: 38px;
    }
}

@media(max-width: 767px) {
    .news-section h2 {
        margin-bottom: 24px;
        font-size: 24px;
        line-height: 1.16;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .news-card__date {
        font-size: 14px;
    }

    .news-card__title {
        font-size: 17px;
    }

    .news-section__more {
        margin-top: 32px;
    }
}
/* /. News section */

/* Blog categories */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.blog-categories__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 39px;
    padding: 8px 23px 9px;
    border-radius: 22px;
    background: var(--accent-color4);
    color: #000;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 250ms ease-out;
}

.blog-categories__item:hover,
.blog-categories__item.active {
    background: var(--accent-color1);
    color: #fff;
}
/* /. Blog categories */


/* Blog page */
.blog-page-section {
    background: #fff;
}

.blog-page-section h1 {
    margin-bottom: 32px;
}
/* /. Blog page */


/* Blog list */
.blog-list-section {
    background: #fff;
}

.blog-list-section h1 {
    margin-bottom: 32px;
}

.blog-list-section .blog-categories {
    justify-content: flex-start;
    margin-bottom: 54px;
}

.blog-list-section h2 {
    margin-bottom: 34px;
    text-align: left;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 58px 10px;
}

.blog-card {
    position: relative;
    color: #000;
}

.blog-card__img {
    display: block;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 466 / 214;
    margin-bottom: 14px;
    background: #e8e8e8;
}

.blog-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.blog-card__img:hover img {
    transform: scale(1.04);
}

.blog-card__title {
    display: block;
    margin-bottom: 14px;
    color: #000;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    text-decoration: none;
}

.blog-card__title:hover {
    color: var(--accent-color1);
}

.blog-card__text {
    margin-bottom: 16px;
    color: #777;
    font-size: 16px;
    line-height: 1.45;
}

.blog-card__more {
    display: block;
    width: max-content;
    margin-left: auto;
    color: var(--accent-color6);
    font-size: 14px;
    line-height: 1.2;
    text-decoration: none;
}

.blog-card__more:hover {
    color: var(--accent-color1);
    text-decoration: underline;
}

@media(max-width: 1449px) {
    .blog-grid {
        gap: 50px 24px;
    }

    .blog-card__text {
        font-size: 15px;
    }
}

@media(max-width: 1199px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 28px;
    }
}

@media(max-width: 991px) {
    .blog-page-section h1,
    .blog-list-section h1 {
        margin-bottom: 26px;
        font-size: 30px;
    }

    .blog-list-section .blog-categories {
        margin-bottom: 40px;
    }

    .blog-list-section h2 {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .blog-categories {
        gap: 12px;
    }

    .blog-categories__item {
        min-height: 36px;
        padding-left: 18px;
        padding-right: 18px;
        font-size: 14px;
    }
}

@media(max-width: 767px) {
    .blog-page-section h1,
    .blog-list-section h1 {
        font-size: 26px;
        line-height: 1.16;
    }

    .blog-list-section h2 {
        font-size: 24px;
        line-height: 1.16;
    }

    .blog-list-section .blog-categories {
        margin-bottom: 32px;
    }

    .blog-categories {
        justify-content: flex-start;
        gap: 10px;
    }

    .blog-categories__item {
        min-height: 34px;
        padding: 7px 15px 8px;
        font-size: 13px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .blog-card {
        max-width: 460px;
    }

    .blog-card__title {
        font-size: 16px;
    }
}
/* /. Blog list */

/* News detail page */
.news-detail-section {
    background: #fff;
}

.news-detail-section h1 {
    margin: 0 auto 52px;
    color: var(--accent-color2);
    font-size: 27px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.news-detail-content {
    margin: 0 auto 58px;
    color: #000;
    font-size: 16px;
    line-height: 1.35;
}

.news-detail-content p {
    margin-bottom: 28px;
}

.news-detail-content p:last-child {
    margin-bottom: 0;
}

.news-detail-content strong {
    font-weight: 600;
}

.news-detail-gallery {
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.news-detail-gallery__item {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 304 / 181;
    background: #e8e8e8;
}

.news-detail-gallery__item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0);
    transition: background 300ms ease-out;
}

.news-detail-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease-out;
}

.news-detail-gallery__item:hover::before {
    background: rgba(0, 0, 0, 0.16);
}

.news-detail-gallery__item:hover img {
    transform: scale(1.04);
}

@media(max-width: 1449px) {
    .news-detail-section h1 {
        font-size: 25px;
    }

    .news-detail-gallery {
        gap: 16px;
    }
}

@media(max-width: 1199px) {
    .news-detail-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 991px) {
    .news-detail-section h1 {
        margin-bottom: 34px;
        font-size: 24px;
    }

    .news-detail-content {
        margin-bottom: 42px;
        font-size: 16px;
        line-height: 1.45;
    }

    .news-detail-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media(max-width: 767px) {
    .news-detail-section h1 {
        margin-bottom: 26px;
        font-size: 22px;
        line-height: 1.25;
    }

    .news-detail-content {
        margin-bottom: 32px;
    }

    .news-detail-content p {
        margin-bottom: 22px;
    }

    .news-detail-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .news-detail-gallery__item {
        aspect-ratio: 304 / 190;
    }
}
/* /. News detail page */

/* Blog detail page */
.blog-detail-section {
    background: #fff;
}

.blog-detail-section h1 {
    margin: 0 auto 52px;
    color: var(--accent-color2);
    font-size: 27px;
    line-height: 1.25;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-detail-content {
    color: #000;
    font-size: 16px;
    line-height: 1.35;
}

.blog-detail-content p {
    margin-bottom: 46px;
}

.blog-detail-content p:last-child {
    margin-bottom: 0;
}

.blog-detail-content strong {
    font-weight: 600;
}

.blog-detail-media {
    width: 560px;
    max-width: 100%;
    margin: 0 auto 42px;
}

.blog-detail-media img {
    display: block;
    width: 100%;
    height: auto;
}

.blog-detail-video {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
    background: #e8e8e8;
    color: #fff;
}

.blog-detail-video::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(0, 0, 0, 0.14);
    transition: background 300ms ease-out;
}

.blog-detail-video img {
    transition: transform 450ms ease-out;
}

.blog-detail-video__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 4px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease-out;
}

.blog-detail-video__play::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 15px;
    width: 0;
    height: 0;
    border-left: 17px solid rgba(255, 255, 255, 0.78);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.blog-detail-video:hover::before {
    background: rgba(0, 0, 0, 0.06);
}

.blog-detail-video:hover img {
    transform: scale(1.04);
}

.blog-detail-video:hover .blog-detail-video__play {
    border-color: var(--accent-color1);
    transform: translate(-50%, -50%) scale(1.08);
}

.blog-detail-video:hover .blog-detail-video__play::before {
    border-left-color: var(--accent-color1);
}

@media(max-width: 991px) {
    .blog-detail-section h1 {
        margin-bottom: 34px;
        font-size: 24px;
    }

    .blog-detail-content {
        font-size: 16px;
        line-height: 1.45;
    }

    .blog-detail-content p {
        margin-bottom: 34px;
    }

    .blog-detail-media {
        margin-bottom: 34px;
    }
}

@media(max-width: 767px) {
    .blog-detail-section h1 {
        margin-bottom: 26px;
        font-size: 22px;
        line-height: 1.25;
    }

    .blog-detail-content p {
        margin-bottom: 28px;
    }

    .blog-detail-media {
        margin-bottom: 28px;
    }

    .blog-detail-video__play {
        width: 52px;
        height: 52px;
        border-width: 3px;
    }

    .blog-detail-video__play::before {
        left: 19px;
        top: 14px;
        border-left-width: 16px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }
}
/* /. Blog detail page */

.form-control.error{
    background: #ffe8e8 !important;
}


.caveat{
  font-family: "Caveat", cursive;
  font-optical-sizing: auto;
  line-height: 1;
}
.f40{
    font-size: 40px;
}
.theme-color{
    color: var(--accent-color1);
}


.common-home-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 50px 0;
    color: var(--accent-color2);
    background: #fff;
}

.common-home-page__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.common-home-page__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.common-home-page .container {
    position: relative;
    z-index: 3;
}

.common-home {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px minmax(0, 1fr);
    gap: 55px;
    text-align: center;
}

.common-home-logo {
    width: 230px;
    display: inline-flex;
    max-width: 100%;
    margin: 22px auto 24px;
}

.common-home-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.common-home-phone {
    display: inline-flex;
    color: #4f4f4f;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 600;
    white-space: nowrap;
}

.common-home-phone:hover {
    color: var(--accent-color1);
}

.common-home-side {
    padding-top: 122px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.common-home-text {
    min-height: 128px;
    margin: 0 auto 28px;
    color: #2f3445;
    font-size: 17px;
    line-height: 1.58;
    letter-spacing: 0.02em;
}

.common-home-text h2{
    text-transform: none;
    font-size: 35px;
}

.common-home-links {
    min-height: 112px;
    margin-bottom: 30px;
}

.common-home-links__item {
    display: block;
    width: max-content;
    max-width: 100%;
    margin: 0 auto 15px;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 4px;
    color: var(--accent-color6);
}

.common-home .btn {
    width: 140px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    background: var(--accent-color6);
    margin: 0 auto;
}

@media(max-width: 1199px) {
    .common-home {
        grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
        gap: 35px;
    }

    .common-home-logo {
        width: 210px;
    }

    .common-home-text {
        font-size: 16px;
    }

    .common-home-links__item {
        font-size: 18px;
    }
}

@media(max-width: 991px) {
    .common-home-page {
        min-height: 0;
        padding: 40px 0 55px;
    }

    .common-home {
        display: flex;
        flex-direction: column;
        gap: 34px;
        align-items: center;
    }

    .common-home-center {
        order: 1;
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .common-home-side {
        width: 100%;
        max-width: 620px;
        padding-top: 0;
    }

    .common-home-side--left {
        order: 2;
    }

    .common-home-side--right {
        order: 3;
    }

    .common-home-text {
        min-height: 0;
        margin-bottom: 20px;
    }

    .common-home-links {
        min-height: 0;
        margin-bottom: 22px;
    }
}

@media(max-width: 767px) {
    .common-home-page {
        padding-top: 32px;
        padding-bottom: 45px;
    }

    .common-home-logo {
        width: 190px;
        margin-bottom: 18px;
    }

    .common-home-phone {
        font-size: 22px;
    }

    .common-home-text {
        font-size: 15px;
    }

    .common-home-links__item {
        font-size: 17px;
    }
}
