@charset "utf-8";

/* Local fonts */
@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-normal-cyrillic.woff2') format('woff2');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-normal-latin.woff2') format('woff2');
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-italic-cyrillic.woff2') format('woff2');
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/open-sans-italic-latin.woff2') format('woff2');
    font-weight: 400 700;
    font-style: italic;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* /. Local fonts */


:root{
    --bg-color1: #F4F5F6;
    --bg-color2: #252931;
    --accent-color1: #F35C24;
    --accent-color1-hover: #FF4326;
    --accent-font-color: #FFFFFF;
}

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

* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

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

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

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

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 1330px) {
    .container {
        width: 1300px;
    }

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

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

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

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

.form-group {
    position: relative;
}

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

.form-control {
    display: block;
    background: #fff;
    text-shadow: none;
    line-height: 1.42857143;
    margin-bottom: 20px;
    border-radius: 5px;
    width: 100%;
    height: 64px;
    padding: 0 22px;
    border: 1px solid rgba(22, 25, 29, 0.16);
    color: #16191D;
    font-size: 15px;
    font-weight: 600;
}


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

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

.form-control.error {
    border-color: #FF1A00 !important;
    background: #fbd1d1 !important;
}

.form-control::-moz-placeholder {
    color: #74706B;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #74706B;
}

.form-control::-webkit-input-placeholder {
    color: #74706B;
}

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

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

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

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

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

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

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

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

@media(max-width: 767px){
    .form-control{
        height: 58px;
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 16px;
    }
    .agreement label{
        font-size: 12px;
    }
}

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

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

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

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

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

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

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

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

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

.push1 {
    height: 1px;
}

.push2 {
    height: 2px;
}

.push3 {
    height: 3px;
}

.push4 {
    height: 4px;
}

.push5 {
    height: 5px;
}

.push6 {
    height: 6px;
}

.push7 {
    height: 7px;
}

.push8 {
    height: 8px;
}

.push9 {
    height: 9px;
}

.push10 {
    height: 10px;
}

.push11 {
    height: 11px;
}

.push12 {
    height: 12px;
}

.push13 {
    height: 13px;
}

.push14 {
    height: 14px;
}

.push15 {
    height: 15px;
}

.push16 {
    height: 16px;
}

.push17 {
    height: 17px;
}

.push18 {
    height: 18px;
}

.push19 {
    height: 19px;
}

.push20 {
    height: 20px;
}

.push25 {
    height: 25px;
}

.push30 {
    height: 30px;
}

.push35 {
    height: 35px;
}

.push40 {
    height: 40px;
}

.push45 {
    height: 45px;
}

.push50 {
    height: 50px;
}

.push55 {
    height: 55px;
}

.push60 {
    height: 60px;
}

.push70 {
    height: 70px;
}

.push80 {
    height: 80px;
}

.push90 {
    height: 90px;
}

.push100 {
    height: 100px;
}

:invalid {
    box-shadow: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.upper {
    text-transform: uppercase;
}

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

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

.red {
    color: #FF4632;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.gray-bg {
    background: var(--bg-color1);
}
.dark-bg {
    background: var(--bg-color2);
    color: var(--accent-font-color);
}

p {
    margin-bottom: 20px;
}

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

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

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

@media(max-width: 480px){
    .fancybox_modal.fancybox-content{
        padding: 25px;
    }
}
/* /. Fancybox */

/* Slick carousel */
.slick-object>div {
    display: none;
}

.slick-object>div:first-of-type,
.slick-object.slick-slider>div {
    display: block;
}

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

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

.slick-list:focus {
    outline: none;
}

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

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

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

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

.slick-track:after {
    clear: both;
}

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

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

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

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

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

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

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slider-wrapper .item img {
    min-height: 300px;
}

.slick-dots {
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    display: block;
    margin-top: 20px;
}

.slick-dots li button {
    position: absolute;
    top: -5px;
    left: -5px;
    border: none;
    border-radius: 50%;
    display: block;
    opacity: 0;
}

.slick-dots li {
    cursor: pointer;
    display: inline-block;
    cursor: pointer;
    position: relative;
}
.slick-dots li {
    border-radius: 50%;
    width: 11px;
    height: 11px;
    margin: 0 10px 0;
    background: #CDD2D8;
}

.slick-dots li.slick-active {
    background: var(--accent-color1);
}

.slick-prev,
.slick-next {
    display: block;
    cursor: pointer;
    text-align: center;
    width: 40px;
    height: 40px;
    background: var(--accent-color1);
    position: absolute;
    top: calc(50% - 20px);
    z-index: 50;
    border-radius: 5px;
    transition: all ease-out 300ms;
}

.slick-prev {
    left: 50px;
}

.slick-next {
    right: 50px;
}

.slick-prev:after,
.slick-next:after {
    content: "";
    display: block;
    position: absolute;
    width: 12px;
    height: 12px;
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transition: all 200ms ease-out;
}

.slick-prev:after {
    transform: rotate(45deg);
}

.slick-next:after {
    transform: rotate(225deg);
    margin-left: -9px;
}

.slick-prev:hover,
.slick-next:hover{
    filter: brightness(115%);
}
.grid-carousel.slick-slider{
    display: block;
}
.grid-carousel > div:not(:first-of-type){
    display: none;
}
.grid-carousel .slick-track {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.grid-carousel .slick-slide {
    height: inherit;
}
.grid-carousel .slick-slide > div {
    height: 100%;
}
@media(max-width: 1329px) {
    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }
}

/* /. Slick carousel */

@media(min-width: 992px) {

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

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

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

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

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

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

    /* /. Custom chrome scroll */
}

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

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

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

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

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

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

/* /. Agreement */

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

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

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

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

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

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

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

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

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

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

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

/* /. Mobile menu btn */

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

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

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

.mobile-menu li {
    position: relative;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* /. Mobile menu */



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

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

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

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

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

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

/* /. Custom check */

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

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

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

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

/* Breadcrumbs */
.breadcrumbs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 15px;
    line-height: 1.3;
    white-space: nowrap;
}

.breadcrumb li {
    position: relative;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

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

.breadcrumb li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid #2C2C2C;
    border-right: 1px solid #2C2C2C;
    transform: translateY(-50%) rotate(45deg);
}

.breadcrumb a {
    color: var(--accent-color1);
    text-decoration: none;
}

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

@media (max-width: 767px) {
    .breadcrumbs-section{
        padding-bottom: 40px;
    }
    .breadcrumbs-wrapper {
        margin-left: -15px;
        margin-right: -15px;
    }

    .breadcrumb {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 14px;
    }

    .breadcrumb li:not(:last-child) {
        padding-right: 22px;
        margin-right: 10px;
    }
}
/* /. breadcrumbs */

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

#mapexMap {
    height: 100%;
}

/* /. Map */

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

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

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

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

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




body{
    font-family: 'Open Sans', sans-serif;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
}

h1,
.title-h1 {
    margin: 0 0 28px;
    color: #111;
    font-size: 54px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h2,
.title-h2 {
    margin: 0 0 28px;
    color: #111;
    font-size: 44px;
    line-height: 1.14;
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3,
.title-h3 {
    margin: 0 0 18px;
    color: #111;
    font-size: 28px;
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.015em;
}

h4,
.title-h4 {
    margin: 0 0 14px;
    color: #111;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

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

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

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

@media(max-width: 767px) {
    h1,
    .title-h1 {
        margin-bottom: 22px;
        font-size: 31px;
    }

    h2,
    .title-h2 {
        margin-bottom: 22px;
        font-size: 28px;
    }

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

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

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

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

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

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

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

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

/* Messengers */
.contacts-messengers {
    display: flex;
    align-items: center;
    gap: 13px;
}

.contacts-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #A8AD85;
    color: #fff;
    transition: transform 250ms ease-out, background 250ms ease-out, filter 250ms ease-out;
}

.telegram-btn {
    background: #0D83BE;
}

.max-btn {
    background: linear-gradient(45deg, #3593FC 0%, #275AF2 25%, #4F34E2 50%, #7933DD 75%, #9C44DC 100%);
}

.vk-btn {
    background: #0077FF;
}

.contacts-messenger:hover {
    color: #fff;
    transform: translateY(-3px);
    filter: brightness(110%);
}

.contacts-messenger svg {
    display: block;
    max-width: 60%;
    max-height: 60%;
}
/* /. Messengers */

/* Header */
.header {
    position: relative;
    z-index: 900;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-top {
    background: #16191D;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.3;
}

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

.header-top__left,
.header-top__right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-top__item {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.header-top__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color1);
    line-height: 1;
}

.header-top__icon svg {
    display: block;
}

.header-top__phone {
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
}

.header-top__phone:hover {
    color: var(--accent-color1);
}

/* Header top bigger */
.header-top {
    font-size: 14px;
}

.header-top__inner {
    min-height: 42px;
}

.header-top__left,
.header-top__right {
    gap: 28px;
}

.header-top__item {
    gap: 8px;
    font-size: 14px;
}

.header-top__icon svg {
    width: 15px;
    height: 15px;
}
.header-top__icon.icon1 svg{
    width: 17px;
    height: 17px;
}

.header-top__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.header-top__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color1);
    line-height: 1;
}

.header-top__phone-icon svg {
    display: block;
}

.contacts-messengers--header {
    gap: 9px;
}

.contacts-messengers--header .contacts-messenger {
    width: 30px;
    height: 30px;
}

.contacts-messengers--header .contacts-messenger svg {
    max-width: 58%;
    max-height: 58%;
}

.contacts-messengers--header .contacts-messenger:hover {
    transform: translateY(-2px);
}
/* /. Header top bigger */

.header-main {
    background: #fff;
}

.header-main__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.header-logo {
    flex: 0 0 auto;
    display: block;
    width: 210px;
}

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

.header-menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

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

.header-menu > ul > li {
    position: relative;
}

.header-menu > ul > li > a {
    min-height: 72px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: #20242A;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    position: relative;
}

.header-menu > ul > li > a:hover,
.header-menu > ul > li.active > a {
    color: var(--accent-color1);
}

.header-menu > ul > li > a:after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 3px;
    background: var(--accent-color1);
    opacity: 0;
    transform: translateY(3px);
    transition: all 200ms ease-out;
}

.header-menu > ul > li:hover > a:after,
.header-menu > ul > li.active > a:after {
    opacity: 1;
    transform: translateY(0);
}

.header-actions {
    flex: 0 0 auto;
}

.header-actions .btn {
    height: 44px;
    padding: 0 24px;
    font-size: 13px;
    text-transform: uppercase;
}

.header-mobile-phone {
    display: none;
    color: #20242A;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

/* Mega menu */
.header-mega {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 840px;
    max-width: calc(100vw - 30px);
    padding: 26px 28px 22px;
    background: #fff;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition: all 220ms ease-out;
}

.header-menu__item--services:hover .header-mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.header-mega__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.header-mega__title {
    min-height: 52px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #F4F5F6;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

.header-mega__col li + li {
    margin-top: 8px;
}

.header-mega__col a {
    display: block;
    padding: 5px 0;
    color: #32363B;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 600;
}

.header-mega__col a:hover,
.header-mega__col .active > a{
    color: var(--accent-color1);
}

.header-mega__bottom {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid #EBEBEB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-mega__note {
    color: #666;
    font-size: 13px;
    line-height: 1.35;
}

.header-mega__link {
    color: var(--accent-color1);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 1329px) {
    .header-logo {
        width: 190px;
    }

    .header-menu > ul > li > a {
        padding: 0 10px;
        font-size: 12px;
    }

    .header-actions .btn {
        padding: 0 18px;
    }
}

@media (max-width: 1199px) {

    .header-top,
    .header-menu,
    .header-actions {
        display: none;
    }

    .header-main__inner {
        min-height: 58px;
        gap: 14px;
    }

    .header-logo {
        width: 170px;
    }

    .header-mobile-phone {
        display: inline-flex;
        margin-left: auto;
    }

    .menu-button {
        display: block;
        flex: 0 0 auto;
    }

    .mobile-menu-wrapper {
        top: 58px;
    }
}

@media (max-width: 575px) {
    .header-logo {
        width: 145px;
    }

    .header-mobile-phone {
        font-size: 0;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--accent-color1);
        position: relative;
    }

    .header-mobile-phone:before {
        content: "☎";
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        line-height: 1;
    }
    .menu-button{
        margin-left: 7px;
    }
}
/* /. Header */

/* Sticky header-main */
.header {
    position: sticky;
    top: -42px; /* высота .header-top */
    z-index: 900;
}

.header-main {
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.header-top {
    position: relative;
    z-index: 1;
}

@media (max-width: 1199px) {
    .header {
        top: 0;
    }

    .header-main {
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
    }
}
/* /. Sticky header-main */

.mobile-menu__contacts {
    padding: 20px;
}

.mobile-menu__phone {
    display: inline-block;
    margin-bottom: 15px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.mobile-menu__socials {
    display: flex;
    gap: 9px;
    margin-bottom: 18px;
}

.mobile-menu__social {
    min-height: 42px;
    padding: 0 14px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    transition: transform 250ms ease-out, filter 250ms ease-out;
}

.mobile-menu__social:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(110%);
}

.mobile-menu__social-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu__social-icon svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.mobile-menu__social.telegram-btn {
    background: #0D83BE;
}

.mobile-menu__social.max-btn {
    background: linear-gradient(45deg, #3593FC 0%, #275AF2 25%, #4F34E2 50%, #7933DD 75%, #9C44DC 100%);
}

.mobile-menu__social.vk-btn {
    background: #0077FF;
}

.mobile-menu__contacts .btn {
    width: 100%;
    background: #fff;
    color: var(--accent-color1);
    white-space: nowrap;
}

/* Header logo text variant */
.header-logo--text {
    width: auto;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #16191D;
}

.header-logo__icon {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    display: block;
}

.header-logo__icon img {
    width: 70px;
    height: 70px;
    display: block;
    object-fit: contain;
}

.header-logo__text {
    display: flex;
    flex-direction: column;
    color: #16191D;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.015em;
}

.header-logo__text span {
    display: block;
}

.header-logo--text:hover {
    color: #16191D;
}

@media (max-width: 1199px) {
    .header-logo--text {
        gap: 9px;
    }

    .header-logo__icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .header-logo__icon img {
        width: 50px;
        height: 50px;
    }

    .header-logo__text {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .header-logo__icon {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
    }

    .header-logo__icon img {
        width: 44px;
        height: 44px;
    }

    .header-logo__text {
        font-size: 12px;
        letter-spacing: 0.01em;
    }
}
/* /. Header logo text variant */


/* Hero section */
.hero-section {
    position: relative;
    min-height: 600px;
    padding: 78px 0 34px;
    overflow: hidden;
    background-color: #F4F5F6;
}

.hero-section__picture {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

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

.hero-section__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        #fff 0%,
        rgba(255, 255, 255, 0.96) 28%,
        rgba(255, 255, 255, 0.74) 48%,
        rgba(255, 255, 255, 0.18) 72%,
        rgba(255, 255, 255, 0) 100%
    );
}

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

.hero-section__inner {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.hero-section__content {
    position: relative;
    z-index: 2;
    width: 560px;
    max-width: 100%;
}

.hero-section h1 {
    margin-bottom: 22px;
    color: #16191D;
    font-size: 46px;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.035em;
}

.hero-section h1 span {
    display: block;
    color: var(--accent-color1);
}

.hero-section__subtitle {
    width: 470px;
    max-width: 100%;
    margin-bottom: 30px;
    color: #3A3F45;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 500;
}

.hero-section__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-section__buttons .btn {
    height: 54px;
    padding: 0 30px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Stats */
.hero-stats {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 72px;
    width: 220px;
    padding: 26px 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 10px;
    background: rgba(22, 25, 29, 0.9);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(5px);
}

.hero-stats__item + .hero-stats__item {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats__value {
    margin-bottom: 4px;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.hero-stats__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

/* Features */
.hero-features {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: flex-start;
    gap: 42px;
    margin-top: 28px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature__icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hero-feature__text {
    color: #30343A;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

/* Hero adaptive fix */
.hero-section__content {
    width: 620px;
    max-width: 100%;
}

.hero-features {
    max-width: 850px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 28px;
}

.hero-feature {
    min-width: 0;
}

.hero-feature__text {
    min-width: 0;
}

/* До 1199 убираем абсолютное позиционирование цифр */
@media (max-width: 1199px) {
    .hero-section {
        min-height: 0;
        padding: 58px 0 34px;
    }

    .hero-section__inner {
        min-height: 0;
        display: block;
    }

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

    .hero-section h1 {
        max-width: 650px;
        font-size: 42px;
    }

    .hero-section__subtitle {
        width: 560px;
        max-width: 100%;
    }

    .hero-stats {
        position: relative;
        top: auto;
        right: auto;
        width: 650px;
        max-width: 100%;
        margin-top: 34px;
        padding: 22px 24px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .hero-stats__item {
        min-width: 0;
        padding: 0 22px;
    }

    .hero-stats__item:first-child {
        padding-left: 0;
    }

    .hero-stats__item:last-child {
        padding-right: 0;
    }

    .hero-stats__item + .hero-stats__item {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        border-left: 1px solid rgba(255, 255, 255, 0.12);
    }

    .hero-stats__value {
        font-size: 32px;
    }

    .hero-stats__text {
        font-size: 13px;
    }

    .hero-features {
        max-width: 950px;
        margin-top: 30px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .hero-feature {
        align-items: flex-start;
    }
}

/* Планшеты */
@media (max-width: 991px) {
    .hero-section {
        padding: 50px 0 32px;
    }

    .hero-section h1 {
        width: 620px;
        max-width: 100%;
        font-size: 36px;
    }

    .hero-section__subtitle {
        width: 520px;
        font-size: 16px;
    }

    .hero-stats {
        width: 100%;
    }

    .hero-features {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .hero-feature {
        min-height: 60px;
        padding: 12px 14px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }
}

/* Мобильная */
@media (max-width: 767px) {
    .hero-section {
        padding: 38px 0 28px;
    }

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

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

    .hero-section__buttons .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-stats {
        margin-top: 28px;
        padding: 18px 14px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-stats__item {
        padding: 0 10px;
    }

    .hero-stats__value {
        font-size: 25px;
    }

    .hero-stats__text {
        font-size: 11px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 22px;
    }

    .hero-feature {
        min-height: 54px;
    }
}
@media (max-width: 499px){
    .hero-section__buttons .btn{
        max-width: 100%;
    }
}
/* Совсем узкие */
@media (max-width: 420px) {
    .hero-section h1 {
        font-size: 27px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-stats__item {
        padding: 0;
    }

    .hero-stats__item + .hero-stats__item {
        margin-top: 14px;
        padding-top: 14px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
}

@media (max-width: 1199px) {
    .hero-section__picture img {
        object-position: center right;
    }

    .hero-section__overlay {
        background: linear-gradient(
            90deg,
            #fff 0%,
            rgba(255, 255, 255, 0.96) 38%,
            rgba(255, 255, 255, 0.78) 62%,
            rgba(255, 255, 255, 0.32) 100%
        );
    }
}

/* About section */
.about-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}


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

.about-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 560px;
    gap: 55px;
    align-items: stretch;
}

.about-section__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.about-section__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    color: #555B62;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.about-section__label:before {
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--accent-color1);
}

.about-section h2 {
    max-width: 720px;
    margin-bottom: 30px;
    color: #16191D;
    font-size: 54px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.045em;
}

.about-section h2 span {
    display: block;
    color: var(--accent-color1);
}

.about-section__text {
    max-width: 760px;
    color: #2D333A;
    font-size: 18px;
    line-height: 1.62;
    font-weight: 500;
}

.about-section__text p {
    margin-bottom: 18px;
}

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

.about-section__features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: auto;
    padding-top: 42px;
}

.about-feature {
    min-height: 250px;
    padding: 28px 24px 24px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(22, 25, 29, 0.08);
    border: 1px solid rgba(22, 25, 29, 0.04);
    display: flex;
    flex-direction: column;
}

.about-feature__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.about-feature__title {
    min-height: 44px;
    margin-bottom: 16px;
    color: #16191D;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
}

.about-feature__line {
    width: 36px;
    height: 2px;
    margin-bottom: 18px;
    background: var(--accent-color1);
}

.about-feature__text {
    color: #434A52;
    font-size: 15px;
    line-height: 1.48;
    font-weight: 500;
}

.about-section__image {
    position: relative;
    min-height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 50px rgba(22, 25, 29, 0.14);
}

.about-section__image:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.about-section__image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    object-position: center;
}
/* /. About section */

@media (max-width: 1329px) {
    .about-section__grid {
        grid-template-columns: minmax(0, 1fr) 500px;
        gap: 40px;
    }

    .about-section h2 {
        font-size: 46px;
    }

    .about-section__text {
        font-size: 17px;
    }

    .about-feature {
        padding: 24px 20px 22px;
    }

    .about-feature__title {
        font-size: 17px;
    }
}

@media (max-width: 1199px) {
    .about-section {
        padding: 70px 0;
    }

    .about-section__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-section__content {
        display: block;
    }

    .about-section h2 {
        max-width: 760px;
    }

    .about-section__text {
        max-width: 850px;
    }

    .about-section__features {
        margin-top: 34px;
        padding-top: 0;
    }

    .about-section__image {
        min-height: 420px;
    }

    .about-section__image img {
        min-height: 420px;
    }
}

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

    .about-section h2 {
        font-size: 38px;
    }

    .about-section__text {
        font-size: 16px;
    }

    .about-section__features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-feature {
        min-height: 0;
    }

    .about-feature__title {
        min-height: 0;
    }

    .about-section__image,
    .about-section__image img {
        min-height: 360px;
    }
}

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

    .about-section__label {
        margin-bottom: 18px;
        font-size: 13px;
        gap: 12px;
    }

    .about-section__label:before {
        width: 32px;
        height: 2px;
    }

    .about-section h2 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 1.12;
    }

    .about-section__text {
        font-size: 15px;
        line-height: 1.55;
    }

    .about-feature {
        padding: 22px 20px;
        border-radius: 10px;
    }

    .about-feature__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 16px;
    }

    .about-feature__icon img {
        width: 42px;
        height: 42px;
    }

    .about-feature__title {
        margin-bottom: 12px;
        font-size: 17px;
    }

    .about-feature__line {
        margin-bottom: 14px;
    }

    .about-feature__text {
        font-size: 14px;
    }

    .about-section__image {
        border-radius: 12px;
    }

    .about-section__image,
    .about-section__image img {
        min-height: 300px;
    }
}

/* Dark bg */
.dark-bg {
    background: #292B2F;
    color: #fff;
}
/* /. Dark bg */


/* Object types section */
.object-types-section {
    position: relative;
    overflow: hidden;
}

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

.object-types-section__head {
    max-width: 980px;
    margin-bottom: 44px;
}

.object-types-section h2 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.035em;
}

.object-types-section h2 span {
    color: var(--accent-color1);
}

.object-types-section__subtitle {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 500;
}

.object-types-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.object-card {
    position: relative;
    min-height: 385px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    color: #fff;
    background: #1F2125;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
    transition: transform 280ms ease-out, box-shadow 280ms ease-out;
}

.object-card:hover {
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
}

.object-card__image {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
}

.object-card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(22, 25, 29, 0.62) 0%, rgba(22, 25, 29, 0.26) 42%, rgba(22, 25, 29, 0.88) 100%);
}

.object-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

.object-card:hover .object-card__image img {
    transform: scale(1.06);
}

.object-card__content {
    position: relative;
    z-index: 3;
    min-height: 385px;
    display: flex;
    flex-direction: column;
    padding: 30px 26px 92px;
}

.object-card__label {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.object-card__title {
    max-width: 260px;
    color: #fff;
    font-size: 25px;
    line-height: 1.18;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.object-card__text {
    margin-top: auto;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.object-card__arrow {
    position: absolute;
    left: 26px;
    bottom: 26px;
    z-index: 4;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color1);
    color: #fff;
    transition: background 250ms ease-out, transform 250ms ease-out;
}

.object-card:hover .object-card__arrow {
    background: var(--accent-color1-hover);
    transform: translate(4px, -4px);
}
/* /. Object types section */

@media (max-width: 1329px) {
    .object-types-section h2 {
        font-size: 42px;
    }

    .object-types-grid {
        gap: 18px;
    }

    .object-card__content {
        padding: 26px 22px 84px;
    }

    .object-card__title {
        font-size: 22px;
    }

    .object-card__arrow {
        left: 22px;
        bottom: 22px;
    }
}

@media (max-width: 1199px) {
    .object-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .object-card {
        min-height: 340px;
    }

    .object-card__content {
        min-height: 340px;
    }
}

@media (max-width: 767px) {

    .object-types-section__head {
        margin-bottom: 30px;
    }

    .object-types-section h2 {
        margin-bottom: 16px;
        font-size: 30px;
        line-height: 1.2;
    }

    .object-types-section__subtitle {
        font-size: 15px;
        line-height: 1.5;
    }

    .object-types-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .object-card {
        min-height: 320px;
    }

    .object-card__content {
        min-height: 320px;
        padding: 24px 20px 78px;
    }

    .object-card__label {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .object-card__title {
        max-width: 100%;
        font-size: 21px;
    }

    .object-card__text {
        font-size: 14px;
    }

    .object-card__arrow {
        width: 44px;
        height: 44px;
        left: 20px;
        bottom: 20px;
    }
}

/* Engineering design section */

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

.engineering-design-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.engineering-design-section__content {
    padding-top: 8px;
}

.engineering-design-section__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: var(--accent-color1);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.engineering-design-section__label:before {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--accent-color1);
}

.engineering-design-section h2 {
    margin-bottom: 32px;
    color: #fff;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.engineering-design-section h2 span {
    display: block;
}

.engineering-design-section__text {
    max-width: 410px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
}

.engineering-design-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.engineering-design-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.engineering-design-card__image {
    position: relative;
    height: 305px;
    overflow: hidden;
    background: #24272D;
}

.engineering-design-card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 25, 29, 0.08) 0%, rgba(22, 25, 29, 0.28) 100%);
    pointer-events: none;
}

.engineering-design-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(1.04);
    transition: transform 520ms ease-out, filter 520ms ease-out;
}

.engineering-design-card:hover .engineering-design-card__image img {
    transform: scale(1.05);
    filter: saturate(0.95) contrast(1.06);
}

.engineering-design-card__body {
    position: relative;
    padding: 64px 34px 34px;
}

.engineering-design-card__icon {
    position: absolute;
    left: 34px;
    top: -36px;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--accent-color1);
    box-shadow: 0 14px 38px rgba(243, 92, 36, 0.28);
    padding: 15px;
}
.engineering-design-card__icon img{
    width: auto;
    height: auto;
}

.engineering-design-card__title {
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.engineering-design-card__title span {
    white-space: nowrap;
}

.engineering-design-card__line {
    width: 42px;
    height: 3px;
    margin-bottom: 24px;
    background: var(--accent-color1);
}

.engineering-design-card__text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
}
/* /. Engineering design section */

@media (max-width: 1329px) {
    .engineering-design-section__grid {
        grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
        gap: 44px;
    }

    .engineering-design-section h2 {
        font-size: 43px;
    }

    .engineering-design-section__text {
        font-size: 17px;
    }

    .engineering-design-card__image {
        height: 280px;
    }

    .engineering-design-card__body {
        padding: 58px 28px 30px;
    }

    .engineering-design-card__icon {
        left: 28px;
    }

    .engineering-design-card__title {
        font-size: 21px;
    }
}

@media (max-width: 1199px) {
    .engineering-design-section__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .engineering-design-section__content {
        padding-top: 0;
    }

    .engineering-design-section h2 {
        max-width: 820px;
    }

    .engineering-design-section__text {
        max-width: 760px;
    }

    .engineering-design-section__decor {
        width: 70%;
        height: 42%;
    }
}

@media (max-width: 991px) {
    .engineering-design-cards {
        gap: 20px;
    }

    .engineering-design-card__image {
        height: 240px;
    }

    .engineering-design-card__body {
        padding: 52px 22px 26px;
    }

    .engineering-design-card__icon {
        left: 22px;
        top: -32px;
        width: 64px;
        height: 64px;
    }

    .engineering-design-card__icon svg {
        width: 29px;
        height: 29px;
    }

    .engineering-design-card__title {
        font-size: 19px;
    }

    .engineering-design-card__text {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .engineering-design-section__label {
        margin-bottom: 20px;
        font-size: 13px;
        gap: 12px;
    }

    .engineering-design-section__label:before {
        width: 32px;
        height: 2px;
    }

    .engineering-design-section h2 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 1.18;
    }

    .engineering-design-section__text {
        font-size: 15px;
        line-height: 1.58;
    }

    .engineering-design-cards {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .engineering-design-card {
        border-radius: 12px;
    }

    .engineering-design-card__image {
        height: 230px;
    }

    .engineering-design-card__title {
        font-size: 18px;
    }

    .engineering-design-card__text {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Work standards section */
.work-standards-section__grid {
    display: grid;
    grid-template-columns: 350px minmax(0, 1fr);
    gap: 58px;
    align-items: start;
}

.work-standards-section__aside {
    min-width: 0;
}

.work-standards-section__sticky {
    position: sticky;
    top: 110px;
}

.work-standards-section h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 34px;
    line-height: 1.18;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.work-standards-section h2 span {
    display: block;
}

.work-standards-section__subtitle {
    max-width: 310px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
}

.work-standards-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.work-standard-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46%;
    min-height: 245px;
    overflow: hidden;
    border-radius: 12px;
    background: #F4F5F6;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.work-standard-card__content {
    min-width: 0;
    padding: 28px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.work-standard-card__num {
    margin-bottom: 28px;
    color: var(--accent-color1);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.work-standard-card__title {
    margin-bottom: 16px;
    color: #16191D;
    font-size: 17px;
    line-height: 1.28;
    font-weight: 800;
    text-transform: uppercase;
}

.work-standard-card__text {
    color: #69717C;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.work-standard-card__image {
    position: relative;
    min-height: 245px;
    overflow: hidden;
    background: #DADDE1;
}

.work-standard-card__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(244, 245, 246, 0.08) 0%, rgba(22, 25, 29, 0.06) 100%);
    pointer-events: none;
}

.work-standard-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease-out;
}

.work-standard-card:hover .work-standard-card__image img {
    transform: scale(1.05);
}

@media (max-width: 1199px) {
    .work-standards-section__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .work-standards-section__sticky {
        position: static;
    }

    .work-standards-section h2 {
        max-width: 650px;
    }

    .work-standards-section__subtitle {
        max-width: 720px;
    }
}

@media (max-width: 991px) {
    .work-standard-card {
        grid-template-columns: 1fr;
    }

    .work-standard-card__content {
        padding: 26px 24px 24px;
    }

    .work-standard-card__num {
        margin-bottom: 22px;
    }

    .work-standard-card__image {
        min-height: 260px;
        order: -1;
    }
}

@media (max-width: 767px) {
    .work-standards-section h2 {
        font-size: 28px;
    }

    .work-standards-section__subtitle {
        font-size: 15px;
    }

    .work-standards-list {
        gap: 18px;
    }

    .work-standard-card {
        border-radius: 10px;
    }

    .work-standard-card__content {
        padding: 22px 20px 22px;
    }

    .work-standard-card__num {
        margin-bottom: 18px;
        font-size: 22px;
    }

    .work-standard-card__title {
        font-size: 15px;
    }

    .work-standard-card__text {
        font-size: 14px;
        line-height: 1.48;
    }

    .work-standard-card__image {
        min-height: 210px;
    }
}
/* /. Work standards section */

/* Work standards align with previous dark section */
.work-standards-section__grid {
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.work-standards-section__sticky {
    top: 110px;
}

.work-standards-section__label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: var(--accent-color1);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.work-standards-section__label:before {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--accent-color1);
}

.work-standards-section h2 {
    max-width: 420px;
    margin-bottom: 32px;
    color: #fff;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.work-standards-section h2 span {
    display: block;
}

.work-standards-section__subtitle {
    max-width: 410px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.7;
    font-weight: 500;
}

.work-standards-list {
    width: 100%;
}

@media (max-width: 1329px) {
    .work-standards-section__grid {
        grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
        gap: 44px;
    }

    .work-standards-section h2 {
        font-size: 43px;
    }

    .work-standards-section__subtitle {
        font-size: 17px;
    }
}

@media (max-width: 1199px) {
    .work-standards-section__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .work-standards-section__sticky {
        position: static;
    }

    .work-standards-section h2 {
        max-width: 820px;
    }

    .work-standards-section__subtitle {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .work-standards-section__label {
        margin-bottom: 20px;
        font-size: 13px;
        gap: 12px;
    }

    .work-standards-section__label:before {
        width: 32px;
        height: 2px;
    }

    .work-standards-section h2 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 1.18;
    }

    .work-standards-section__subtitle {
        font-size: 15px;
        line-height: 1.58;
    }
}
/* /. Work standards align with previous dark section */

/* Work standards sticky real fix */
.work-standards-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
    gap: 70px;
    align-items: start;
}

.work-standards-section__aside {
    min-width: 0;
    position: sticky;
    top: 110px;
    align-self: start;
}

.work-standards-section__sticky {
    position: static !important;
    top: auto !important;
}

@media (max-width: 1329px) {
    .work-standards-section__grid {
        grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
        gap: 44px;
    }
}

@media (max-width: 1199px) {
    .work-standards-section__grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .work-standards-section__aside {
        position: static;
    }
}
/* /. Work standards sticky real fix */


/* Common section label */
.section-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 26px;
    color: var(--accent-color1);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-label:before {
    content: "";
    width: 42px;
    height: 3px;
    background: var(--accent-color1);
}
/* /. Common section label */


/* Work process section */
.work-process-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}

