@charset "UTF-8";

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Manrope', sans-serif;
    line-height: 1;
    font-size: 14px;
    color: #000;
}

body {
    flex-direction: column;
    overflow-x: hidden;
    background: #fff;
    padding-top: 60px;
}

body.mobile-active {
    overflow: hidden;
}

h1, h2, h3, h4 {
    color: black;
    line-height: 1.1em;
    margin: 0;
}

html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a, body, h1, h2, h3, h4, h5, p {
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
}

*, :after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

img {
    max-width: 100%;
}

a {
    transition: color .3s;
}

figure {
    margin: 0;
    padding: 0;
}

textarea {
    font-family: 'Inter', sans-serif;
}

.scroll::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.scroll_black::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.scroll_black::-webkit-scrollbar-thumb {
    background: #333;
}

.scroll_black::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.scroll_gold::-webkit-scrollbar-track {
    background: transparent;
}

.scroll_gold::-webkit-scrollbar-thumb {
    background: #826bef;
}

.scroll_gold::-webkit-scrollbar-thumb:hover {
    background: #826bef;
}

* {
    box-sizing: border-box;
}

button {
    border: none;
}

.red {
    color: red;
}

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

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

.block {
    display: block;
}

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

svg {
    max-width: 100%;
    max-height: 100%;
}

.color-white {
    color: white;
}

.color-blue {
    color: #187ede;
}

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

ul, li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

a, a:hover, a:active {
    color: inherit;
    text-decoration: none;
}

.hidden {
    display: none !important;
}

button, button:active, button:focus {
    border: none;
    outline: none;
}

.bold {
    font-weight: 600;
}

/* FLEX */

/* flexbox libruary */

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

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

