@charset "utf-8";

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

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

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

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

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

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

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

:root{
    --text-color: #fff;
    --accent-color1: #E8651A;
    --accent-color1-hover: #ff7624;
    --accent-font-color: #fff;
    --dark-color: #081823;
}
/* ===== 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;
    font-size: 16px;
    line-height: 1.35;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
}

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

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

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

ul,
ol {
  list-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-group {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.push1 {
    height: 1px;
}

.push2 {
    height: 2px;
}

.push3 {
    height: 3px;
}

.push4 {
    height: 4px;
}

.push5 {
    height: 5px;
}

.push6 {
    height: 6px;
}

.push7 {
    height: 7px;
}

.push8 {
    height: 8px;
}

.push9 {
    height: 9px;
}

.push10 {
    height: 10px;
}

.push11 {
    height: 11px;
}

.push12 {
    height: 12px;
}

.push13 {
    height: 13px;
}

.push14 {
    height: 14px;
}

.push15 {
    height: 15px;
}

.push16 {
    height: 16px;
}

.push17 {
    height: 17px;
}

.push18 {
    height: 18px;
}

.push19 {
    height: 19px;
}

.push20 {
    height: 20px;
}

.push25 {
    height: 25px;
}

.push30 {
    height: 30px;
}

.push35 {
    height: 35px;
}

.push40 {
    height: 40px;
}

.push45 {
    height: 45px;
}

.push50 {
    height: 50px;
}

.push55 {
    height: 55px;
}

.push60 {
    height: 60px;
}

.push70 {
    height: 70px;
}

.push80 {
    height: 80px;
}

.push90 {
    height: 90px;
}

.push100 {
    height: 100px;
}

.f8 {
    font-size: 8px;
}

.f9 {
    font-size: 9px;
}

.f10 {
    font-size: 10px;
}

.f11 {
    font-size: 11px;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f17 {
    font-size: 17px;
}

.f18 {
    font-size: 18px;
}

.f19 {
    font-size: 19px;
}

.f20 {
    font-size: 20px;
}

.f21 {
    font-size: 21px;
}

.f22 {
    font-size: 22px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.f28 {
    font-size: 28px;
}

.f30 {
    font-size: 30px;
}

.f34 {
    font-size: 34px;
}

.f36 {
    font-size: 36px;
}
.strike {
    text-decoration: line-through;
}

:invalid {
    box-shadow: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.upper {
    text-transform: uppercase;
}

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

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

.red {
    color: #FF4632;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

p {
    margin-bottom: 20px;
}

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

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

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

/* 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: #2867B8;
}

.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: 1449px) {
    .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;
}

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

/* /. Agreement */

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

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

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

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

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

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

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

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

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

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

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

/* /. Mobile menu btn */

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

.mobile-menu {
    background: var(--dark-color);
    height: 100%;
}

.overlay {
    position: fixed;
    top: 71px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(16 26 36 / 51%);
    backdrop-filter: blur(15px);
    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: 16px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all 300ms ease-out;
}

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

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

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