.work-process-section h2 {
    max-width: 760px;
    margin-bottom: 32px;
    color: #16191D;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.work-process-section__subtitle {
    max-width: 780px;
    color: #4A515A;
    font-size: 19px;
    line-height: 1.65;
    font-weight: 500;
}

.work-process-section__arrows {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
}

.work-process-section__arrow {
    position: relative;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(243, 92, 36, 0.28);
    border-radius: 50%;
    background: #fff;
    color: var(--accent-color1);
    box-shadow: 0 12px 28px rgba(22, 25, 29, 0.08);
    transition: background 250ms ease-out, color 250ms ease-out, transform 250ms ease-out, box-shadow 250ms ease-out;
}

.work-process-section__arrow:hover {
    background: var(--accent-color1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(243, 92, 36, 0.22);
}

.work-process-section__arrow:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 11px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.work-process-section__arrow--prev:before {
    transform: translate(-40%, -50%) rotate(45deg);
}

.work-process-section__arrow--next:before {
    transform: translate(-60%, -50%) rotate(225deg);
}

.work-process-section__slider {
    overflow: hidden;
}

.work-process-section__slider .slick-list {
    margin: 0 -12px;
    overflow: visible;
}

.work-process-section__slider .slick-track {
    display: flex;
    align-items: stretch;
}

.work-process-section__slider .slick-slide {
    height: auto;
    padding: 0 12px;
}

.work-process-section__slider .slick-slide > div {
    height: 100%;
}

.work-process-card {
    height: 100%;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    border: 1px solid rgba(22, 25, 29, 0.06);
    box-shadow: 0 16px 42px rgba(22, 25, 29, 0.08);
    transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}

.work-process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 92, 36, 0.24);
    box-shadow: 0 22px 52px rgba(22, 25, 29, 0.12);
}