.justify-content-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.justify-content-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.justify-content-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.justify-content-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.justify-content-around {
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.align-items-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-items-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.align-items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.align-items-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.align-items-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.align-self-start {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.align-self-end {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.align-self-center {
    -ms-flex-item-align: center;
    align-self: center;
}

.align-self-baseline {
    -ms-flex-item-align: baseline;
    align-self: baseline;
}

.align-self-stretch {
    -ms-flex-item-align: stretch;
    align-self: stretch;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
}

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

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

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

.align-content-start {
    -ms-flex-line-pack: start;
    align-content: flex-start;
}

.align-content-end {
    -ms-flex-line-pack: end;
    align-content: flex-end;
}

.align-content-center {
    -ms-flex-line-pack: center;
    align-content: center;
}

.align-content-between {
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.align-content-around {
    -ms-flex-line-pack: distribute;
    align-content: space-around;
}

.align-content-stretch {
    -ms-flex-line-pack: stretch;
    align-content: stretch;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    box-sizing: border-box;
    transition: color .3s, background-color .3s;
    cursor: pointer;
    border: 1px solid transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.btn--xl {
    height: 55px;
    border-radius: 6px;
    padding: 0 30px;
    font-size: 15px;
    font-weight: 700;
    gap: 10px;
}

.btn--column {
    flex-direction: column;
    gap: 5px;
}


.btn--column.btn--xl span:last-child {
    font-size: 14px;
    font-weight: 600;
}

.btn--rounded.btn--xl {
    border-radius: 27px;
}

.btn--xl svg {
    height: 24px;
    width: 24px;
    margin-left: -4px;
}

.btn--m {
    height: 45px;
    border-radius: 7px;
    padding: 0 15px;
    font-size: 15px;
    font-weight: 600;
    gap: 7px;
}

.btn--m svg {
    height: 24px;
    width: 24px;
}

.btn--rounded.btn--m {
    border-radius: 22px;
    padding: 0 20px;
}

.btn--xs {
    border-radius: 7px;
    padding: 15px 13px;
    font-size: 14px;
    font-weight: 600;
    gap: 5px;
}

.btn--rounded.btn--xs {
    border-radius: 19px;
    padding: 0 20px;
}

.btn--xs svg {
    height: 18px;
    width: 18px;
}

.btn--xxs {
    height: 30px;
    line-height: 30px;
    border-radius: 4px;
    padding: 0 7px;
    font-weight: 600;
    gap: 5px;
}

.btn--rounded.btn--xxs {
    border-radius: 15px;
}

.btn--xxs svg {
    height: 14px;
    width: 14px;
}

.btn--black {
    background-color: #222;
    border-color: #222;
    color: #f6f9fe;
}

.btn--black:hover {
    background-color: #333;
    border-color: #333;
}

.btn--black svg {
    fill: #fff;
}

.btn--blue {
    background-color: #187ede;
    border-color: #187ede;
    color: #f6f9fe;
}

.btn--blue:hover {
    background-color: #1260a9;
    border-color: #1260a9;
    color: #f6f9fe;
}

.btn--blue svg {
    fill: #fff;
}

.btn--green {
    background-color: #1ba800;
    border-color: #1ba800;
    color: #f6f9fe;
    text-shadow: 0 1px 0 #106300;
}

.btn--green:hover {
    background-color: #106300;
    border-color: #106300;
}

.btn--green svg {
    fill: #fff;
}


.btn--red {
    background-color: #fb1515;
    border-color: #fb1515;
    color: #fff;
}

.btn--red:hover {
    background-color: #ad0f0f;
    border-color: #ad0f0f;
}

.btn--red svg {
    fill: #fff;
}

.btn--white {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    color: #373737;
}

.btn--white:hover {
    background-color: #f6f9fe;
}

.btn--white svg {
    fill: #2d64d2;
}

.btn--transparent {
    color: #373737;
}

.btn--transparent:hover {
    color: #444;
}

.btn--transparent svg {
    fill: #373737;
}

.btn--pink {
    background-color: #ef5288;
    color: #fff;
}

.btn--pink:hover {
    background-color: #c74773;
}

.btn--pink svg {
    fill: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 99;
    box-shadow: 0 1px 0 0 #0000001f;
}

.header .inner {
    display: flex;
}

.header__right-top {
    display: none;
    align-items: center;
    justify-content: end;
    height: 60px;
    border-bottom: 1px solid #0000001f;
    padding-left: 15px;
}

.home__right-bottom {
    display: flex;
}

.home__right-bottom .container {
    padding: 0;
}

.home__right-bottom .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home__right-bottom .btn {
    width: 230px;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 15px;
}

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

.header__right {
    flex: 1;
}

.header__logo {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 800;
    width: 150px;
    height: 100%;
}

.header__logo img {
    width: 150px;
    fill: #000;
    margin: auto;
}

.home__right-bottom-menu {
    display: none;
}

.home__right-bottom-menu > ul {
    display: flex;
    align-items: center;
}

.home__right-bottom-menu > ul > li {
    display: flex;
    align-items: center;
}

.home__right-bottom-menu > ul > li > a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    padding-right: 10px;
    padding-left: 10px;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    color: #000;
    text-transform: uppercase;
    transition: color .3s, background-color .3s;
}

.home__right-bottom-menu > ul > li:hover > a {
    background-color: #f1f9ff;
    color: #1a7dde;
}

.home__right-bottom-menu > ul > li > a svg {
    height: 20px;
    width: 20px;
    fill: #000;
    transition: fill .3s;
    margin-right: -5px;
}

.home__right-bottom-menu > ul > li:hover a svg {
    fill: #1a7dde;
}

.home__right-top-menu {
    display: none;
    margin-left: auto;
}

.home__right-top-menu ul {
    display: flex;
    align-items: center;
}

.home__right-top-menu ul li a {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 15px;
    font-weight: 600;
    line-height: 60px;
    transition: background-color .3s, color .3s;
}

.home__right-top-menu ul li a:hover {
    background-color: #f1f9ff;
    color: #1a7dde;
}

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

.header_social {
    margin-left: 30px;
}

.header_social ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header__phone a {
    display: flex;
    align-items: center;
    transition: color .3s;
}

.header__phone a:hover {
    color: #1a7dde;
}

.header__phone svg {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    fill: #1a7dde;
}

.header__phone span {
    display: block;
    font-size: 14px;
    font-weight: 700;
}

.consultation-form {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 99;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.consultation-form.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.consultation-form__overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}

.consultation-form__body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    overflow: hidden;
    width: 800px;
    max-width: 100%;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
}

.consultation-form__body.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.consultation-form__body-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    padding-right: 15px;
}

.consultation-form__body-close span {
    height: 2px;
    background: #000;
    display: block;
    width: 30px;
}

.consultation-form__body-close span:first-child {
    margin: 0 0 -2px auto;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.consultation-form__body-close span:last-child {
    margin: 0 0 0 auto;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}


.consultation-form__body-inner {
    top: 0;
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    overflow-y: scroll;
    padding: 80px 20px;
}

.consultation-form__title {
    font-size: 27px;
    font-weight: 700;
    margin-top: -80px;
    line-height: 80px;
    margin-right: 45px;
}

.consultation-form__sub-title {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 35px;
}

.consultation-form__input {
    margin-bottom: 15px;
}

.consultation-form input, .consultation-form textarea {
    width: 100%;
    transition: all 0.5s;
    padding: 0 30px;
    border: 1px solid #ccc;
    height: 56px;
    resize: none;
    border-radius: 4px;
    font-size: 16px;
}

.consultation-form textarea {
    padding: 30px;
    height: 100px;
}

.consultation-form__button .btn {
    width: 100%;
    height: 65px;
}

.header__button {
    display: none;
    align-items: center;
    z-index: 1;
    height: 60px;
    color: #fff;
    background: #1a7dde;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: 700;
    transition: background-color .3s;
    margin-left: auto;
}

.home__right-bottom-contact {
    height: 60px;
    width: 60px;
    display: flex;
    border-left: 1px solid #0000001f;
    cursor: pointer;
    transition: background-color .3s;
    align-items: center;
    font-weight: 700;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #fff;
    margin-left: auto;

}

.home__right-bottom-contact svg {
    width: 30px;
    height: 30px;
    fill: #187ede;
    margin: auto;
}

.home__right-bottom-contact span {
    display: none;
}

.home__right-bottom-contact:hover {
    background-color: #1260a9;
}

.header__button:hover {
    background: #1668b9;
}

.home__banner {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: url(/public/img/design/banner.jpg?1) no-repeat center;
    background-size: cover;
}

.home__banner:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgb(0 0 0 / 28%);
    z-index: -1;
}

.home__banner .container {
    padding-top: 150px;
    padding-bottom: 150px;
}

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

.home__banner .btn--transparent {
    color: #fff;
}

.home__banner .inner h1 {
    font-size: 24px;
    line-height: 1.3;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.home__banner .inner p {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.home__right-bottom-menu-dropdown {
    position: absolute;
    top: 120px;
    visibility: hidden;
    z-index: -1;
    background: #fff;
    transform: translateY(40px);
    transition: opacity 0.3s cubic-bezier(0.12, 0.77, 0.16, 0.93), transform 0.3s cubic-bezier(0.12, 0.77, 0.16, 0.93), top .3s;
    opacity: 0;
    box-shadow: 0 3px 16px -8px rgba(0, 0, 0, .19);
    border-top: 1px solid #0000001f;
}

.home__right-bottom-menu > ul > li:hover .home__right-bottom-menu-dropdown {
    z-index: 1;
    visibility: visible;
}

.home__right-bottom-menu-dropdown-container {
    padding: 25px 0;
}

.home__right-bottom-menu-dropdown-inner ul {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.home__right-bottom-menu > ul > li:hover .home__right-bottom-menu-dropdown {
    opacity: 1;
    transform: translateY(0);
}

.home__right-bottom-menu-dropdown a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    line-height: 40px;
    transition: color .3s, background-color .3s;
    padding: 0 25px;
    gap: 10px;
}

.home__right-bottom-menu-dropdown a svg {
    width: 20px;
    height: 20px;
    fill: #1a7dde;
    transition: transform .3s;
}

.home__right-bottom-menu-dropdown a:hover {
    color: #1a7dde;
    background-color: #f1f9ff;
}

.home__right-bottom-menu-dropdown a:hover svg {
    transform: translateX(5px);
}


.header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    height: 60px;
    width: 60px;
    cursor: pointer;
    border-left: 1px solid #0000001f;
    gap: 7px;
}

.header__burger span {
    height: 2px;
    background: #000;
    display: block;
    width: 30px;
    transition-duration: .3s;
    margin: 0 auto;
}

.header__burger span:nth-child(2) {
    transition: width, opacity;
    transition-duration: .3s;
}

.active.header__burger span:nth-child(1) {
    margin-bottom: -11px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.active.header__burger span:nth-child(2) {
    opacity: 0;
}

.active.header__burger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: -7px;
}

.footer {
    background: #232626;
}

.footer__copy {
    text-align: center;
    padding: 30px 15px;
    color: #888;
    font-size: 12px;
    font-weight: 500;
    background: #181818;
}

.footer__social ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.footer__social a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff1c;
    transition: background-color .3s;
}

.footer__social a:hover {
    background: #5797ff;
}

.footer__social a svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    margin: auto;
    transition: fill .3s;
}

.footer__menu {
    display: none;
    padding: 30px 15px;
    background: #187ede;
}

.footer__menu ul {
    display: flex;
    justify-content: center;
}

.footer__menu ul li a {
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
    font-weight: 700;
}

.footer__menu ul li a:hover {
    color: #f8f8f8;
}

.footer__contacts {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    padding-top: 50px;
    margin-bottom: 30px;
}

.footer__contacts-item {
    padding: 0 15px;
    text-align: center;
    margin-bottom: 30px;
}

.footer__contacts-item:last-child {
    margin-bottom: 0;
}

.footer__contacts-title {
    color: #b0b0b0;
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 14px;
}

.footer__contacts-contact {
    color: #fff;
    font-weight: 700;
    margin-bottom: 13px;
    font-size: 15px;
    line-height: 1.4;
}

a.footer__contacts-contact:hover {
    color: #5797ff;
}

.footer__contacts-contact:last-child {
    margin-bottom: 0;
}


.mobile-menu {
    position: fixed;
    left: 0;
    top: 60px;
    bottom: 0;
    right: 0;
    opacity: 0;
    z-index: 99;
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.mobile-menu.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-menu__overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .3);
}