.mobile-menu>ul>li.active>a{
    background: var(--accent-color1);
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu {
    background: var(--dark-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu > ul {
    flex: 0 0 auto;
    padding: 30px 0;
}

.mobile-menu-contacts {
    margin-top: auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-contacts__title {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    line-height: 1.2;
}

.mobile-menu-contact {
    display: inline-flex;
    align-items: center;
    width: 100%;
    margin-bottom: 14px;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
}

.mobile-menu-contact:hover {
    color: var(--accent-color1);
}

.mobile-menu-contact img {
    flex: 0 0 auto;
    margin-right: 8px;
    max-width: 18px;
    max-height: 18px;
    object-fit: contain;
}

.mobile-menu-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 10px;
}

.mobile-menu-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(255 255 255 / 7%);
    padding: 5px;
}

.mobile-menu-social:hover {
    background: var(--accent-color1);
}

.mobile-menu-social img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .mobile-menu-wrapper {
        top: 70px;
        height: calc(100dvh - 70px);
    }

    .mobile-menu {
        overflow-y: auto;
    }
    .mobile-menu-wrapper.open {
        right: 0;
    }

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

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

    .mobile-menu {
        overflow-y: scroll;
    }
}
@media(max-width: 399px){
    .mobile-menu-wrapper{
        width: 100%;
        right: -100%;
    }
}
/* /. 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 */

/* 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: 'TildaSans';
    background: var(--dark-color);
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

h1,
.title-h1,
h2,
.title-h2 {
    margin: 0 0 24px;
    font-size: 45px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: 0.2px;
}

h3,
.title-h3 {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
}

h4,
.title-h4 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
}

h2 .accent,
.title-h2 .accent,
h3 .accent,
.title-h3 .accent,
h4 .accent,
.title-h4 .accent {
    color: var(--accent-color1);
}

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

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

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

@media(max-width: 991px) {
    h2,
    .title-h2 {
        margin-bottom: 18px;
        font-size: 36px;
    }

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

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

@media(max-width: 767px) {
    h2,
    .title-h2 {
        font-size: 32px;
        line-height: 1.1;
    }

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

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

a {
    color: var(--accent-color1);
    transition: all ease-out 300ms;
}

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: 42px;
    text-decoration: none;
    cursor: pointer;
    padding: 0 30px 2px;
    border: none;
    border-radius: 27px;
    font-size: 20px;
    line-height: 1;
    color: var(--accent-font-color);
    background: var(--accent-color1);
    text-align: center;
    transition: all 300ms ease-out;
    font-weight: normal;
    letter-spacing: -0.31px;
}

.btn:hover {
    color: #fff;
    background: var(--accent-color1-hover);
}
.btn-dark {
    background: rgba(42, 45, 47, 0.9);
}

.btn-dark:hover {
    background: rgba(58, 62, 65, 0.95);
}


/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 170px;
    z-index: 100;
    padding-top: 15px;
}
.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 190px;
    background: linear-gradient(
        180deg,
        rgba(16, 26, 36, 0.95) 0%,
        rgba(16, 26, 36, 0.72) 45%,
        rgba(16, 26, 36, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

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

.header-top {
    position: relative;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 12px;
}
.header-contacts .col{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 12px;
}

.header-contact,
.header-email {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    white-space: nowrap;
}
.header-social-item{
    height: 18px;
    display: inline-flex;
    align-items: center;
    line-height: 0;
}

.header-contact:hover,
.header-email:hover,
.header-social:hover {
    color: var(--accent-color1);
}

.header-contact img,
.header-email img {
    margin-right: 5px;
    object-fit: contain;
}

.logo {
    position: absolute;
    top: 0;
    left: 50%;
    width: 205px;
    transform: translateX(-50%);
}

.logo img {
    width: 100%;
}

.header-nav {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.header-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.header-nav li {
    position: relative;
    margin: 0 5px;
}

.header-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 24px 2px;
    border-radius: 24px;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    font-weight: 400;
    transition: all 250ms ease-out;
}

.header-nav a:hover,
.header-nav li.active a {
    color: #fff;
    background: var(--accent-color1);
}


/* Hero */
.hero-section {
    position: relative;
    padding-top: 255px;
    padding-bottom: 60px;
    overflow: hidden;
    background: url('../images/hero-bg.jpg') center top / cover no-repeat;
}

.hero-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 13, 19, 0.90) 0%, rgb(5 13 19 / 16%) 45%, rgb(5 13 19 / 0%) 70%, rgb(5 13 19 / 0%) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-section:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 230px;
    background: linear-gradient(
        0deg,
        #101A24 0%,
        rgba(16, 26, 36, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}

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

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

.hero-content h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 57px;
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0.29px;
}

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

.hero-text {
    max-width: 670px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 18px;
    line-height: 1.32;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 72px;
}

