* {
    padding: 0px;
    margin: 0px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: none;
}

html,
body {
    min-height: 100vh;
}

body {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    font-family: "Gilroy", sans-serif;
    background: #222;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

body .shadow-overlay-bg {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

body.shadow-overlay {
    overflow: hidden;
}

body.shadow-overlay .shadow-overlay-bg {
    visibility: visible;
    opacity: 0.8;
    z-index: 998;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

body.shadow-overlay1 {
    overflow: hidden;
}

body.shadow-overlay1 .shadow-overlay-bg {
    visibility: visible;
    opacity: 0.5;
    z-index: 1000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

* html main {
    height: 100%;
}

main {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    /*	overflow-x: hidden;*/
}

main.alted {
    margin-top: 50px;
}

.m-devider-global {
    display: none;
}

.wrap {
    max-width: 1542px;
    width: 100%;
    padding: 0 30px;
    margin: 0 auto;
}

h1 {
    font-size: 54px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 46px;
}

h1 em,
h1 i {
    font-style: normal;
    white-space: nowrap
}

h1 strong {
    font-weight: 600;
    color: #FFEE02;
}

h2 {
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 74px;
}

h2 strong {
    color: #FFEE02;
    font-weight: 600;
}

h2 em {
    font-style: normal;
    white-space: nowrap
}

h3 {
    font-size: 32px;
    font-weight: 600;
    line-height: 106%;
    margin-bottom: 35px;
}

h3 strong {
    color: #FFEE02;
    font-weight: 600;
}

hr {
    height: 2px !important;
    background: #fff;
    display: block !important;
    border-top: 0 !important;
    width: 100%;
    margin: 64px 0;
}

a {
    color: #fff;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

p {
    margin-bottom: 24px;
}

p:last-child {
    margin-bottom: 0;
}

table {
    margin-bottom: 46px;
}

table th,
table td {
    text-align: left;
    font-weight: 400;
    line-height: normal;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid #747474;
}

table th:nth-child(n+2),
table td:nth-child(n+2) {
    font-weight: 300;
    padding-left: 20px;
}

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

a,
img {
    outline: none;
}

input[type=submit],
button {
    font-family: "Gilroy", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
}

input[type=search] {
    -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
    display: none;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

@-webkit-keyframes goGo {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-5px, 0);
        transform: translate(-5px, 0);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@keyframes goGo {
    0% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-5px, 0);
        transform: translate(-5px, 0);
    }

    100% {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

.btn {
    outline: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative;
    z-index: 200;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 95px;
    padding: 0 14px 0 41px;
    border-radius: 131px;
    border: 1px solid #555;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 20px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #FFEE02;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    -webkit-animation: goGo 2.5s ease-in-out infinite;
    animation: goGo 2.5s ease-in-out infinite;
}

.btn:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

.btn2 {
    outline: 0;
    cursor: pointer;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    height: 54px;
    padding: 0 40px;
    border-radius: 131px;
    border: 1px solid #686868;
    background: linear-gradient(102deg, #808080 -85.11%, #323131 79.69%);
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.btn2:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

input.inputbox,
textarea.messagebox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 0;
    width: 100%;
    height: 84px;
    border-radius: 12px;
    border: 1px solid #555;
    background: #343434;
    display: block;
    font-family: "Gilroy" !important;
    font-size: 19px;
    font-style: normal;
    font-weight: 300;
    color: #fff;
    padding: 0 40px;
    outline: none !important;
    cursor: pointer;

    &::-webkit-inner-spin-button,
    &::-webkit-calendar-picker-indicator {
        display: none;
        -webkit-appearance: none;
    }
}

textarea.messagebox {
    height: 160px;
    padding: 28px;
}

input.inputbox::-webkit-input-placeholder,
textarea.messagebox::-webkit-input-placeholder {
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

input.inputbox::-moz-placeholder,
textarea.messagebox::-moz-placeholder {
    color: #fff;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

input.inputbox:-moz-placeholder,
textarea.messagebox:-moz-placeholder {
    color: #fff;
    -moz-transition: 0.3s;
    transition: 0.3s;
}

input.inputbox:-ms-input-placeholder,
textarea.messagebox:-ms-input-placeholder {
    color: #fff;
    -ms-transition: 0.3s;
    transition: 0.3s;
}

input.inputbox:focus::-webkit-input-placeholder,
textarea.messagebox:focus::-webkit-input-placeholder {
    opacity: 0;
}

input.inputbox:focus::-moz-placeholder,
textarea.messagebox:focus::-moz-placeholder {
    opacity: 0;
}

input.inputbox:focus:-moz-placeholder,
textarea.messagebox:focus:-moz-placeholder {
    opacity: 0;
}

input.inputbox:focus:-ms-input-placeholder,
textarea.messagebox:focus:-ms-input-placeholder {
    opacity: 0;
}

select.select-css {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border: 0;
    border-radius: 5px;
    width: 100%;
    height: 60px;
    background: #fff;
    width: 100%;
    display: block;
    font-family: "Gilroy" !important;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 218.75%;
    color: rgba(0, 0, 0, 0.62);
    padding: 0 20px;
    outline: none !important;
    cursor: pointer;
    background: url(../images/svg/chevron-d.svg) no-repeat center right 22px rgba(255, 255, 255, 0.5);
}

select.select-css::-ms-expand {
    display: none;
}

select.select-css:focus {
    border-color: #F29425;
}

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

.checkbox label {
    display: block;
    margin-bottom: 0;
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.checkbox label a {
    text-decoration: none;
    color: #F29425;
}

.checkbox label a:hover {
    text-decoration: underline;
}

.checkbox label input {
    display: none;
}

.checkbox label input:checked + span:before {
    background: url(../images/svg/check.svg) no-repeat center center #F29425;
    border-color: #F29425;
}

.checkbox label span {
    font-size: 23px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
    display: block;
    position: relative;
    padding-left: 35px;
}

.checkbox label span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: #fff;
    border: 1px solid #fff;
}

.radio label {
    display: block;
    margin: 0;
    cursor: pointer;
}

.radio label input {
    display: none;
}

.radio label input:checked + span:before {
    background: #F29425;
}

.radio label span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
}

.radio label span:before {
    content: "";
    display: block;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

table {
    border-collapse: collapse;
    width: 100%;
}

.alert__error {
    display: none;
    margin-top: 5px;
    font-weight: 500;
    color: red;
    font-size: 16px;
}

.alert__error.active {
    display: block;
}

.modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.modal#modal-raschet {
    z-index: 1010;
}

.modal.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.modal::-webkit-scrollbar {
    width: 0;
}

.modal__close {
    position: absolute;
    top: 50px;
    right: 60px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    z-index: 200;
}

.modal__close svg {
    width: 35px;
    height: 35px;
    display: block;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.modal__close path {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    fill: #595959;
    fill-opacity: 1;
}

.modal__close:hover path {
    fill: #FFEE02;
}

.modal__content {
    position: relative;
    -ms-overflow-style: none;
    max-height: 95vh;
    max-width: 582px;
    width: 100%;
    padding: 50px 77px;
    border-radius: 27px;
    background: #3D3D3D;
    -webkit-box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.12);
    box-shadow: 0px 4px 100px 0px rgba(0, 0, 0, 0.12);
    overflow: auto;
}

.modal__content::-webkit-scrollbar {
    width: 2px;
    border-radius: 20px;
    background: #fff;
    display: none;
}

.modal__content::-webkit-scrollbar-thumb {
    background: #D9D9DC;
}

.modal__content::-webkit-scrollbar-track {
    background: #fff;
}

.modal.modal-feedback .modal__close {
    top: 32px;
    right: 32px;
    width: 18px;
    height: 18px;
}

.modal.modal-feedback .modal__close svg {
    width: 100%;
    height: 100%;
}

.modal.modal-feedback .modal__content {
    padding: 50px 80px;
    border-radius: 25px;
}

.modal.modal-feedback input.inputbox,
.modal.modal-feedback textarea.messagebox {
    height: 92px;
    border-radius: 20px;
}

.modal.modal-feedback .btn span {
    margin: 0 auto;
}

.modal.modal-feedback .btn i {
    margin-left: 0;
}

.modal.modal-thanks .modal__content {
    max-width: 582px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 104px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal.modal-thanks .modal-thanks__title {
    font-size: 38px;
    font-weight: 500;
    line-height: 112%;
}

.modal.modal-thanks .modal-thanks__title strong {
    display: block;
    font-weight: 500;
    color: #FFEE02;
}

.modal.quiz-modal .modal__content {
    padding: 0 !important;
    max-width: 1530px;
    height: calc(100vh - 40px);
    max-height: none;
}

.modal.modal-product .modal__content {
    padding: 40px 30px !important;
    margin: 0 30px;
    max-width: 1530px;
    max-height: calc(100vh - 40px);
}

.modal.modal-product .modal__product {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal.modal-product .modal__product-image {
    max-width: 725px;
    width: 100%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 125px;
}

.page-template-page-vorota-php .modal.modal-product .modal__product-image {
    align-self: center;
}

.modal.modal-product .modal__product-image img {
    width: 100%;
}

.modal.modal-product .modal__product-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 540px;
}

.modal.modal-product .modal__product-content table {
    width: 100% !important;
    height: auto !important;
}

.modal.modal-product .modal__product-content table th,
.modal.modal-product .modal__product-content table td {
    width: auto !important;
    height: auto !important;
}

.modal.modal-product .modal__product-content h2 {
    color: #FFEE02;
    font-size: 53px;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: normal;
}

.modal.modal-product .modal__product-content h4 {
    font-family: "Gilroy";
    font-size: 25px;
    font-style: normal;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: 46px;
}

.modal-design .modal__content {
    padding: 45px 54px !important;
    margin: 0 30px;
    max-width: 1340px;
    max-height: calc(100vh - 40px);
    background: #3D3D3D;
    border: 1px solid #555;
}

.modal-design .modal__close {
    top: 20px;
    right: 20px;
}

.modal-design .modal__design {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.modal-design .modal__design-left {
    width: 45%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 54px;
}

.modal-design .modal__design-left h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
}

.modal-design .modal__design-image {
    max-width: 389px;
    width: 100%;
    margin: auto;
    position: relative;
}

.modal-design .modal__design-image .slick-arrow {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 40;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.modal-design .modal__design-image .slick-arrow:hover {
    opacity: .7;
}

.modal-design .modal__design-image .slick-arrow img {
    display: block;
    width: 100%;
    height: auto;
}

.modal-design .modal__design-image .slick-arrow.slick-prev {
    left: -60px;
}

.modal-design .modal__design-image .slick-arrow.slick-next {
    right: -60px;
}

.modal-design .modal__design-btn {
    max-width: 389px;
    width: 100%;
    margin-top: auto;
}

.modal-design .modal__design-btn .btn {
    width: 100%;
    height: 80px;
    padding-left: 70px;
    padding-right: 10px;
    font-size: 18px;
}

.modal-design .modal__design-btn .btn i {
    margin-left: auto;
    width: 60px;
    height: 60px;
}

.modal-design .modal__design-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.modal-design .modal__design-block {
    margin-bottom: 35px;
}

.modal-design .modal__design-block:last-child {
    margin-bottom: 0;
}

.modal-design .modal__design-block-title,
.new_portfolio_subttl {
    color: #FFEE02;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 34px;
}

.new_portfolio_ttl {
    margin-bottom: 10px;
}

.new_portfolio_subttl {
    margin-bottom: 46px;
    font-size: 42px;
}

.modal-design .modal__design-block-fields {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 5px;
}

.modal-design .modal__design-block-fields p {
    font-size: 19px;
    font-weight: 300;
    letter-spacing: 0.57px;
    margin: 0;
}

.modal-design .modal__design-block-fields p strong {
    font-weight: 600;
    margin-right: 5px;
}

.modal-design .modal__design-block-fields p b {
    color: #FFEE02;
    font-weight: 700;
}

.modal.modal-design .modal__design-block-fields span br {
    display: none !important;
}

.modal-design .modal__design-block-fields.fields-icons p {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal-design .modal__design-block-fields.fields-icons p i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 15px;
    width: 18px;
    position: relative;
    top: 2px;
}

.modal-design .modal__design-block-fields.fields-icons p i svg {
    display: block;
    width: 100%;
    height: auto;
}

.modal-design .modal__design-block-functions {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: -20px;
}

.modal-design .modal__design-block-functions span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    margin-right: 37px;
    margin-bottom: 20px;
    width: calc(20% - 37px);
}

.modal-design .modal__design-block-functions span i {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 57px;
    height: 54px;
    /*	border-radius: 10px;*/
    /*	background: #fff;*/
    margin-bottom: 7px;
}

.modal-design .modal__design-block-functions span i img {
    max-width: 75%;
    max-height: 75%;
}

.modal-gallery__block {
    padding: 120px 158px 85px 120px;
    max-height: calc(100vh - 60px);
    overflow-x: hidden;
    overflow-y: scroll;
}

.modal-gallery__block::-webkit-scrollbar {
    width: 4px;
    background: #F6F6F6;
}

.modal-gallery__block::-webkit-scrollbar-thumb {
    background: #7F7F7F;
}

.modal-gallery__block::-webkit-scrollbar-track {
    background: #F6F6F6;
}

.modal-gallery__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.modal-gallery__images {
    width: 48.2993197279%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.modal-gallery__slider {
    position: relative;
    margin-bottom: 33px;
}

.modal-gallery__slider-js {
    border-radius: 24px;
    overflow: hidden;
}

.modal-gallery__slide {
    display: block !important;
    height: 480px;
}

.modal-gallery__slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.modal-gallery__thumbs .slick-list {
    position: relative;
    margin: 0 -15px;
}

.modal-gallery__thumbs .slick-slide {
    padding: 0 15px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.modal-gallery__thumbs .slick-slide.slick-current .modal-gallery__thumb:before {
    opacity: 0.6;
}

.modal-gallery__thumb {
    display: block !important;
    cursor: pointer;
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    height: 154px;
}

.modal-gallery__thumb:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    background: #000;
    z-index: 10;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.modal-gallery__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 5;
}

.modal-gallery__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 11.4285714286%;
}

.modal-gallery__title {
    font-size: 58px;
    font-weight: 600;
    line-height: 102%;
    margin-bottom: 52px;
}

.modal-gallery__location {
    margin-bottom: 86px;
}

.modal-gallery__location span {
    font-size: 34px;
    line-height: 160%;
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    border-radius: 7px;
    background: #E6E6E6;
    padding: 0 18px;
}

.modal-gallery__fields {
    font-size: 38px;
}

.modal-gallery__fields span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 38px;
}

.modal-gallery__fields span + span {
    margin-top: 48px;
    padding-top: 39px;
    border-top: 1px solid #989898;
}

.modal-gallery__fields span strong {
    margin-left: 10px;
    font-weight: 500;
}

.modal-gallery .button {
    margin-top: 112px;
}

.modal-gallery .btn {
    width: 100%;
    max-width: 490px;
    font: 19px;
    font-weight: 600;
}

.slick-dots {
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 30px;
}

.slick-dots li {
    list-style-type: none;
    margin: 5px;
    width: 12px;
    height: 12px;
    background: rgba(33, 34, 37, 0.2);
    border-radius: 50%;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slick-dots li.slick-active {
    background: #F29425;
}

.slick-dots li button {
    display: none;
}

.form__title {
    font-size: 38px;
    font-weight: 600;
    line-height: 112%;
    margin-bottom: 28px;
    color: #fff;
}

.form__text {
    font-size: 28px;
    font-weight: 400;
    line-height: 130%;
    margin-bottom: 37px;
}

.form__row {
    margin-bottom: 30px;
}

.form__row:last-child {
    margin-bottom: 0;
}

.form__row.form__cols {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.form__col {
    width: 100%;
    margin-right: 20px;
}

.form__col:last-child {
    margin-right: 0 !important;
}

.form__bottom {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-right: -20px;
}

.form__bottom span {
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    width: calc(50% - 20px);
    margin-right: 20px;
}

.form__bottom .btn {
    margin-right: 20px;
    padding: 0 25px;
    width: calc(50% - 20px) !important;
}

.form__label {
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.form__accept-checkbox {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
}

.form__accept label {
    display: block;
}

.form__accept label input {
    display: none;
}

.form__accept label input:checked + span:before {
    background-image: url(../images/svg/check_accept.svg);
}

.form__accept label span {
    display: -moz-inline-flex;
    display: -ms-inline-flex;
    display: -o-inline-flex;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
}

.form__accept label span:before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    border: 1px solid #555;
    background-color: #343434;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 6px;
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.form__submit {
    margin-bottom: 0;
}

.form .btn {
    width: 100%;
}

breadcrumbs {
    padding: 0 0 44px;
    position: relative;
}

breadcrumbs ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

breadcrumbs ul li {
    list-style-type: none;
    margin-bottom: 6px;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

breadcrumbs ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 20px;
    background: #fff;
    margin: 0 15px;
}

breadcrumbs ul li:last-child:after {
    display: none;
}

breadcrumbs ul li a {
    color: #fff;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

breadcrumbs ul li a:hover {
    color: #F29425;
}

.wpcf7-spinner {
    display: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 20px 0 0;
}

.wpcf7-not-valid-tip {
    padding-top: 3px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}

.mobile-menu {
    display: none;
}

.header-mobile {
    display: none;
}

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

.socials a {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    margin-right: 12px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.socials a:last-child {
    margin-right: 0;
}

.socials a:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.socials .instagram {
    background: linear-gradient(43deg, rgba(254, 213, 66, 0.81) 12.56%, rgba(223, 32, 89, 0.81) 62.98%, rgba(124, 33, 197, 0.81) 118.99%);
}

.socials .youtube {
    background: #C82121;
}

.socials .youtube svg {
    max-width: 19px;
    height: auto;
    display: block;
}

.socials .youtube path {
    fill: #fff;
}

.socials .telegram {
    background: #2F6EB8;
}

.socials .whatsapp {
    background: #39A05A;
}

.socials .rutube {
    background: #08131f;
    border: 1px solid #fff;
}

.socials .rutube svg {
    width: 16px;
    height: auto;
}

.socials .rutube path {
    stroke: #fff !important;
}

.socials .max {
    border-radius: 50%;
    overflow: hidden;
}

.header {
    position: relative;
    z-index: 800;
}

.header__top {
    border-bottom: 1px solid #7F7F7F;
}

.header__top-inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 28px 0;
}

.header__block span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__block span svg {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 20px;
    margin-right: 24px;
}

.header__block span strong {
    font-size: 20px;
    font-weight: 300;
}

.header__block span strong + strong {
    padding-left: 24px;
    margin-left: 24px;
    border-left: 1px solid #606060;
}

.header__block span strong a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.header__block span strong a:hover {
    color: #FFEE02;
}

.header__bottom {
    padding-top: 18px;
    position: relative;
    z-index: 20;
}

.header .navbar .header__block {
    display: none;
}

.navbar {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.navbar__logo {
    width: 216px;
    flex-shrink: 0;
}

.navbar__logo a {
    display: block;
    width: 100%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navbar__logo a:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.navbar__logo a svg,
.navbar__logo a img {
    width: 100%;
    height: auto;
    display: block;
}

.navbar__menu {
    position: relative;
    margin: 0 auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    gap: 15px;
    padding-top: 10px;
}

.navbar__menu ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    gap: 15px 42px;
    max-width: 80%;
    margin: 0 auto;
}

.navbar__menu > ul {}

.navbar__menu ul li {
    list-style-type: none;
    font-size: 18px;
    line-height: 18px;
    position: relative;
    text-align: center;
}

.navbar__menu ul li:last-child {
    margin-right: 0 !important;
}

.navbar__menu ul li.disabled {
    pointer-events: none;
}

.navbar__menu ul li a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.navbar__menu ul li a:hover {
    color: #FFEE02;
}

.navbar__menu ul li.current-menu-item > a,
.navbar__menu ul li.current-menu-parent > a,
.navbar__menu ul li.current-menu-ancestor > a {
    color: #FFEE02;
}

.navbar__menu ul li ul {
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    border: 1px solid #555;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    padding: 10px 15px;
    min-width: 100%;
    white-space: nowrap;
    border-radius: 15px;
    z-index: 200;
    max-width: unset;
    text-align: left;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px !important;
}

.navbar__menu ul.menu > li > ul {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.navbar__menu ul.menu > li:hover > ul {
    visibility: visible;
    opacity: 1;
}

.navbar__menu ul li ul li {
    text-align: left;
}

.navbar__menu ul li ul li:last-child {
    margin-bottom: 0 !important;
}

.navbar__menu ul li ul li ul {
    position: relative;
    top: auto;
    left: auto;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    border: 0;
    background: transparent;
    padding: 10px 15px 0;
    gap: 10px !important;
    min-width: unset;
    white-space: nowrap;
    border-radius: 0;
}

.navbar__menu ul li ul li ul li {
    font-size: 90%;
}

.navbar__menu .sub-menu {
    display: none;
}

.navbar__menu .block-menu-have ul.block-menu {
    visibility: hidden;
    opacity: 0;
}

.navbar__menu .block-menu-have:hover ul.block-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.navbar__menu ul.block-menu {
    background: #2A2A2A;
    padding: 0;
    border: 0;
    gap: 0 !important;
    line-height: 111.441%;
}

.navbar__menu ul.block-menu > li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    position: static;
    border-bottom: 1px solid #BCBCBC;
    width: 100%;
}

.navbar__menu ul.block-menu > li:last-child {
    border-bottom: 0;
}

.navbar__menu ul.block-menu > li > a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    gap: 15px;
    font-size: 21px;
    font-weight: 500;
    padding: 22px;
}

.navbar__menu ul.block-menu > li:first-child a {
    border-radius: 15px 15px 0 0;
}

.navbar__menu ul.block-menu > li:last-child a {
    border-radius: 0 0 15px 15px;
}

.navbar__menu ul.block-menu > li > a:hover {
    background: #383737;
}

.navbar__menu ul.block-menu > li > a i {
    width: 53px;
    height: 53px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.navbar__menu ul.block-menu > li > a img {
    max-width: 100%;
    max-height: 100%;
}

.navbar__menu ul.block-menu > li .block-menu__lvl2 {
    position: absolute;
    left: calc(100% - 15px);
    top: 0;
    background: #383737;
    padding: 35px;
    border-radius: 0 15px 15px 0;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 {
    gap: 20px !important;
    visibility: hidden;
    opacity: 0;
}

.navbar__menu ul.block-menu > li:hover ul.block-menu__lvl2 {
    opacity: 1;
    visibility: visible;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 li.block-menu__line {
    position: absolute;
    left: 0;
    top: 0;
    border-left: 1px solid #B5B5B5;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 li.block-menu__title {
    font-size: 21px;
    font-weight: 400;
    line-height: 111.441%;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 li:not(.block-menu__title) {
    font-size: 19px;
    font-weight: 300;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 li ul {
    gap: 3px !important;
    padding: 8px 0 0;
    position: relative;
    margin-bottom: -12px;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 li ul li {
    padding-left: 15px !important;
}

.navbar__menu ul.block-menu > li ul.block-menu__lvl2 li ul li a {
    font-size: 17px;
    font-weight: 250;
}

.navbar__btn {
    /*    margin-left: 34px;*/
    margin-left: 0 !important;
    position: relative;
    z-index: 100;
}

.navbar__btn a {
    white-space: nowrap;
}

.navbar__burger {
    display: none;
}

@-webkit-keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate360 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.hero {
    position: relative;
    margin-top: 35px;
    margin-bottom: 151px;
}

.hero .eclipse {
    position: absolute;
    width: 438px;
    height: 768px;
    top: 0;
    left: 0;
    z-index: 20;
}

.hero .eclipse img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero .eclipse2 {
    position: absolute;
    width: 459px;
    height: 1092px;
    bottom: -141px;
    right: 0;
    z-index: 20;
}

.hero .eclipse2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.hero .wrap {
    max-width: 1750px;
}

.hero__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
}

.hero__content {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 956px;
    height: 776px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 30px;
    padding: 85px 20px 0 102px;
    position: relative;
}

.hero__list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.hero__list span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 33px;
}

.hero__list span:last-child {
    margin-bottom: 0;
}

.hero__list span i {
    width: 81px;
    height: 81px;
    max-width: 90%;
    max-height: 90%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 25px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #3A3A3A;
    background: -webkit-gradient(linear, left top, left bottom, from(#3A3A3A), to(#333));
    background: linear-gradient(180deg, #3A3A3A 0%, #333 100%);
    position: relative;
}

.hero__list span i:after {
    content: "";
    display: block;
    width: 73px;
    height: 72px;
    background-image: url(../images/eclipse_list.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    top: -18px;
    right: -14px;
}

.hero__list span i img {
    display: block;
}

.hero__list span b {
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 111.441%;
}

.hero__list span:nth-child(2n) i:after {
    background-image: url(../images/eclipse_list2.png);
}

.hero__list.style2 {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 43px 20px;
}

.hero__list.style2 span {
    margin: 0 !important;
}

.hero__list.style2 span i:after {
    background-image: url(../images/eclipse_list_equip.png) !important;
}

.hero__price {
    margin-top: 40px;
    position: absolute;
    bottom: 24px;
    right: 40px;
    font-size: 38px;
    font-weight: 500;
    color: #FFEE02;
}

.hero2.style2 .hero__price {
    margin-top: 40px;
    position: relative !important;
    bottom: unset !important;
    right: unset !important;
    font-size: 38px;
    font-weight: 500;
    color: #FFEE02;
}

.hero__btn {
    position: absolute;
    bottom: 0;
    left: 106px;
    z-index: 100;
}

.hero__video {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    position: relative;
}

.hero__image {
    border-radius: 46px;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.hero__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.hero__play {
    position: absolute;
    left: -113px;
    bottom: 106px;
    z-index: 30;
    cursor: pointer;
    left: -140px;
    bottom: 90px;
    border-radius: 50%;
    -webkit-filter: drop-shadow(0px 17px 16.9px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0px 17px 16.9px rgba(0, 0, 0, 0.2));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hero__play:hover {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

.hero__play-circle {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-animation: rotate360 10s linear infinite;
    animation: rotate360 10s linear infinite;
}

.hero__play-btn {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.sliders {
    margin-bottom: 150px;
    position: relative;
    z-index: 40;
}

.sliders .wrap {
    max-width: 1750px;
}

.sliders__title {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 60px;
}

.sliders__title span {
    font-size: 30px;
    text-align: right;
    padding-top: 14px;
}

.sliders h2 {
    margin-bottom: 0;
}

.sliders .slick-list {
    border-radius: 41px;
    overflow: hidden;
}

.sliders__inner {
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    border-radius: 46px;
    padding: 80px 104px 80px;
    position: relative;
}

.sliders__slider {
    position: relative;
    margin: 0 -104px;
}

.sliders__slide {
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    padding: 0 104px;
    padding-bottom: 20px !important;
}

.slider-images {
    width: 48.987854251%;
    margin-right: 126px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.slider-image {
    position: relative;
    margin-bottom: 30px;
}

.slider-image__item {
    border-radius: 41px;
    overflow: hidden;
    display: block !important;
    height: 408px;
}

.slider-image__item a {
    display: block;
    position: relative;
    height: 100%;
}

.slider-image__item a:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider-image__item a:hover:after {
    opacity: 0.5;
}

.slider-image__item img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider-image .slick-arrow {
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    width: 46px;
    height: 46px;
    cursor: pointer;
    position: absolute;
    border: 0;
    top: 50%;
    border-radius: 50%;
    background: transparent !important;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-size: 0;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider-image .slick-arrow:hover img {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.slider-image .slick-arrow img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider-image .slick-arrow.slick-hidden {
    opacity: 0 !important;
}

.slider-image .slick-arrow.slick-prev {
    left: -76px;
}

.slider-image .slick-arrow.slick-next {
    right: -76px;
}

.slider-image .slick-arrow.slick-disabled {
    opacity: 0.5 !important;
    pointer-events: none;
}

.slider-image .slick-arrow:hover {
    background: #1D89C0;
}

.slider-thumbs {
    overflow: hidden;
}

.slider-thumbs .slick-list {
    margin: 0 -15px;
}

.slider-thumbs .slick-slide {
    padding: 0 15px;
    cursor: pointer;
}

.slider-thumbs .slick-slide.slick-current .slider-thumbs__item:after,
.slider-thumbs .slick-slide:hover .slider-thumbs__item:after {
    opacity: 0.5;
}

.slider-thumbs__item {
    display: block !important;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 140px;
}

.slider-thumbs__item:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #222;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider-thumbs__item img {
    display: block !important;
    width: 100% !important;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slider-content {
    width: calc(51.012145749% - 126px);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.slider-content__slider {
    margin-bottom: 10px;
}

.slider-content__nav {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 25px;
}

.slider-content .slick-arrow {
    display: block;
    width: 35px;
    height: auto;
    cursor: pointer;
    border: 0;
    background: transparent !important;
    font-size: 0;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider-content .slick-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.slider-content .slick-arrow path {
    stroke: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.slider-content .slick-arrow:hover path {
    stroke: #FFEE02;
}

.slider-content .slick-arrow.slick-hidden {
    opacity: 0 !important;
}

.slider-content .slick-arrow.slick-disabled {
    opacity: 0.5 !important;
    pointer-events: none;
}

.slider-content__num {
    margin: 0 30px;
}

.slider-content__num strong {
    font-size: 46px;
    font-weight: 600;
    color: #FFEE02;
}

.slider-content__num small {
    font-size: 30px;
}

.slider-content__item {
    margin-bottom: 20px;
}

.slider-content__item span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 24px;
    font-style: normal;
    line-height: 111.441%;
    padding: 20px 0;
    border-bottom: 1px solid #555;
}

.slider-content__item span:nth-child(2) small {
    text-align: right;
    width: auto;
    padding-left: 10px;
}

.slider-content__item strong {
    font-weight: 600;
    white-space: nowrap;
    width: 210px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.slider-content__item small {
    width: auto;
    padding-left: 10px;
    font-size: 24px;
    text-align: right;
}

.slider-content__btn {
    margin-top: auto;
    position: relative;
    z-index: 100;
}

.about {
    margin-bottom: 150px;
    position: relative;
}

.about .eclipse {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: 540px;
    height: 932px;
}

.about .eclipse img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.about__inner {
    position: relative;
    border-radius: 46px;
    border: 1px solid #3A3A3A;
    padding: 81px 101px 101px;
}

.about__img {
    position: absolute;
    top: 46px;
    right: 101px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 115px;
    height: 115px;
    border-radius: 16px;
    border: 1px solid #555;
    background: -webkit-gradient(linear, left top, left bottom, from(#3A3A3A), to(#333));
    background: linear-gradient(180deg, #3A3A3A 0%, #333 100%);
}

.about__img:before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    right: -17px;
    width: 90px;
    height: 90px;
    background: rgba(252, 236, 3, 0.05);
    -webkit-filter: blur(19.0499992371px);
    filter: blur(19.0499992371px);
    z-index: 10;
}

.about__img img {
    display: block;
    width: 60.8695652174%;
    height: 60.8695652174%;
}

.about h2 {
    margin-bottom: 46px;
}

.about p {
    font-size: 24px;
    font-weight: 300;
    line-height: 111.441%;
    margin-bottom: 58px;
    max-width: 784px;
}

.about .btn {
    padding-left: 90px;
}

.about .btn i {
    margin-left: 90px;
}

.steps {
    position: relative;
    margin-bottom: 80px;
}

.steps .eclipse {
    position: absolute;
    z-index: 10;
}

.steps .eclipse img {
    display: block;
    width: 100%;
}

.steps .eclipse-top {
    top: -117px;
    left: -61px;
}

.steps .eclipse-bottom {
    bottom: 563px;
    left: 0;
}

.steps .wrap {
    max-width: 1750px;
}

.steps__inner {
    border-radius: 46px;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    padding: 80px 104px 100px;
    position: relative;
}

.steps h2 {
    margin-bottom: 69px;
}

.steps__items {}

.steps__tabs-items {
    counter-reset: steps;
}

.category .steps__items {
    counter-reset: steps;
}

.category .steps__item {
    counter-increment: steps;
}

.steps__item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 123px;
}

.steps__item:last-child {
    margin-bottom: 0;
}

.steps__item:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.steps__item:nth-child(2n) .steps__item-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 0;
    padding-left: 126px;
}

.steps__item:nth-child(2n) .steps__item-image span:after {
    background-image: url(../images/circle_steps2.png);
    margin-left: 25px;
    margin-top: -25px;
}

.steps__item:nth-child(1) .steps__item-image img {
    display: block;
}

.steps__inner:nth-child(1) .steps__item-image span {
    left: 122px;
    top: 107px;
}

.steps__inner:nth-child(2) .steps__item-image span {
    right: 94px;
    top: 115px;
}

.steps__inner:nth-child(3) .steps__item-image span {
    left: 36px;
    top: 206px;
}

.steps__inner:nth-child(4) .steps__item-image span {
    left: 235px;
    bottom: 43px;
}

.category .steps__item:nth-child(1) .steps__item-image span {
    left: 122px;
    top: 107px;
}

.category .steps__item:nth-child(2) .steps__item-image span {
    right: 94px;
    top: 115px;
}

.category .steps__item:nth-child(3) .steps__item-image span {
    left: 36px;
    top: 206px;
}

.category .steps__item:nth-child(4) .steps__item-image span {
    left: 235px;
    bottom: 43px;
}

.steps__item-content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-right: 80px;
}

.steps p {
    margin-bottom: 0;
    font-weight: 600;
    line-height: 111.441%;
}

.steps ul {
    counter-reset: list;
    max-width: 590px;
}

.steps ul li {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 0;
    line-height: 111.441%;
    border-bottom: 1px solid #555;
}

.steps ul li:last-child {
    border-bottom: 0;
}

.steps ul li i {
    font-style: normal;
    color: #FFEE02;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px;
    width: 43px;
}

.steps ul li i:before {
    content: "0"counter(list);
    counter-increment: list;
}

.steps__item-image {
    width: 726px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    position: relative;
}

.steps__item-image img {
    width: 100%;
}

.steps__item-image span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    background: #292929;
    border: 1px solid #555;
    position: absolute;
    z-index: 10;
}

.steps__item-image span:before {
    content: "0"counter(steps);
}

.steps__item-image span:after {
    content: "";
    display: block;
    position: absolute;
    background: url(../images/circle_steps1.png) no-repeat center center;
    background-size: contain;
    width: 171px;
    height: 171px;
    z-index: 10;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-left: -25px;
    margin-top: 25px;
}

.sinks {
    margin-bottom: 100px;
    position: relative;
}

.sinks__decore-left,
.sinks__decore-right {
    position: absolute;
    margin-top: 130px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
}

.sinks__decore-left img,
.sinks__decore-right img {
    display: block;
    width: 100%;
    height: auto;
}

.sinks__decore-left {
    left: 0;
    width: 683px;
    margin-top: calc(130px + 60px);
}

.sinks__decore-right {
    right: 0;
    width: 669px;
}

.sinks .eclipse {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 20;
    width: 629px;
    height: 1180px;
}

.sinks .eclipse img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.sinks h2 {
    margin-bottom: 74px;
}

.sinks__items {
    /*
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	counter-reset: sinks;
*/
    position: relative;
}

.sinks__item {
    position: relative;
    z-index: 40;
}

.sinks__item-image {}

.sinks__item-image a {
    display: block;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.sinks__item-image a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.sinks__item-image a:nth-child(n+2) {
    display: none;
}

.sinks__item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.sinks__item-title {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-top: 1px solid #5F5F5F;
    padding-top: 26px;
    font-size: 32px;
    font-weight: 600;
    line-height: 106%;
}

.sinks__item-title:before {
    content: "0"counter(sinks);
    counter-increment: sinks;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #FFEE02;
    color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 106%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 36px;
}

.sinks__btn {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 115px;
}

.objects {
    margin-bottom: 150px;
}

.objects__map {
    border-radius: 48px;
    overflow: hidden;
    height: 690px;
}

.objects__map iframe {
    width: 100% !important;
    height: 100% !important;
}

.hero2 {
    margin-top: 30px;
    margin-bottom: 151px;
}

.hero_new {
    margin-top: 30px;
    margin-bottom: 80px;
    position: relative;
}

.hero2 .eclipse {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
}

.hero_new .eclipse {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
}

.hero2 .eclipse img,
.hero_new .eclipse img {
    display: block;
}

.hero2 .eclipse2,
.hero_new .eclipse2 {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 215px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.hero2 .eclipse2 img,
.hero_new .eclipse2 img {
    display: block;
}

.hero2 .eclipse3,
.hero_new .eclipse3 {
    position: absolute;
    z-index: 5;
    left: 50%;
    top: 92px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin-right: -125px;
}

.hero2 .eclipse3 img,
.hero_new .eclipse3 img {
    display: block;
}

.hero2 .wrap,
.hero_new .wrap {
    max-width: 1750px;
}

.hero2__inner,
.hero_new .hero_new_inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 776px;
    position: relative;
}

.hero_new .hero_new_inner {
    background: linear-gradient(98deg, rgb(58, 58, 58) 22.81%, rgb(51, 50, 50) 96.26%) !important;
    border-radius: 46px;
    border: 1px solid rgb(85, 85, 85);
    height: auto;
    min-height: 776px;
}

.hero2__content {
    padding: 119px 20px 0 102px;
    position: relative;
    z-index: 10;
}

.new_hero_content {
    position: relative;
    z-index: 10;
    padding: 46px 102px;
    width: 100%;
    height: 100%;
}

.new_hero_content_inner {
    display: flex;
    gap: 80px;
    max-height: calc(100% - 92px);
}

.new_hero_left {
    width: 636px;
    min-width: 636px;
}

.new_hero_right {
    width: 100%;
}

.new_hero_right_bottom {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 30px;
}

.new_hero_right_bottom .harakt_container {
    width: 100%;
}

.new_hero_right_video {
    width: 100%;
    background: #2D2D2D;
    border-radius: 42px;
    overflow: hidden;
}

.new_hero_right_video span {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    width: 100%;
    height: 100%;
}

.new_hero_right_video a {
    width: 100%;
    height: 100%;
    display: block;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.new_hero_right_video a img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: block;
    width: 143px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.new_hero_right_video a:hover img {
    -webkit-transform: translate(-50%, -50%) scale(0.9);
    -ms-transform: translate(-50%, -50%) scale(0.9);
    -o-transform: translate(-50%, -50%) scale(0.9);
    transform: translate(-50%, -50%) scale(0.9);
}

.big_img_slider {
    position: relative;
    z-index: 50;
}

.big_img_slider .slick-list {
    overflow: visible;
}

.big_img_slider .slick-slide {
    padding-right: 1px;
}

.single_prod_image {
    border: 1px solid #bcbcbc;
    border-radius: 15px;
    padding: 26px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    max-width: 431px;
    margin-left: auto;
    margin-right: auto;
    max-height: 590px;
    position: relative;
}

.single_prod_image a {
    cursor: zoom-in;
}

.single_prod_image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

.single_prod_image-zoom {
    position: absolute;
    top: 0;
    left: calc(100% + 20px);
    width: 500px;
    height: 500px;
    display: none;
    border: 1px solid #ddd;
    background-color: #fff;
    background-repeat: no-repeat;
    box-sizing: border-box;
    z-index: -1;
}

.single_prod_image-zoom.active {
    display: block;
    z-index: 20;
}

@media (max-width: 1023px) {

    ..single_prod_image-zoom {
        display: none !important;
    }
}

.new_hero_content .breadcrumbs {
    margin-bottom: 40px;
}

.hero_new h1 {
    font-size: 56px;
    font-weight: 500;
    margin-bottom: 41px;
}

.hero_new .hero__price {
    position: inherit;
    font-weight: 700;
    font-size: 30px;
    color: #ffee02;
    margin-top: 0;
    margin-bottom: 42px;
}

.hero2.hero2-main h1 {
    /*	margin-bottom: 76px;*/
}

.hero2__text {
    max-width: 543px;
}

.hero2 p {
    font-size: 26px;
    font-weight: 300;
    line-height: 106%;
}

.hero2__btn {
    position: absolute;
    z-index: 10;
    bottom: 0;
    left: 105px;
}

.hero_new_btns {
    display: flex;
    align-items: center;
    gap: 29px;
    margin-bottom: 44px;
}

.hero_new_btn {
    position: inherit;
}

.hero_new_btn .btn {
    height: 65px;
    font-size: 17px;
}

.hero_new_btn .btn i {
    height: 50px;
    width: 50px;
}

.hero_new_btn_w .btn i {
    background: #fff;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 30px 0px rgba(255, 255, 255, 0.5);
}

.hero_new .harakt_container {
    padding: 1px;
    border-radius: 42px;
    background: linear-gradient(135deg, #B5B5B5, #3A3A3A);
}

.hero_new .harakt {
    border-radius: 42px;
    /*border: 1px solid #bcbcbc;*/
    padding: 60px 36px;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: 3%;
    color: #fff;
    font-weight: 200;
    background: #2D2D2D;
}

.hero_new .harakt strong {
    font-weight: 500;
    font-size: 20px;
}

.hero2__image {
    margin-right: 108px;
    width: 564px;
    padding: 20px 0;
    margin-left: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.hero2__image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
}

.hero2.style2 .hero2__content {
    padding-top: 97px;
    padding-bottom: 200px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
}

body.home .hero2.style2 .hero2__content {
    padding-bottom: 0 !important;
    display: block !important;
}

.hero2.style2 .hero2__image {
    position: relative;
    margin-top: 0 !important;
}

.hero2.style2 .hero2__image .hero__play.hero2__play {
    position: absolute;
    bottom: auto;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 258px;
    height: 258px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hero2.style2 .hero2__image .hero__play.hero2__play:hover {
    -webkit-transform: translate(-50%, -50%) scale(0.95);
    transform: translate(-50%, -50%) scale(0.95);
}

.hero2 .modal__design-image {
    width: 100% !important;
    height: 100% !important;
}

.hero2 .modal__design-image__js {
    height: 100%;
}

.hero2 .modal__design-image__js div {
    height: 100%;
}

.hero2 .modal__design-image__slide {
    padding: 20px 0;
    display: -webkit-flex !important;
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: flex !important;
    justify-content: center;
}

.hero2 .slick-arrow {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 40;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.hero2 .slick-arrow:hover {
    opacity: .7;
}

.hero2 .slick-arrow.slick-prev {
    left: -20px;
}

.hero2 .slick-arrow.slick-next {
    right: -20px;
}

.video-top {
    margin-bottom: 103px;
}

.video-top__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.video-top__item {
    border-radius: 44px 44px 0px 0px;
    overflow: hidden;
    cursor: pointer;
}

.video-top__item:hover i {
    -webkit-transform: scale(0.9) !important;
    transform: scale(0.9) !important;
}

.video-top__item:hover .video-top__item-image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.video-top__item-image {
    position: relative;
    z-index: 5;
    margin-bottom: -21px;
    height: 368px;
}

.video-top__item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.video-top__item-bottom {
    border-radius: 21px;
    border: #3A3A3A;
    background: linear-gradient(98deg, #3A3A3A 22.81%, #333232 96.26%);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 47px;
    height: 126px;
    position: relative;
    z-index: 10;
}

.video-top__item-bottom h3 {
    font-family: Gilroy;
    font-size: 26px;
    font-style: normal;
    font-weight: 300;
    line-height: 106%;
    margin: 0 !important;
}

.video-top__item-bottom span {
    -webkit-animation: goGo 2.5s ease-in-out infinite;
    animation: goGo 2.5s ease-in-out infinite;
}

.video-top__item-bottom i {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    background: #FFEE02;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    cursor: pointer;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.video-top__item-bottom i img {
    display: block;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.video-top__item-bottom video {
    display: none;
}

.video-top.style2 .video-top__inner {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
}

.video-top.style2 .video-top__item-image {
    height: 329px;
}

.vorota {
    margin-bottom: 150px;
}

.vorota__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px;
}

.vorota__item {
    background: url(../images/vorota/vorota_bg2.svg) no-repeat center center;
    background-size: contain;
    height: 600px;
    position: relative;
}

.vorota__item-image {
    height: calc(600px - 85px);
    padding: 40px 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.vorota__item-image img {
    max-height: 100%;
    display: block;
}

.vorota__item-btn {
    position: absolute;
    bottom: 0;
    left: 0;
}

.vorota__item-btn .btn {
    height: 66px;
    width: 341px;
    border-radius: 131px;
    padding: 0 11px 0 100px;
}

.vorota__item-btn .btn i {
    width: 46px;
    height: 46px;
    margin-left: auto;
}

.vorota__item-title {
    position: absolute;
    width: 50%;
    right: 0;
    bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: #FFEE02;
}

.advantages {
    margin-bottom: 150px;
    position: relative;
}

.advantages .eclipse {
    position: absolute;
    right: 0;
    top: -142px;
}

.advantages .eclipse img {
    display: block;
}

.advantages__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantages .advantage__btn {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 74px;
}

.advantages.style2 .wrap {
    max-width: 1750px;
}

.advantages.style2 .advantages__inner {
    padding: 80px 104px 100px;
    border-radius: 46px;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 74px;
}

.advantages.style2 .advantages__head,
.news__head {
    width: 100%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.news__head {
    margin-bottom: 54px;
}

.advantages.style2 .advantages__head h2,
.news__head h2 {
    margin: 0;
}

.advantages.style2 .advantages__head span,
.news__head span {
    font-size: 30px;
}

.advantages.style2 .advantages__inner-items {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin: 0 -15px;
    gap: 30px 0;
    counter-reset: advantages;
}

.advantages.style2 .advantage {
    width: calc(33.33% - 30px);
    margin: 0 15px;
    position: relative;
}

.advantages.style2 .advantage:nth-child(n+4) {
    width: calc(50% - 30px);
}

.advantages.style2 .advantage:before {
    content: "0"counter(advantages);
    counter-increment: advantages;
    display: block;
    position: absolute;
    top: 36px;
    right: 38px;
    color: #8F8F8F;
    font-size: 26px;
    font-style: normal;
    font-weight: 250;
    line-height: 106%;
}

.advantage {
    border-radius: 33px;
    border: 1px solid #555;
    background: #3D3D3D;
    padding: 40px 20px 50px 40px;
    position: relative;
}

.advantage__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 27px;
}

.advantage__head i {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid #555;
    background: -webkit-gradient(linear, left top, left bottom, from(#3A3A3A), to(#333));
    background: linear-gradient(180deg, #3A3A3A 0%, #333 100%);
    width: 94px;
    height: 94px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 26px;
    position: relative;
}

.advantage__head i:before {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background: rgba(40, 187, 238, 0.51);
    opacity: 0.15;
    -webkit-filter: blur(19.0499992371px);
    filter: blur(19.0499992371px);
    position: absolute;
    top: 0;
    right: -12px;
}

.advantage__head i img {
    max-width: 60%;
    max-height: 60%;
}

.advantage__head span {
    font-size: 28px;
    font-weight: 600;
    line-height: 106%;
}

.advantage__content {
    font-size: 22px;
}

.advantage:nth-child(2n) .advantage__head i:before {
    background: rgba(252, 236, 3, 0.28);
    opacity: 0.24;
}

.bg-dark {
    margin-bottom: 131px;
    position: relative;
}

.bg-dark .eclipse {
    position: absolute;
    left: 0;
    top: -284px;
}

.bg-dark .eclipse img {
    display: block;
}

.bg-dark .wrap {
    max-width: 1750px;
}

.bg-dark__inner {
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    border-radius: 46px;
    padding: 80px 104px 50px;
}

.bg-dark__inner > *:last-child {
    margin-bottom: 0 !important;
}

.gates-3d {
    margin-bottom: 170px;
}

.gates-3d .wrap {
    max-width: 1750px;
}

.gates-3d__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.gates-3d__item {
    position: relative;
    width: 781px;
}

.gates-3d__item:first-child .gates-3d__image:after {
    content: "";
    display: block;
    border-right: 1px solid #fff;
    position: absolute;
    right: -53px;
    top: 37px;
    bottom: 69px;
}

.gates-3d__title {
    font-size: 30px;
    text-align: center;
    margin-bottom: 30px;
}

.gates-3d__image {
    position: relative;
}

.gates-3d__image > img {
    width: 100%;
    display: block;
}

.gates-3d__image span {
    position: absolute;
}

.gates-3d__image span img {
    display: block;
}

.gates-3d__image span b {
    position: absolute;
    left: 50%;
    top: calc(-100% - 5px);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #FFEE02;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px;
    height: 18px;
    border-radius: 17px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.gates-3d__image span:hover b {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gates-3d__robot-label-1 {
    bottom: 271px;
    right: 98px;
}

.gates-3d__robot-label-2 {
    bottom: 161px;
    right: 221px;
}

.gates-3d__robot-label-3 {
    top: 90px;
    left: 230px;
}

.gates-3d__robot-label-4 {
    top: 192px;
    right: 212px;
}

.gates-3d__robot-label-5 {
    top: calc(195px + 25px);
    right: 142px;
}

.gates-3d__myself-label-1 {
    bottom: calc(221px - 30px);
    left: 216px;
}

.gates-3d__myself-label-2 {
    top: calc(197px - 30px);
    left: 235px;
}

.gates-3d__myself-label-3 {
    top: calc(117px - 30px);
    left: 257px;
}

.gates-3d__myself-label-4 {
    bottom: calc(217px - 30px);
    left: 277px;
}

.gates-3d__myself-label-5 {
    top: calc(135px - 30px);
    left: 336px;
}

.gates-3d__myself-label-6 {
    top: calc(107px - 30px);
    left: 387px;
}

.gates-3d__myself-label-7 {
    bottom: calc(256px - 30px);
    right: 233px;
}

.gates-3d__myself-label-8 {
    top: calc(190px - 30px);
    left: 380px;
}

.gates-3d__myself-label-9 {
    bottom: calc(435px - 30px);
    right: 145px;
}

.gates-3d-equip {
    margin-bottom: 51px;
}

.gates-3d-equip__item {
    width: 1222px;
    margin: 0 auto;
}

.gates-3d-equip__image {
    position: relative;
}

.gates-3d-equip__image > img {
    width: 100%;
    display: block;
}

.gates-3d-equip__image span {
    position: absolute;
}

.gates-3d-equip__image span img {
    display: block;
    width: 30px;
    height: auto;
}

.gates-3d-equip__image span b {
    display: none;
    position: absolute;
    left: 50%;
    top: calc(-100% - 10px);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #FFEE02;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 20px;
    height: 28px;
    border-radius: 5px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    z-index: 10;
}

.gates-3d-equip__image span:hover b {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.gates-3d-equip__label-1 {
    left: 339px;
    bottom: calc(347px - 30px);
}

.gates-3d-equip__label-2 {
    left: 369px;
    bottom: calc(642px - 30px);
}

.gates-3d-equip__label-3 {
    left: 402px;
    bottom: calc(767px - 30px);
}

.gates-3d-equip__label-4 {
    left: 434px;
    bottom: calc(341px - 30px);
}

.gates-3d-equip__label-5 {
    left: 527px;
    bottom: calc(739px - 30px);
}

.gates-3d-equip__label-6 {
    left: 581px;
    bottom: calc(659px - 30px);
}

.gates-3d-equip__label-7 {
    left: 606px;
    bottom: calc(783px - 30px);
}

.gates-3d-equip__label-8 {
    left: 826px;
    bottom: calc(413px - 30px);
}

.gates-3d-equip__label-9 {
    left: 964px;
    bottom: calc(676px - 30px);
}

.complectaions {
    margin-bottom: 74px;
}

.complectaions__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 74px;
}

.complectaions__head h2 {
    margin-bottom: 0;
}

.complectaions__head span {
    font-size: 30px;
}

.complectaions__inner {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    margin: 0 -15px -30px;
    counter-reset: complectaions;
}

.complectaion {
    width: calc(50% - 30px);
    margin: 0 15px 30px;
    border-radius: 40px;
    border: 1px solid #555;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 260px;
    overflow: hidden;
}

.complectaion__content {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding: 44px 0 44px 44px;
}

.complectaion__content strong {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%;
    margin-bottom: 30px;
}

.complectaion__content strong small {
    font-size: 20px;
    position: relative;
    top: 2px;
    margin-left: 8px;
}

.complectaion__content strong:before {
    content: "0"counter(complectaions);
    counter-increment: complectaions;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 26px;
    width: 69px;
    height: 69px;
    border-radius: 12px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: #FFEE02;
    color: #3A3A3A;
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
}

.complectaion__content p {
    font-size: 22px;
}

.complectaion__image {
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.complectaion__image img {
    display: block;
}

.complectaion:nth-child(n+2) .complectaion__image {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.complectaion:nth-child(4) .complectaion__image {
    padding-right: 20px;
}

.gallery__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery__btn {
    margin-top: 30px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.gallery-item {
    height: 420px;
}

.gallery-item .gallery-icon {
    display: block;
    height: 100%;
}

.gallery-item a,
.gallery-item span {
    display: block;
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    border-radius: 40px;
    border: 1px solid #555;
    position: relative;
}

.gallery-item a > img,
.gallery-item span > img {
    display: block;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 5;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.gallery-item a:hover > img,
.gallery-item span:hover > img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.gallery-item.gallery-video {
    -ms-grid-column-span: 3;
    grid-column: span 3;
    height: 550px;
}

.gallery-item.gallery-video span:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0.6)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 7;
}

.gallery-item.gallery-video span i {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
    width: 116px;
    height: 116px;
    background: #4B4B4B;
    z-index: 10;
}

.gallery-item.gallery-video span i img {
    width: 30px;
    height: 30px;
}

.certs {
    margin-bottom: 124px;
}

.certs h2 {
    text-align: center;
}

.certs__btn {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.certs .btn {
    padding: 0 12px 0 90px;
}

.certs .btn i {
    margin-left: 70px;
}

.designes {
    margin-bottom: 150px;
}

.designes__head {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 45px;
}

.designes__head h2 {
    margin: 0;
}

.designes__head span {
    font-size: 30px;
}

.designes__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.designes__item {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.designes__item-content {
    background: #2D2D2D;
    border-radius: 42px;
    border: 1px solid #555;
    padding: 51px 20px 58px;
    position: relative;
}

.designes__item-content__item {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.designes__item-content__item img {
    display: block;
}

.designes__item-title {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%;
    margin-bottom: 27px;
}

.designes__item-image {
    position: relative;
}

.designes__item-image__slide {
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 339px;
}

.designes__item-image__slide img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.designes__item .slick-arrow {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    padding: 5px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 60;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.designes__item .slick-arrow:hover {
    opacity: .7;
}

.designes__item .slick-arrow img {
    display: block;
    width: 100%;
    height: auto;
}

.designes__item .slick-arrow.slick-prev {
    left: -10px;
}

.designes__item .slick-arrow.slick-next {
    right: -10px;
}

.slick-arrow.slick-hidden {
    display: none !important;
}

.designes__item-label {
    border-radius: 15px;
    padding: 12px 5px;
    background: #fff;
    color: #000;
    font-family: Gilroy;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    position: absolute;
    left: 0;
    top: 40px;
}

.designes__item-play {
    position: absolute;
    right: -20px;
    bottom: -20px;
    z-index: 30;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    -webkit-filter: drop-shadow(0px 17px 16.9px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0px 17px 16.9px rgba(0, 0, 0, 0.2));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.designes__item-play span {
    cursor: pointer;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    z-index: 15;
}

.designes__item-play-circle {
    position: relative;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -webkit-animation: rotate360 10s linear infinite;
    animation: rotate360 10s linear infinite;
}

.designes__item-play span:hover + img {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

.designes__item-play-btn {
    position: relative;
    z-index: 10;
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.designes__item-btn {
    margin-top: 22px;
}

.designes__item-btn a {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 70px;
    background: #FFEE02;
    border-radius: 42px;
    border: 1px solid #3A3A3A;
    color: #000;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.designes__item-btn.btn-quick a {
    background: #fff;
}

.designes__item-btn a:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.designes__item-btn a i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 11px;
}

.designes__item-btn a i img {
    display: block;
}

.designes__btn {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 68px;
}

.equipments {
    margin-bottom: 130px;
}

.equipments .wrap {
    max-width: 1750px;
}

.equipments__inner {
    border-radius: 46px;
    background: #343434;
    padding: 80px 104px 100px;
}

.equipments__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.equipments__btn {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 75px;
}

.equipment {
    border-radius: 33px;
    border: 1px solid #555;
    background: #3D3D3D;
    padding: 50px 30px 30px;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
}

.equipment:nth-child(8n-7),
.equipment:nth-child(8n-6),
.equipment:nth-child(8n-5),
.equipment:nth-child(8n-4) {
    background: #535353;
}

.equipment__image {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 224px;
    margin-bottom: 5px;
}

.equipment__image a {
    display: block;
    height: 100%;
}

.equipment__image img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.equipment__image a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.equipment__title {
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.equipment__title a {
    text-decoration: none !important;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.equipment__title a:hover {
    color: #FFEE02;
}

.equipment__price {
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
}


.equipment__bottom {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    gap: 13px;
    width: 100%;
    margin-top: auto;
    max-width: 220px;
}

.equipment__btn {
    width: 100%;
}

.equipment__btn.hidden {
    position: relative;
    visibility: hidden;
    z-index: -10;
    opacity: 0;
}

.equipment__btn a {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    border-radius: 21px;
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none !important;
    transition: 0.3s;
}

.equipment__btn a:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.equipment__btn a img {
    height: 25px;
    width: auto;
}

.equipment__more {
    width: 100%;
}

.equipment__more a {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 40px;
    border-radius: 21px;
    background: #FFEE02;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none !important;
    transition: 0.3s;
}

.equipment__more a:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

.equipment__more a img {
    width: 16px;
    height: auto;
}

.equipment__label {
    border-radius: 15px;
    padding: 12px 5px;
    background: #fff;
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
    position: absolute;
    left: 0;
    top: 100px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.complects {
    margin-bottom: 150px;
}

.complects__inner {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.complect__image {
    border-radius: 33px;
    overflow: hidden;
    border: 1px solid #555;
    height: auto !important;
    padding-top: 0 !important;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-bottom: 30px;
}

.complect__image img {
    display: block;
}

.complect__title {
    margin-bottom: 22px;
    font-size: 30px;
}

.complect__price {
    font-size: 32px;
    font-weight: 600;
    color: #FFEE02;
}

.complect__list {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #B5B5B5;
}

.complect__list ul {
    counter-reset: complect-list;
}

.complect__list ul li {
    list-style-type: none;
    margin-bottom: 16px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 22px;
    list-style-type: none;
}

.complect__list ul li:last-child {
    margin-bottom: 0;
}

.complect__list ul li i {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 43px;
    margin-right: 26px;
    font-size: 20px;
    line-height: 111.441%;
    color: #FFEE02;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-style: normal;
}

.complect__list ul li i:before {
    content: "0"counter(complect-list);
    counter-increment: complect-list;
}

.complect__btn {
    margin-top: 40px;
}

.complect .btn {
    width: 100%;
    padding-left: 110px;
}

.complect .btn i {
    margin-left: auto;
}

.news {
    margin-bottom: 150px;
}

.news .wrap {
    max-width: 1750px;
}

.news__inner {
    background: #343434;
    border-radius: 46px;
    padding: 80px 104px 100px;
}

.news__items {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.news__item-image {
    border-radius: 33px;
    overflow: hidden;
    margin-bottom: 30px;
    background: #000;
    flex-shrink: 0;
}

.news__item-image a {
    overflow: hidden;
    display: block;
    height: 100%;
    display: block;
}

.news__item-image img {
    display: block;
    width: 100%;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.news__item-image a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.news__item-content {
    border: 1px solid #555;
    padding: 30px 40px 40px;
    border-radius: 33px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    flex-grow: 1;
}

.news__item-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 106%;
    position: relative;
    margin-right: -20px;
    margin-bottom: 30px;
}

.news__item-title a {
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.news__item-title a:hover {
    color: #FFEE02;
}

.news__item-bottom {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

.news__item-bottom span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
}

.news__item-bottom span small {
    margin-top: 10px;
    color: #A0A0A0;
    font-size: 16px;
}

.news__item-bottom a {
    margin-left: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #FFEE02;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.news__item-bottom a:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.news__more {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 36px;
}

.services {
    margin-bottom: 180px;
}

.services h2 {
    text-align: center;
    margin-bottom: 100px;
}

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

.services__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.services__item-content {
    flex-grow: 1;
    text-align: center;
}

.services__item-content a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    border-radius: 33px;
    border: 1px solid #555;
    background: linear-gradient(130deg, #2D2D2D 24.65%, #3A3A3A 113.51%);
    padding: 34px 20px 20px;
    overflow: hidden;
    text-decoration: none;
}

.services .services__item-title {
    font-size: 25px;
    font-weight: 600;
    line-height: 106%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}

.services__item-text {
    color: #FFEE02;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}

.services__item-image {
    margin-top: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 300px;
}

.services__item-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.services__item-content a:hover .services__item-image img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.services__item-btn {
    margin-top: 24px;
}

.services__item-btn a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    border: 1px solid #3A3A3A;
    background: #FFF;
    height: 54px;
    padding: 0 20px;
    color: #000;
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    line-height: normal;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.services__item-btn a:hover {
    background: #FFEE02;
}

.services__item-btn a i {
    flex-shrink: 0;
    margin-left: 10px;
    width: 12px;
    position: relative;
    top: 2px;
}

.services__item-btn a i img {
    display: block;
    width: 100%;
    height: auto;
}

.feedback {
    margin-bottom: 120px;
}

.feedback h3 {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.feedback__form {
    margin: 0 20px;
    background: #393939;
    border-radius: 46px;
    padding: 96px 60px 40px;
}

.feedback .form__row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.feedback .form__col {
    margin-right: 27px;
}

.feedback .inputbox {
    height: 92px;
    margin-top: 2px;
    border-radius: 131px;
}

.feedback .btn span {
    margin: 0 auto;
}

.feedback .btn i {
    margin-left: 0;
}

.feedback .form__accept {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.more {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    text-align: center;
    margin-top: 40px;
}

.more a {
    font-size: 30px;
    font-weight: 300;
    text-decoration: none !important;
    border-bottom: 1px solid;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.more a:hover {
    border-color: transparent;
}

.how-work {
    margin-bottom: 170px;
}

.how-work h2 {
    text-align: center;
}

.how-work__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 90px;
    counter-reset: how-work;
}

.how-work__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    gap: 34px;
    background: #2D2D2D;
    border-radius: 42px;
    padding: 28px 10px 28px 48px;
    border: 1px solid #555;
}

.how-work__item:before {
    content: '0'counter(how-work);
    counter-increment: how-work;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 87px;
    height: 87px;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 26px;
    font-weight: 400;
    border: 1px solid #555;
    background: linear-gradient(130deg, #292929 24.65%, #3A3A3A 113.51%);
    filter: drop-shadow(0px 11px 30.3px rgba(0, 0, 0, 0.25));
    -webkit-transition: 0.3s;
}

.how-work__item span {
    font-size: 27px;
    font-weight: 600;
    line-height: 106%;
}

.quiz-main {
    margin-bottom: 120px;
}

.quiz-main .quiz {
    padding: 0;
}

.quiz-main .quiz__form {
    min-height: 940px;
}

.quiz-main .quiz__nav {
    margin-top: 40px;
}

.gallery {
    margin-bottom: 170px;
}

.gallery__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 30px;
}

.content__text .gallery__items {
    margin-bottom: 50px;
}

.content__text.active .gallery__items {
    display: grid !important;
}

.content__text.active .gallery br {
    display: none !important;
}

.gallery__item a {
    display: block;
    height: 100%;
    border-radius: 40px;
    overflow: hidden;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.gallery__item a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.content {
    margin: 120px 0;
    font-size: 25px;
    font-weight: 300;
}

.about-page {
    margin: 0 0 85px;
    font-weight: 500;
}

.about-page p,
.about-page li {
    line-height: 112%;
}

.content h2 {
    margin-bottom: 46px;
}

.content__text > *:nth-child(n + 3) {
    display: none;
}

.content__text.active > *:nth-child(n + 3) {
    display: block;
}

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

.content p:last-child,
.content ul:last-child,
.content ol:last-child {
    margin-bottom: 0 !important;
}

.content ul,
.content ol {
    margin-left: 25px;
}

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

.content ul li:last-child,
.content ol li:last-child {
    margin-bottom: 0 !important;
}

.contacts {
    margin: 30px 115px 70px;
    padding: 30px 0 50px;
    background: linear-gradient(130deg, #323232 24.65%, #313131 113.51%);
    border: 1px solid #555;
    border-radius: 46px;
}

.contacts h1 {
    text-align: center;
    margin-bottom: 40px;
}

.contacts__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.contacts__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.contacts__item:nth-child(2) {
    -ms-align-items: center;
    align-items: center;
}

.contacts__item-inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 24px;
}

.contacts__item-field {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 26px;
}

.contacts__item-field i {
    flex-shrink: 0;
    width: 17px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}

.contacts__item-field i svg {
    max-width: 100%;
}

.contacts__item-field span {
    font-size: 20px;
    font-weight: 300;
    line-height: 120%;
}

.contacts__item-field a {
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.contacts__item-field a:hover {
    color: #FFEE02;
}

.requisites {
    margin-bottom: 80px;
}

.requisites__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-right: 60px;
}

.requisites__content *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-bottom: 25px;
}

.requisites__content p:last-child {
    margin-bottom: 0 !important;
}

.requisites__form {
    width: 430px;
    flex-shrink: 0;
    border-radius: 30px;
    background: #3C3C3C;
    padding: 30px 50px 40px;
}

.requisites .form__title {
    font-size: 25px;
}

.requisites input.inputbox,
.requisites textarea.messagebox {
    border-radius: 20px;
    background: #353535;
    height: 72px;
    padding: 0 30px;
}

.requisites .form__row {
    margin-bottom: 20px;
}

.requisites .form .btn {
    height: 66px;
    padding-right: 11px;
}

.requisites .form .btn span {
    margin: 0 auto;
}

.requisites .form .btn i {
    margin-left: 0;
    width: 50px;
    height: 50px;
}

.docs {
    margin-bottom: 75px;
}

.docs h2 {
    text-align: center;
}

.docs__items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.docs__item {
    width: 100%;
    max-width: 350px;
}

.docs__item a {
    display: block;
    height: 100%;
    text-decoration: none;
    width: 100%;
    overflow: hidden;
}

.docs__item img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.docs__item a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.docs__btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.docs__btn {
    margin-top: 78px;
}

.docs .btn {
    min-width: 476px;
}

.docs .btn span {
    margin: 0 auto;
}

.docs .btn i {
    margin-left: 0;
}

.docs__btn span {
    text-align: center;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
}

.breadcrumbs {
    margin-bottom: 25px;
}

.breadcrumbs br {
    display: none;
}

.breadcrumbs ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.breadcrumbs.centered ul {
    justify-content: center;
}

.breadcrumbs ul li {
    list-style-type: none;
    padding-bottom: 5px;
    font-size: 16px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 300;
}

.breadcrumbs ul li:after {
    content: "/";
    display: block;
    margin: 0 10px;
}

.breadcrumbs ul li:last-child:after {
    display: none;
}

.breadcrumbs ul li a {
    font-weight: 500;
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.breadcrumbs ul li a:hover {
    color: #fa7902;
}

.hero .breadcrumbs {
    margin-top: -35px;
    margin-bottom: 25px;
}

.hero2 .breadcrumbs {
    margin-top: -45px;
}

.font-size-sm {
    font-size: 19px;
}

.article-page {
    margin: 0 0 50px !important;
}

.article-page__head {
    margin-bottom: 44px;
}

.article-page__head h1 {
    margin-bottom: 0 !important;
}

.article-page__date {
    margin-top: 7px;
}

.article-page__fields {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    line-height: 111.441%;
    margin-bottom: 64px;
}

.article-page__fields strong {
    font-weight: 700;
    white-space: nowrap;
}

.article-page__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 30px;
    margin-bottom: 75px;
}

.article-page__gallery a {
    display: block;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid #3A3A3A;
}

.article-page__gallery a img {
    display: block;
    width: 100%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.article-page__gallery a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.wp-pagenavi {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 70px;
}

.wp-pagenavi .pages {
    display: none !important;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-weight: 500;
    border-radius: 50%;
    border: 1px solid #555;
    background: #3A3A3A;
    font-size: 24px;
    text-decoration: none;
    /*	background: linear-gradient(130deg, #292929 24.65%, #3A3A3A 113.51%);*/
    filter: drop-shadow(0px 11px 30.3px rgba(0, 0, 0, 0.25));
}

.wp-pagenavi a {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.wp-pagenavi span {
    border-color: #fff;
    color: #222;
    background: #fff;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
    font-size: 0;
    background-repeat: no-repeat;
    background-position: center center;
    /*	background-color: none;*/
    -webkit-background-size: 40%;
    background-size: 40%;
    /*	border: 0;*/
}

.wp-pagenavi a:hover {
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
}

.wp-pagenavi .previouspostslink {
    background-image: url(../images/svg/prev1.svg);
}

.wp-pagenavi .nextpostslink {
    background-image: url(../images/svg/next1.svg);
}

.protfolio {
    margin-bottom: 90px;
}

.protfolio__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 142px;
}

.protfolio__item {
    border-radius: 46px;
    overflow: hidden;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.protfolio__item-image a {
    display: block;
    border-radius: 46px;
    overflow: hidden;
}

.protfolio__item-image a img {
    display: block;
    width: 100%;
    -webkit-transition: .6s;
    -o-transition: .6s;
    transition: .6s;
}

.protfolio__item-image a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    -o-transform: scale(1.06);
    transform: scale(1.06);
}

.protfolio__item-content {
    padding: 20px 30px 30px;
    flex-grow: 1;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
}

.protfolio__item-fields {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    font-size: 19px;
    font-weight: 400;
    line-height: 111.441%;
    margin-bottom: 18px;
}

.protfolio__item-fields strong {
    font-size: 24px;
    font-weight: 700;
}

.protfolio__item-btn {
    margin-top: auto;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
}

.protfolio__item-btn a {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding: 0 60px;
    border-radius: 42px;
    border: 1px solid #3A3A3A;
    background: #FFF;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    height: 47px;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.protfolio__item-btn a:hover {
    -webkit-transform: scale(0.95);
    -ms-transform: scale(0.95);
    -o-transform: scale(0.95);
    transform: scale(0.95);
}

.footer {
    border-top: 1px solid #7F7F7F;
    padding-top: 32px;
}

.footer .navbar__menu ul li ul {
    top: unset;
    bottom: 100%;
}

.footer .navbar__menu ul.block-menu > li ul.block-menu__lvl2 {
    top: unset;
    bottom: 0;
}

.footer .navbar__menu ul.block-menu > li ul.block-menu__lvl2 li.block-menu__line {
    top: unset;
    bottom: 0;
}

.footer__top {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 36px;
    border-bottom: 1px solid #494949;
}

.footer p {
    margin-bottom: 17px;
}

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

.footer a {
    text-decoration: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer a:hover {
    color: #FFEE02;
}

.footer span {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 17px;
}

.footer span:last-child {
    margin-bottom: 0;
}

.footer span svg {
    width: 20px;
    margin-right: 20px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: block;
}

.footer strong {
    font-weight: 300;
}

.footer__worktime {
    line-height: 150%;
    margin-top: -5px;
}

.footer__worktime svg {
    margin-top: 4px;
}

.footer__parnters {
    width: 140px;
}

.footer__phones {
    margin-top: -5px;
    line-height: 160%;
}

.footer__phones svg {
    margin-top: 4px;
}

.footer__phones a {
    display: block;
}

.footer__phones a:nth-child(1) {
    letter-spacing: 0.4px;
}

.footer__phones a:nth-child(3) {
    letter-spacing: 0.64px;
}

.footer__contacts {
    margin-top: -5px;
}

.footer__contacts svg {
    margin-top: 4px;
}

.footer__bottom {
    padding: 20px 0 34px;
}

.footer__developer {
    text-align: center;
    border-top: 1px solid #494949;
    padding: 24px 0 30px;
}

.footer__developer a {
    text-decoration: underline !important;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.footer__developer a:hover {
    color: #FFEE02;
}

.dg__social-widget {
    z-index: 100;
}

.grecaptcha-badge {
    display: none !important;
}

.footer__requizites a {
    border-bottom: 1px solid;
}

.equipment-page.modal-design {
    margin-bottom: 64px;
}

.equipment-page.modal-design .modal__design-block {
    margin-bottom: 79px;
}

.modal-design .modal__design-block:last-child {
    margin-bottom: 0 !important;
}

.equipment-page.modal-design .modal__design-block-title {
    font-size: 64px;
    margin-bottom: 34px;
}

.equipment-page.modal-design .new_modal__design-block-title {
    font-weight: 600;
    font-size: 48px;
    color: #fff;
    margin-bottom: 54px;
}

.equipment-page.modal-design .modal__design-block-fields p {
    font-size: 32px;
    margin-bottom: clamp(13px, 2.1vw, 40px);
}

.equipment-page.modal-design .modal__design-block-fields p:last-child {
    margin-bottom: 0 !important;
}

.equipment-page.modal-design .modal__design-block-fields.new_about_equipment_txt p {
    font-size: 27px;
    font-weight: 300;
}

.modal-design .modal__design-block-fields.fields-icons p i {
    margin-right: 15px;
    width: 24px;
    top: 0 !important;
}

.equipment-page.modal-design .modal__design-block-functions {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    gap: 40px 100px;
    margin-bottom: 0 !important;
}

.equipment-page.modal-design .modal__design-block-functions span {
    font-size: 24px;
    width: max-content;
    margin: 0 !important;
}

.equipment-page.modal-design .modal__design-block-functions span i {
    width: 104px;
    height: 104px;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    margin-bottom: 20px;
}

.equipment-page.modal-design .modal__design-block-functions span i img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.faq {
    margin-bottom: 120px;
}

.faq h2 {
    text-align: center;
}

.accordion {
    border-top: 1px solid #fff;
}

.accordion__block {
    border-bottom: 1px solid #fff;
}

.accordion__title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    gap: 40px;
    cursor: pointer;
    font-size: 46px;
    font-weight: 400;
    line-height: 112%;
    padding: 45px 0;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.accordion__title:hover,
.accordion__block.active .accordion__title {
    color: #FFEE02;
}

.accordion__title svg {
    display: block;
    width: 64px;
    height: auto;
    margin-left: auto;
    flex-shrink: 0;
}

.accordion__block.active .accordion__title svg line:nth-child(2) {
    display: none;
}

.accordion__content {
    display: none;
    position: relative;
    margin-top: -20px;
    padding: 0 45px 45px 45px;
}

.accordion__block.active .accordion__content {
    display: block;
}

.options_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 61px 119px;
}

.option_li {
    padding: 1px;
    border-radius: 42px;
    background: linear-gradient(135deg, #B5B5B5, #3A3A3A);
    border-radius: 15px;
}

.option_li_content {
    background: #2d2d2d;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 22px;
    color: #fff;
    font-weight: 600;
    font-size: 27px;
    min-height: 124px;
    height: 100%;
    padding: 38px;
}

.option_li_icon {
    height: 40px;
    width: 40px;
    min-width: 40px;
}

.funktion_row {
    display: flex;
    align-items: stretch;
    gap: 100px;
}

.funktion_item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 7px;
    text-align: center;
    font-weight: 400;
    font-size: 30px;
    color: #fff;
}

.funktion_item_icon {
    height: 64px;
    min-height: 64px;
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.funktion_item_name {
    display: flex;
    align-items: center;
    justify-content: center;
}

.opczii_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
}

.new_prod_sliders,
.big_img_slider,
.big_img_slider .slick-list,
.big_img_slider .slick-track,
.big_img_slider .slick-slide > div {
    height: 100%;
}

.new_prod_sliders {
    display: flex;
    flex-wrap: nowrap;
    gap: 42px;
}

.thumb_img_slider {
    width: 163px;
    height: 100%;
    overflow: hidden;
    z-index: 100;
}

.thumb_img_slider.inactive {
    z-index: 10;
}

.big_img_slider {
    width: 431px;
    max-height: 590px;
}

.new_hero_ttl_mob {
    display: none;
}

.thrumb_prod_image img {
    display: block;
    object-fit: contain;
    object-fit: center center;
    width: 100%;
    height: 100%;
}

.thrumb_prod_image {
    border-radius: 15px;
    border: 1px solid #bcbcbc;
    padding: 15px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 163px;
    height: 175px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.thrumb_prod_image:hover {
    border-color: #ffee02;
}

.slick-active.slick-current .thrumb_prod_image {
    border-color: #ffee02;
}

.thumb_img_slider .slick-slide {
    margin-bottom: 32px;
    height: 175px;
    cursor: pointer;
}

.navbar__menu ul.block-menu > li > a i {
    display: none;
}

/* Страница раздела строительство Старт 19.09.2025 */

.hero.hero-construction-single {
    margin-bottom: 100px;
}

.hero.hero-construction-single .hero__content {
    margin: 0;
    width: 100%;
    height: 495px;
    padding-top: 39px;
}

.hero.hero-construction-single .breadcrumbs {
    margin-top: 0;
}

.hero.hero-construction-single h1 {
    margin-bottom: 25px;
}

.hero.hero-construction-single .hero__list {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    gap: 20px;
}

.hero.hero-construction-single .hero__list span {
    margin: 0;
}

.hero.hero-construction-single .hero__list span:first-child {
    width: 647px;
    flex-shrink: 0;
}

.hero.hero-construction-single .hero__list span:last-child {
    flex-grow: 1;
}

.hero.hero-construction-single .hero__btn {
    width: 476px;
}

.hero.hero-construction-single .hero__btn .btn {
    width: 100%;
    justify-content: space-between;
}

.hero.hero-construction-single .hero__price {
    right: auto;
    left: 770px;
    bottom: 46px;
    margin: 0;
    font-size: 35px;
    font-weight: 600;
}

.slider-fluid {
    margin-bottom: 100px;
    position: relative;
}

.slider-fluid__decore-left,
.slider-fluid__decore-right {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 1;
}

.slider-fluid__decore-left img,
.slider-fluid__decore-right img {
    display: block;
    width: 100%;
    height: auto;
}

.slider-fluid__decore-left {
    left: 0;
    width: 683px;
}

.slider-fluid__decore-right {
    right: 0;
    width: 669px;
    margin-top: 60px;
}

.slider-fluid__block {
    position: relative;
    z-index: 10;
}

.slider-fluid__js {
    border-radius: 10px;
    overflow: hidden;
}

.slider-fluid__slide {
    display: block !important;
}

.slider-fluid__slide img {
    display: block;
    width: 100%;
}

.slider-fluid__nav .slick-arrow {
    width: 73px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 100;
    cursor: pointer;
    border-radius: 50%;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    box-shadow: 0px 0px 30px 0px rgba(252, 236, 3, 0.5);
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.slider-fluid__nav .slick-arrow img {
    display: block;
    width: 100%;
}

.slider-fluid__nav .slick-arrow:hover {
    -webkit-transform: translate(0, -50%) scale(0.9);
    -ms-transform: translate(0, -50%) scale(0.9);
    -o-transform: translate(0, -50%) scale(0.9);
    transform: translate(0, -50%) scale(0.9);
}

.slider-fluid__prev {
    left: -36px;
}

.slider-fluid__next {
    right: -36px;
}

.fields-table {
    margin-bottom: 100px;
}

.fields-table__inner {}

.fields-table ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.fields-table ul li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    list-style-type: none;
    padding: 20px 0;
    border-bottom: 1px solid #555;
    color: #FFF;
    font-size: 24px;
    font-weight: 300;
    line-height: 111.441%;
    width: 100%;
    max-width: 630px;
}

.fields-table ul li strong {
    font-weight: 600;
    flex-shrink: 0;
}

.steps__tabs-titles {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    position: relative;
    z-index: 10;
    gap: 50px;
    counter-reset: tabs-titles;
    margin-bottom: 50px;
}

.steps__tabs-title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    gap: 30px;
    width: 100%;
    padding: 20px 36px;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    line-height: 106%;
    border: 1px solid #555;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.steps__tabs-title span {
    position: relative;
    z-index: 10;
}

.steps__tabs-title:before {
    content: counter(tabs-titles);
    counter-increment: tabs-titles;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0 !important;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 1px solid #555;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
    -webkit-filter: drop-shadow(0px 17px 16.9px rgba(0, 0, 0, 0.2));
    filter: drop-shadow(0 11px 30.3px rgba(0, 0, 0, 0.25));
    color: #FFF;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
    position: relative;
    z-index: 10;
}

.steps__tabs-title:after {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    z-index: 5;
    background: #FFEE02;
    opacity: 0;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.steps__tabs-title:hover,
.steps__tabs-title.active {
    color: #000;
}

.steps__tabs-title:hover:after,
.steps__tabs-title.active:after {
    opacity: 1;
}

.steps__tabs .steps__inner {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    counter-increment: steps;
}

.steps__tabs .steps__inner:not(.active) {
    padding: 0 !important;
}

.steps__tabs .steps__inner.active {
    height: auto;
    visibility: visible;
}

/* Страница раздела строительство Конец */

/* Страница Робот-мойки Начало */

.hero-robot-moyki h1 {
    font-size: 44px;
}

.hero-robot-moyki h1 em,
.hero-robot-moyki h1 i {
    font-style: normal;
    white-space: nowrap;
}

.about-robot-moyki {
    margin-bottom: 80px;
}

.about-robot-moyki .wrap {
    max-width: 1750px;
}

.about-robot-moyki__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 30px;
    position: relative;

}

.about-robot-moyki__content {
    width: calc(50% - 15px);
    padding-left: 102px;
}

.about-robot-moyki__content h2 {
    font-size: 44px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 55px;
}

.about-robot-moyki__content p {
    font-size: 31px;
    font-weight: 300;
    line-height: 111.441%;
    margin-bottom: 40px;
}

.about-robot-moyki__content strong {
    color: #FFEE02;
}

.about-robot-moyki__image {
    width: calc(50% - 15px);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-left: auto;
}

.about-robot-moyki__image img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.advantages-robot-moyki {
    margin-bottom: 90px;
}

.advantages-robot-moyki__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-left: 50px;
    counter-reset: advantages;
}

.advantages-robot-moyki__item {
    padding: 40px 40px 50px;
    border-radius: 40px;
    border: 1px solid #555;
    counter-increment: advantages;
}

.advantages-robot-moyki__item-title {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    gap: 26px;
    font-size: 30px;
    font-weight: 600;
    line-height: 106%;
    margin-bottom: 30px;
}

.advantages-robot-moyki__item-title:before {
    content: '0'counter(advantages);
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 69px;
    height: 69px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #FFEE02;
    color: #3A3A3A;
    text-align: center;
    font-size: 26px;
    font-weight: 400;
    line-height: normal;
}

.advantages-robot-moyki__item-text {
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
}

.for-who-robot-moyki {
    margin-bottom: 90px;
}

.for-who-robot-moyki h2 {
    text-align: center;
    margin-bottom: 36px;
}

.for-who-robot-moyki__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.for-who-robot-moyki__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    text-align: center;
}

.for-who-robot-moyki__item-image {
    height: 180px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
}

.for-who-robot-moyki__item-image img {
    max-width: 100%;
    max-height: 100%;
}

.for-who-robot-moyki__item-title {
    color: #FFEE02;
    font-size: 28px;
    font-weight: 700;
    line-height: 106%;
    margin-bottom: 20px;
}

.for-who-robot-moyki__item-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 106%;
}

.reasons-robot-moyki {
    margin-bottom: 90px;
}

.reasons-robot-moyki .wrap {
    max-width: 1750px;
}

.reasons-robot-moyki__inner {
    border-radius: 46px;
    padding: 60px 100px 100px;
    background: linear-gradient(130deg, #343434 24.65%, #393939 113.51%);
}

.reasons-robot-moyki__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
}

.reasons-robot-moyki__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    border-radius: 33px;
    border: 1px solid #3A3A3A;
    background: #3D3D3D;
    padding: 40px;
}

.reasons-robot-moyki__item-head {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    gap: 26px;
}

.reasons-robot-moyki__item-image {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    width: 94px;
    height: 94px;
    padding: 14px;
    flex-shrink: 0;
    background: linear-gradient(180deg, #3A3A3A 0%, #333333 100%);
    border: 1px solid #555;
    border-radius: 16px;
}

.reasons-robot-moyki__item-image img {
    max-width: 100%;
    max-height: 100%;
}

.reasons-robot-moyki__item-title {
    font-size: 28px;
    font-weight: 600;
    line-height: 106%;
}

.reasons-robot-moyki__item-text {
    font-size: 22px;
    font-weight: 300;
    line-height: normal;
}

.finance-robot-moyki {
    margin-bottom: 80px;
}

.finance-robot-moyki h2 {
    text-align: center;
}

.finance-robot-moyki__inner {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    gap: 30px;
}

.finance-robot-moyki__items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 50px;
}

.finance-robot-moyki__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    gap: 36px;
}

.finance-robot-moyki__item-image {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 94px;
    height: 94px;
    padding: 13px;
    border-radius: 16px;
    border: 1px solid #555;
    background: linear-gradient(180deg, #3A3A3A 0%, #333 100%);
}

.finance-robot-moyki__item-image img {
    max-width: 100%;
    max-height: 100%;
}

.finance-robot-moyki__item-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    gap: 20px;
}

.finance-robot-moyki__item-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 106%;
    color: #FFEE02;
}

.finance-robot-moyki__item-text {
    font-size: 28px;
    font-weight: 400;
    line-height: 106%;
}

.finance-robot-moyki__image {
    width: 56.56%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
    margin-left: auto;
}

.finance-robot-moyki__image img {
    max-width: 100%;
    height: auto;
    display: block;
}

.finance-robot-moyki__btn {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    margin-top: 115px;
}

.model3d-robot-moyki {
    margin-bottom: 80px;
}

.model3d-robot-moyki h2 {
    text-align: center;
    margin-bottom: 50px;
}

.model3d-robot-moyki__image {
    max-width: 1145px;
    margin: 0 auto;
    position: relative;
}

.model3d-robot-moyki__image img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 5;
}

.model3d-robot-moyki__image span {
    position: absolute;
}

.model3d-robot-moyki__image span i,
.model3d-robot-moyki__image span img {
    display: block;
}

.model3d-robot-moyki__image span b {
    position: absolute;
    left: 50%;
    top: calc(-100% - 5px);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #FFEE02;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 9px;
    height: 18px;
    border-radius: 17px;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    display: none;
    z-index: 10;
}

.model3d-robot-moyki__image span:hover b {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.model3d-robot-moyki__robot-label-1 {
    bottom: 394px;
    right: 155px;
}

.model3d-robot-moyki__robot-label-2 {
    bottom: 250px;
    right: 316px;
}

.model3d-robot-moyki__robot-label-3 {
    top: 136px;
    left: 340px;
}

.model3d-robot-moyki__robot-label-4 {
    top: 293px;
    right: 314px;
}

/* Страница Робот-мойки Конец */

/* Коиплект терминалы старт */

.complect-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 206px;
}

.complect-custom__item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    -ms-align-items: center;
    align-items: center;
    gap: 14px;
    border: 1.19px solid transparent;
    border-radius: 12px;
    background:
        linear-gradient(#2D2D2D, #2D2D2D) padding-box,
        linear-gradient(311.68deg, #3A3A3A 17.28%, #B5B5B5 76.29%) border-box;
    border-radius: 18px;
    padding: 40px 10px 17px;
}

.complect-custom__item i {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: center;
    height: 113px;
}

.complect-custom__item img {
    max-height: 100%;
    display: block;
}

.complect-custom__item span {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    align-self: flex-start;
    padding-left: 50px;
    gap: 9px;
}

.complect-custom__item strong {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    line-height: 99.905%;
}

.complect-custom__item small {
    color: #FFEE02;
    font-size: 19px;
    font-weight: 600;
    line-height: 99.905%;
}

/* Коиплект терминалы Конец */

/* Увеливеличение контейнера фотографии верхнего блока Старт */

.category-21 .hero2__image,
.category-6 .hero2__image {
    margin-right: 60px;
    width: 720px;
}

/* Увеливеличение контейнера фотографии верхнего блока Старт */

/* Новый стиль карточек в оборудовании Старт */

.equipment.new-style .equipment__image {
    position: relative;
    margin: -50px -30px 24px;
    height: auto !important;
    border-bottom: 1px solid #fff;
}

.equipment.new-style .equipment__image a {
    overflow: hidden;
}

/* Новый стиль карточек в оборудовании Конец */