.mobile-menu__body {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    width: 400px;
    max-width: calc(100% - 50px);
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    -webkit-transition: transform .3s, opacity .3s;
    transition: transform .3s, opacity .3s;
    background: #ffffff;

}

.mobile-menu__body.active {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.mobile-menu__body-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 80px;
    cursor: pointer;
    display: flex;
    z-index: 1;
}

.mobile-menu__body-close svg {
    width: 30px;
    height: 30px;
    margin: auto;
}

.mobile-menu__body-inner {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 100%;
    overflow-y: auto;
    padding: 15px 15px 70px;
    border-top: 1px solid #0000001f;
}

.mobile-menu ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 1px solid #0000001f;
    transition: color .3s, background-color .3s;
}

.mobile-menu ul > li > a svg {
    height: 24px;
    width: 24px;
    fill: #1a7dde;
    transition: fill .3s;
}

.mobile-menu ul > li > a:hover {
    background-color: #f1f9ff;
    color: #1a7dde;
}

.mobile-menu ul > li > a:hover svg {
    fill: #1a7dde;
}

.section-title {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.section-title.center:after {
    margin-left: auto;
    margin-right: auto;
}

.section-title:after {
    content: '';
    height: 5px;
    width: 170px;
    background: #3977be;
    margin-top: 15px;
    display: block;
}

.section-sub-title {
    margin-bottom: 15px;
    color: #000;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
}

.section__services {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
    z-index: 2;
    background-color: #f1f9ff;
}

.section__services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.section__services-item {
    width: 100%;
    max-width: 100%;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 24px -8px rgba(0, 0, 0, .16);
    transition: box-shadow .3s;
}

.section__services-item:hover {
    box-shadow: 0 3px 24px -8px rgba(0, 0, 0, .5);
}

.section__services-item-inner {
    overflow: hidden;
    padding: 40px 20px;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
}

.section__services-item-inner div:last-child {
    margin-bottom: 0;
}

.section__services-item-image {
    display: flex;
    overflow: hidden;
    height: 250px;
}

.section__services-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section__services-item-name {
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 700;
    color: #187ede;
    text-align: center;
}

.section__services-item-title {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 900;
    margin-bottom: 15px;
    text-align: center;
}

.section__services-item-description {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
}


.buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.home__banner .buttons-wrap {
    justify-content: center;
}

.home__about {
    background-color: #f1f9ff;
    position: relative;
}

.home__about-content {
    width: 100%;
    display: flex;
    flex-direction: column-reverse;
}

.home__about .inner {
    padding-top: 50px;
}

.home__about .section-title {
    max-width: 400px;
}

.home__about-image {
    margin-bottom: 20px;
}

.home__about-text-title {
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #333;
    font-weight: 900;
    font-size: 22px;
}

.home__about-text-btn {
    margin-top: 30px;
    text-align: center;
}


.home__about-text-text {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    word-break: break-word;
}


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

.home__about-video-play-btn {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 2;
    cursor: pointer;
}


.home__about-video-play-btn svg {
    width: 100px;
    height: 100px;
    margin: auto;
    fill: #fff;
    transition: width .3s, height .3s;
}

.home__about-video-play-btn:hover svg {
    width: 110px;
    height: 110px;
}

#modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99998;
}