.hero-feature {
    text-align: center;
    color: #fff;
    margin-right: 70px;
}
.hero-feature:last-child{
    margin-right: 0;
}
.hero-item-header{
    height: 56px;
    margin-bottom: 30px;
    position: relative;
}
.hero-item-header:after{
    content:"";
    width: 88px;
    height: 2px;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,.3);
}
.hero-feature__icon {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-feature__text {
    font-size: 18px;
    line-height: 1.1;
}

.hero-feature-years {
    padding-bottom: 2px;
}

.hero-feature__top {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: var(--accent-color1);
    line-height: 0;
}

.hero-feature__top span {
    position: relative;
    bottom: 7px;
    font-size: 12px;
    line-height: 0;
    font-weight: 700;
}

.hero-feature__top strong {
    display: block;
    margin: 0 7px;
    font-size: 45px;
    line-height: 0.75;
    font-weight: 600;
}


/* Adaptive */
@media(max-width: 1449px) {
    .header-nav a {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 18px;
    }
}

@media(max-width: 1199px){
    .header-contacts{
        display: block;
    }
    .header-contacts .col1 + .col2{
        margin-top: 12px;
    }
    .hero-feature{
        margin-right: 60px;
    }
    .hero-feature__text{
        font-size: 16px;
    }
}

@media(max-width: 991px) {
    .header {
        position: fixed !important;
        min-height: 70px;
        padding: 9px 0;
        background: rgba(8, 24, 35, 0.94);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .header:before{
        display: none;
    }

    .header-top {
        min-height: 46px;
        align-items: center;
    }

    .header-contacts,
    .header-email {
        display: none;
    }

    .logo {
        position: static;
        transform: none;
        width: 170px;
    }

    .menu-button {
        display: block !important;
        margin-left: auto;
    }

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

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

    .hero-section {
        min-height: auto;
        padding-top: 160px;
        padding-bottom: 50px;
        background-position: center top;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 44px;
    }

    .hero-text {
        max-width: 560px;
        font-size: 18px;
    }
    .hero-features{
        margin-left: -15px;
        margin-right: -15px;
        justify-content: space-between;
    }
    .hero-feature{
        margin-right: 0;
        padding-left: 15px;
        padding-right: 15px;
    }
    .hero-feature__text{
        font-size: 14px;
    }
}

@media(max-width: 767px) {
    .hero-section {
        padding-top: 130px;
        padding-bottom: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
        line-height: 1;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons .btn {
        width: 50%;
        margin-bottom: 12px;
        font-size: 16px;
    }

    .hero-features{
        flex-wrap: wrap;
        margin-top: 30px;
        justify-content: center;
    }
    .hero-feature{
        width: 175px;
        margin-bottom: 40px;
    }
}
@media(max-width: 699px) {
    .hero-buttons{
        display: block;
    }
    .hero-buttons .btn {
        width: 100%;
        height: 54px;
    }

    .hero-section:before {
        background: rgba(10,25,35,.7);
    }
}

/* Guarantees */
.guarantees-section {
    position: relative;
    z-index: 3;
}

.guarantees-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.guarantees-info {
    width: 690px;
    max-width: 100%;
    color: #fff;
}

.guarantees-text {
    color: #fff;
    font-size: 22px;
    line-height: 1.36;
    font-weight: 400;
    letter-spacing: -0.1px;
}

.guarantees-list-wrapper {
    width: 690px;
    max-width: 100%;
    margin-top: 2px;
    padding: 21px 24px 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
}

.guarantees-list li {
    position: relative;
    padding-left: 27px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
}

.guarantees-list li:last-child {
    margin-bottom: 0;
}

.guarantees-list li:before {
    content: "→";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--accent-color1);
    font-size: 18px;
    line-height: 1.25;
}

@media(max-width: 1449px) {
    .guarantees-info h2 {
        font-size: 42px;
    }

    .guarantees-text {
        font-size: 21px;
    }

    .guarantees-list li {
        font-size: 18px;
    }
}

@media(max-width: 1199px) {
    .guarantees-row {
        gap: 35px;
    }

    .guarantees-info,
    .guarantees-list-wrapper {
        width: 50%;
    }

    .guarantees-text {
        font-size: 19px;
    }

    .guarantees-list li {
        font-size: 17px;
    }
}

@media(max-width: 991px) {
    .guarantees-row {
        display: block;
    }

    .guarantees-info,
    .guarantees-list-wrapper {
        width: 100%;
    }

    .guarantees-info {
        margin-bottom: 28px;
    }

    .guarantees-info h2 {
        margin-bottom: 18px;
        font-size: 36px;
    }

    .guarantees-text {
        font-size: 18px;
    }
}

@media(max-width: 767px) {
    .guarantees-text {
        font-size: 16px;
        line-height: 1.45;
    }

    .guarantees-list-wrapper {
        padding: 18px 16px;
        border-radius: 10px;
    }

    .guarantees-list li {
        padding-left: 22px;
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.35;
    }

    .guarantees-list li:before {
        font-size: 15px;
    }
}

/* Objects gallery marquee */
.objects-gallery-section {
    overflow: hidden;
}

.objects-gallery-marquee {
    width: 100%;
    overflow: hidden;
}

.objects-gallery-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: objectsGalleryMarquee 45s linear infinite;
    will-change: transform;
}

.objects-gallery-marquee:hover .objects-gallery-marquee__track {
    animation-play-state: paused;
}

.objects-gallery-slide {
    flex: 0 0 263px;
    width: 263px;
    padding: 0 10px;
}

.objects-gallery-item {
    display: block;
    width: 243px;
    aspect-ratio: 243 / 152;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

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

.objects-gallery-item:hover img {
    transform: scale(1.04);
}

@keyframes objectsGalleryMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media(max-width: 767px) {
    .objects-gallery-slide {
        flex-basis: 234px;
        width: 234px;
        padding: 0 7px;
    }

    .objects-gallery-item {
        width: 220px;
    }
}

/* Experience */
.experience-header {
    color: #fff;
}

.experience-header h2 {
    margin-bottom: 8px;
}

.experience-subtitle {
    margin-bottom: 26px;
    color: #fff;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.experience-text {
    max-width: 1370px;
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
    font-weight: 400;
}

.experience-row {
    display: flex;
    align-items: center;
    margin-top: 38px;
    gap: 45px;
}

.experience-card {
    flex: 0 0 420px;
    padding: 24px 30px 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.055);
}

.orange-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 20px;
    line-height: 1.28;
}

.orange-list li:last-child {
    margin-bottom: 0;
}

.orange-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color1);
}

.experience-question {
    flex: 1 1 auto;
    color: #fff;
}

.experience-question__title {
    margin-bottom: 18px;
    color: #fff;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 400;
}

.experience-question__title span {
    display: block;
    color: var(--accent-color1);
    font-size: 48px;
    line-height: 0.95;
    font-weight: 400;
}

.experience-question__text {
    max-width: 910px;
    color: #fff;
    font-size: 20px;
    line-height: 1.35;
}