.work-process-card__img {
    position: relative;
    height: 205px;
    background: #DADDE1;
    overflow: hidden;
}

.work-process-card__img:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(22, 25, 29, 0.02) 35%, rgba(22, 25, 29, 0.24) 100%);
    pointer-events: none;
}

.work-process-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 480ms ease-out;
}

.work-process-card:hover .work-process-card__img img {
    transform: scale(1.05);
}

.work-process-card__content {
    position: relative;
    min-height: 245px;
    padding: 34px 24px 26px;
}

.work-process-card__num {
    position: absolute;
    top: -24px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--accent-color1);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 26px rgba(243, 92, 36, 0.24);
}

.work-process-card__title {
    margin-bottom: 14px;
    color: #16191D;
    font-size: 18px;
    line-height: 1.28;
    font-weight: 800;
    text-transform: uppercase;
}

.work-process-card__text {
    color: #5B646E;
    font-size: 14px;
    line-height: 1.58;
    font-weight: 500;
}

.work-process-section__slider .slick-dots {
    margin-top: 30px;
}

.work-process-section__slider .slick-dots li.slick-active {
    background: var(--accent-color1);
}
/* /. Work process section */

@media (max-width: 1329px) {
    .work-process-section h2 {
        font-size: 43px;
    }

    .work-process-section__subtitle {
        font-size: 17px;
    }

    .work-process-card__img {
        height: 185px;
    }

    .work-process-card__content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .work-process-card__title {
        font-size: 17px;
    }
}

