/*START//////////////////////////////////////////////////////////////////////
:: variables ::
///////////////////////////////////////////////////////////////////////////*/

:root {
    --brown: #5f2b08;
    --orange: #fd7d00;
    --white: #fafafa;
    --transition: all 0.3s ease;
    --header-min-height: 150px;
}

@media (max-width: 1199px) {
    :root {
        --header-min-height: 120px;
    }
}

@media (max-width: 567px) {
    :root {
        --header-min-height: 64px;
    }
}

/*END//////////////////////////////////////////////////////////////////////
:: variables ::
/////////////////////////////////////////////////////////////////////////*/
/*START//////////////////////////////////////////////////////////////////////
:: fonts ::
///////////////////////////////////////////////////////////////////////////*/
@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-ExtraBold.eot");
    src: local("Gilroy ExtraBold"), local("Gilroy-ExtraBold"),
        url("../fonts/gilroy/Gilroy-ExtraBold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/gilroy/Gilroy-ExtraBold.woff") format("woff"),
        url("../fonts/gilroy/Gilroy-ExtraBold.ttf") format("truetype");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Regular.eot");
    src: local("Gilroy Regular"), local("Gilroy-Regular"),
        url("../fonts/gilroy/Gilroy-Regular.eot?#iefix") format("embedded-opentype"),
        url("../fonts/gilroy/Gilroy-Regular.woff") format("woff"),
        url("../fonts/gilroy/Gilroy-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Gilroy";
    src: url("../fonts/gilroy/Gilroy-Bold.eot");
    src: local("Gilroy Bold"), local("Gilroy-Bold"),
        url("../fonts/gilroy/Gilroy-Bold.eot?#iefix") format("embedded-opentype"),
        url("../fonts/gilroy/Gilroy-Bold.woff") format("woff"),
        url("../fonts/gilroy/Gilroy-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

/*END//////////////////////////////////////////////////////////////////////
:: fonts ::
/////////////////////////////////////////////////////////////////////////*/
@media (min-width: 1201px) {
    .container {
        width: 1140px;
    }
}
/*START//////////////////////////////////////////////////////////////////////
:: global ::
///////////////////////////////////////////////////////////////////////////*/
body {
    overflow-x: hidden;
}
body * {
    outline: none !important;
}
.btn {
    display: flex;
    width: fit-content;
    padding: 20px 22px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 1;
    border-radius: 0;
    color: #ffffff;
    transition: var(--transition);
}

.btn-small {
    font-size: 19px;
    padding: 11px 17px;
    text-transform: uppercase;
}
.btn-orange {
    background-color: var(--orange);
}
.btn-inherit-brown {
    background-color: inherit;
    border: 3px solid var(--brown);
    color: var(--brown);
}
.btn-inherit-brown:hover {
    background-color: var(--brown);
    border: 3px solid var(--brown);
    color: white;
}
.btn-orange:hover {
    background-color: var(--brown);
    color: #ffffff;
}
.section {
    padding: 25px 0;
    overflow: hidden;
}
.section:first-child {
    padding-top: 0;
}
.section__title {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 45px;
    line-height: 150%;
    margin-top: 0;
    position: relative;
    display: inline-flex;
    color: #fd7d00;
    user-select: none;
}
.section__title.title--brown {
    color: var(--brown);
}
.section.without-title {
    padding-top: 60px;
}
.section.without-title > .container {
    position: relative;
}
.section.without-title > .container::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    background-color: var(--orange);
    left: 15px;
    top: -60px;
    width: calc(100% + calc(100vw - 100%) / 2);
}
.section__title::after {
    position: absolute;
    top: calc(50% - 0.5px);
    left: calc(100% + 49px);
    display: block;
    content: "";
    width: 2000px;
    height: 1px;
    background-color: #fd7d00;
}
.section__title.title--brown::after {
    background-color: var(--brown);
}
[type="submit"] {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    line-height: 1;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: justify;
    text-transform: uppercase;
    padding: 18px 20px;
    background-color: var(--orange);
    color: #ffffff;
    border: none;
    height: fit-content;
    transition: var(--transition);
}
[type="submit"]:hover {
    background-color: var(--brown);
}
.wpcf7-text {
    padding: 13px 20px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 1;
    border: none !important;
    color: var(--brown);
    flex-basis: 100%;
    height: 100%;
    outline: none !important;
}
.wpcf7-text::placeholder {
    color: #cac3c3;
}

div.wpcf7-response-output {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.span.wpcf7-not-valid-tip {
    margin-top: 5px;
}
.wpcf7-not-valid-tip {
    /*     padding: 10px 0; */
}
span.wpcf7-not-valid-tip {
    margin: 10px 0 0;
}

@media (max-width: 1199px) {
    .btn {
        padding: 10px 15px;
        font-size: 22px;
    }
    .btn-small {
        font-size: 17px;
        padding: 11px 15px;
        text-transform: uppercase;
    }
    .section {
        padding: 30px 0;
    }

    .section__title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section.without-title {
        padding-top: 60px;
    }

    .section.without-title > .container::before {
        top: -60px;
    }
}

@media (max-width: 567px) {
    .btn {
        padding: 12px 15px;
        font-size: 18px;
    }
    .btn-small {
        font-size: 14px;
        padding: 12px 13px;
        text-transform: uppercase;
    }
    .section {
        padding: 25px 0;
    }

    .section__title {
        font-size: 23px;
    }
    .section__title::after {
        left: calc(100% + 25px);
    }
    .section.without-title {
        padding-top: 50px;
    }

    .section.without-title > .container::before {
        top: -50px;
        width: 100vw;
        left: 0;
    }
    [type="submit"] {
        font-size: 14px;
        padding: 9px 7px;
    }

    .wpcf7-text {
        padding: 3px 10px;
        font-size: 14px;
    }
}

.splite_sideEnquiry {
    display: none !important;
}
/*END//////////////////////////////////////////////////////////////////////
:: global ::
///////////////////////////////////////////////////////////////////////////*/
/*START//////////////////////////////////////////////////////////////////////
:: header ::
///////////////////////////////////////////////////////////////////////////*/
body {
    background-color: var(--white) !important;
    position: relative;
}
body * {
    font-family: Gilroy, sans-serif;
}
.main {
    position: relative;
}

body.popup-is-open {
    overflow: hidden;
}
body:after {
    display: block;
    content: "";
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    right: -100%;
    z-index: 15;
    transition: all 0.3s ease;
    opacity: 0;
}
body.popup-is-open::after {
    right: 0;
    opacity: 1;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    /*  background-color: var(--white); */
    z-index: 10;
    transition: var(--transition);
}
.header.scrolled {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background-color: var(--white);
}
.header.scrolled .header__inner {
    min-height: calc(var(--header-min-height) - 100px);
    padding: 15px 0;
}
.header__logo-img {
    transition: var(--transition);
    height: 123px;
}
.header.scrolled .header__logo-img {
    height: 90px;
}
.header + * {
    margin-top: var(--header-min-height);
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    min-height: var(--header-min-height);
    transition: var(--transition);
}
.header__nav {
    display: flex;
    justify-content: space-between;

    padding: 0 56px;
}
.header__nav > ul {
    width: 600px;
    display: flex;
    list-style: none;
    padding-left: 0;
    margin: -15px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.header__nav > ul > li {
    margin: 15px;
}
.header__nav > ul li {
    display: flex;
    list-style: none;
}
.header__nav > ul li a {
    text-decoration: none !important;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    transition: color 0.3s ease;
    color: var(--brown);
}
.header__nav > ul li:hover > a,
.header__nav > ul li.current-menu-item > a {
    color: var(--orange);
}
.header__nav .menu-item {
    position: relative;
}
.header__nav .menu-item-has-children {
    position: relative;
    padding-right: 15px;
}
.header__nav .menu-item-has-children::after {
    display: block;
    position: absolute;
    content: "";
    right: 0;
    top: 10px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--brown);
    transition: var(--transition);
}

.header__nav .menu-item-has-children > .sub-menu {
    position: absolute;
    top: calc(100% + 10px);
    min-width: 100%;
    left: 0;
    max-height: 0;
    overflow: hidden;
    margin-left: 0;
    padding: 0px 10px;
    background-color: var(--white);
    transition: var(--transition);
    line-height: 2;
}

@media (min-width: 1201px) {
    .header__nav .menu-item-has-children > .sub-menu:hover {
        overflow: visible;
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children {
        cursor: pointer;
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children::after {
        transform: rotate(-90deg);
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children:hover::after {
        transform: rotate(-90deg);
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children > .sub-menu {
        left: calc(100% + 10px);
        top: 0;
    }
    .header__nav .menu-item-has-children > .sub-menu {
        min-width: 200px;
    }
    .header__nav .menu-item-has-children:hover::after {
        transform: rotate(180deg);
    }
    .header__nav .menu-item-has-children:hover > .sub-menu {
        margin-left: 0;
        max-height: 1000px;
        box-shadow: 0 1px 8px rgb(0 0 0 / 40%);
        padding-top: 5px;
        padding-bottom: 5px;
    }
}
.header__nav .menu-item-has-children .sub-menu > li:not(:last-child):not(:only-child) {
    border-bottom: 1px solid var(--brown);
}
.header__nav .menu-item-has-children .sub-menu > li a {
    font-size: 16px;
}

.header__buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: -15px;
    min-width: 170px;
}
.header__button {
    display: inline-flex;
    margin: 15px;
}

.header__button path {
    transition: var(--transition);
    fill: var(--brown);
}
.header__button:hover path {
    fill: var(--orange);
}
.header__toggler {
    width: 50px;
    height: 40px;
    position: relative;
}
.header__toggler > span {
    position: absolute;
    left: 0;
    width: 100%;
    display: block;
    height: 4px;
    border-radius: 30px;
    background-color: var(--brown);
    transition: var(--transition);
}
.header__toggler > span:first-child {
    top: 0;
}
.header__toggler > span:nth-child(2) {
    top: calc(50% - 2px);
}
.header__toggler > span:nth-child(3) {
    top: calc(100% - 4px);
}

.header__toggler.active > span:first-child {
    top: calc(50% - 2px);
    transform: rotate(45deg);
}
.header__toggler.active > span:nth-child(2) {
    opacity: 0;
}
.header__toggler.active > span:nth-child(3) {
    top: calc(50% - 2px);
    transform: rotate(-45deg);
}
@media (max-width: 1200px) {
    .header__inner {
        padding: 15px 0;
    }

    .small-header-nav__cross {
        width: 50px;
        height: 40px;
        position: relative;
    }
    .small-header-nav__cross > span {
        position: absolute;
        left: 0;
        width: 100%;
        display: block;
        height: 4px;
        border-radius: 30px;
        background-color: var(--brown);
        transition: var(--transition);
    }
    .small-header-nav__cross > span:nth-child(1) {
        top: calc(50% - 2px);
        transform: rotate(-45deg);
    }
    .small-header-nav__cross > span:nth-child(2) {
        top: calc(50% - 2px);
        transform: rotate(45deg);
    }
    .small-header-nav__inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 100vh;
        padding-bottom: 30px;
    }
    .small-header-nav__inner-top {
        min-height: var(--header-min-height);
        display: flex;
        align-items: center;
    }
    .header {
        background-color: white;
    }
    .small-header-nav {
        position: fixed;
        left: -100%;
        top: 0;
        min-width: 50vw;
        max-width: 100vw;
        height: 100vh;
        overflow: auto;
        background-color: white;
        z-index: 16;
        transition: var(--transition);
    }

    .small-header-nav.active {
        left: 0;
    }

    .header__nav {
        flex-direction: column;
        padding: 0;
    }
    .header__nav > ul {
        flex-direction: column;
        margin: 0;
        width: unset;
    }
    .header__nav > ul > li {
        width: fit-content;
        margin: 0;
        line-height: 4;
    }
    .header__nav .menu-item-has-children::after {
        /*  top: 34px; */
        display: none;
    }
    .header__nav .menu-item-has-children .arrow {
        top: 34px;
        display: block;
        position: absolute;
        content: "";
        right: 0;
       
        width: 0;
        height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid var(--brown);
        transition: var(--transition);
    }
    .header__nav .menu-item-has-children.active>.arrow {
       transform: rotate(180deg);
      
    }
    .header__nav .menu-item-has-children {
        flex-direction: column;
    }
    .header__nav > ul li a {
        width: fit-content;
    }
    .header__nav .menu-item-has-children > .sub-menu {
        position: static;
        background-color: inherit;
        padding: 0;
        padding-left: 15px;
        box-shadow: none;

        transition: all 0.3s ease;
    }
    .header__nav .menu-item-has-children.active > .sub-menu {
        max-height: 500px;
        overflow: visible;
      /*   margin-top: -20px;
        margin-bottom: -15px; */
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children>.arrow {
        top: 17px;
        right: -15px;
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children>.sub-menu{
    margin-top: 0;
    margin-bottom: 0;
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children>.sub-menu>li{
     line-height: 1.5;
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children {
        padding-right: 30px;
    }
    .header__nav .menu-item-has-children .sub-menu > li {
        line-height: 2.5;
    }
    .header__nav .menu-item-has-children .sub-menu > li:not(:last-child):not(:only-child) {
        border: none;
    }
    .header__nav .menu-item-has-children.active::after {
        transform: rotate(180deg);
    }

    .header__logo {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-basis: 100%;
        margin-left: -50px;
    }

    .header__buttons {
        width: fit-content;
        margin-top: auto;
        min-width: unset;
        margin: -20px;
    }
    .header__button {
        width: fit-content;
        margin-top: auto;
        margin: 20px;
    }
    .header__logo-img {
        max-height: 100px;
    }
}

@media (max-width: 767px) {
    .header__logo-img {
        max-height: 80px;
    }
    .small-header-nav__inner {
        padding-bottom: 20px;
    }
}
@media (max-width: 567px) {
   
    .header__inner {
        padding: 5px 0;
    }
    .header.scrolled .header__logo-img {
        max-height: 40px;
    }
    .header.scrolled .header__inner {
        padding: 5px 0;
    }
    .header__logo {
        margin-left: -24px;
    }
    .header__logo-img {
        max-height: 45px;
    }
    .header__toggler {
        width: 24px;
        height: 22px;
    }
    .header__toggler > span {
        height: 2px;
    }
    .header__toggler > span:first-child {
        top: 0;
    }
    .header__toggler > span:nth-child(2) {
        top: calc(50% - 1px);
    }
    .header__toggler > span:nth-child(3) {
        top: calc(100% - 2px);
    }
    .small-header-nav__cross {
        width: 24px;
        height: 24px;
        position: relative;
    }
    .small-header-nav__cross > span {
        height: 2px;
    }
    .small-header-nav__cross > span:nth-child(1) {
        top: calc(50% - 1px);
    }
    .small-header-nav__cross > span:nth-child(2) {
        top: calc(50% - 1px);
    }
    .header__nav .menu-item {
        width: 100%;
    }
    .header__nav .menu-item-has-children>.arrow {
        top: 25px;
    }
    .header__nav .menu-item-has-children > .sub-menu .menu-item-has-children>.arrow {
        top: 12px;
        right: -15px;
    }
    .header__nav {
        margin-top: -17px;
    }
    .header__nav > ul li a {
        font-size: 15px;
        line-height: 3.8;
    }

    .header__nav .menu-item-has-children .sub-menu > li a {
        font-size: 14px;
        line-height: 2;
    }
    .header__nav .menu-item-has-children.active > .sub-menu {
       /*  margin-top: -15px;
        margin-bottom: -15px; */
    }
}

/*END//////////////////////////////////////////////////////////////////////
:: header ::
/////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: home-banner ::
///////////////////////////////////////////////////////////////////////////*/

.main {
    position: relative;
}
.main > svg {
    position: absolute;
    top: calc(var(--header-min-height) * -1);
    left: 0;
}

.home-banner {
    padding-top: 0;
    min-height: calc(100vh - var(--header-min-height));
}
.home-banner > .container::before,
.home-banner > .container::after {
    display: none;
}
.home-banner {
    overflow: hidden;
}
.home-banner > .container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - var(--header-min-height) - 50px);
}

.home-banner__item-title {
    margin-bottom: 34px;
}

.home-banner__item-title--global{
    width: fit-content;
}

.home-banner__item-img-wrap {
    position: relative;
    padding-top: 69%;
    width: 100%;
}
.home-banner__item-img {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-banner .slick-list {
    overflow: visible !important;
}
.home-banner .slick-slide:not(.slick-current):not(.home-banner .slick-slide.slick-current + *) {
    opacity: 0;
    pointer-events: none;
}
.home-banner__item {
    transition: var(--transition);
    overflow: visible !important;
}

@media (min-width: 1200px) {
    .home-banner__item-title {
        white-space: nowrap;
    }
    .home-banner .home-banner__item.slick-active {
        width: 40.46vw !important;
    }
    .home-banner .slick-slide.slick-current + .home-banner__item {
        margin-top: 88px;
        height: calc(49.39vh - 88px);
        margin-left: 30px;
    }
    .home-banner .slick-slide.slick-current + * .home-banner__item-title {
        font-size: 35px;
        opacity: 0.8;
        margin-bottom: 20px;
        line-height: 1.5;
        font-weight: 400;
    }
    .home-banner .slick-slide.slick-current + * .home-banner__item-bottom {
        opacity: 0;
    }
    .home-banner .slick-slide.slick-current + * .home-banner__item-title::after {
        display: none;
    }
    .home-banner .slick-slide.slick-current + * .home-banner__item-inner {
        overflow: hidden;
    }
}

.home-banner__item-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 51px 40px;
}

.home-banner__item-subtitle {
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 123.5%;
    margin-bottom: 24px;
    color: #ffffff;
    width: 280px;
    max-width: 100%;
}
.home-banner__nav {
    display: flex;

    width: 100%;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    margin-top: 50px;
}
.home-banner__nav .slick-arrow {
    display: inline-flex;

    justify-content: space-between;
    align-items: center;
    position: relative;
}
.home-banner__nav .slick-arrow:not(.slick-disabled) {
    cursor: pointer;
}
.home-banner__prev {
    min-width: 166px;
}
.home-banner__next {
    transform: rotate(180deg);
    flex-basis: 100%;
}

.home-banner__prev.slick-arrow::after,
.home-banner__next.slick-arrow::after {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--orange);
    top: calc(50% - 1px);

    transition: var(--transition);
}
.home-banner__prev.slick-arrow::after {
    left: 2px;
    transition: var(--transition);
}
.home-banner .slick-arrow.slick-disabled::after {
    background-color: #d1c4ba;
}
.home-banner .slick-arrow.slick-disabled path {
    fill: #d1c4ba;
}
.home-banner .slick-arrow:hover:not(.slick-disabled)::after {
    background-color: var(--orange);
}
.home-banner .slick-arrow:hover:not(.slick-disabled) path {
    fill: var(--orange);
}
.home-banner__next.slick-arrow::after {
    right: -2px;
    left: unset;
}
.home-banner__dots {
    display: flex;

    margin: 0 4px;
    z-index: 2;
}
.home-banner__items-wrap::after {
    position: absolute;
    content: "";
    display: block;
    width: 5000px;
    left: -1000px;
    top: 100%;
    background-color: var(--white);
    height: 50vh;
}
.home-banner__dots .slick-dots {
    display: flex;
    list-style: none;

    padding: 0;
    margin: 0;
    position: relative;
    background-color: var(--white);
    padding: 0 30px;
}
.home-banner__dots .slick-dots button {
    font-family: "Gilroy";
    border: none;
    background-color: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 1;
    user-select: none;
    display: flex;
    align-items: center;
    color: #d1c4ba;
    padding: 0 20px;
    transition: var(--transition);
}
.home-banner__dots .slick-dots .slick-active button,
.home-banner__dots .slick-dots button:hover {
    color: var(--orange);
}
@media (max-width: 1600px) {
    .home-banner__item-bottom {
        position: absolute;
        left: 0;
        bottom: 0;
        padding: 30px;
    }
    .home-banner__item-title {
        margin-bottom: 17px;
        font-size: 35px;
    }
    .home-banner__item-img-wrap {
        padding-top: 60%;
    }
    .home-banner__nav {
        margin-top: 40px;
    }
}
@media (max-width: 1199px) {
    .home-banner {
        padding-top: 30px;
    }
    .home-banner .slick-slide:not(.slick-current) {
        opacity: 0;
    }
    .home-banner > .container {
        width: 600px;
        max-width: 100%;
        margin: 0 auto;
    }
    .home-banner__item-img-wrap {
        position: relative;
        padding-top: 61vh;
        width: 100%;
    }
    .home-banner__nav {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .home-banner {
        min-height: unset;
    }
    .home-banner__item-bottom {
        padding: 30px 30px;
    }
    .home-banner__item-title {
        margin-bottom: 30px;
    }
    .home-banner__item-subtitle {
        font-size: 22px;
        width: 200px;
        margin-bottom: 16px;
    }
}

@media (max-width: 567px) {
    .home-banner > .container {
        width: 360px;
    }
    .home-banner__item-title {
        font-size: 21px;
    }
    .home-banner__item-title--global{
      margin-bottom: 0;
      margin-top: -8px;
    }
    .home-banner__item-bottom {
        padding: 25px 20px;
    }
    .home-banner__item-subtitle {
        font-size: 18px;

        margin-bottom: 16px;
    }
    .home-banner__nav {
        margin-top: 0px;
    }
    .home-banner__nav .slick-arrow {
        flex-basis: 50%;
    }
    .home-banner__prev {
        min-width: unset;
    }
    .home-banner__dots {
        justify-content: center;
        min-width: 30%;
        max-width: 80%;
    }
    .home-banner__dots .slick-dots {
        padding: 0 10px;
        min-width: none;
    }
    .home-banner__dots .slick-dots button {
        font-size: 20px;
        padding: 0 10px;
    }

    .home-banner__item-img-wrap {
        padding-top: 68vh;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: home-banner ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: category ::
///////////////////////////////////////////////////////////////////////////*/
.categories__title {
    margin-bottom: 60px;
}
.categories .our-products__item > .our-products__item-material {
    background-color: #ca2d22;
}
.categories__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 34px;
}
@media (min-width: 568px) {
    .categories .our-products__item:nth-child(5n - 3) {
        grid-column-start: 2;
        grid-column-end: 4;
        padding-top: 35%;
    }
}

@media (max-width: 1199px) {
    .categories__title {
        margin-bottom: 60px;
    }
}
@media (max-width: 991px) {
}

@media (max-width: 567px) {
    .categories__title {
        margin-bottom: 30px;
    }
    .categories__items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 9px;
    }
    .categories .our-products__item:first-child {
        grid-column-start: 1;
        grid-column-end: 3;
        padding-top: 40%;
    }
}

/*END//////////////////////////////////////////////////////////////////////
:: category ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: our-products ::
///////////////////////////////////////////////////////////////////////////*/

.our-products {
    position: relative;
    padding-bottom: 60px;
}
.our-products__bg {
    position: absolute;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    /*   object-fit: cover; */
    user-select: none;
    pointer-events: none;
}
.our-products__title {
    margin-bottom: 60px;
}
.our-products__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
}
.our-products__items:not(:last-child) {
    margin-bottom: 60px;
}
.our-products__item {
    display: flex;
    position: relative;
    padding-top: 80%;
    transition: var(--transition);
}
.our-products__item:hover {
    transform: scale(1.02);
    filter: drop-shadow(2px 4px 10px rgba(0, 0, 0, 0.5));
}
.our-products__item > .our-products__item-hidden {
    opacity: 0;
}
.our-products__item:hover > .our-products__item-hidden {
    opacity: 1;
}
.our-products__item > img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.our-products__item:hover > .our-products__item-thickness,
.our-products__item:hover > .our-products__item-material {
    opacity: 0;
}
.our-products__item > .our-products__item-thickness {
    position: absolute;
    top: 20px;
    left: 20px;
    color: white;
    padding: 4px 10px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    z-index: 2;
    min-width: 80px;
    max-width: calc(100% - 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ca2d22;
    transition: var(--transition);
}
.our-products__item > .our-products__item-material {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    padding: 9px 20px;
    min-width: 148px;
    max-width: calc(100% - 40px);
    position: absolute;
    left: 20px;
    bottom: 20px;
    background-color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #ffffff;
    transition: var(--transition);
}
.our-products__item-hidden {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    transition: var(--transition);
}
.our-products__item-hidden .our-products__item-material {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 33px;
    color: #ffffff;
}
.our-products__item-hidden .our-products__item-thickness {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 1;
    color: #ffffff;
}
.our-products__item-hidden .our-products__item-btn {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    /* identical to box height, or 36px */
    border: 1px solid white;
    display: flex;
    width: fit-content;
    align-items: center;
    text-transform: uppercase;
    padding: 8px 15px;
    color: #ffffff;
    margin-bottom: 33px;
    transition: var(--transition);
    text-decoration: none !important;
}
.our-products__item-hidden .our-products__item-btn:hover {
    text-decoration: none;
    color: black;
    background-color: white;
}

@media (max-width: 991px) {
    .our-products__items {
        grid-template-columns: repeat(2, 1fr);
    }
    .our-products__title {
        margin-bottom: 50px;
    }
    .our-products__items:not(:last-child) {
        margin-bottom: 50px;
    }
    .our-products {
        position: relative;
        padding-bottom: 60px;
    }
}

@media (max-width: 567px) {
    .our-products {
        padding-bottom: 20px;
    }
    .our-products__title {
        margin-bottom: 30px;
    }
    .our-products__items:not(:last-child) {
        margin-bottom: 30px;
    }
    .our-products__items {
        grid-gap: 9px;
    }

    .our-products__item > .our-products__item-thickness {
        font-size: 14px;
        min-width: 47px;
        padding: 3px 9px;
        top: 12px;
        left: 12px;
        max-width: calc(100% - 24px);
    }
    .our-products__item > .our-products__item-material {
        font-size: 14px;
        line-height: 1;
        padding: 7px 10px;
        min-width: 91px;
        max-width: calc(100% - 24px);
        left: 12px;
        bottom: 12px;
    }
    .our-products__item-hidden {
        padding: 20px;
    }
    .our-products__item-hidden .our-products__item-material {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .our-products__item-hidden .our-products__item-btn {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 5px 10px;
    }
    .our-products__item-hidden .our-products__item-thickness {
        font-size: 14px;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: our-products ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: contact-us ::
///////////////////////////////////////////////////////////////////////////*/
.contact-us {
    padding-top: 60px;
}
.contact-us > .container {
    position: relative;
}
.contact-us > .container::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    background-color: var(--orange);
    left: 15px;
    top: -60px;
    width: calc(100% + calc(100vw - 100%) / 2);
}
.contact-us__inner {
    position: relative;
    padding: 40px 50px;
    display: flex;
}
.contact-us__bg {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: calc(100% + calc(100vw - 100%) / 2);
    max-width: unset;
}

.contact-us__content {
    z-index: 2;
    position: relative;
    width: 633px;
    max-width: 100%;
    text-align: justify;

    margin-right: 64px;
}
.contact-us__logo {
    position: relative;
    z-index: 2;
    display: block;
    margin: auto 0;
}
.contact-us__content-text {
    margin-bottom: 34px;
}
.contact-us__content-text-title {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 19px;
    text-align: justify;
    text-transform: uppercase;
    margin-top: 0;
    color: var(--orange);
}
.contact-us__content-text-description {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 40px;
    /* or 211% */

    display: flex;
    align-items: center;
    text-align: justify;

    color: var(--brown);
}

.contact-us__content-buttons {
    display: flex;
}
.contact-us__content-buttons .btn {
    font-size: 22px;
    padding: 14px 12px;
    justify-content: center;
    align-items: center;
    min-width: 245px;
}
.contact-us__content-buttons .btn:first-child {
    margin-right: 35px;
}
@media (max-width: 991px) {
    .contact-us {
        padding-top: 60px;
    }

    .contact-us > .container::before {
        top: -60px;
    }
    .contact-us__content {
        margin-right: 0;
    }
    .contact-us__inner {
        flex-direction: column-reverse;
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }
    .contact-us__logo {
        margin: 0 auto 30px;
    }
    .contact-us__bg {
        width: calc(100% + calc(100vw - 100%));
        left: calc(calc(100vw - 100%) / 2 * -1);
    }
    .contact-us__content-buttons {
        justify-content: space-between;
    }
}

@media (max-width: 567px) {
    .contact-us {
        padding-top: 20px;
    }
    .contact-us > .container::before {
        display: none;
    }
    .contact-us__inner {
        padding: 30px 0;
    }
    .contact-us__logo {
        width: 147px;
        height: fit-content;
    }
    .contact-us__content-text-title {
        font-size: 14px;

        margin-bottom: 15px;
    }
    .contact-us__content-text-description {
        font-size: 15px;
        line-height: 1.55;
    }
    .contact-us__content-text {
        margin-bottom: 37px;
    }

    .contact-us__content-buttons > .btn {
        font-size: 14px;
        padding: 8px 13px;
        min-width: calc(50% - 1.5px);
        width: calc(50% - 3px);
    }
    .contact-us__content-buttons > .btn:first-child {
        margin-right: 6px;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: contact-us ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: benefits ::
///////////////////////////////////////////////////////////////////////////*/
.benefits {
    padding-bottom: 60px;
}
.benefits__title {
    margin-bottom: 30px;
}
.benefits__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}
.benefits__item {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.benefits__item-number {
    position: absolute;
    top: 0;
    left: -9px;
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 800;
    font-size: 128px;
    line-height: 157px;
    display: flex;
    align-items: center;

    color: var(--orange);

    opacity: 0.2;
}

.benefits__item-title {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.24;

    color: var(--brown);
    margin-top: 87px;
    margin-bottom: 20px;
}
.benefits__item-subtitle {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.58;

    color: var(--brown);
    margin-bottom: 33px;
}

.benefits__item-img-wrap {
    position: relative;
    padding-top: 44%;
    border-bottom: 10px solid var(--orange);
}
.benefits__item-img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .benefits {
        padding-bottom: 60px;
    }
    .benefits__title {
        margin-bottom: 30px;
    }
    .benefits__content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px;
    }
}
@media (max-width: 567px) {
    .benefits__title {
        margin-bottom: 0;
    }
    .benefits__content {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }
    .benefits {
        padding-bottom: 50px;
    }

    .benefits__item-number {
        left: 0;

        font-weight: 800;
        font-size: 100px;
        line-height: 123px;
    }

    .benefits__item-title {
        font-size: 20px;

        margin-top: 69px;
        margin-bottom: 21px;
    }
    .benefits__item-title::first-letter {
        padding-left: 10px;
    }
    .benefits__item-subtitle {
        font-size: 15px;
        line-height: 1.5;

        color: var(--brown);
        margin-bottom: 19px;
    }

    .benefits__item-img-wrap {
        position: relative;
        padding-top: 48%;
        border-bottom: 10px solid var(--orange);
    }
    .benefits__item-img {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: benefits ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: advantages ::
///////////////////////////////////////////////////////////////////////////*/
.advantages {
    position: relative;
    /*  overflow: visible; */
    padding-top: 100px;
}
.advantages > .container {
    position: relative;
}
.advantages > .container::before {
    position: absolute;
    display: block;
    content: "";
    height: 1px;
    background-color: var(--orange);
    left: 15px;
    top: -100px;
    width: calc(100% + calc(100vw - 100%) / 2);
}
.advantages__bg {
    position: absolute;
    left: 0;
    top: 64%;
    object-fit: cover;
    z-index: -1;
}

.advantages__items {
    display: grid;
    grid-template-columns: repeat(3, minmax(33%, auto));
    grid-gap: 20px;
}

.advantages__item {
    display: inline-flex;
    justify-content: center;
}
.advantages__item-image-wrap {
    margin-right: 25px;
}
.advantages__item-image {
    display: block;

    width: fit-content;
    height: fit-content;
    max-height: 80px;
}
.advantages__item-title {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 25px;
    line-height: 1.24;
    margin-bottom: 7px;
    margin-top: 0;
    color: var(--brown);
}

.advantages__item-subtitle {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.58;

    color: var(--brown);
}

@media (max-width: 991px) {
    .advantages {
        padding-top: 60px;
    }
    .advantages > .container::before {
        top: -60px;
    }
    .advantages__items {
        grid-template-columns: repeat(2, minmax(33%, auto));
    }
    .advantages__item {
        display: inline-flex;
        justify-content: flex-start;
    }
}
@media (max-width: 567px) {
    .advantages__items {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 50px;
    }
    .advantages__item {
        align-items: center;
    }
    .advantages__item-image-wrap {
        width: 114px;
        min-width: 114px;
    }
    .advantages__item-title {
        font-size: 20px;
        margin-bottom: 4px;
    }
    .advantages__item-subtitle {
        font-size: 15px;
        line-height: 1.57;
    }
}

/*END//////////////////////////////////////////////////////////////////////
:: advantages ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: delivery-options ::
///////////////////////////////////////////////////////////////////////////*/

.delivery-options {
    padding-bottom: 60px;
}
.delivery-options__title {
    margin-bottom: 60px;
}

.delivery-options__items {
    display: flex;
    margin: -15px -35px;
    flex-wrap: wrap;
}
.delivery-options__item {
    display: inline-flex;
    margin: 15px 35px;

    align-items: center;
}
.delivery-options__item > img {
    display: block;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

@media (max-width: 1199px) {
    .delivery-options__title {
        margin-bottom: 60px;
    }
    .delivery-options {
        padding-bottom: 60px;
    }
}
@media (max-width: 991px) {
    .delivery-options__title {
        margin-bottom: 30px;
    }
    .delivery-options {
        padding-bottom: 30px;
    }
}
@media (max-width: 567px) {
    .delivery-options__items {
        display: flex;
        margin: -15px -15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .delivery-options__item {
        display: inline-flex;
        margin: 15px 15px;

        align-items: center;
        max-height: 67px;
        max-width: 89px;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: delivery-options ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: subscribe ::
///////////////////////////////////////////////////////////////////////////*/

.subscribe {
    background-color: #f4f4f4;
    padding: 40px 0;
}

.subscribe br {
    display: none !important;
}
.subscribe .wpcf7-form p {
    display: flex;
    width: 100%;
    margin-bottom: 0;
}
.subscribe .wpcf7-form-control-wrap {
    width: 100%;
    margin-left: 48px;
}
.subscribe .wpcf7-form-control-wrap > input {
    width: 100%;
    height: fit-content;
    min-height: 58px;
}
.subscribe .ajax-loader {
    position: absolute;
    top: calc(50% - 8px);
    left: calc(50% - 8px);
}
@media (max-width: 991px) {
    .subscribe .wpcf7-form p {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 500px;
        max-width: 100%;
        margin: auto;
    }
    .subscribe .wpcf7-form-control-wrap {
        margin-left: 0;
        margin-top: 15px;
    }
    .subscribe .wpcf7-submit {
        width: 100%;
    }
    .subscribe .wpcf7-form-control-wrap > input {
        width: 100%;
    }
}

@media (max-width: 567px) {
    .subscribe {
        padding: 28px 0;
    }
    .subscribe .wpcf7-form p {
        width: 200px;
    }
    .subscribe .wpcf7-form-control-wrap {
        margin-left: 0;
        margin-top: 12px;
    }
    .subscribe .wpcf7-form-control-wrap > input {
        width: 100%;
        height: fit-content;
        min-height: 32px;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: subscribe ::
///////////////////////////////////////////////////////////////////////////*/

/*START//////////////////////////////////////////////////////////////////////
:: footer ::
///////////////////////////////////////////////////////////////////////////*/

.footer {
    background-color: #4a4a4a;
    padding: 62px 0 0;
}
.footer__logo {
    margin-right: 49px;
}
.footer__logo-img {
    max-width: 100%;
    height: auto;
    width: 124px;
}

.footer__inner-top {
    display: flex;
    justify-content: space-between;
}

.footer__contacts {
    display: flex;
    justify-content: center;

    flex-direction: column;
    align-items: center;
    flex-basis: 100%;
}
.footer ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
}

.footer__messengers > li {
    display: flex;
    align-items: center;
}
.footer__messenger {
    margin-right: 26px;
    width: 26px;
    height: 26px;
}
.footer__messenger path {
    transition: var(--transition);
}
.footer__messenger:hover path {
    fill: white;
}

.footer__phones > svg {
    display: block;
    margin-right: 20px;
    height: 22px;
    width: 24px;
    height: auto;
}
.footer__contacts-top {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}
.footer__phones {
    display: flex;
    align-items: center;
    margin-right: 34px;
}
.footer__phone {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 181%;
    transition: var(--transition);
    color: #ffffff;
    text-decoration: none !important;
}
.footer__phone:hover {
    color: var(--orange);
}

.footer__contacts-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    width: 100%;
}
.footer__contacts-bottom-contacts svg {
    display: block;
    margin-right: 20px;
}
.footer__contacts-bottom-contacts {
    display: flex;
    align-items: center;
}
.footer__contacts-bottom-contacts li > * {
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 181%;
    /* or 34px */

    display: flex;
    align-items: center;
    transition: var(--transition);
    color: #ffffff;
    text-decoration: none !important;
}
.footer__contacts-bottom-contacts li:hover > a {
    color: var(--orange);
}
.footer__contacts-bottom-contacts-item {
    margin-right: 35px;
    display: flex;
    align-items: center;
}
.footer__copy {
    background-color: var(--orange);
    font-family: "Gilroy";
    font-style: normal;
    font-weight: 700;
    font-size: 19px;
    line-height: 181%;
    /* or 34px */
    padding: 13px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 61px;
    color: #000000;
}

.footer__contacts-bottom-socials {
    margin: -16px !important;
}
.footer__contacts-bottom-socials > li {
    margin: 16px;
}
.footer__contacts-bottom-socials > li path {
    transition: var(--transition);
}
.footer__contacts-bottom-socials > li:hover path {
    fill: var(--orange);
}

@media (max-width: 1199px) {
    .footer__inner-top {
        flex-direction: column;
    }
    .footer__logo {
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    .footer__contacts-top {
        flex-direction: column;
    }
    .footer__messengers,
    .footer__phones {
        margin-bottom: 21px !important;
        margin-right: 0;
    }
    .footer__messengers {
        margin-right: -26px !important;
    }
    .footer__messengers li > svg,
    .footer__messengers li > svg path {
        height: 100%;
    }
    /*  .footer__messengers > li:last-child a {
        margin-right: 0;
    } */
    .footer__phones > li:last-child a {
        margin-right: 0;
    }
}

@media (max-width: 991px) {
    .footer__messenger-tel {
        margin-right: 26px;
    }
    .footer__contacts-bottom {
        flex-direction: column;
    }
    .footer__contacts-bottom-contacts {
        flex-direction: column-reverse;
    }
    .footer__contacts-bottom-contacts-item {
        margin-right: 0;
        margin-bottom: 14px;
    }
    .footer__phones {
        flex-direction: column;
    }
    .footer__phones ul {
        flex-direction: column;
    }
}

@media (max-width: 567px) {
    .footer {
        padding-top: 36px;
    }
    .footer__logo {
        margin-bottom: 28px;
    }
    .footer__logo-img {
        width: 107px;
    }
    .footer__phone {
        font-size: 14px;
    }
    .footer__messengers,
    .footer__phones {
        margin-bottom: 19px !important;
    }
    .footer__contacts-bottom-contacts li > * {
        font-size: 14px;
    }
    .footer__contacts-bottom {
        margin-bottom: 27px;
    }
    .footer__copy {
        font-size: 12px;
        line-height: 1.81;
        padding: 19px 0 18px;
        margin-top: 3px;
    }
}
/*END//////////////////////////////////////////////////////////////////////
:: footer ::
///////////////////////////////////////////////////////////////////////////*/
@media (min-width: 1201px) {
    .big-1200-disable {
        display: none !important;
    }
}
@media (max-width: 1200px) {
    .small-1200-disable {
        display: none !important;
    }
}
@media (min-width: 992px) {
    .big-991-disable {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .small-991-disable {
        display: none !important;
    }
}
@media (min-width: 769px) {
    .big-768-disable {
        display: none !important;
    }
}
@media (max-width: 768px) {
    .small-767-disable {
        display: none !important;
    }
}
/* #wpadminbar {
    display: none !important;
} */