@media(max-width: 1449px) {
    .experience-subtitle {
        font-size: 30px;
    }

    .experience-text {
        font-size: 19px;
    }

    .experience-question__title {
        font-size: 30px;
    }

    .experience-question__title span {
        font-size: 42px;
    }

    .experience-question__text {
        font-size: 18px;
    }

    .orange-list li {
        font-size: 18px;
    }
}

@media(max-width: 991px) {
    .experience-subtitle {
        margin-bottom: 20px;
        font-size: 26px;
    }

    .experience-text {
        font-size: 17px;
    }

    .experience-row {
        display: block;
        margin-top: 30px;
    }

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

    .experience-question__title {
        font-size: 27px;
    }

    .experience-question__title span {
        font-size: 36px;
    }
}

@media(max-width: 767px) {
    .experience-subtitle {
        font-size: 22px;
        line-height: 1.25;
    }

    .experience-text {
        font-size: 16px;
        line-height: 1.45;
    }

    .experience-card {
        padding: 18px 16px;
        border-radius: 10px;
    }

    .orange-list li {
        padding-left: 22px;
        font-size: 15px;
        line-height: 1.35;
    }

    .experience-question__title {
        font-size: 22px;
        line-height: 1.15;
    }

    .experience-question__title span {
        font-size: 30px;
    }

    .experience-question__text {
        font-size: 16px;
        line-height: 1.45;
    }
}

/* Catalog */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.catalog-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
    color: #101A24;
}

.catalog-card__badge {
    position: absolute;
    top: 17px;
    left: 18px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 18px 2px;
    border-radius: 15px;
    background: var(--accent-color1);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    font-weight: 600;
}

.catalog-card__gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 333 / 280;
    height: auto;
    overflow: hidden;
    background: #949494;
}

.catalog-card__slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.catalog-card__slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 250ms ease-out;
}

.catalog-card__slides img.active {
    opacity: 1;
    z-index: 2;
}

.catalog-card__gallery-nav {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    width: 50%;
    cursor: pointer;
}

.catalog-card__gallery-nav--prev {
    left: 0;
}

.catalog-card__gallery-nav--next {
    right: 0;
}

.catalog-card__progress {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 12px;
    z-index: 6;
    height: 4px;
    overflow: hidden;
    border-radius: 10px;
    background: #303234;
}

.catalog-card__progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--accent-color1);
    transition: width 250ms ease-out, transform 250ms ease-out;
}

.catalog-card__content {
    padding: 14px 12px 13px;
}

.catalog-card__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.catalog-card__title {
    flex: 0 0 auto;
    color: #000;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 500;
}

.catalog-card__size {
    flex: 1 1 auto;
    color: #777;
    font-size: 16px;
    line-height: 1.2;
    text-align: right;
    white-space: nowrap;
}

.catalog-card__text {
    min-height: 75px;
    margin-bottom: 22px;
    color: #4f5966;
    font-size: 16px;
    line-height: 1.35;
}

.catalog-card__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.catalog-card__link {
    color: #6e7885;
    font-size: 15px;
    line-height: 1.1;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.catalog-card__link:hover {
    color: var(--accent-color1);
}

.catalog-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    height: 34px;
    padding: 0 18px 2px;
    border-radius: 18px;
    background: var(--dark-color);
    color: #fff;
    font-size: 15px;
    line-height: 1;
}

.catalog-card__btn:hover {
    background: var(--accent-color1);
    color: #fff;
}

.catalog-card__gallery.is-single .catalog-card__progress,
.catalog-card__gallery.is-single .catalog-card__gallery-nav {
    display: none;
}

@media(max-width: 1449px) {
    .catalog-card__title {
        font-size: 21px;
    }

    .catalog-card__size {
        font-size: 14px;
    }

    .catalog-card__text {
        font-size: 15px;
    }
}

@media(max-width: 1199px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 991px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 767px) {
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .catalog-card__content {
        padding: 14px 12px;
    }

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

    .catalog-card__text {
        min-height: 0;
        margin-bottom: 18px;
        font-size: 15px;
    }
}