.modal_overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #0000004d;
    z-index: 1;
}

.modal_content {
    width: 600px;
    max-width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    background: #fff;
    padding: 60px 20px;
    overflow: hidden;
    overflow-y: auto;
}

.modal_close {
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.modal_close span {
    height: 2px;
    background: #000;
    display: block;
    width: 30px;
    margin: 0 auto;
}

.modal_close span:first-child {
    margin-bottom: -7px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.modal_close span:last-child {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-top: 5px;
}

.modal_inner {
    position: relative;
}

.modal h2 {
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 900;
}

.modal h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 900;
    color: #187ede;
}

.modal h4 {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
}

.modal_input {
    margin-bottom: 20px;
    position: relative;
}

textarea, select, input:not([type='radio']) {
    background: #fff;
    border: 1px solid #ddd;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
    width: 100%;
    height: 55px;
    border-radius: 5px;
    outline: none;
    color: #000;
    line-height: 1.5;
}

.modal_input input:not([type='radio']), .modal_input textarea {
    color: #343434;
}

.modal_input textarea {
    resize: none;
    height: 55px;
    max-height: 200px;
    padding: 15px;
    line-height: 20px;
}


.modal .button_wrap {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 5px;
}

.modal .button_wrap .btn {
    width: 100%;
}

.modal_content::-webkit-scrollbar {
    width: 5px;
    right: -10px;
    margin-left: -5px;
}

.modal_content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.modal_content::-webkit-scrollbar-thumb {
    background: #333;
}

.modal_content::-webkit-scrollbar-thumb:hover {
    background: #000;
}

.consultation {
    position: relative;
    padding: 50px 0;
}

.consultation__parts {
    display: flex;
}

.input_wrap {
    position: relative;
    margin-bottom: 20px;
}

.input_wrap input {
    background: #f1f9ff;
}

.input_wrap textarea {
    resize: none;
    height: 55px;
    max-height: 200px;
    padding: 15px;
    line-height: 20px;
    background: #f1f9ff;
}

.consultation__form {
    width: 100%;
}

.consultation__form textarea {
    height: 55px !important;
}

.consultation__form .btn {
    width: 100%;
}

.consultation__image {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
}

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

.section__projects {
    padding: 50px 0;
}

.projects-text {
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.section__projects .project-item {
    width: 300px;
}

.section__projects .flickity-slider .project-item {
    margin-right: 20px;
}

.project-item {
    width: 100%;
}

.project-item-image {
    width: 100%;
    padding-top: 100%;
    margin-bottom: 20px;
    position: relative;
}

.projects-list img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-item-title {
    font-weight: 900;
    font-size: 17px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.project-item-description {
    font-size: 13px;
    line-height: 1.3;
}

.project-item-city {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 15px;
    color: #3977be;
}

.project-item-value {
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.section__confidence {
    padding: 50px 0;
    background: #f1f9ff;
}

.section__confidence .section-sub-title {
    margin-bottom: 40px;
}

.section__confidences-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.section__confidences-item {
    width: 100%;
    margin-right: 20px;
    text-align: center;
}

.section__confidences-item svg {
    height: 80px;
    width: 80px;
    fill: #5697ff;
}

.section__confidences-item img {
    height: 80px;
}

.section__confidences-item-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.2;
    margin-top: 15px;
}

.section__confidences-item-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: #555;
}

.overflow-hidden {
    overflow: hidden;
}

.mobile-menu__contact {
    margin-bottom: 15px;
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-menu__contact a svg {
    width: 24px;
    height: 24px;
}

.mobile-menu__contact a span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    transition: color .3s;
}

.mobile-menu__menu {
    margin-bottom: 20px;
}

.mobile-menu__contacts {
    padding: 0 15px;
    margin-bottom: 20px;
}

.mobile-menu__contact-email svg {
    fill: #ffd44b;
}

.mobile-menu__request {
    position: fixed;
    right: 0;
    bottom: 0;
    width: 100%;
}

.mobile-menu__request .btn {
    width: 100%;
    border-radius: 0;
}


.contacts {
    position: relative;
    padding-top: 50px;
    padding-bottom: 80px;
    flex: 1;
    background-color: #f1f9ff;
}

.contacts a:hover {
    color: #1a7dde;
}

.contacts__parts {
    display: flex;
    flex-direction: column;
}

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

.contacts__map {
    height: 400px;
}

.contacts__contact-item {
    margin-bottom: 25px;
}

.contacts__contact-item-title {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #1a7dde;
}

.contacts__contact-item-value {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.contacts__contact-item-value a {
    transition: color .3s;
}

.contacts__contact-item-phone {
    display: flex;
    align-items: center;
}

.contacts__contact-item-phone svg {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.contacts__contact-item-phone span {
    display: block;
    font-weight: 700;
}

.contacts__contact-item-social ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contacts__contact-item-social a {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a7dde;
    transition: background-color .3s;
}

.contacts__contact-item-social a svg {
    height: 24px;
    width: 24px;
    fill: #fff;
    margin: auto;
    transition: fill .3s;
}


.input__wrap-error input, .input__wrap-error textarea {
    border-color: red;
}

.input__wrap-error .error {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -14px;
    color: red;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
}

.form__loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.59);
    display: flex;
    z-index: 99999;
}

.form__loading:before {
    content: '';
    display: block;
    width: 50px;
    height: 50px;
    border: 4px dashed black;
    border-radius: 50px;
    background-color: transparent;
    -webkit-animation: plrotate 1.5s infinite linear;
    animation: plrotate 1.5s infinite linear;
    margin: auto;
}

.form__success {
    color: #ffffff;
    background: green;
    margin-bottom: 20px;
    padding: 10px;
}

.form__error {
    color: #ffffff;
    background: red;
    margin-bottom: 20px;
    padding: 10px;
}

.content {
    padding: 50px 0;
    flex: 1;
    min-height: 500px;
    background-color: #f1f9ff;
}

.content__titles {
    margin-bottom: 30px;
}

.content__text p {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
    margin-bottom: 15px;
}

.section__confidence .flickity-prev-next-button {
    background: transparent !important;
}

.section__confidence .flickity-prev-next-button.previous {
    left: 0;
}

.section__confidence .flickity-prev-next-button.next {
    right: 0;
}

.section__single-service-top {
    background-color: #fff;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.section__single-service-top-left {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section__single-service-top-right {
    display: none;
}

.section__single-service-top-right img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.single__service-description {
    background: #f1f9ff;
    padding: 10px 0;
}

.section__single-service-services {
    background: #f1f9ff;
    padding-bottom: 50px;
}

.single__service-description-left {
    padding-top: 50px;
    padding-bottom: 50px;
}

.single__service-description h2 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.section__single-service-top-left {

}

.section__single-service-top-left p {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

.section__single-service-top-left .btn {
    margin-top: 30px;
}

.single__service-description-left p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}

.single__service-description-right {
    background: #3977be;
    margin-left: -15px;
    margin-right: -15px;
    padding: 30px;
}

.single__service-description-right h2 {
    color: #fff;
}

.single__service-description-right .btn {
    width: 100%;
}

.single__service-description-right .consultation__form {
    width: 100%;
}

.section__single-service-services .container {
    width: 100%;
}

.section__single-service-services .section__services-item-inner {
    padding: 25px;
}

.section__single-service-services .section__services-item-description {
    font-size: 14px;
}

.section__brands-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.section__brands-item {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 30px;
}

.section__brands-item img {
    max-height: 40px;
    max-width: 100%;
    margin: auto;
}

.section__brands {
    background: #fff;
    padding: 50px 0;
}

.mobile-menu__contact-social ul {
    display: flex;
    align-items: center;
    gap: 10px;
}

.news_item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.news_item_image {
    width: 100%;
    height: 60%;
}

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

.news_item_content {
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
    padding: 15px;
    position: relative;
}

.news_item_date {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}


.news_item_title {
    font-weight: 900;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
}

.news_item_description {
    font-size: 16px;
    line-height: 1.5;
}

.news_item_arrow {
    margin-top: 15px;
    position: relative;
    transition: right 0.3s;
    text-align: right;
}

.news_item:hover .news_item_arrow {
    right: 30px;
}

.article_date {
    margin-bottom: 15px;
    color: #666;
}

.article_image {
    width: 100%;
    padding-top: 50%;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    margin-bottom: 50px;
}

.article_description {
    width: 1000px;
    max-width: 100%;
    margin: auto;
}

.article_description ul {
    margin-left: 20px;
    list-style-type: disc;
}

.article_description {
    & ol, & ul, & li {
        list-style-type: disc;
        font-size: 17px;
        line-height: 1.8;
        font-weight: 500;
        margin-bottom: 15px;
    }
}

.article_description a {
    font-weight: 600;
    color: #3977be;
}