@media (max-width: 991px) {
    .work-process-section__head {
        display: block;
        margin-bottom: 30px;
    }

    .work-process-section__subtitle {
        font-size: 15px;
        line-height: 1.55;
    }

    .work-process-section__arrows {
        display: none;
    }

    .work-process-card__content {
        min-height: 230px;
    }
}

@media (max-width: 767px) {
    .section-label {
        margin-bottom: 20px;
        font-size: 13px;
        gap: 12px;
    }

    .section-label:before {
        width: 32px;
        height: 2px;
    }

    .work-process-section h2 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 1.18;
    }

    .work-process-card__img {
        height: 190px;
    }

    .work-process-card__content {
        min-height: 0;
        padding: 32px 20px 24px;
    }

    .work-process-card__title {
        font-size: 16px;
    }

    .work-process-card__text {
        font-size: 13px;
        line-height: 1.52;
    }
}


/* Project request section */
.project-request {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 610px;
    gap: 70px;
    padding: 58px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 26px 80px rgba(22, 25, 29, 0.08);
}

.project-request__content {
    min-width: 0;
    padding-top: 10px;
}

.project-request h2 {
    max-width: 620px;
    margin-bottom: 26px;
    color: #16191D;
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.project-request h2 span {
    display: block;
}

.project-request__text {
    max-width: 520px;
    margin-bottom: 28px;
    color: #4A515A;
    font-size: 19px;
    line-height: 1.55;
    font-weight: 500;
}

.project-request__contacts {
    max-width: 560px;
    margin-bottom: 24px;
}

.project-request-phone {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    padding: 18px 22px;
    border: 1px solid rgba(22, 25, 29, 0.1);
    border-radius: 12px;
    background: #fff;
    color: #16191D;
    transition: border-color 250ms ease-out, box-shadow 250ms ease-out, transform 250ms ease-out;
}

.project-request-phone:hover {
    color: #16191D;
    border-color: rgba(243, 92, 36, 0.26);
    box-shadow: 0 14px 36px rgba(22, 25, 29, 0.08);
    transform: translateY(-2px);
}

.project-request-phone__icon {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color1);
    background: rgba(243, 92, 36, 0.1);
}

.project-request-phone__body {
    display: block;
    min-width: 0;
}

.project-request-phone__label {
    display: block;
    margin-bottom: 4px;
    color: #737B85;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.project-request-phone__value {
    display: block;
    margin-bottom: 4px;
    color: #16191D;
    font-size: 27px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.project-request-phone__note {
    display: block;
    color: #737B85;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
}

.project-request-messengers {
    padding: 18px 22px 22px;
    border: 1px solid rgba(22, 25, 29, 0.1);
    border-radius: 12px;
    background: #fff;
}

.project-request-messengers__label {
    margin-bottom: 14px;
    color: #737B85;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 700;
}

.project-request-messengers__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.project-request-messenger {
    min-height: 52px;
    padding: 0 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    transition: transform 250ms ease-out, filter 250ms ease-out;
}

.project-request-messenger:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(110%);
}

.project-request__note {
    max-width: 560px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    color: #4A515A;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 500;
}

.project-request__note-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(243, 92, 36, 0.24);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color1);
    background: #fff;
}

.project-request__benefits {
    max-width: 620px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(22, 25, 29, 0.08);
}

.project-request-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #303740;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 800;
}

.project-request-benefit span {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(243, 92, 36, 0.22);
    border-radius: 8px;
    position: relative;
    background: #fff;
}

.project-request-benefit span:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 11px;
    height: 6px;
    border-left: 2px solid var(--accent-color1);
    border-bottom: 2px solid var(--accent-color1);
    transform: translate(-50%, -62%) rotate(-45deg);
}