@media(max-width: 399px) {
    .catalog-card__header {
        display: block;
    }

    .catalog-card__title {
        margin-bottom: 5px;
    }

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


/* Equipment modal */
.equipment-modal {
    width: 1120px;
    padding: 28px 34px 34px;
    border-radius: 4px;
    background: #fff;
    color: #000;
}

.equipment-modal__title {
    margin-bottom: 20px;
    color: #000;
    font-size: 28px;
    line-height: 1.15;
    font-weight: 400;
}

.equipment-modal__title span {
    margin-right: 18px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.equipment-table {
    width: 100%;
    color: #000;
    font-size: 17px;
    line-height: 1.35;
}

.equipment-table__row {
    display: grid;
    grid-template-columns: 48% 52%;
}

.equipment-table__row:nth-child(odd) {
    background: #e9e9e9;
}

.equipment-table__cell {
    padding: 8px 20px;
}

@media(max-width: 767px) {
    .equipment-modal {
        padding: 24px 18px;
    }

    .equipment-modal__title {
        font-size: 22px;
    }

    .equipment-modal__title span {
        display: block;
        margin-right: 0;
        margin-bottom: 4px;
    }

    .equipment-table {
        font-size: 15px;
    }

    .equipment-table__row {
        display: block;
        padding: 8px 0;
    }

    .equipment-table__cell {
        padding: 4px 10px;
    }

    .equipment-table__cell:first-child {
        font-weight: 600;
    }
}


/* Benefits strip */
.benefits-strip {
    padding: 28px 0 24px;
    background: var(--accent-color1);
}

.benefits-strip-row {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.benefit-card {
    width: 250px;
    min-height: 142px;
    padding: 21px 15px 20px;
    border-radius: 14px;
    background: #111820;
    color: #fff;
    text-align: center;
}

.benefit-card__title {
    margin-bottom: 12px;
    color: #fff;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 700;
}

.benefit-card__text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.23;
}

@media(max-width: 1449px) {
    .benefits-strip-row {
        gap: 24px;
    }

    .benefit-card {
        width: 230px;
    }

    .benefit-card__title {
        font-size: 17px;
    }

    .benefit-card__text {
        font-size: 15px;
    }
}

@media(max-width: 1199px) {
    /*.benefits-strip {
        padding: 24px 0;
        overflow: hidden;
    }

    .benefits-strip .container {
        padding-left: 0;
        padding-right: 0;
    }

    .benefits-strip-row {
        justify-content: flex-start;
        gap: 16px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 15px 4px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .benefits-strip-row::-webkit-scrollbar {
        display: none;
    }

    .benefit-card {
        flex: 0 0 260px;
        width: 260px;
        scroll-snap-align: start;
    }*/
}
@media(max-width: 1099px){
    .benefits-strip-row{
        flex-wrap: wrap;
    }
    .benefit-card{
        width: 25%;
    }
}
@media(max-width: 767px) {
    .benefits-strip {
        padding: 20px 0;
    }

    .benefit-card {
        width: 100%;
        min-height: 132px;
        padding: 18px 16px;
    }

    .benefit-card__title {
        font-size: 17px;
    }

    .benefit-card__text {
        font-size: 15px;
    }
}



/* Production */
.production-section {
    position: relative;
    overflow: hidden;
}

.production-section__image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(50vw + 120px);
    height: 500px;
    overflow: hidden;
}

.production-section__image:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(16, 26, 36, 0.15) 0%,
        rgba(16, 26, 36, 0) 48%,
        rgba(16, 26, 36, 0.35) 100%
    );
    pointer-events: none;
}

.production-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-card {
    position: relative;
    z-index: 2;
    width: 820px;
    min-height: 565px;
    margin-left: auto;
    padding: 64px 58px 54px;
    border-radius: 20px 0 0 20px;
    background: #fff;
    color: #4b5566;
}
.production-card:after{
    content: "";
    width: 20px;
    position: absolute;
    right: -20px;
    top: 0;
    bottom: 0;
    background: #fff;
}

.production-card h2 {
    margin-bottom: 28px;
    color: #000;
}

.production-text {
    max-width: 690px;
    margin-bottom: 38px;
    color: #4f596b;
    font-size: 20px;
    line-height: 1.45;
}

.production-text p {
    margin-bottom: 22px;
}

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

.production-badge {
    position: absolute;
    left: -88px;
    top: 214px;
    z-index: 3;
    width: 120px;
    height: 102px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 7px;
    border-radius: 12px;
    background: var(--accent-color1);
    color: #fff;
    text-align: center;
}

.production-badge strong {
    display: block;
    font-size: 68px;
    line-height: 0.85;
    font-weight: 700;
}

.production-badge span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    line-height: 1;
}

.production-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 42px;
}

.production-list__item {
    position: relative;
    padding-left: 29px;
    color: #4f596b;
    font-size: 17px;
    line-height: 1.35;
}

.production-list__item:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 0;
    width: 17px;
    height: 17px;
    background: url(../images/icons/check-list-icon.svg) 0 0 no-repeat;
}

@media(max-width: 1449px) {
    .production-section__image {
        width: calc(50vw + 80px);
        height: 455px;
    }

    .production-card {
        width: 760px;
        padding: 54px 45px 46px;
    }

    .production-text {
        font-size: 18px;
    }

    .production-list {
        gap: 18px 28px;
    }

    .production-list__item {
        font-size: 15px;
    }
}

@media(max-width: 1199px) {
    .production-card {
        width: 650px;
        min-height: 0;
    }

    .production-badge {
        left: -70px;
        width: 100px;
        height: 88px;
    }

    .production-badge strong {
        font-size: 56px;
    }
}

@media(max-width: 991px) {
    .production-section__image {
        position: relative;
        top: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        margin-bottom: -40px;
        transform: none;
    }

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

    .production-card {
        width: 100%;
        padding: 42px 32px 38px;
        border-radius: 18px;
    }

    .production-badge {
        left: auto;
        right: 28px;
        top: -58px;
    }
    .production-card:after{
        display: none;
    }
}

@media(max-width: 767px) {
    .production-section__image {
        aspect-ratio: 4 / 3;
        margin-bottom: -28px;
    }

    .production-card {
        padding: 34px 20px 28px;
        border-radius: 14px;
    }

    .production-card h2 {
        padding-right: 95px;
    }

    .production-text {
        margin-bottom: 28px;
        font-size: 16px;
        line-height: 1.45;
    }

    .production-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .production-list__item {
        font-size: 15px;
    }

    .production-badge {
        right: 18px;
        top: -45px;
        width: 82px;
        height: 74px;
        border-radius: 10px;
    }

    .production-badge strong {
        font-size: 44px;
    }

    .production-badge span {
        font-size: 12px;
    }
}

@media(max-width: 399px) {
    .production-card h2 {
        padding-right: 0;
    }

    .production-badge {
        position: static;
        margin-bottom: 18px;
    }
}

@media(min-width: 1450px) {
    .production-card {
        width: calc(820px + ((100vw - 1420px) / 2));
        margin-right: calc((1420px - 100vw) / 2);
        padding-right: 58px;
    }

    .production-card h2,
    .production-text,
    .production-list {
        max-width: 760px;
    }
}

/* Delivery */
.delivery-header {
    max-width: 1280px;
    margin-bottom: 42px;
    color: #fff;
}

.delivery-header h2 {
    margin-bottom: 7px;
}

.delivery-text {
    color: #fff;
    font-size: 21px;
    line-height: 1.35;
    letter-spacing: 0.1px;
}

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

.delivery-step {
    min-height: 212px;
    padding: 26px 28px 28px;
    border-radius: 12px;
    background: #fff;
    color: #4f596b;
}

.delivery-step__top {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.delivery-step__icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    border-radius: 9px;
    background: rgba(232, 101, 26, 0.1);
}

.delivery-step__icon img {
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}

.delivery-step__number {
    color: rgba(232, 101, 26, 0.28);
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

.delivery-step__title {
    margin-bottom: 16px;
    color: #111820;
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
}

.delivery-step__text {
    color: #4f596b;
    font-size: 17px;
    line-height: 1.45;
}

@media(max-width: 1449px) {
    .delivery-text {
        font-size: 19px;
    }

    .delivery-steps {
        gap: 24px;
    }

    .delivery-step {
        padding: 24px 22px;
    }

    .delivery-step__title {
        font-size: 17px;
    }

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

@media(max-width: 1199px) {
    .delivery-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .delivery-step {
        min-height: 190px;
    }
}

@media(max-width: 991px) {
    .delivery-header {
        margin-bottom: 32px;
    }

    .delivery-text {
        font-size: 17px;
        line-height: 1.45;
    }
}

@media(max-width: 767px) {
    .delivery-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .delivery-step {
        min-height: 0;
        padding: 22px 18px;
        border-radius: 10px;
    }

    .delivery-step__top {
        margin-bottom: 18px;
    }

    .delivery-step__title {
        margin-bottom: 10px;
        font-size: 17px;
    }

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



/* Video reviews */
.video-section {
    overflow: hidden;
    background: var(--dark-color);
}

.video-slider {
    margin-left: -18px;
    margin-right: -18px;
}

.video-slider .slick-list {
    overflow: visible;
}

.video-slider .slick-slide {
    padding: 0 18px;
}

.video-item {
    position: relative;
    display: block;
    overflow: hidden;
    background: #1b242d;
    color: #fff;
    width: 100%;
    aspect-ratio: 302 / 469;
    height: auto;
    max-width: 302px;
}

.video-item:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(5, 13, 19, 0.42);
    transition: background 300ms ease-out;
}

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

.video-item__play {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 3;
    width: 58px;
    height: 58px;
    border: 4px solid #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 300ms ease-out;
}

.video-item__play:before {
    content: "";
    position: absolute;
    left: 18px;
    top: 13px;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.video-item:hover:before {
    background: rgba(5, 13, 19, 0.22);
}

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

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

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


@media(max-width: 1449px) {
    .video-slider {
        margin-left: -14px;
        margin-right: -14px;
    }

    .video-slider .slick-slide {
        padding: 0 14px;
    }
}

@media(max-width: 767px) {
    .video-slider {
        margin-left: -8px;
        margin-right: -8px;
    }

    .video-slider .slick-slide {
        padding: 0 8px;
    }

    .video-item__play {
        width: 52px;
        height: 52px;
        border-width: 3px;
    }

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


/* Custom order */
.custom-order-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.custom-order-info {
    max-width: 100%;
    color: #fff;
    text-align: right;
}

.custom-order-info h2 {
    margin-bottom: 24px;
    line-height: 1.04;
}
.custom-order-info h2 .accent{
    font-size: 60px;
}

.custom-order-text {
    max-width: 520px;
    margin-left: auto;
    margin-bottom: 34px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
}

.custom-order-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    max-width: 520px;
    margin-left: auto;
}

.custom-order-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 18px 2px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.17);
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.custom-order-form {
    width: 520px;
    max-width: 100%;
    padding: 33px 33px 34px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.055);
    color: #fff;
}

.custom-order-form label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.2;
}