/* Form card */
.project-request-form {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: 16px;
    background: #F4F5F6;
    box-shadow: 0 18px 52px rgba(22, 25, 29, 0.12);
}

.project-request-form__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.project-request-form__bg:after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(244, 245, 246, 0.98) 0%, rgba(244, 245, 246, 0.92) 48%, rgba(244, 245, 246, 0.58) 100%),
        linear-gradient(180deg, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0.2) 100%);
    pointer-events: none;
}

.project-request-form__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.project-request-form__inner {
    position: relative;
    z-index: 2;
    padding: 56px 56px 44px;
}

.project-request-form__title {
    max-width: 460px;
    margin-bottom: 20px;
    color: #16191D;
    font-size: 27px;
    line-height: 1.18;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.project-request-form__line {
    width: 42px;
    height: 3px;
    margin-bottom: 34px;
    background: var(--accent-color1);
}

.project-request-form .form-group {
    margin-bottom: 16px;
}

.project-request-form .form-control {
    width: 100%;
    height: 64px;
    margin-bottom: 0;
    padding: 0 22px;
    border: 1px solid rgba(22, 25, 29, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.88);
    color: #16191D;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 10px 28px rgba(22, 25, 29, 0.04);
}

.project-request-form textarea.form-control {
    min-height: 132px;
    padding-top: 20px;
}

.project-request-form .form-control::-webkit-input-placeholder {
    color: #717985;
}

.project-request-form .form-control::-moz-placeholder {
    color: #717985;
}

.project-request-form__btn {
    width: 100%;
    height: 68px;
    margin-top: 14px;
    margin-bottom: 26px;
    border-radius: 8px;
    font-size: 16px;
    text-transform: uppercase;
    gap: 14px;
}

.project-request-form__btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.project-request-form__agreement {
    margin-bottom: 0;
    color: #4A515A;
    font-size: 14px;
    line-height: 1.45;
}

.project-request-form__agreement label {
    padding-left: 30px;
}

.project-request-form__agreement input + label:before {
    top: 2px;
    background-color: #fff;
}

.project-request-form__agreement a {
    color: var(--accent-color1);
    font-weight: 700;
}

.project-request-form__agreement a:hover {
    color: var(--accent-color1-hover);
}
/* /. Project request section */

@media (max-width: 1329px) {
    .project-request {
        grid-template-columns: minmax(0, 1fr) 550px;
        gap: 44px;
        padding: 44px;
    }

    .project-request h2 {
        font-size: 43px;
    }

    .project-request__text {
        font-size: 17px;
    }

    .project-request-form__inner {
        padding: 44px 42px 38px;
    }
}

@media (max-width: 1199px) {
    .project-request {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .project-request h2 {
        max-width: 820px;
    }

    .project-request__text,
    .project-request__contacts,
    .project-request__note,
    .project-request__benefits {
        max-width: 100%;
    }

    .project-request-form {
        min-height: 0;
    }
}

@media (max-width: 767px) {
    .project-request {
        padding: 24px 18px;
        border-radius: 14px;
    }

    .project-request h2 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.18;
    }

    .project-request__text {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .project-request-phone {
        min-height: 0;
        padding: 16px;
        gap: 14px;
    }

    .project-request-phone__icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
    }

    .project-request-phone__value {
        font-size: 21px;
    }

    .project-request-messengers {
        padding: 16px;
    }

    .project-request-messengers__items {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .project-request-messenger {
        min-height: 48px;
    }

    .project-request__note {
        align-items: flex-start;
        font-size: 14px;
    }

    .project-request__benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .project-request-form {
        border-radius: 12px;
    }

    .project-request-form__inner {
        padding: 28px 18px 24px;
    }

    .project-request-form__title {
        font-size: 22px;
    }

    .project-request-form .form-control {
        height: 58px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .project-request-form textarea.form-control {
        min-height: 118px;
    }

    .project-request-form__btn {
        height: 58px;
        font-size: 13px;
    }

    .project-request-form__agreement {
        font-size: 12px;
    }
}


/* Footer */
.footer {
    flex: 0 0 auto;
    padding: 56px 0 28px;
    background: #16191D;
    color: #fff;
}

.footer__top {
    display: grid;
    grid-template-columns: 330px 160px minmax(0, 1fr) 260px;
    gap: 46px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #fff;
}

.footer-logo:hover {
    color: #fff;
}

.footer-logo__icon {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
}

.footer-logo__icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.footer-logo__text {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 17px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.015em;
}

.footer__description {
    max-width: 290px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.footer-messengers {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-messenger {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform 250ms ease-out, filter 250ms ease-out;
}

.footer-messenger:hover {
    color: #fff;
    transform: translateY(-2px);
    filter: brightness(110%);
}

.footer__title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.footer-menu a {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
}

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

.footer-contacts__phone {
    display: inline-block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.025em;
}

.footer-contacts__phone:hover {
    color: var(--accent-color1);
}

.footer-contacts__item {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.45;
    font-weight: 500;
}

.footer__btn {
    width: 100%;
    max-width: 320px;
    height: 46px;
    margin-top: 12px;
    padding: 0 18px;
    font-size: 13px;
    text-transform: uppercase;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
}

.footer__copy {
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    line-height: 1.4;
}

.footer-docs {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-docs a {
    color: rgba(255, 255, 255, 0.46);
    font-size: 13px;
    line-height: 1.4;
}

.footer-docs a:hover {
    color: var(--accent-color1);
}
/* /. Footer */

@media (max-width: 1199px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 34px 44px;
    }

    .footer__brand {
        grid-column: span 2;
    }

    .footer__description {
        max-width: 520px;
    }
    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 18px;
    }

    .footer-menu li {
        margin: 0;
        line-height: 0;
    }

    .footer-menu a {
        display: inline-block;
    }
    .footer-menu li + li{
        margin-top: 0;
        
    }
    .footer-menu a{
        margin-bottom: 8px;
    }
    .footer__top {
        grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
        gap: 34px 44px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }

    .footer__col--services {
        grid-column: 2 / 3;
    }

    .footer__col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 42px 0 24px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .footer-logo__icon {
        flex-basis: 50px;
        width: 50px;
        height: 50px;
    }

    .footer-logo__icon img {
        width: 50px;
        height: 50px;
    }

    .footer-logo__text {
        font-size: 15px;
    }

    .footer__description {
        max-width: 100%;
    }

    .footer-contacts__phone {
        font-size: 20px;
    }

    .footer__bottom {
        display: block;
        padding-top: 22px;
    }

    .footer__copy {
        margin-bottom: 16px;
    }

    .footer-docs {
        display: block;
    }

    .footer-docs a {
        display: block;
    }

    .footer-docs a + a {
        margin-top: 10px;
    }
    .footer__top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer__brand,
    .footer__col,
    .footer__col--services {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 529px) {
    .footer-menu {
        grid-template-columns: 1fr;
    }
    
    .footer__col--accordion .footer__title {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        padding-right: 34px;
        user-select: none;
        margin-bottom: 0;    
    }

    .footer__col--accordion .footer__title::after {
        content: "+";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 1;
        font-weight: 400;
    }

    .footer__col--accordion.is-open .footer__title::after {
        content: "−";
    }

    .footer__col--accordion .footer-menu {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 14px;
    }
}

@media(max-width: 480px){
    .footer__btn{
        max-width: 100%;
    }
}


/* Quiz section */
.quiz-section__head {
    max-width: 920px;
    margin-bottom: 44px;
}

.quiz-section h2 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 50px;
    line-height: 1.12;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.quiz-section__subtitle {
    max-width: 820px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.6;
    font-weight: 500;
}

.engineering-quiz {
    background: #fff;
    color: #16191D;
}

.engineering-quiz__top {
    min-height: 108px;
    padding: 30px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #ECECEC;
}

.engineering-quiz__note {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #16191D;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}

.engineering-quiz__note span {
    color: var(--accent-color1);
    flex: 0 0 auto;
}

.engineering-quiz__counter {
    color: #16191D;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    white-space: nowrap;
}

.engineering-quiz__progress {
    height: 5px;
    background: #D1D1D1;
}

.engineering-quiz__progress-line {
    width: 20%;
    height: 100%;
    background: var(--accent-color1);
    transition: width 300ms ease-out;
}

.engineering-quiz__body {
    min-height: 350px;
    padding: 46px 52px 28px;
}

.engineering-quiz__step {
    display: none;
}

.engineering-quiz__step.is-active {
    display: block;
}

.engineering-quiz__question {
    margin-bottom: 26px;
    color: #16191D;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 500;
}

/* Image options */
.quiz-options--images {
    display: grid;
    grid-template-columns: repeat(3, 260px);
    gap: 22px;
    align-items: start;
}

.quiz-option {
    display: block;
    cursor: pointer;
}

.quiz-option input,
.quiz-list-option input {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}

.quiz-option__card {
    position: relative;
    display: block;
    border-radius: 4px;
    color: #16191D;
}

.quiz-option__image {
    display: block;
    height: 190px;
    margin-bottom: 12px;
    border-radius: 4px;
    overflow: hidden;
    background: #E5E5E5;
    border: 2px solid transparent;
    transition: border-color 200ms ease-out, box-shadow 200ms ease-out;
}

.quiz-option__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quiz-option__title {
    display: block;
    color: #353A40;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.quiz-option__check {
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #000;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 200ms ease-out, transform 200ms ease-out;
}

.quiz-option__check:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 7px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: translate(-50%, -65%) rotate(-45deg);
}

.quiz-option input:checked + .quiz-option__card .quiz-option__check {
    opacity: 1;
    transform: scale(1);
}

.quiz-option input:checked + .quiz-option__card .quiz-option__image {
    border-color: var(--accent-color1);
    box-shadow: 0 14px 30px rgba(243, 92, 36, 0.2);
}

/* Range */
.quiz-range {
    position: relative;
    padding-top: 58px;
}

.quiz-range__value {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 42px;
    padding: 0 14px;
    border-radius: 6px;
    background: #fff;
    color: #16191D;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    transform: translateX(-50%);
    pointer-events: none;
}

.quiz-range__value:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 10px;
    height: 10px;
    background: #fff;
    transform: translateX(-50%) rotate(45deg);
}

.quiz-range__input {
    width: 100%;
    height: 22px;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.quiz-range__input::-webkit-slider-runnable-track {
    height: 3px;
    background: linear-gradient(
        90deg,
        #000 0%,
        #000 var(--range-progress, 0%),
        #E6E6E6 var(--range-progress, 0%),
        #E6E6E6 100%
    );
}

.quiz-range__input::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -9px;
    border-radius: 50%;
    background: #000;
    border: none;
}

.quiz-range__input::-moz-range-track {
    height: 3px;
    background: #E6E6E6;
}

.quiz-range__input::-moz-range-progress {
    height: 3px;
    background: #000;
}

.quiz-range__input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000;
    border: none;
}

@media (max-width: 767px) {
    .quiz-range {
        padding-top: 54px;
    }

    .quiz-range__value {
        min-width: 52px;
        height: 38px;
        padding: 0 12px;
        font-size: 15px;
    }
}

.quiz-range__input {
    width: 100%;
    height: 22px;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

.quiz-range__input::-webkit-slider-runnable-track {
    height: 3px;
    background: #E6E6E6;
}

.quiz-range__input::-webkit-slider-thumb {
    appearance: none;
    width: 22px;
    height: 22px;
    margin-top: -9px;
    border-radius: 50%;
    background: #000;
    border: none;
}

.quiz-range__input::-moz-range-track {
    height: 3px;
    background: #E6E6E6;
}

.quiz-range__input::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000;
    border: none;
}

.quiz-range__limits {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #353A40;
    font-size: 16px;
    line-height: 1.2;
}

/* List radios */
.quiz-options--list {
    display: grid;
    gap: 14px;
    max-width: 440px;
}

.quiz-list-option {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #353A40;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 500;
}

.quiz-list-option span {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 34px;
}

.quiz-list-option span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 22px;
    height: 22px;
    border: 2px solid #777;
    border-radius: 50%;
    transform: translateY(-50%);
    background: #fff;
}

.quiz-list-option span:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #000;
    transform: translateY(-50%) scale(0);
    transition: transform 180ms ease-out;
}

.quiz-list-option input:checked + span:before {
    border-color: #000;
}

.quiz-list-option input:checked + span:after {
    transform: translateY(-50%) scale(1);
}

/* Text options */
.quiz-options--text {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 780px;
}

.quiz-option--text .quiz-option__card {
    min-height: 82px;
    padding: 24px 22px;
    border: 1px solid #E4E4E4;
    border-radius: 8px;
    background: #F7F7F7;
    transition: border-color 200ms ease-out, background 200ms ease-out, box-shadow 200ms ease-out;
}

.quiz-option--text .quiz-option__title {
    font-weight: 700;
}

.quiz-option--text input:checked + .quiz-option__card {
    border-color: var(--accent-color1);
    background: #fff;
    box-shadow: 0 14px 30px rgba(243, 92, 36, 0.13);
}

/* Final */


.quiz-final__label {
    margin-bottom: 16px;
    color: var(--accent-color1);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.quiz-final__text {
    color: #3F464E;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 50px;
}

.quiz-final__text strong {
    color: #16191D;
    font-weight: 800;
}

.quiz-final__form .form-control {
    height: 58px;
    margin-bottom: 16px;
    border: none;
    border-bottom: 1px solid #B8B8B8;
    border-radius: 0;
    padding: 0;
    color: #16191D;
    background: transparent;
    font-size: 16px;
}

.quiz-final__agreement {
    margin-top: 26px;
    margin-bottom: 0;
}

/* Nav */
.engineering-quiz__error {
    min-height: 22px;
    padding: 0 52px;
    color: var(--accent-color1);
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.engineering-quiz__nav {
    min-height: 112px;
    padding: 20px 52px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.engineering-quiz__back {
    color: #16191D;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    transition: color 200ms ease-out;
}

.engineering-quiz__back:hover {
    color: var(--accent-color1);
}

.engineering-quiz__next,
.engineering-quiz__submit {
    min-width: 140px;
    height: 54px;
    border-radius: 6px;
    font-size: 15px;
}

.engineering-quiz__next,
.engineering-quiz__submit {
    margin-left: auto;
}

.engineering-quiz__submit {
    display: none;
}

.engineering-quiz.is-final .engineering-quiz__next {
    display: none;
}

.engineering-quiz.is-final .engineering-quiz__submit {
    display: inline-flex;
}
/* /. Quiz section */

@media (max-width: 1329px) {
    .quiz-section h2 {
        font-size: 43px;
    }

    .quiz-section__subtitle {
        font-size: 17px;
    }

    .engineering-quiz {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .engineering-quiz__top {
        padding: 24px 28px;
    }

    .engineering-quiz__body {
        min-height: 0;
        padding: 34px 28px 24px;
    }

    .engineering-quiz__error {
        padding: 0 28px;
    }

    .engineering-quiz__nav {
        padding: 20px 28px 34px;
    }

    .quiz-options--images {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .quiz-options--text {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quiz-final {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 767px) {
    .quiz-section h2 {
        font-size: 30px;
        line-height: 1.18;
    }

    .quiz-section__subtitle {
        font-size: 15px;
    }

    .engineering-quiz__top {
        min-height: 0;
        padding: 20px 18px;
        align-items: flex-start;
    }

    .engineering-quiz__note {
        font-size: 13px;
    }

    .engineering-quiz__body {
        padding: 28px 18px 18px;
    }

    .engineering-quiz__question {
        margin-bottom: 20px;
        font-size: 23px;
    }

    .quiz-options--images {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .quiz-option__image {
        height: 190px;
    }

    .quiz-options--list {
        gap: 13px;
    }

    .quiz-options--text {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .quiz-range__value {
        margin-left: 30px;
    }

    .quiz-final__text {
        font-size: 15px;
    }

    .engineering-quiz__error {
        padding: 0 18px;
    }

    .engineering-quiz__nav {
        min-height: 0;
        padding: 18px;
    }

    .engineering-quiz__next,
    .engineering-quiz__submit {
        min-width: 128px;
        height: 50px;
        padding: 0 18px;
        font-size: 13px;
    }
}

@media(max-width: 599px){
    .quiz-options--images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 420px) {
    .engineering-quiz__nav {
        align-items: stretch;
    }

    .engineering-quiz__back {
        align-self: center;
    }

    .engineering-quiz__next,
    .engineering-quiz__submit {
        min-width: 118px;
    }
}

@media(max-width: 359px){
    .quiz-options--images {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 16px;
    }
}


/* contacts page */
.contacts-page-section {
    position: relative;
}

.contacts-page {
    display: grid;
    grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
    gap: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 30px 70px rgba(31, 41, 47, 0.08);
    overflow: hidden;
}

.contacts-page__content {
    padding: 60px 50px;
    position: relative;
    z-index: 2;
}

.contacts-page__content h1 {
    margin-bottom: 26px;
}

.contacts-page__content h1 span {
    display: block;
    color: var(--accent-color);
}

.contacts-page__text {
    max-width: 440px;
    margin-bottom: 38px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.contacts-page__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contacts-page-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(31, 41, 47, 0.09);
    border-radius: 18px;
    color: inherit;
    text-decoration: none;
    background: #fff;
    transition: 0.25s ease;
    
}

a.contacts-page-item:hover {
    border-color: rgba(242, 81, 34, 0.35);
    box-shadow: 0 15px 35px rgba(31, 41, 47, 0.08);
    transform: translateY(-2px);
}

.contacts-page-item__icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 50%;
    background: rgba(242, 81, 34, 0.1);
    color: var(--accent-color1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contacts-page-item__body {
    display: block;
    min-width: 0;
}

.contacts-page-item__label {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
    line-height: 1.3;
    color: #7b8288;
}

.contacts-page-item__value {
    display: block;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
    color: #151a20;
}

.contacts-page-item__note {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.4;
    color: #7b8288;
}

.contacts-page-messengers {
    margin-top: 28px;
    padding: 22px;
    border-radius: 18px;
    background: #f7f8fa;
}

.contacts-page-messengers__label {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: #151a20;
}

.contacts-page-messengers {
    margin-top: 28px;
    padding: 22px;
    border-radius: 18px;
    background: #f7f8fa;
}

.contacts-page-messengers__label {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: #151a20;
}

.contacts-page-messengers .footer-messengers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contacts-page-messengers .footer-messenger {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    border-radius: 16px;
}

.contacts-page-messengers .footer-messenger:hover {
    transform: translateY(-2px);
}

@media (max-width: 767px) {
    .contacts-page-messengers {
        padding: 18px;
    }

    .contacts-page-messengers .footer-messenger {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
    }
}
.contacts-page__map-wrapper {
    position: relative;
    min-height: 100%;
    background: #eef1f4;
}

.contacts-page__map {
    height: 100%;
    min-height: 680px;
}

.contacts-page__map > ymaps,
.contacts-page__map > div {
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 1249px) {
    .contacts-page {
        grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    }

    .contacts-page__content {
        padding: 60px 44px;
    }

    .contacts-page__map {
        min-height: 640px;
    }
}

@media (max-width: 991px) {
    .contacts-page {
        grid-template-columns: 1fr;
    }

    .contacts-page__content {
        padding: 44px 34px;
    }

    .contacts-page__text {
        max-width: none;
        font-size: 16px;
    }

    .contacts-page__map {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .contacts-page {
        border-radius: 22px;
    }

    .contacts-page__content {
        padding: 34px 20px;
    }

    .contacts-page__content h1 {
        margin-bottom: 20px;
    }

    .contacts-page__text {
        margin-bottom: 28px;
        font-size: 15px;
    }

    .contacts-page-item {
        gap: 14px;
        padding: 16px;
        border-radius: 16px;
    }

    .contacts-page-item__icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .contacts-page-item__value {
        font-size: 17px;
    }

    .contacts-page-messengers {
        padding: 18px;
    }

    .contacts-page-messenger {
        width: 100%;
    }

    .contacts-page__map {
        min-height: 320px;
    }
}


/* contacts page adaptive fix */
.contacts-page,
.contacts-page * {
    box-sizing: border-box;
}

.contacts-page {
    max-width: 100%;
    overflow: hidden;
}

.contacts-page__content,
.contacts-page__map-wrapper,
.contacts-page-item,
.contacts-page-item__body,
.contacts-page-messengers {
    min-width: 0;
}

.contacts-page-item {
    width: 100%;
}

.contacts-page-item__value,
.contacts-page-item__note,
.contacts-page__text {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
}

.contacts-page__map-wrapper {
    overflow: hidden;
}

.contacts-page__map,
.contacts-page__map > div,
.contacts-page__map > ymaps {
    max-width: 100% !important;
}

/* раньше 991 может быть поздновато, поэтому складываем блок чуть раньше */
@media (max-width: 1100px) {
    .contacts-page {
        grid-template-columns: 1fr;
    }

    .contacts-page__content {
        width: 100%;
    }

    .contacts-page__map-wrapper {
        width: 100%;
    }

    .contacts-page__map {
        min-height: 420px;
        height: 420px;
    }
}

@media (max-width: 767px) {
    .contacts-page__content {
        padding: 34px 20px;
    }

    .contacts-page-item {
        align-items: flex-start;
    }

    .contacts-page-item__value {
        font-size: 17px;
        line-height: 1.35;
    }

    .contacts-page-messengers .footer-messengers {
        display: flex;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .contacts-page__content {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contacts-page-item {
        padding: 14px;
        gap: 12px;
    }

    .contacts-page-item__icon {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
    }

    .contacts-page-item__value {
        font-size: 16px;
    }
}
/* /. contacts page adaptive fix */
/* /. contacts page */


/* blog */
.blog-section__head {
    max-width: 820px;
    margin-bottom: 45px;
}

.blog-section__head h1 {
    margin-bottom: 22px;
}

.blog-section__subtitle {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-item {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(31, 41, 47, 0.07);
    transition: 0.25s ease;
}

.blog-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(31, 41, 47, 0.12);
}

.blog-item__image {
    display: block;
    aspect-ratio: 520 / 340;
    overflow: hidden;
    background: #e9edf0;
}

.blog-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.blog-item:hover .blog-item__image img {
    transform: scale(1.04);
}

.blog-item__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}

.blog-item__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.3;
    color: #858b91;
}

.blog-item__meta span {
    min-height: 30px;
    padding: 0 12px;
    border-radius: 99px;
    background: rgba(242, 81, 34, 0.1);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-item__title {
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.blog-item__title a {
    color: #151a20;
    text-decoration: none;
}

.blog-item__title a:hover {
    color: var(--accent-color);
}

.blog-item__text {
    margin-bottom: 24px;
    color: #5d646b;
    font-size: 16px;
    line-height: 1.6;
}

.blog-item__more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.blog-item__more span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.blog-item__more:hover span {
    transform: translate(3px, -3px);
}

@media (max-width: 1249px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .blog-section__head {
        margin-bottom: 32px;
    }

    .blog-section__subtitle {
        font-size: 16px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .blog-item {
        border-radius: 22px;
    }

    .blog-item__body {
        padding: 22px;
    }

    .blog-item__title {
        font-size: 21px;
    }
}
/* /. blog */

/* blog page*/
.news-page-columns{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.news-page-columns .main-column{
    width: calc(100% - 400px);
}
.news-page-columns .sidebar{
    width: 370px;
}
.page-img{
    margin-bottom: 30px;
}
.page-img img{
    width: 100%;
    border-radius: 9px;
}
.page-date{
    color: #777777;
    margin-bottom: 10px;
    font-size: 14px;
}
.sidebar-widget{
    margin-bottom: 40px;
}
.sidebar-widget.last{
    margin-bottom: 0;
}
.sidebar-widget.popular-posts{
    margin-top: -4px;
    position: sticky;
    top: 100px;
}
.fix-panel-true + .main-content .sidebar-widget.popular-posts{
    top: 120px;
}
.sidebar-widget-title{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
}
.sidebar .popular-posts .item{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.sidebar .popular-posts .item-img{
    width: 150px;
}
.sidebar .popular-posts .item-img img{
    border-radius: 5px;
}
.sidebar .popular-posts .item-content{
    width: calc(100% - 150px);
    padding-left: 20px;
}
.sidebar .popular-posts .item-date{
    color: #777777;
    margin-bottom: 7px;
    font-size: 13px;
}
.sidebar .popular-posts .item-title{
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    transition: all ease-out 300ms;
}
.sidebar .popular-posts .item:hover .item-title{
    color: var(--accent-color1);
}
.page-share{
    margin-bottom: 50px;
    margin-top: 30px;
}
.page-share-title{
    color: #222222;
    font-size: 18px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}
.ya-share2__list.ya-share2__list_direction_horizontal > .ya-share2__item{
    margin-top: 0;
}
.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
    height: 36px !important;
    width: 36px !important;
}
.ya-share2__container_shape_round.ya-share2__container_size_m .ya-share2__badge .ya-share2__icon:not(.ya-share2__icon_messenger-contact):not(.ya-share2__icon_more):not(.ya-share2__icon_copy) {
    background-size: 24px 24px !important;
    background-repeat: no-repeat;
}
.content img{
    width: auto !important;
    height: auto !important;
}

@media(max-width:1299px){
    .sidebar .popular-posts .item-content {
        width: calc(100% - 170px);
        padding-left: 22px;
    }
    .sidebar .popular-posts .item-title{
        font-size: 16px;
    }
    .sidebar .popular-posts .item{
        margin-bottom: 25px;
    }
    .news-page-columns .sidebar {
        width: 450px;
    }
    .news-page-columns .main-column {
        width: calc(100% - 490px);
    }
    .content p {
        font-size: 15px;
    }
}
@media(max-width:1199px){
    .sidebar .popular-posts .item-img {
        width: 150px;
    }
    .sidebar .popular-posts .item-content {
        width: calc(100% - 150px);
        padding-left: 20px;
    }
    .sidebar .popular-posts .item-title{
        font-size: 15px;
    }
    .sidebar .popular-posts .item-date{
        font-size: 13px;
    }
    .news-page-columns .sidebar {
        width: 370px;
    }
    .news-page-columns .main-column {
        width: calc(100% - 400px);
    }
    .sidebar-widget-title{
        font-size: 22px;
    }
}
@media(max-width:991px){
    .news-page-columns .main-column{
        width: 100%;
        margin-bottom: 20px;
    }
    .news-page-columns .sidebar{
        width: 100%;
    }
    .sidebar .popular-posts .item-title{
        font-size: 18px;
    }
}
@media(max-width:767px){
    .sidebar-widget-title{
        font-size: 18px;
    }
    .sidebar .popular-posts .item-img {
        width: 100px;
    }
    .sidebar .popular-posts .item-content {
        width: calc(100% - 100px);
        padding-left: 15px;
    }
    .sidebar .popular-posts .item-date{
        font-size: 12px;
        margin-bottom: 4px;
    }
    .sidebar .popular-posts .item-title {
        font-size: 14px;
    }
} 
/* /. blog page*/


/* portfolio */
.portfolio-section__head {
    max-width: 820px;
    margin-bottom: 48px;
}

.portfolio-section__head h1 {
    margin-bottom: 22px;
}

.portfolio-section__text {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.portfolio-list {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.portfolio-group__title {
    margin: 0 0 24px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 900;
    color: #151a20;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.portfolio-item {
    min-width: 0;
}

.portfolio-item__image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 420 / 270;
    border-radius: 22px;
    background: #e9edf0;
    box-shadow: 0 18px 45px rgba(31, 41, 47, 0.08);
}

.portfolio-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.portfolio-item:hover .portfolio-item__image img {
    transform: scale(1.04);
}

.portfolio-item__title {
    margin-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(31, 41, 47, 0.12);
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
    color: #151a20;
}

.portfolio-item__hidden {
    display: none;
}

@media (max-width: 1249px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .portfolio-section__head {
        margin-bottom: 34px;
    }

    .portfolio-section__text {
        font-size: 16px;
    }

    .portfolio-list {
        gap: 40px;
    }

    .portfolio-group__title {
        margin-bottom: 18px;
        font-size: 24px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .portfolio-item__image {
        border-radius: 18px;
    }
}
/* /. portfolio */


/* portfolio object page */

.portfolio-object-page__head {
    margin-bottom: 42px;
}

.portfolio-object-page__head h1 {
    margin-bottom: 22px;
}

.portfolio-object-page__intro {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.portfolio-object-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.portfolio-object-gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 520 / 340;
    border-radius: 22px;
    background: #e9edf0;
    box-shadow: 0 18px 45px rgba(31, 41, 47, 0.08);
}

.portfolio-object-gallery__item:before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(21, 26, 32, 0.18);
    opacity: 0;
    z-index: 2;
    transition: 0.25s ease;
}

.portfolio-object-gallery__item:after {
    content: '+';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    line-height: 1;
    font-weight: 300;
    transition: 0.25s ease;
}

.portfolio-object-gallery__item:hover:before {
    opacity: 1;
}

.portfolio-object-gallery__item:hover:after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.portfolio-object-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

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

.portfolio-object-page__content {
    max-width: 860px;
    margin-top: 46px;
}

.portfolio-object-page__bottom {
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(31, 41, 47, 0.1);
}

.portfolio-object-page__back {
    display: inline-flex;
    align-items: center;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.portfolio-object-page__back:hover {
    color: #151a20;
}

@media (max-width: 1249px) {
    .portfolio-object-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {

    .portfolio-object-page__head {
        margin-bottom: 30px;
    }

    .portfolio-object-page__intro {
        font-size: 16px;
    }

    .portfolio-object-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .portfolio-object-gallery__item {
        border-radius: 18px;
    }
}
/* /. portfolio object page */


/* about page */
.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 64px;
    box-shadow: 0 24px 70px rgba(31, 41, 47, 0.07);
}

.about-hero__content h1 {
    margin-bottom: 26px;
}

@media(min-width: 992px){
    .about-hero__content h1{
        font-size: 46px;
    }
}

.about-hero__content h1 span,
.section-head h2 span,
.about-approach__left h2 span,
.about-trust__head h2 span,
.about-cta__content h2 span {
    display: block;
    color: var(--accent-color);
}

.about-hero__text {
    max-width: 720px;
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.about-stat {
    padding: 22px;
    border-radius: 20px;
    background: #f7f8fa;
}

.about-stat__value {
    margin-bottom: 8px;
    font-size: 34px;
    line-height: 1;
    font-weight: 900;
    color: var(--accent-color);
}

.about-stat__text {
    font-size: 14px;
    line-height: 1.45;
    color: #4d5359;
}

.about-hero__image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 470 / 520;
    background: #e9edf0;
}

.about-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-head {
    max-width: 820px;
    margin-bottom: 42px;
}

.section-head h2 {
    margin-bottom: 0;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.about-service-card {
    min-width: 0;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(31, 41, 47, 0.06);
}

.about-service-card__num {
    margin-bottom: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 56px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--accent-color1);
    color: #fff;
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.02em;
    box-shadow: 0 12px 26px rgba(243, 92, 36, 0.24);
    
    
}

.about-service-card__title {
    margin-bottom: 14px;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 900;
    color: #151a20;
}

.about-service-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #5d646b;
}

.about-approach {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
    background: #151a20;
    border-radius: 20px;
    padding: 64px;
    color: #fff;
}

.about-approach .section-label {
    color: var(--accent-color);
}

.about-approach__left h2 {
    color: #fff;
}

@media(min-width: 992px){
    .about-approach__left h2{
        font-size: 36px;
    }
}

.about-approach__text {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

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

.about-approach-item {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
}

.about-approach-item__title {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
    color: #fff;
}

.about-approach-item__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.68);
}

.about-trust {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 44px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 54px 64px;
    box-shadow: 0 24px 70px rgba(31, 41, 47, 0.07);
}

.about-trust__head h2 {
    margin-bottom: 0;
}

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

.about-trust-item {
    position: relative;
    padding: 22px 22px 22px 54px;
    border-radius: 18px;
    background: #f7f8fa;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
    color: #151a20;
}

.about-trust-item:before {
    content: '';
    position: absolute;
    left: 22px;
    top: 25px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent-color);
}

.about-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    padding: 46px 54px;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(31, 41, 47, 0.07);
}

.about-cta__content h2 {
    margin-bottom: 18px;
}

.about-cta__text {
    max-width: 680px;
    font-size: 17px;
    line-height: 1.65;
    color: #4d5359;
}

.about-cta__button {
    min-height: 62px;
    padding: 0 34px;
    border-radius: 12px;
    background: var(--accent-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}

.about-cta__button:hover {
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 1249px) {
    .about-hero {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 36px;
        padding: 52px 42px;
    }

    .about-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-approach {
        grid-template-columns: 1fr;
        padding: 52px 42px;
    }

    .about-trust {
        grid-template-columns: 1fr;
        padding: 46px 42px;
    }
}

@media (max-width: 991px) {
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-hero__image {
        aspect-ratio: 16 / 9;
    }

    .about-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .about-hero,
    .about-approach,
    .about-trust,
    .about-cta {
        border-radius: 24px;
        padding: 34px 20px;
    }

    .about-hero__text,
    .about-approach__text,
    .about-cta__text {
        font-size: 16px;
    }

    .about-hero__stats,
    .about-services-grid,
    .about-approach__right,
    .about-trust__items {
        grid-template-columns: 1fr;
    }

    .about-service-card {
        padding: 24px;
    }

    .about-service-card__num {
        margin-bottom: 24px;
    }

    .about-trust-item {
        padding: 20px 20px 20px 50px;
    }

    .about-cta__button {
        width: 100%;
    }
}
/* /. about page */

/* services */
.services-section__head {
    max-width: 860px;
    margin-bottom: 46px;
}

.services-section__head h1 {
    margin-bottom: 22px;
}

.services-section__text {
    max-width: 720px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.services-group__head {
    margin-bottom: 24px;
}

.services-group__head h2 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.25;
}

.services-group__head h2 a {
    color: #151a20;
    text-decoration: none;
}

.services-group__head h2 a:hover {
    color: var(--accent-color);
}

.services-group__text {
    font-size: 17px;
    line-height: 1.6;
    color: #5d646b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}



.service-detail-simple {
    max-width: 980px;
    background: #fff;
    border-radius: 32px;
    padding: 64px;
    box-shadow: 0 24px 70px rgba(31, 41, 47, 0.07);
}

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

.service-detail-simple__intro {
    max-width: 760px;
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1.65;
    color: #4d5359;
}

.service-detail-simple__content {
    max-width: 860px;
}

@media (max-width: 1249px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-detail-simple {
        padding: 52px 42px;
    }
}

@media (max-width: 767px) {
    .services-section__head {
        margin-bottom: 34px;
    }

    .services-section__text,
    .services-group__text {
        font-size: 16px;
    }

    .services-list {
        gap: 42px;
    }

    .services-group__head h2 {
        font-size: 26px;
    }

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

    .services-card {
        min-height: auto;
        padding: 24px;
        border-radius: 22px;
    }

    .services-card__top {
        margin-bottom: 28px;
    }

    .services-card__title {
        font-size: 21px;
    }

    .service-detail-simple {
        padding: 34px 20px;
        border-radius: 24px;
    }

    .service-detail-simple__intro {
        font-size: 17px;
    }
}
/* /. services */


/* service detail */
.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 520px;
    gap: 54px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 64px;
    box-shadow: 0 24px 70px rgba(31, 41, 47, 0.07);
}

.service-hero h1 {
    margin-bottom: 26px;
}

@media(min-width: 992px){
    .service-hero h1{
        font-size: 46px;
    }
}

.service-hero__subtitle {
    max-width: 720px;
    margin-bottom: 34px;
    font-size: 20px;
    line-height: 1.65;
    color: #4d5359;
}

.service-hero__button {
    min-height: 62px;
    padding: 0 34px;
    border-radius: 14px;
    background: var(--accent-color1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
}


.service-hero__image {
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 620 / 560;
    background: #e9edf0;
}

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

.service-intro-card {
    padding: 54px 64px;
    border-radius: 20px;
    background: #151a20;
    color: #fff;
}

.service-intro-card .section-label {
    color: var(--accent-color);
}

.service-intro-card h2 {
    color: #fff;
}

.service-intro-card__text {
    font-size: 20px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.76);
}

.service-theses-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-thesis-card {
    min-width: 0;
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(31, 41, 47, 0.06);
}

.service-thesis-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 28px;
    border-radius: 50%;
    background: rgba(242, 81, 34, 0.1);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-thesis-card__title {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
    color: #151a20;
}

.service-thesis-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #5d646b;
}

.service-work-section__subtitle {
    max-width: 720px;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.6;
    color: #5d646b;
}

.service-work-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.service-work-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 55px rgba(31, 41, 47, 0.06);
}

.service-work-card__image {
    aspect-ratio: 420 / 300;
    overflow: hidden;
    background: #e9edf0;
}

.service-work-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-work-card__body {
    padding: 24px;
}

.service-work-card__num {
    margin-bottom: 18px;
    color: var(--accent-color);
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.service-work-card__title {
    margin-bottom: 12px;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
    color: #151a20;
}

.service-work-card__text {
    font-size: 15px;
    line-height: 1.6;
    color: #5d646b;
}

.service-request {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 470px;
    gap: 50px;
    align-items: start;
    padding: 64px;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(31, 41, 47, 0.07);
}

.service-request h2 {
    margin-bottom: 22px;
}

.service-request__text {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: 18px;
    line-height: 1.65;
    color: #4d5359;
}

.service-request__phone {
    display: inline-flex;
    margin-bottom: 22px;
    color: #151a20;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 900;
    text-decoration: none;
}

.service-request__phone:hover {
    color: var(--accent-color);
}

.service-request__messengers {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-request__form {
    padding: 34px;
    border-radius: 24px;
    background: #f7f8fa;
}

.service-request-form .form-group {
    margin-bottom: 14px;
}

.service-request-form input[type="text"],
.service-request-form input[type="tel"],
.service-request-form textarea {
    width: 100%;
    height: 56px;
    padding: 0 18px;
    border: 1px solid rgba(31, 41, 47, 0.1);
    border-radius: 14px;
    background: #fff;
    outline: none;
}

.service-request-form textarea {
    height: 120px;
    padding-top: 16px;
    resize: none;
}

.service-request-form__button {
    width: 100%;
    min-height: 58px;
    margin-top: 18px;
    border: 0;
    border-radius: 14px;
    background: var(--accent-color);
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1249px) {
    .service-hero {
        grid-template-columns: minmax(0, 1fr) 420px;
        padding: 52px 42px;
    }

    .service-theses-grid,
    .service-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-request {
        grid-template-columns: 1fr;
        padding: 52px 42px;
    }
}

@media (max-width: 991px) {
    .service-hero {
        grid-template-columns: 1fr;
    }

    .service-hero__image {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767px) {
    .service-hero,
    .service-intro-card,
    .service-request {
        padding: 34px 20px;
    }

    .service-hero__subtitle,
    .service-intro-card__text,
    .service-request__text {
        font-size: 16px;
    }

    .service-theses-grid,
    .service-work-grid {
        grid-template-columns: 1fr;
    }

    .service-request__phone {
        font-size: 24px;
    }

    .service-request__form {
        padding: 22px;
    }
}

@media(max-width: 499px){
    .service-hero__button{
        width: 100%;
    }
}
/* /. service detail */

/* service related carousel */
.service-related-section__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 42px;
}

.service-related-section__top .object-types-section__head {
    margin-bottom: 0;
}

.service-related-section__arrows {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
}

.service-related-slider {
    margin: 0 -12px;
}

.service-related-slider:not(.slick-initialized) {
    display: flex;
    overflow: hidden;
}

.service-related-slider:not(.slick-initialized) > .object-card {
    flex: 0 0 25%;
    padding: 0 12px;
}

.service-related-slider .slick-track {
    display: flex !important;
}
.service-related-slider .col{
    padding: 0 12px;
}
.service-related-slider .slick-slide {
    height: auto;
    
}

.service-related-slider .slick-slide > div {
    height: 100%;
}

.service-related-slider .object-card {
    height: 100%;
    box-shadow: none;
}

.service-related-slider .object-card:hover{
    transform: none;
}

@media (max-width: 1199px) {
    .service-related-slider:not(.slick-initialized) > .object-card {
        flex-basis: 33.333%;
    }
}

@media (max-width: 991px) {
    .service-related-section__arrows {
        display: none;
    }

    .service-related-slider:not(.slick-initialized) > .object-card {
        flex-basis: 50%;
    }
}

@media (max-width: 559px) {
    .service-related-section__top {
        display: block;
        margin-bottom: 30px;
    }

    .service-related-slider:not(.slick-initialized) > .object-card {
        flex-basis: 100%;
        padding: 0;
    }
}
/* /. service related carousel */