.custom-form-row {
    display: flex;
    gap: 16px;
}

.custom-form-row .form-group {
    width: 50%;
}

.custom-order-form .form-control {
    height: 42px;
    margin-bottom: 18px;
    padding: 0 17px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.custom-order-form .form-control.error{
    border-color: red;
}

.custom-order-form textarea.form-control {
    height: 102px;
    min-height: 102px;
    padding-top: 13px;
    border-radius: 22px;
}

.custom-order-form .form-control:focus {
    border-color: rgba(232, 101, 26, 0.75);
    background: rgba(255, 255, 255, 0.18);
}

.custom-order-form .form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.custom-order-form .form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.custom-order-form .form-control::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.58);
}

.custom-order-agreement {
    margin-top: -5px;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.62);
}

.custom-order-agreement label {
    margin-bottom: 0;
    padding-left: 25px;
    font-size: 13px;
    line-height: 1.28;
}

.custom-order-agreement a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.custom-order-agreement a:hover {
    color: var(--accent-color1);
}

.custom-order-agreement input + label:before {
    top: 2px;
    width: 15px;
    height: 15px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
}

.custom-order-agreement input:checked + label:before {
    border-color: var(--accent-color1);

    background: url(../images/checked.svg) 0 0 no-repeat var(--accent-color1);
}

.custom-order-submit {
    width: 100%;
    height: 48px;
    font-size: 20px;
    font-weight: 700;
}

.custom-order-submit img {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    object-fit: contain;
}

@media(max-width: 1199px) {
    .custom-order-row {
        gap: 45px;
    }

    .custom-order-info {
        width: 520px;
    }

    .custom-order-form {
        width: 500px;
    }
}

@media(max-width: 991px) {
    .custom-order-row {
        display: block;
    }

    .custom-order-info {
        width: 100%;
        margin-bottom: 35px;
        text-align: left;
    }

    .custom-order-text,
    .custom-order-tags {
        max-width: 100%;
        margin-left: 0;
    }

    .custom-order-tags {
        justify-content: flex-start;
    }

    .custom-order-form {
        width: 100%;
    }
}

@media(max-width: 767px) {
    .custom-order-info h2 {
        margin-bottom: 18px;
    }

    .custom-order-text {
        margin-bottom: 25px;
        font-size: 16px;
        line-height: 1.45;
    }

    .custom-order-tags {
        gap: 8px;
    }

    .custom-order-tags span {
        min-height: 29px;
        padding-left: 14px;
        padding-right: 14px;
        font-size: 13px;
    }

    .custom-order-form {
        padding: 24px 18px;
        border-radius: 12px;
    }

    .custom-form-row {
        display: block;
    }

    .custom-form-row .form-group {
        width: 100%;
    }

    .custom-order-submit {
        font-size: 17px;
    }
    .custom-order-info h2 .accent{
        font-size: 46px;
    }
}


/* Footer */
.footer {
    padding: 50px 0 30px;
    min-height: 0;
    background: var(--dark-color);
    color: #fff;
}

.footer-row {
    display: grid;
    grid-template-columns: minmax(0, 650px) 190px 310px;
    justify-content: space-between;
    gap: 60px;
}

.footer-company {
    margin-bottom: 28px;
    color: #fff;
    line-height: 1.35;
    width: 410px;
    max-width: 100%;
}

.footer-disclaimer {
    max-width: 590px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.25;
}

.footer-policy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.footer-policy a {
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

.footer-nav ul {
    padding-top: 8px;
}

.footer-nav li {
    margin-bottom: 17px;
    line-height: 1.15;
}

.footer-nav a {
    color: #fff;
    font-size: 18px;
}

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

.footer-contacts {
    padding-top: 8px;
}

.footer-contact,
.footer-contact-row {
    display: flex;
    align-items: center;
}

.footer-contact {
    margin-bottom: 17px;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
}

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

.footer-contact img {
    flex: 0 0 auto;
    margin-right: 8px;
    object-fit: contain;
}

.footer-contact-row {
    gap: 10px;
    margin-bottom: 17px;
}

.footer-contact-row .footer-contact {
    margin-bottom: 0;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

.footer-social img {
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 42px;
    padding: 0 24px 2px;
    border-radius: 22px;
    background: var(--accent-color1);
    color: #fff;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

.footer-btn:hover {
    background: var(--accent-color1-hover);
    color: #fff;
}

.footer-btn img {
    width: 17px;
    height: 17px;
    margin-right: 8px;
    object-fit: contain;
}

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

.footer-copy {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    width: calc(100% - 146px);
    padding-right: 30px;
}

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

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

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

@media(max-width: 1199px) {
    .footer-row {
        grid-template-columns: minmax(0, 1fr) 180px 290px;
        gap: 35px;
    }

    .footer-company {
        font-size: 16px;
    }

    .footer-contact {
        font-size: 16px;
    }
}

@media(max-width: 991px) {
    .footer {
        padding-top: 42px;
    }

    .footer-row {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info {
        grid-column: 1 / -1;
    }

    .footer-nav ul {
        padding-top: 0;
    }

    .footer-contacts {
        padding-top: 0;
    }

    .footer-bottom {
        margin-top: 34px;
    }
}

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

    .footer-row {
        display: block;
    }

    .footer-info,
    .footer-nav {
        margin-bottom: 30px;
    }

    .footer-company {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .footer-disclaimer {
        margin-bottom: 22px;
        font-size: 13px;
        line-height: 1.35;
    }

    .footer-nav li {
        margin-bottom: 13px;
    }

    .footer-nav a {
        font-size: 17px;
    }

    .footer-contact {
        font-size: 16px;
    }

    .footer-bottom {
        display: block;
        margin-top: 32px;
    }

    .footer-copy {
        margin-bottom: 22px;
        font-size: 13px;
        padding-right: 0;
        width: 100%;
    }

    .footer-dev {
        justify-content: flex-start;
        text-align: left;
    }
}

/* Fixed nav panel */
.fixed-nav-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    padding: 9px 0;
    background: rgba(8, 24, 35, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 300ms ease-out, opacity 300ms ease-out, visibility 300ms ease-out;
}

.fixed-nav-panel.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.fixed-nav-panel__row {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fixed-nav-logo {
    flex: 0 0 auto;
    width: 142px;
}

.fixed-nav-logo img {
    width: 100%;
}

.fixed-nav {
    flex: 1 1 auto;
}

.fixed-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.fixed-nav li{
    margin-left: 2px;
    margin-right: 2px;
}
.fixed-nav a {
    display: flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px 2px;
    border-radius: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.fixed-nav a:hover,
.fixed-nav li.active a {
    color: #fff;
    background: var(--accent-color1);
}

.fixed-nav-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 22px 2px;
    border-radius: 20px;
    background: var(--accent-color1);
    color: #fff;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    white-space: nowrap;
}

.fixed-nav-btn:hover {
    background: var(--accent-color1-hover);
    color: #fff;
}

.fixed-menu-button {
    display: none;
}

@media(max-width: 1199px) {
    .fixed-nav-logo {
        width: 125px;
    }

    .fixed-nav a {
        padding-left: 9px;
        padding-right: 9px;
        font-size: 14px;
    }

    .fixed-nav-btn {
        padding-left: 17px;
        padding-right: 17px;
    }
}

@media(max-width: 991px) {
    .fixed-nav-panel {
        display: none;
    }
}


/* Inner pages */
.inner-template {
    background: var(--dark-color);
}

.inner-template .header {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    background: var(--dark-color);
    z-index: 10;
}

.inner-template .main-content {
    background: var(--dark-color);
}

.inner-template .content-section {
    padding-top: 60px;
    padding-bottom: 80px;
    min-height: 420px;
}

.inner-template .content-section h1 {
    margin-bottom: 30px;
}

.inner-template .fixed-nav-panel {
    display: none;
}

@media(max-width: 991px){
    .inner-template .content-section{
        padding-top: 100px;
    }
}

@media(max-width: 767px) {
    .inner-template .content-section {
        padding-bottom: 60px;
    }
    .content-section h1,
    .content-section h2{
        font-size: 42px;
        line-height: 1.08;
        word-break: normal;
        overflow-wrap: break-word;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    margin-bottom: 24px;
    max-width: 100%;
    overflow: hidden;
}

.breadcrumb {
    display: flex;
    align-items: center;
    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;
    color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.breadcrumb .active,
.breadcrumb li.active {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
    .breadcrumbs-wrapper {
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

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

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

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


/* Equipment table from richtext editor */
.equipment-content {
    width: 100%;
}

.equipment-content table {
    width: 100% !important;
    border-collapse: collapse;
    border-spacing: 0;
    border: 0 !important;
    color: #1b1b1b;
    font-size: 17px;
    line-height: 1.45;
}

.equipment-content table tbody,
.equipment-content table tr {
    width: 100%;
}

.equipment-content table th,
.equipment-content table td {
    padding: 13px 22px;
    border: 0 !important;
    vertical-align: top;
    color: #1b1b1b;
    font-weight: 400;
    background: transparent;
}

.equipment-content table tr:nth-child(odd) td {
    background: #e9e9e9;
}

.equipment-content table td:first-child,
.equipment-content table th:first-child {
    width: 48%;
    color: #1b1b1b;
    font-weight: 400;
}

.equipment-content table td:last-child,
.equipment-content table th:last-child {
    width: 52%;
}

.equipment-content table p {
    margin: 0;
}

.equipment-content table br {
    display: block;
}

@media (max-width: 767px) {
    .equipment-content {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .equipment-content table {
        min-width: 680px;
        font-size: 15px;
    }

    .equipment-content table th,
    .equipment-content table td {
        padding: 11px 16px;
    }
}