﻿@import'../fonts/icomoon/style.css';
@import'../fonts/stpvm-v1.0/style.css';
@import'../fonts/Satoshi_Complete/Fonts/WEB/css/satoshi.css';
@font-face {
    font-family: "Satoshi-Medium";
    src: url("../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff2") format("woff2"), url("../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.woff") format("woff"), url("../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Medium.ttf") format("truetype");
    font-weight: 500;
    font-display: swap;
    font-style: normal
}

@font-face {
    font-family: "Satoshi";
    src: url("../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff2") format("woff2"), url("../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.woff") format("woff"), url("../fonts/Satoshi_Complete/Fonts/WEB/fonts/Satoshi-Variable.ttf") format("truetype");
    font-weight: 300 900;
    font-display: swap;
    font-style: normal
}

html {
    margin-top: 0 !important
}

:root {
    --font-main-color: #282828;
    --headline-color: #282828;
    --colo-gray: #9F9F9F;
    --border-color: #E0E0E0;
    --border-color-2: #939393;
    --black: #000;
    --white: #fff;
    --biger-gap: 97.5px;
    --big-gap: 65px;
    --small-gap: 45.5px;
    --smaller-gap: 32.5px;
    --smallest-gap: 15px;
    --container-gap: 20px
}

@media screen and (min-width: 768px) {
    :root {
        --biger-gap: 105px;
        --big-gap: 70px;
        --small-gap: 49px;
        --smaller-gap: 35px;
        --smallest-gap: 15px;
        --container-gap: 20px
    }
}

@media screen and (min-width: 1024px) {
    :root {
        --biger-gap: 120px;
        --big-gap: 80px;
        --small-gap: 56px;
        --smaller-gap: 40px;
        --smallest-gap: 20px;
        --container-gap: 25px
    }
}

@media screen and (min-width: 1200px) {
    :root {
        --biger-gap: 135px;
        --big-gap: 90px;
        --small-gap: 63px;
        --smaller-gap: 45px;
        --smallest-gap: 20px;
        --container-gap: 30px
    }
}

@media screen and (min-width: 1280px) {
    :root {
        --biger-gap: 150px;
        --big-gap: 100px;
        --small-gap: 70px;
        --smaller-gap: 50px;
        --smallest-gap: 25px;
        --container-gap: 32px
    }
}

* {
    margin: 0;
    padding: 0;
    outline: 0
}

html {
    font-size: 10px;
    overflow-x: hidden
}

body {
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    color: var(--font-main-color);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--headline-color);
    word-wrap: break-word
}

ul,
ol {
    list-style: none
}

ul li::marker,
ol li::marker {
    font-variant-numeric: tabular-nums;
    text-transform: none;
    text-align: start !important;
    text-align-last: start !important
}

a {
    color: var(--font-main-color);
    text-decoration: none
}

a:hover {
    cursor: pointer
}

img {
    display: inline-block;
    border-style: none;
    vertical-align: top
}

select,
input,
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0
}

select::placeholder,
input::placeholder,
textarea::placeholder {
    color: var(--colo-gray);
    line-height: 1
}

select[type=submit],
input[type=submit],
textarea[type=submit] {
    cursor: pointer;
    border: none;
    text-transform: uppercase
}

video {
    display: block
}

::selection {
    color: #fff;
    background-color: #46743b
}

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    background-color: rgba(0, 0, 0, 0);
    display: block
}

::-webkit-scrollbar-thumb:hover {
    background: #666
}

::-webkit-scrollbar-thumb {
    border-radius: 3.5px;
    background: rgba(0, 0, 0, .3)
}

::-webkit-scrollbar-track {
    background-color: block
}

::-webkit-scrollbar-thumb:hover {
    background-color: block
}

* {
    scrollbar-width: block;
    scrollbar-color: rgba(0, 0, 0, .3) none
}

::-ms-scrollbar {
    width: 7px;
    height: 7px;
    background: none;
    display: block
}

.container {
    box-sizing: border-box;
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-gap);
    padding-right: var(--container-gap)
}

.container:not(.overflow) {
    overflow: hidden
}

.content {
    max-width: 845px
}

.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex
}

.grid {
    display: -ms-grid;
    display: -moz-grid;
    display: grid
}

.nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.hidden {
    display: none
}

.uppercase {
    text-transform: uppercase
}

.capitalize {
    text-transform: capitalize
}

.lowercase {
    text-transform: lowercase
}

.move-center {
    margin-left: auto;
    margin-right: auto
}

.move-left {
    margin-right: auto
}

.move-right {
    margin-left: auto
}

.text-center {
    text-align: center
}

.block-center {
    display: grid;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    place-items: center
}

.rich-text h2.headline-big {
    font-size: 60px;
    font-weight: 500;
    line-height: 100%
}

@media screen and (max-width: 1024px) {
    .rich-text h2.headline-big {
        font-size: 54px
    }
}

@media screen and (max-width: 750px) {
    .rich-text h2.headline-big {
        font-size: 45px
    }
}

@media screen and (max-width: 450px) {
    .rich-text h2.headline-big {
        font-size: 30px
    }
}

@media screen and (max-width: 400px) {
    .rich-text h2.headline-big {
        font-size: 26px
    }
}

.headline {
    font-size: 40px;
    color: var(--headline-color);
    line-height: 100%;
    font-weight: 400
}

.headline-bigger {
    font-size: 110px;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize
}

.headline-big {
    font-size: 60px;
    font-weight: 500;
    line-height: 100%
}

.headline-bigh2 {
    font-size: 60px
}

.headline-small {
    font-size: 32px;
    color: var(--headline-color);
    font-weight: 400;
    line-height: 150%
}

.headline-smaller {
    font-size: 28px;
    color: var(--headline-color)
}

.headline-smallest {
    font-size: 24px;
    color: var(--headline-color);
    font-weight: 400
}

@media screen and (max-width: 1360px) {
    .headline-bigger {
        font-size: 85px
    }
}

@media screen and (max-width: 1160px) {
    .headline {
        font-size: 28px
    }
    .headline-bigger {
        font-size: 65px
    }
    .headline-big {
        font-size: 54px
    }
    .headline-bigh2 {
        font-size: 54px
    }
    .headline-small {
        font-size: 24px
    }
    .headline-smaller {
        font-size: 20px
    }
    .headline-smallest {
        font-size: 18px
    }
}

@media screen and (max-width: 1030px) {
    .headline-bigger {
        font-size: 60px
    }
    .headline-smallest {
        font-size: 18px
    }
}

@media screen and (max-width: 768px) {
    .headline-smallest {
        font-size: 16px
    }
}

@media screen and (max-width: 750px) {
    .headline-bigger {
        font-size: 48px
    }
    .headline-big {
        font-size: 45px
    }
    .headline-bigh2 {
        font-size: 45px
    }
}

@media screen and (max-width: 500px) {
    .headline-bigger {
        font-size: 40px
    }
    .headline-big {
        font-size: 38px
    }
    .headline-bigh2 {
        font-size: 38px
    }
}

@media screen and (max-width: 420px) {
    .headline-bigger {
        font-size: 30px
    }
    .headline-big {
        font-size: 30px
    }
    .headline-bigh2 {
        font-size: 30px
    }
}

@media(max-width: 1024px) {
    .title-inner-page .left .headline-bigger {
        font-size: 55px
    }
}

@media(max-width: 950px) {
    .title-inner-page .left .headline-bigger {
        font-size: 40px
    }
    .title-inner-page .left .headline-bigger br {
        display: none
    }
}

@media(max-width: 800px) {
    .title-inner-page .left .headline-bigger {
        font-size: 30px
    }
}

.fonts-18 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1.92px;
    line-height: 1
}

@media(min-width: 1024px) {
    .fonts-18 {
        font-size: 16px
    }
}

.fonts-16 {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.92px;
    line-height: 1;
    text-transform: uppercase
}

@media(min-width: 1024px) {
    .fonts-16 {
        font-size: 14px
    }
}

.fonts-14 {
    font-size: 14px;
    line-height: 1
}

.fonts-13 {
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.56px;
    text-transform: uppercase
}

.fonts-12 {
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.44px;
    text-transform: uppercase
}

.fonts-10 {
    font-size: 10px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.banner-inner-page .container>.box>.introduction-card {
    bottom: 0;
    display: flex;
    background-color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
    position: fixed;
    top: 89px;
    left: 0;
    width: calc(100vw - 40px);
    z-index: 99;
    margin: 0 20px;
    height: fit-content;
    padding-top: 30px;
    padding-bottom: 30px
}

.banner-inner-page .container>.box>.introduction-card:not(.show) {
    display: none
}

.banner-inner-page .container>.box>.introduction-card .wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1
}

.banner-inner-page .container>.box>.introduction-card .wrapper .left {
    align-items: center;
    gap: 20px;
    width: 100%
}

.banner-inner-page .container>.box>.introduction-card .wrapper .left a {
    align-items: center;
    gap: 20px
}

.banner-inner-page .container>.box>.introduction-card .wrapper .left p {
    margin: 0;
    text-align: left !important;
    margin-top: 10px
}

.banner-inner-page .container>.box>.introduction-card .wrapper .left .img {
    width: 100%;
    height: auto
}

.banner-inner-page .container>.box>.introduction-card .wrapper .left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.banner-inner-page .container>.box>.introduction-card .wrapper .right {
    display: none;
    align-items: center
}

.banner-inner-page .container>.box>.introduction-card .wrapper .right p {
    margin-top: 0
}

.banner-inner-page .container>.box>.introduction-card .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    cursor: pointer
}

.banner-inner-page .container>.box>.introduction-card::before {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.banner-inner-page .container>.box>.introduction-card::after {
    content: "";
    display: block;
    background-color: #000;
    opacity: .8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1
}

.hotspot_section .container>.box>.introduction-card {
    bottom: 0;
    display: flex;
    background-color: #fff;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
    position: fixed;
    top: 89px;
    left: 0;
    width: calc(100vw - 40px);
    z-index: 99;
    margin: 0 20px;
    height: fit-content;
    padding-top: 30px;
    padding-bottom: 30px
}

.hotspot_section .container>.box>.introduction-card:not(.show) {
    display: none
}

.hotspot_section .container>.box>.introduction-card .wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    z-index: 1
}

.hotspot_section .container>.box>.introduction-card .wrapper .left {
    align-items: center;
    gap: 20px;
    width: 100%
}

.hotspot_section .container>.box>.introduction-card .wrapper .left a {
    align-items: center;
    gap: 20px
}

.hotspot_section .container>.box>.introduction-card .wrapper .left p {
    margin: 0;
    text-align: left !important;
    margin-top: 10px
}

.hotspot_section .container>.box>.introduction-card .wrapper .left .img {
    width: 100%;
    height: auto
}

.hotspot_section .container>.box>.introduction-card .wrapper .left .img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hotspot_section .container>.box>.introduction-card .wrapper .right {
    display: none;
    align-items: center
}

.hotspot_section .container>.box>.introduction-card .wrapper .right p {
    margin-top: 0
}

.hotspot_section .container>.box>.introduction-card .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    cursor: pointer
}

.hotspot_section .container>.box>.introduction-card::before {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0
}

.hotspot_section .container>.box>.introduction-card::after {
    content: "";
    display: block;
    background-color: #000;
    opacity: .8;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1
}

.hotspot_section .container {
    padding: 0;
    position: relative
}

.hotspot_section .box {
    position: relative;
    overflow: hidden;
    height: fit-content
}

.hotspot_section .box>.lists {
    display: flex
}

.hotspot_section .box>.lists>.item {
    margin-right: 0
}

.hotspot_section .box>.lists>.item.hotspot-wrapper .picture .image {
    position: relative;
    height: fit-content
}

.hotspot_section .box>.lists>.item.hotspot-wrapper .picture .image img {
    height: auto
}

@media(min-width: 1024px) {
    .hotspot_section .item {
        margin-right: 32px;
        max-width: calc(100vw - 60px)
    }
}

.hotspot_section .btn-left {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.hotspot_section .btn-right {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.hotspot_section .picture {
    max-height: 700px;
    height: 350px
}

@media(min-width: 1024px) {
    .hotspot_section .picture {
        height: 700px
    }
}

.hotspot_section .picture .image {
    height: 100%
}

.hotspot_section .lists .slick-list {
    overflow: visible !important
}

.hotspot_section .lists .slick-list .picture {
    overflow: visible !important
}

.hotspot_section .lists .slick-list .picture .image {
    width: 100%;
    height: 100%
}

.hotspot_section .index {
    line-height: 1;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    font-family: "Satoshi", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.hotspot_section p {
    text-align: right;
    margin-top: 10px;
    font-family: "Satoshi", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.hotspot_section .lists .slick-track .slick-slide {
    position: relative;
    max-width: 1920px;
    width: calc(100vw - var(--container-gap)*2);
    overflow: hidden
}

@media(min-width: 1920px) {
    .hotspot_section .lists .slick-track .slick-slide {
        width: 100%
    }
}

.hotspot_section .lists .picture {
    height: fit-content;
    max-height: fit-content;
    width: 100%
}

.hotspot_section .lists .picture .image {
    position: relative;
    width: 100%;
    height: auto !important
}

.picture {
    overflow: hidden;
    position: relative
}

.picture img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    object-fit: cover;
    transform-origin: center;
    transition: transform .6s ease, opacity .6s ease .5s;
    margin: 0 auto
}

.picture:hover img {
    transform: scale(1.03)
}

.picture .hotspot {
    position: absolute;
    z-index: 1
}

.picture .hotspot::before {
    content: "";
    display: block;
    position: absolute;
    left: -20px;
    bottom: -20px;
    width: 66px;
    height: 66px
}

.picture .hotspot:not(.show) .introduction-card {
    display: none
}

.picture .hotspot .point {
    display: flex;
    position: relative;
    cursor: pointer
}

.picture .hotspot .point::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    border-radius: 100%;
    transform: scale(1);
    animation: pulse 2s infinite;
    box-shadow: 0 0 0 0 #fff
}

.picture .hotspot .point svg {
    width: 25px;
    height: 25px
}

.picture .hotspot .introduction-card {
    width: 192px;
    padding: 16px;
    background-color: #fff;
    box-sizing: border-box;
    position: absolute;
    bottom: 35px;
    left: 35px;
    height: auto
}

.picture .hotspot .introduction-card .img {
    display: flex
}

.picture .hotspot .introduction-card .img img {
    width: 160px;
    height: 160px
}

.picture .hotspot .introduction-card p {
    white-space: break-spaces;
    text-align: left
}

.picture .new-tag {
    position: absolute;
    left: 0;
    top: 22px;
    display: flex;
    min-width: 55.604px;
    height: 17.444px;
    padding: 2px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    background-color: #fff;
    z-index: 1
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 #fff
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0)
    }
    100% {
        transform: scale(0.8);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0)
    }
}

.image {
    overflow: hidden
}

.image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: transform .6s ease, opacity .6s ease .5s
}

#short-intro-readMore svg {
    width: auto !important
}

.btn.flex {
    position: relative;
    width: fit-content;
    flex-flow: row nowrap;
    align-items: center;
    grid-gap: 10px;
    cursor: pointer
}

@media(min-width: 768px) {
    .btn.flex {
        grid-gap: 30px
    }
}

.btn.flex .gray {
    font-weight: 500
}

.btn.flex .icon {
    box-sizing: border-box;
    width: 48px;
    height: 48px;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px
}

.btn.flex .icon svg {
    width: 27px;
    height: auto
}

@media(min-width: 1024px) {
    .btn.flex .icon {
        width: 48px;
        height: 48px
    }
    .btn.flex .icon svg {
        width: 27px;
        height: auto
    }
}

.btn.flex::before {
    background-color: #000;
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    width: 100%;
    will-change: transform, left;
    transform-origin: bottom right
}

.btn.flex:not(.tiny,
.medium) svg {
    width: 40px;
    height: auto;
    flex-shrink: 0
}

@media(min-width: 1024px) {
    .btn.flex:not(.tiny,
    .medium) svg {
        width: 48px
    }
}

.btn.flex svg {
    z-index: 1
}

.btn.flex .fonts-16,
.btn.flex .fonts-13,
.btn.flex .fonts-12 {
    margin: 0
}

.btn.flex b {
    font-weight: 500
}

.btn.flex.btn-to-filter {
    padding-top: 10px;
    padding-bottom: 10px;
    grid-gap: 20px
}

.btn.flex.btn-to-filter svg {
    transform: translateX(-8px)
}

.btn.flex.btn-to-filter .fonts-16,
.btn.flex.btn-to-filter .fonts-13,
.btn.flex.btn-to-filter .fonts-12 {
    transform: translateX(8px)
}

@media(max-width: 600px) {
    .btn.flex.btn-to-filter .fonts-16,
    .btn.flex.btn-to-filter .fonts-13,
    .btn.flex.btn-to-filter .fonts-12 {
        transform: translateX(8px)
    }
}

.btn.flex.btn-to-filter:hover svg {
    transform: translateX(-8px)
}

.btn.flex.btn-to-filter:hover .fonts-16,
.btn.flex.btn-to-filter:hover .fonts-13,
.btn.flex.btn-to-filter:hover .fonts-12 {
    transform: translateX(8px)
}

@media(max-width: 600px) {
    .btn.flex.btn-to-filter:hover .fonts-16,
    .btn.flex.btn-to-filter:hover .fonts-13,
    .btn.flex.btn-to-filter:hover .fonts-12 {
        transform: translateX(8px)
    }
}

.btn.flex:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left
}

.btn.flex:hover svg {
    transform: translateX(5px)
}

.btn.flex:hover svg rect {
    fill: #000;
    stroke: #000
}

.btn.flex:hover svg path {
    stroke: #fff
}

.btn.flex:hover .fonts-16,
.btn.flex:hover .fonts-13,
.btn.flex:hover .fonts-12 {
    color: #fff;
    transform: translateX(-15px)
}

@media(max-width: 600px) {
    .btn.flex:hover .fonts-16,
    .btn.flex:hover .fonts-13,
    .btn.flex:hover .fonts-12 {
        transform: translateX(-5px)
    }
}

.mar-biger-up {
    margin-top: var(--biger-gap)
}

.mar-biger-down {
    margin-bottom: var(--biger-gap)
}

.mar-biger-left {
    margin-left: var(--biger-gap)
}

.mar-biger-right {
    margin-right: var(--biger-gap)
}

.mar-big-up {
    margin-top: var(--big-gap)
}

.mar-big-down {
    margin-bottom: var(--big-gap)
}

.mar-big-left {
    margin-left: var(--big-gap)
}

.mar-big-right {
    margin-right: var(--big-gap)
}

.mar-small-up {
    margin-top: var(--small-gap)
}

.mar-small-down {
    margin-bottom: var(--small-gap)
}

.mar-small-left {
    margin-left: var(--small-gap)
}

.mar-small-right {
    margin-right: var(--small-gap)
}

.mar-smaller-up {
    margin-top: var(--smaller-gap)
}

.mar-smaller-down {
    margin-bottom: var(--smaller-gap)
}

.mar-smaller-left {
    margin-left: var(--smaller-gap)
}

.mar-smaller-right {
    margin-right: var(--smaller-gap)
}

.pad-biger-up {
    padding-top: var(--biger-gap)
}

.pad-biger-down {
    padding-bottom: var(--biger-gap)
}

.pad-biger-left {
    padding-left: var(--biger-gap)
}

.pad-biger-right {
    padding-right: var(--biger-gap)
}

.pad-big-up {
    padding-top: var(--big-gap)
}

.pad-big-down {
    padding-bottom: var(--big-gap)
}

.pad-big-left {
    padding-left: var(--big-gap)
}

.pad-big-right {
    padding-right: var(--big-gap)
}

.pad-small-up {
    padding-top: var(--small-gap)
}

.pad-small-down {
    padding-bottom: var(--small-gap)
}

.pad-small-left {
    padding-left: var(--small-gap)
}

.pad-small-right {
    padding-right: var(--small-gap)
}

.pad-smaller-up {
    padding-top: var(--smaller-gap)
}

.pad-smaller-down {
    padding-bottom: var(--smaller-gap)
}

.pad-smaller-left {
    padding-left: var(--smaller-gap)
}

.pad-smaller-right {
    padding-right: var(--smaller-gap)
}

.pad-smallest-up {
    padding-top: var(--smallest-gap)
}

.pad-smallest-down {
    padding-bottom: var(--smallest-gap)
}

.pad-smallest-left {
    padding-left: var(--smallest-gap)
}

.pad-smallest-right {
    padding-right: var(--smallest-gap)
}

.rich-text {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: .32px
}

.rich-text h1 {
    font-size: 2.42em;
    margin-bottom: 20PX
}

.rich-text h2 {
    font-size: 2.22em;
    margin-bottom: 20PX
}

.rich-text h3 {
    font-size: 2.02em;
    margin-bottom: 20PX
}

.rich-text h4 {
    font-size: 1.82em;
    margin-bottom: 20PX
}

.rich-text h5 {
    font-size: 1.62em;
    margin-bottom: 20PX
}

.rich-text h6 {
    font-size: 1.42em;
    margin-bottom: 20PX
}

.rich-text p {
    line-height: inherit;
    letter-spacing: .32px
}

.rich-text p:not(:last-child) {
    margin-bottom: 25px
}

.rich-text ul {
    margin-left: 30px;
    list-style: disc outside;
    text-indent: -1px;
    letter-spacing: .32px
}

.rich-text ul:not(:last-child) {
    margin-bottom: 25px
}

.rich-text ol {
    list-style: decimal;
    list-style-position: inside;
    margin-left: 24px;
    padding-left: 0 !important
}

.rich-text ol:not(:last-child) {
    margin-bottom: 25px
}

.rich-text ol li {
    padding-left: 0 !important
}

.rich-text li {
    line-height: 145%;
    letter-spacing: .32px
}

.rich-text strong,
.rich-text b {
    font-weight: 500
}

.rich-text a {
    color: var(--theme-color)
}

@media screen and (max-width: 750px) {
    .rich-text p:not(:last-child),
    .rich-text ol:not(:last-child),
    .rich-text ul:not(:last-child) {
        margin-bottom: 15px
    }
}

.video {
    height: 72vh;
    max-height: 650px
}

@media(min-width: 1920px) {
    .video {
        max-height: 770px
    }
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    background: var(--white);
    border-bottom: 1px solid var(--border-color-2);
    transition: all .3s ease
}

.header.position-static {
    position: static;
    opacity: 0
}

.header.shadow {
    box-shadow: 0px -26px 67px 0px rgba(0, 0, 0, .13), 0px -10.862px 27.991px 0px rgba(0, 0, 0, .09), 0px -5.807px 14.965px 0px rgba(0, 0, 0, .08), 0px -3.256px 8.389px 0px rgba(0, 0, 0, .06), 0px -1.729px 4.456px 0px rgba(0, 0, 0, .05), 0px -0.719px 1.854px 0px rgba(0, 0, 0, .04)
}

.header.shadow .menus-box::after {
    content: "";
    display: block;
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: absolute
}

@media(min-width: 751px) {
    .header.shadow .menus-box::after {
        display: none
    }
}

.header .logo svg {
    width: 60px;
    height: 60px
}

@media(min-width: 1024px) {
    .header .logo svg {
        width: 80px;
        height: 80px
    }
}

.header .display-btn svg {
    width: 20px;
    height: 20px
}

@media(min-width: 1024px) {
    .header .display-btn svg {
        width: 32px;
        height: 32px
    }
}

.header.status-2 {
    position: fixed;
    top: 0;
    width: 100%;
    background: none;
    border-bottom: 0
}

.header.status-2 .color-logo,
.header.status-2 .menus,
.header.status-2 .search,
.header.status-2 .like {
    display: none
}

.header.status-2 .white-logo,
.header.status-2 .display-btn {
    display: block
}

.header.status-2 .icon .hamburger-btn {
    display: none
}

.header.status-2 .icon .seperator-line {
    display: none
}

.header .logo {
    padding: 15px 0px;
    max-height: 80px;
    align-self: center;
    z-index: 1
}

@media(min-width: 1024px) {
    .header .logo {
        padding: 20px 0px
    }
}

.header .logo img {
    display: block;
    height: 100%
}

.header .white-logo,
.header .display-btn {
    display: none;
    cursor: pointer
}

.header .color-logo {
    display: block
}

.header .menus-box {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-gap: 0px;
    align-self: stretch
}

.header .menus-box .menus {
    flex-direction: column;
    position: absolute;
    padding-top: 90px;
    background: #fff;
    width: 100%;
    left: 0;
    height: 100vh;
    z-index: 0;
    top: 0;
    transform: translateY(-100%);
    transition: transform .5s ease
}

.header .menus-box .menus>li {
    color: #000;
    font-family: Satoshi, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: capitalize
}

.header .menus-box .menus>li>a {
    position: relative
}

.header .menus-box .menus>li>a::after {
    content: "";
    display: block;
    height: 0;
    width: 0%;
    position: absolute;
    bottom: -5px;
    left: 0;
    border-bottom: #000 solid 1px;
    transition: width .3s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.header .menus-box .menus>li:hover>a::after {
    width: 100%;
    transition: width .3s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

@media(max-width: 750px) {
    .header .menus-box .menus>li {
        height: 50px;
        padding: 16px 0;
        box-sizing: border-box;
        line-height: 16px;
        border-bottom: #000 solid 1px;
        margin: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center
    }
    .header .menus-box .menus>li .block {
        padding: 16px 0;
        box-sizing: border-box;
        line-height: 16px;
        border-bottom: #000 solid 1px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        position: relative;
        height: fit-content
    }
    .header .menus-box .menus>li .block svg {
        position: absolute;
        right: 0;
        transform: rotate(-180deg);
        transition: all .3s ease
    }
    .header .menus-box .menus>li .block.has-child-menu:not(.one-level) ul {
        display: none;
        height: 0
    }
    .header .menus-box .menus>li .block.has-child-menu.one-level {
        border-bottom: none
    }
    .header .menus-box .menus>li .block:not(.has-child-menu):not(:first-child) {
        border-bottom: none
    }
    .header .menus-box .menus>li .block:not(.has-child-menu) ul li {
        padding-top: 0 !important;
        padding-bottom: 0
    }
    .header .menus-box .menus>li .block.show svg {
        transform: rotate(0deg)
    }
    .header .menus-box .menus>li .block.show ul {
        height: 100%
    }
    .header .menus-box .menus>li .block ul {
        transition: height .3s ease;
        overflow: hidden
    }
    .header .menus-box .menus>li .block ul li {
        padding: 12px 0 12px 30px
    }
    .header .menus-box .menus>li .block ul li:first-child {
        padding-top: 24px
    }
}

@media(min-width: 751px) {
    .header .menus-box .menus {
        position: static;
        flex-flow: row nowrap;
        grid-gap: 0px;
        padding-top: 0px;
        width: fit-content;
        height: auto;
        transform: unset
    }
    .header .menus-box .menus li {
        display: flex
    }
    .header .menus-box .menus li>svg:not(.download-icon) {
        display: none
    }
    .header .menus-box .menus li>svg.download-icon {
        margin-left: 10px;
        width: 15px;
        height: 15px
    }
    .header .menus-box .menus>li {
        padding: 0 30px
    }
    .header .menus-box .menus>li>a {
        text-wrap: nowrap;
        font-size: 16px
    }
    .header .menus-box .menus>li {
        display: grid;
        align-items: center;
        margin-bottom: -1px
    }
}

.header .menus-box .icon {
    flex-flow: row;
    align-items: center;
    grid-gap: 30px;
    margin-left: 30px;
    line-height: 1;
    padding: 15px 0;
    z-index: 1
}

.header .menus-box .icon .hamburger-btn svg path {
    transition: transform .3s ease, opacity .3s ease
}

.header .menus-box .icon .hamburger-btn svg path:nth-child(1) {
    transform-origin: left center
}

.header .menus-box .icon .hamburger-btn svg path:nth-child(3) {
    transform-origin: left center
}

.header .menus-box .icon .hamburger-btn.show svg path:nth-child(1) {
    transform: rotate(45deg) translateX(-5px)
}

.header .menus-box .icon .hamburger-btn.show svg path:nth-child(2) {
    opacity: 0
}

.header .menus-box .icon .hamburger-btn.show svg path:nth-child(3) {
    transform: rotate(-45deg) translateX(-5px)
}

@media(min-width: 751px) {
    .header .menus-box .icon .hamburger-btn {
        display: none
    }
}

.header .menus-box .icon .seperator-line {
    height: 100%;
    width: 1.5px;
    background-color: #e0e0e0
}

@media(min-width: 751px) {
    .header .menus-box .icon .seperator-line {
        display: none
    }
}

.header .menus-box .icon .search:not(.show-dropdown) .submenu-box {
    display: none
}

.header .menus-box .icon .search svg {
    cursor: pointer
}

.header .menus-box .icon .search .submenu-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0px 44px 44px -44px rgba(0, 0, 0, .08);
    border-top: #000 solid 1px;
    margin-top: -1px
}

@media(max-width: 751px) {
    .header .menus-box .icon .search .submenu-box .grid {
        padding-bottom: 50px
    }
    .header .menus-box .icon .search .submenu-box .grid .left {
        padding-right: 0
    }
    .header .menus-box .icon .search .submenu-box .grid .left .img-name {
        margin-top: 10px
    }
    .header .menus-box .icon .search .submenu-box .grid .right {
        padding-left: 0
    }
}

@media(min-width: 751px) {
    .header .menus-box .icon .search .submenu-box .grid {
        grid-template-columns: 31.61% auto
    }
    .header .menus-box .icon .search .submenu-box .grid .left {
        border-right: 1px solid #000
    }
    .header .menus-box .icon .search .submenu-box .grid .left>a {
        display: block
    }
    .header .menus-box .icon .search .submenu-box .grid .left .picture {
        max-width: 384px
    }
    .header .menus-box .icon .search .submenu-box .grid .left .picture img {
        height: auto !important
    }
    .header .menus-box .icon .search .submenu-box .grid .img-name {
        color: var(--black);
        margin-top: 20px;
        line-height: 1
    }
    .header .menus-box .icon .search .submenu-box .grid .right .grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

.header .menus-box .icon .line {
    border-top: 1px solid #000
}

.header .menus-box .icon .like {
    cursor: pointer
}

@media(max-width: 750px) {
    .header .has-submenu .submenu-box {
        position: absolute;
        left: 0;
        top: 90px;
        width: 100%;
        height: calc(100% - 90px);
        background-color: #fff;
        transform: translateX(100%);
        transition: transform .5s ease;
        z-index: 1
    }
    .header .has-submenu .submenu-box.show {
        transform: translateX(0%)
    }
    .header .has-submenu .submenu-box .container {
        height: 100%
    }
    .header .has-submenu .submenu-box .container .left {
        display: none
    }
    .header .has-submenu .submenu-box .container .right {
        padding-left: 0;
        overflow-y: auto
    }
    .header .has-submenu .submenu-box .container .right .arrow-back-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: -20px;
        margin-top: 15px
    }
    .header .has-submenu .submenu-box .container .right .arrow-back-btn svg {
        transform: rotate(180deg)
    }
    .header .has-submenu .submenu-box .container .line {
        display: none
    }
}

@media(min-width: 750px) {
    .header .has-submenu .submenu-box {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0px 44px 44px -44px rgba(0, 0, 0, .08);
        border-top: #000 solid 1px
    }
    .header .has-submenu .submenu-box .line {
        border-top: 1px solid #000
    }
    .header .has-submenu .submenu-box>.grid {
        grid-template-columns: 24.61% auto
    }
    .header .has-submenu .submenu-box>.grid .left {
        border-right: 1px solid #000
    }
    .header .has-submenu .submenu-box>.grid .left>a {
        display: block
    }
    .header .has-submenu .submenu-box>.grid .left .picture {
        max-width: 400px
    }
    .header .has-submenu .submenu-box>.grid .left .picture img {
        height: auto !important
    }
}

@media screen and (min-width: 750px)and (min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .right .arrow-back-btn {
        display: none
    }
}

@media(min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .right .grid {
        grid-template-columns: repeat(4, 1fr)
    }
    .header .has-submenu .submenu-box>.grid .right .grid:not(:last-of-type) {
        border-bottom: 1px solid var(--border-color)
    }
    .header .has-submenu .submenu-box>.grid .right .grid .block.parent-cate .label {
        font-size: 18px
    }
}

@media screen and (min-width: 750px)and (max-width: 900px) {
    .header .has-submenu .submenu-box>.grid .right .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px
    }
}

@media(min-width: 750px)and (min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .right .grid>.block>.label {
        height: 18px
    }
    .header .has-submenu .submenu-box>.grid .right .grid>.block>.label .arrow {
        margin-left: 10px
    }
}

@media(min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .right .grid.depth2_style {
        display: flex
    }
}

@media(min-width: 750px)and (min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .right .grid.depth2_style>.block {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%
    }
    .header .has-submenu .submenu-box>.grid .right .grid.depth2_style>.block>.label {
        grid-columns: 1 span;
        height: 18px
    }
    .header .has-submenu .submenu-box>.grid .right .grid.depth2_style>.block>.label .arrow {
        margin-left: 10px
    }
    .header .has-submenu .submenu-box>.grid .right .grid.depth2_style>.block>.value {
        grid-column: span 3;
        display: grid;
        grid-template-columns: repeat(3, 1fr)
    }
    .header .has-submenu .submenu-box>.grid .right .grid.depth2_style>.block>.value>.item {
        height: 16px
    }
}

@media(min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .img-name {
        color: var(--black);
        margin-top: 20px;
        line-height: 130%
    }
    .header .has-submenu .submenu-box>.grid .block .label {
        font-size: 16px;
        font-weight: 500;
        font-family: "Satoshi-Medium", sans-serif;
        text-transform: capitalize;
        line-height: 1;
        margin-bottom: 22px;
        display: block
    }
    .header .has-submenu .submenu-box>.grid .block .label+.value {
        margin-top: 22px
    }
}

@media screen and (min-width: 750px)and (min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .block>svg {
        display: none
    }
}

@media(min-width: 750px) {
    .header .has-submenu .submenu-box>.grid .block .value .item {
        font-size: 16px;
        line-height: 1
    }
    .header .has-submenu .submenu-box>.grid .block .value .item:not(:last-of-type) {
        margin-bottom: 14px
    }
    .header .has-submenu:hover .submenu-box {
        display: block
    }
}

@media(max-width: 750px) {
    .header .has-submenu .submenu-box .right .grid>.block>.label .arrow {
        display: none
    }
}

@media screen and (max-width: 1280px) {
    .header .menus-box .menus>li {
        padding: 0px 25px
    }
    .header .menus-box .menus>li>a {
        text-wrap: nowrap
    }
    .header .menus-box .icon {
        grid-gap: 25px;
        margin-left: 25px
    }
}

@media screen and (max-width: 1024px) {
    .header .menus-box .menus>li {
        padding: 0px 15px
    }
    .header .menus-box .icon {
        grid-gap: 20px;
        margin-left: 15px
    }
}

@media screen and (max-width: 820px) {
    .header .menus-box .menus>li {
        padding: 0px 10px
    }
}

@media screen and (max-width: 750px) {
    .header .menus-box .menus>li {
        padding: 0px 0px
    }
    .header .menus-box .menus.show {
        transform: translateY(0)
    }
}

.mobile-menus {
    display: none
}

.footer .container {
    overflow: hidden
}

.footer a {
    text-decoration: none
}

.footer .menus {
    border-top: 1px solid var(--border-color);
    flex-flow: row nowrap;
    justify-content: space-between;
    grid-gap: 110px
}

.footer .menus .left li:not(:last-child) {
    margin-bottom: 25px
}

.footer .menus .right {
    flex-flow: row nowrap;
    justify-content: space-between;
    grid-gap: 20px;
    width: 100%;
    max-width: 1100px
}

.footer .menus .right>li {
    list-style: none;
    flex: 1
}

.footer .menus .right>li>a:first-child {
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: var(--smaller-gap);
    display: block
}

.footer .menus .right>li>ul {
    padding-top: 7px
}

.footer .menus .right>li>ul li {
    margin-bottom: 14px;
    white-space: nowrap
}

.footer .menus .right>li>ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%
}

.footer .menus .right>li>ul li a br {
    display: none
}

.footer .menus .right>li>ul li .download-icon {
    width: 15px;
    height: 15px;
    margin-left: 10px
}

.footer .headline {
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    text-transform: capitalize;
    text-decoration: none;
    text-wrap: nowrap
}

.footer .column .title {
    font-size: 14px;
    line-height: 1;
    text-transform: capitalize
}

.footer .column .link-lists {
    padding-top: 7px
}

.footer .column .link-lists li {
    margin-bottom: 14px
}

.footer .column .link-lists li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    text-wrap: nowrap
}

.footer .column .link-lists li:not(:first-child) {
    margin-bottom: 14px
}

.footer .share-icon {
    padding-top: 10px;
    line-height: 1
}

.footer .share-icon a {
    margin-right: 26px;
    text-decoration: none
}

.footer .grid {
    display: grid;
    grid-template-columns: 1fr auto auto auto
}

.footer .copyright {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.24px
}

.footer .privacy-policy,
.footer .acknowledgement,
.footer .terms {
    color: var(--font-main-color);
    font-size: 10px;
    font-weight: 400;
    line-height: 120%;
    text-transform: capitalize;
    text-decoration-line: underline;
    margin-left: 40px
}

@media screen and (max-width: 1400px) {
    .footer .menus {
        grid-gap: 80px
    }
    .footer .menus .right {
        grid-gap: 80px
    }
}

@media screen and (max-width: 1280px) {
    .footer .menus {
        grid-gap: 50px
    }
    .footer .menus .right {
        grid-gap: 50px
    }
}

@media screen and (max-width: 1150px) {
    .footer .menus {
        grid-gap: 35px
    }
    .footer .menus .right {
        grid-gap: 35px
    }
    .footer .column .link-lists li:not(:first-child) {
        margin-bottom: 10px
    }
    .footer .menus .left li:not(:last-child) {
        margin-bottom: 20px
    }
}

@media screen and (max-width: 1000px) {
    .footer .menus {
        flex-flow: column;
        grid-gap: 70px
    }
    .footer .menus .right {
        flex-flow: row nowrap
    }
}

@media screen and (max-width: 750px) {
    .footer .menus {
        grid-gap: 50px
    }
    .footer .menus .left li:not(:last-child) {
        margin-bottom: 12px
    }
    .footer .menus .right {
        flex-flow: column nowrap;
        display: none
    }
    .footer .menus .right .column .link-lists {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 3px 10px
    }
    .footer .link-lists li:not(:first-child) {
        margin-bottom: 0px
    }
    .footer .column .link-lists li:not(:first-child) {
        margin-bottom: 0px
    }
    .footer .column .title {
        margin-bottom: 10px
    }
    .footer .column .link-lists li {
        margin-bottom: 3px
    }
    .footer .grid {
        grid-template-columns: 1fr;
        grid-gap: 10px
    }
    .footer .copyright {
        order: 1
    }
    .footer .privacy-policy,
    .footer .acknowledgement,
    .footer .terms {
        margin: 0
    }
}

.subscribe-form-module {
    color: #3c4136
}

.subscribe-form-module .container {
    position: relative
}

.subscribe-form-module .container::before {
    content: "";
    display: block;
    height: 0;
    border-top: 1px solid var(--border-color);
    width: calc(100% - var(--container-gap)*2);
    position: absolute;
    top: 0
}

.subscribe-form-module .container .gform_wrapper.gravity-theme .gfield.your-email {
    grid-column: span 20
}

.subscribe-form-module .container .gform_wrapper.gravity-theme .gform_validation_errors {
    border: none;
    padding: 0;
    background: none;
    box-shadow: none
}

.subscribe-form-module .container .gform_wrapper.gravity-theme .gform_validation_errors:focus {
    outline: none
}

.subscribe-form-module .container .gform_wrapper.gravity-theme .gform_validation_errors .gform_submission_error {
    padding-left: 30px;
    font-size: 12px
}

.subscribe-form-module .container .gform_wrapper.gravity-theme .gform_validation_errors .gform-icon {
    inset-inline-start: 0
}

.subscribe-form-module .container .gform-body .gform_fields {
    display: unset;
    flex-wrap: wrap;
    grid-column-gap: 30px;
    grid-template-columns: repeat(24, 1fr)
}

.subscribe-form-module .container .gform-body .gform_fields .first-name {
    box-sizing: border-box;
    width: calc(50% - 15px);
    margin-right: 15px;
    margin-bottom: 20px;
    float: left;
    grid-column: span 12
}

.subscribe-form-module .container .gform-body .gform_fields .last-name {
    box-sizing: border-box;
    width: calc(50% - 15px);
    margin-left: 15px;
    margin-bottom: 20px;
    float: left;
    grid-column: span 12
}

.subscribe-form-module .container .gform-body .gform_fields .your-email {
    float: left;
    box-sizing: border-box;
    width: calc(100% - 60px);
    margin-right: 30px
}

.subscribe-form-module .container .gform-body .gform_fields #field_submit {
    float: left;
    grid-column: span 4;
    justify-content: flex-end;
    position: relative
}

.subscribe-form-module .container .gform-body .gform_fields #field_submit .gform-button {
    width: 0 !important;
    height: 0;
    font-size: 0;
    opacity: 0
}

.subscribe-form-module .container .gform-body .gform_fields .gfield_error {
    margin-bottom: 50px
}

.subscribe-form-module .container .gform-body .gform_fields .gfield_error input[aria-invalid=true] {
    border: none
}

.subscribe-form-module .container .gform-body .gform_fields .gform-loader {
    position: absolute;
    right: 5px;
    background: #fff;
    width: 20px;
    height: 20px
}

.subscribe-form-module .container .gform-body .gform_fields .gfield_description {
    font-size: 10px;
    padding: 0;
    border: none;
    margin-top: 0;
    background: none
}

.subscribe-form-module input[type=email],
.subscribe-form-module input[type=text] {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 0px !important;
    background: none;
    transition: all .3s;
    font-family: "Satoshi", sans-serif;
    font-size: 10px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px
}

.subscribe-form-module input[type=email]::placeholder,
.subscribe-form-module input[type=text]::placeholder {
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.2px;
    color: #9f9f9f;
    opacity: 1;
    text-transform: uppercase
}

.subscribe-form-module input[type=email]:focus::placeholder,
.subscribe-form-module input[type=text]:focus::placeholder {
    opacity: 0
}

.subscribe-form-module .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 445px;
    background: #f9f8f5
}

@media(min-width: 1440px) {
    .subscribe-form-module .grid {
        grid-template-columns: 698px 1fr
    }
}

.subscribe-form-module .form-box {
    box-sizing: border-box;
    width: 490px;
    padding-left: 25px;
    align-self: center
}

.subscribe-form-module .form-box .field {
    position: relative;
    height: 30px
}

.subscribe-form-module .form-box .field::after {
    content: "";
    display: block;
    background-color: #000;
    height: 1px;
    position: absolute;
    bottom: 0;
    width: 100%
}

.subscribe-form-module .form-box .submit-btn {
    float: left;
    display: flex
}

.subscribe-form-module .form-box .submit-btn button {
    border: none;
    display: flex;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
    outline: unset
}

.subscribe-form-module .form-box .submit-btn svg rect:nth-of-type(2) {
    width: 0
}

.subscribe-form-module .form-box .submit-btn svg path {
    transition: stroke .3s ease
}

.subscribe-form-module .form-box .submit-btn:hover svg rect:nth-of-type(2) {
    width: 100%
}

.subscribe-form-module .form-box .submit-btn:hover svg path {
    stroke: #fff
}

.subscribe-form-module .gform_heading {
    display: none
}

.subscribe-form-module .headline {
    line-height: 1
}

.subscribe-form-module .brief {
    padding: 20px 0px;
    line-height: 130%
}

@media screen and (max-width: 1280px) {
    .subscribe-form-module .form-box {
        margin: 0;
        padding: 30px;
        width: 100%
    }
}

@media screen and (max-width: 750px) {
    .subscribe-form-module .grid {
        grid-template-columns: 1fr
    }
    .subscribe-form-module .form-box {
        order: 2
    }
    .subscribe-form-module .form-box .email {
        width: 100%;
        margin: 0
    }
    .subscribe-form-module .form-box .submit-btn {
        width: 100%
    }
}

.double-col-26-74 {
    display: grid;
    grid-template-columns: 26% 74%;
    border-top: 1px solid var(--border-color)
}

.double-col-26-74.no-border {
    border: 0
}

.double-col-26-74 .fonts-16 {
    margin-top: 10px
}

@media screen and (max-width: 750px) {
    .double-col-26-74 {
        grid-template-columns: 1fr;
        grid-gap: 15px
    }
    .double-col-26-74 .fonts-16 {
        margin: 0
    }
}

@media screen and (max-width: 750px) {
    .hide-in-mobile {
        display: none
    }
}

@media(max-width: 750px) {
    .filter-item.filter-hide {
        display: none
    }
}

.btn-filter {
    cursor: pointer
}

@media(min-width: 750px) {
    .btn-filter {
        display: none
    }
}

.grid-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 80px
}

@media screen and (max-width: 1280px) {
    .grid-two-col {
        grid-gap: var(--small-gap)
    }
}

@media screen and (max-width: 1024px) {
    .grid-two-col .text .item h3 {
        font-size: 18px;
        font-weight: 500
    }
}

@media screen and (max-width: 750px) {
    .grid-two-col {
        grid-template-columns: 1fr
    }
}

.half-width {
    width: calc(50% - 40px)
}

@media screen and (max-width: 1280px) {
    .half-width {
        width: calc(50% - var(--small-gap)/2);
        min-width: 570px
    }
}

@media screen and (max-width: 750px) {
    .half-width {
        width: 100%;
        min-width: unset
    }
}

@media(max-width: 750px) {
    .mobile-wrap-reverse {
        display: flex;
        flex-wrap: wrap-reverse
    }
}

.projects-row-v0.flex {
    justify-content: space-between;
    align-items: end;
    grid-gap: var(--small-gap)
}

.projects-row-v0.flex .projects-block.big-image {
    width: calc(74.2% - var(--small-gap)/2);
    flex-shrink: 0
}

.projects-row-v0.flex .projects-block:not(.big-image) {
    width: calc(25.8% - var(--small-gap)/2);
    flex-shrink: 0
}

@media screen and (max-width: 900px) {
    .projects-row-v0.flex {
        grid-gap: 35px
    }
    .projects-row-v0.flex .projects-block.big-image {
        width: calc(74.2% - 17.5px)
    }
    .projects-row-v0.flex .projects-block:not(.big-image) {
        width: calc(25.8% - 17.5px)
    }
}

@media screen and (max-width: 750px) {
    .projects-row-v0.flex {
        flex-flow: column;
        align-items: flex-start
    }
    .projects-row-v0.flex .projects-block.big-image {
        width: 100%
    }
    .projects-row-v0.flex .projects-block:not(.big-image) {
        width: 100%
    }
}

.projects-row-v1.flex {
    justify-content: flex-start;
    align-items: end;
    grid-gap: var(--small-gap)
}

.projects-row-v1.flex .projects-block:nth-child(1) {
    width: calc(40.1% - var(--small-gap)/2);
    flex-shrink: 0
}

.projects-row-v1.flex .projects-block:nth-child(2) {
    width: calc(59.9% - var(--small-gap)/2);
    flex-shrink: 0
}

@media screen and (max-width: 900px) {
    .projects-row-v1.flex {
        grid-gap: 35px
    }
    .projects-row-v1.flex .projects-block:nth-child(1) {
        width: calc(40.1% - 17.5px);
        flex-shrink: 0
    }
    .projects-row-v1.flex .projects-block:nth-child(2) {
        width: calc(59.9% - 17.5px);
        flex-shrink: 0
    }
}

@media screen and (max-width: 750px) {
    .projects-row-v1.flex {
        flex-flow: column;
        align-items: flex-start
    }
    .projects-row-v1.flex .projects-block:nth-child(1),
    .projects-row-v1.flex .projects-block:nth-child(2),
    .projects-row-v1.flex .projects-block:nth-child(3) {
        width: 100%
    }
}

.projects-row-v2.flex {
    justify-content: flex-start;
    align-items: end;
    grid-gap: var(--small-gap)
}

.projects-row-v2.flex .projects-block:nth-child(1) {
    width: calc(35.5% - var(--small-gap)/2);
    flex-shrink: 0
}

.projects-row-v2.flex .projects-block:nth-child(2) {
    width: calc(30.2% - var(--small-gap));
    flex-shrink: 0
}

.projects-row-v2.flex .projects-block:nth-child(3) {
    width: calc(34.3% - var(--small-gap)/2);
    flex-shrink: 0
}

@media screen and (max-width: 900px) {
    .projects-row-v2.flex {
        grid-gap: 35px
    }
    .projects-row-v2.flex .projects-block:nth-child(1) {
        width: calc(35.5% - 17.5px);
        flex-shrink: 0
    }
    .projects-row-v2.flex .projects-block:nth-child(2) {
        width: calc(30.2% - 35px);
        flex-shrink: 0
    }
    .projects-row-v2.flex .projects-block:nth-child(3) {
        width: calc(34.3% - 17.5px);
        flex-shrink: 0
    }
}

@media screen and (max-width: 750px) {
    .projects-row-v2.flex {
        grid-gap: 35px;
        flex-flow: column;
        align-items: stretch
    }
    .projects-row-v2.flex .projects-block:nth-child(1),
    .projects-row-v2.flex .projects-block:nth-child(2),
    .projects-row-v2.flex .projects-block:nth-child(3) {
        width: 100%
    }
}

.other-featured-projects .mar-small-up {
    position: relative
}

.other-featured-projects .btn-left {
    cursor: pointer;
    position: absolute;
    cursor: pointer;
    display: flex;
    left: 0;
    top: 50%;
    transform: rotateY(180deg) translateY(-50%)
}

.other-featured-projects .btn-left svg rect:nth-of-type(2) {
    display: block;
    width: 0;
    height: 100%;
    transition: width .3s ease
}

.other-featured-projects .btn-left svg path {
    transition: stroke .3s ease
}

.other-featured-projects .btn-left:hover svg rect:nth-of-type(2) {
    width: 100%
}

.other-featured-projects .btn-left:hover svg path {
    stroke: #fff
}

.other-featured-projects .btn-right {
    position: absolute;
    cursor: pointer;
    display: flex;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.other-featured-projects .btn-right svg rect:nth-of-type(2) {
    display: block;
    width: 0;
    height: 100%;
    transition: width .3s ease
}

.other-featured-projects .btn-right svg path {
    transition: stroke .3s ease
}

.other-featured-projects .btn-right:hover svg rect:nth-of-type(2) {
    width: 100%
}

.other-featured-projects .btn-right:hover svg path {
    stroke: #fff
}

.image-lists.new-image-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end
}

.image-lists.new-image-layout .slick-list .slick-track {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: var(--small-gap)
}

.image-lists.new-image-layout div.projects-block {
    width: 100%;
    flex-shrink: 0;
    overflow: hidden
}

.image-lists.new-image-layout div.projects-block.rp-0 {
    width: calc((100vw - var(--container-gap)*2 - var(--small-gap)*2 - 8px)*.37);
    min-width: calc(100vw - var(--container-gap)*2)
}

.image-lists.new-image-layout div.projects-block.rp-1 {
    width: calc((100vw - var(--container-gap)*2 - var(--small-gap)*2 - 8px)*.27);
    min-width: calc(100vw - var(--container-gap)*2)
}

.image-lists.new-image-layout div.projects-block.rp-2 {
    width: calc((100vw - var(--container-gap)*2 - var(--small-gap)*2 - 8px)*.36);
    min-width: calc(100vw - var(--container-gap)*2)
}

@media(min-width: 500px) {
    .image-lists.new-image-layout div.projects-block.rp-0 {
        min-width: 230px;
        max-width: 629px
    }
    .image-lists.new-image-layout div.projects-block.rp-1 {
        min-width: 175px;
        max-width: 478px
    }
    .image-lists.new-image-layout div.projects-block.rp-2 {
        min-width: 223px;
        max-width: 606px
    }
}

.image-lists.new-image-layout div.projects-block:not(.rp-0,
.rp-1,
.rp-2) .picture img:nth-of-type(2) {
    display: none
}

.image-lists.new-image-layout div.projects-block:not(.rp-0,
.rp-1,
.rp-2) .image img:nth-of-type(2) {
    display: none
}

@media screen and (min-width: 750px) {
    .image-lists {
        padding-top: 35px
    }
    .image-lists.new-image-layout {
        gap: 35px
    }
    .image-lists.new-image-layout .projects-block.sl0 {
        width: calc(50% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl1 {
        width: calc(28% - var(--small-gap))
    }
    .image-lists.new-image-layout .projects-block.sl2 {
        width: calc(25% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl3 {
        width: calc(25.1% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl4 {
        width: calc(52.7% - var(--small-gap))
    }
    .image-lists.new-image-layout .projects-block.sl5 {
        width: calc(25.1% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl6 {
        width: calc(25% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl7 {
        width: calc(28% - var(--small-gap))
    }
    .image-lists.new-image-layout .projects-block.sl8 {
        width: calc(50% - var(--small-gap)/2)
    }
}

@media screen and (min-width: 900px) {
    .image-lists {
        padding-top: var(--small-gap)
    }
    .image-lists.new-image-layout {
        gap: var(--small-gap)
    }
    .image-lists.new-image-layout .projects-block.sl0 {
        width: calc(50% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl1 {
        width: calc(26.4% - var(--small-gap))
    }
    .image-lists.new-image-layout .projects-block.sl2 {
        width: calc(23.6% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl3 {
        width: calc(23.6% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl4 {
        width: calc(52.7% - var(--small-gap))
    }
    .image-lists.new-image-layout .projects-block.sl5 {
        width: calc(23.6% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl6 {
        width: calc(23.6% - var(--small-gap)/2)
    }
    .image-lists.new-image-layout .projects-block.sl7 {
        width: calc(26.4% - var(--small-gap))
    }
    .image-lists.new-image-layout .projects-block.sl8 {
        width: calc(50% - var(--small-gap)/2)
    }
}

.text-and-picture-v1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 80px
}

.text-and-picture-v1 .headline {
    text-transform: capitalize;
    line-height: 1;
    padding-top: 20px;
    border-top: 1px solid var(--border-color-2)
}

.text-and-picture-v1 .rich-text {
    line-height: 130%
}

.text-and-picture-v1 .btn {
    grid-gap: 30px;
    align-items: center
}

@media screen and (max-width: 1280px) {
    .text-and-picture-v1 {
        grid-gap: var(--small-gap)
    }
}

@media screen and (max-width: 900px) {
    .text-and-picture-v1 {
        grid-gap: 35px
    }
}

@media screen and (max-width: 750px) {
    .text-and-picture-v1 {
        grid-template-columns: 1fr;
        grid-gap: 20px
    }
}

.projects-block a {
    display: block
}

.projects-block a:hover .zoom-in img {
    transform: scale(1.03)
}

.projects-block a:hover .btn::after {
    width: 100%
}

.projects-block a:hover .btn svg path {
    stroke: #fff
}

.projects-block .picture {
    height: auto;
    margin-bottom: 34px
}

.projects-block .image {
    height: auto;
    margin-bottom: 34px
}

.projects-block .type {
    color: #9f9f9f;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1.44px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.projects-block .headline-smallest {
    line-height: 1;
    margin-bottom: 16px
}

.projects-block .address {
    font-size: 14px;
    line-height: 1;
    margin-bottom: 27px
}

.projects-block .text {
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color-2)
}

.projects-block .text .btn {
    height: fit-content;
    display: flex;
    position: relative
}

.projects-block .text .btn svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px
}

.projects-block .text .btn svg rect {
    fill: unset !important
}

@media(min-width: 1024px) {
    .projects-block .text .btn svg {
        width: 40px;
        height: 40px
    }
}

.projects-block .text .btn::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    background-color: #000;
    width: 0;
    height: 100%
}

.headline-row {
    display: grid;
    grid-template-columns: 2fr auto;
    grid-gap: 50px;
    align-items: center;
    padding-top: 20px;
    margin-bottom: var(--small-gap);
    border-top: 1px solid var(--border-color)
}

.headline-row .btn {
    justify-self: end
}

@media screen and (max-width: 750px) {
    .headline-row {
        padding-top: 15px;
        grid-gap: 20px
    }
    .headline-row .btn {
        justify-self: start
    }
}

.no-border-top {
    border-top: none;
    border-bottom-color: #000 !important
}

.mobile-filter-btn {
    padding: 20px;
    border-bottom: #000 solid 1px;
    display: flex;
    justify-content: center;
    align-items: center
}

@media(min-width: 768px) {
    .mobile-filter-btn {
        display: none
    }
}

.mobile-filter-btn span {
    margin-right: 10px
}

@media(max-width: 768px) {
    .mobile-two-column .count {
        width: 30%
    }
    .mobile-two-column .search-filtering {
        width: 70%;
        justify-content: flex-end
    }
}

.mobile-search-input {
    margin-bottom: 10px
}

@media(min-width: 768px) {
    .mobile-search-input {
        margin-top: 10px;
        display: none
    }
}

body.show-filter-popup-window {
    overflow: hidden;
    height: 100vh
}

body:not(.show-filter-popup-window) .filter-popup-window {
    display: none
}

.filter-popup-window {
    position: fixed;
    top: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    overflow: auto
}

@supports(height: 100dvb) {
    .filter-popup-window {
        height: 100dvb
    }
}

.filter-popup-window .btn-close {
    cursor: pointer;
    padding-right: 23px;
    padding-top: 20px;
    display: flex;
    justify-content: flex-end
}

.filter-popup-window .content {
    width: 100%;
    padding-left: 25px;
    box-sizing: border-box
}

.filter-popup-window .content .result-filter {
    margin-top: 10px;
    margin-bottom: 0
}

.filter-popup-window .btn-show-results {
    padding: 20px;
    margin-top: 25px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 50px;
    border: var(--border-color-2) solid 1px;
    text-align: center;
    font-size: 18px;
    cursor: pointer
}

.title-inner-page .content {
    max-width: none;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color-2);
    min-height: 50px
}

.title-inner-page.mobile-hide-border .content {
    border-bottom: none
}

@media(min-width: 768px) {
    .title-inner-page.mobile-hide-border .content {
        border-bottom: 1px solid var(--border-color-2)
    }
}

.title-inner-page .path {
    margin-top: 30px;
    align-items: center;
    grid-gap: 5px;
    font-size: 10px;
    line-height: 1
}

.title-inner-page .path svg {
    width: 6px;
    height: auto
}

@media(min-width: 540px) {
    .title-inner-page .path {
        grid-gap: 10px;
        font-size: 14px
    }
    .title-inner-page .path svg {
        width: 8px;
        height: auto
    }
}

.title-inner-page .box {
    justify-content: space-between;
    grid-gap: 50px;
    align-items: end;
    padding-top: 10px
}

@media(min-width: 751px) {
    .title-inner-page .box .right {
        max-width: 400px
    }
}

@media(min-width: 880px) {
    .title-inner-page .box .right {
        max-width: 485px
    }
}

.title-inner-page .brief .btn-box {
    margin-top: 20px
}

@media(min-width: 768px) {
    .title-inner-page .brief .btn-box {
        margin-top: 30px
    }
}

.title-inner-page .brief,
.title-inner-page .rich-text {
    line-height: 130%
}

.title-inner-page .brief span,
.title-inner-page .rich-text span {
    margin-bottom: 5px;
    display: block
}

@media(max-width: 750px) {
    .title-inner-page .brief span,
    .title-inner-page .rich-text span {
        font-size: 12px
    }
}

.title-inner-page .brief .headline-big,
.title-inner-page .rich-text .headline-big {
    margin-bottom: 0 !important
}

@media(max-width: 950px) {
    .title-inner-page .brief .headline-big,
    .title-inner-page .rich-text .headline-big {
        font-size: 35px
    }
}

@media(max-width: 800px) {
    .title-inner-page .brief .headline-big,
    .title-inner-page .rich-text .headline-big {
        font-size: 25px
    }
}

@media(max-width: 750px) {
    .title-inner-page .brief .headline-big,
    .title-inner-page .rich-text .headline-big {
        font-size: 20px
    }
}

.title-inner-page .brief a,
.title-inner-page .rich-text a {
    position: relative
}

.title-inner-page .brief a:not(.btn)::after,
.title-inner-page .rich-text a:not(.btn)::after {
    content: "";
    width: 100%;
    border-top: 1px solid var(--font-main-color);
    position: absolute;
    bottom: 0px;
    left: 0px
}

.title-inner-page .btn {
    grid-gap: 20px;
    margin-top: 20px
}

@media(min-width: 768px) {
    .title-inner-page .btn {
        margin-top: 30px
    }
}

.title-inner-page .btn path {
    transform-origin: center
}

.title-inner-page .btn.active path {
    transform: rotateZ(180deg)
}

@media screen and (max-width: 128px) {
    .title-inner-page .box {
        min-height: 0
    }
}

@media screen and (max-width: 750px) {
    .title-inner-page .content {
        padding-bottom: 20px
    }
    .title-inner-page .brief .headline-big {
        margin-bottom: 20px
    }
    .title-inner-page .box:not(.mobile-two-col) {
        flex-flow: column;
        align-items: stretch;
        grid-gap: 30px
    }
}

.projects-template-default .banner-inner-page .lists .slick-track .slick-slide {
    position: relative;
    max-width: 1920px;
    width: calc(100vw - var(--container-gap)*2);
    overflow: hidden
}

@media(min-width: 1920px) {
    .projects-template-default .banner-inner-page .lists .slick-track .slick-slide {
        width: 100%
    }
}

.projects-template-default .banner-inner-page .lists .picture {
    height: fit-content;
    max-height: fit-content;
    width: 100%
}

.projects-template-default .banner-inner-page .lists .picture .image {
    position: relative;
    width: 100%;
    height: auto !important
}

.projects-template-default .banner-inner-page .lists .picture .image img {
    max-height: 350px
}

@media(min-width: 1024px) {
    .projects-template-default .banner-inner-page .lists .picture .image img {
        max-height: 700px
    }
}

.banner-inner-page .container {
    position: relative
}

.banner-inner-page .box {
    position: relative;
    overflow: hidden
}

.banner-inner-page .box>.lists:not(.slick-initialized) .item:not(:first-child) {
    display: none
}

.banner-inner-page .box>.lists>.item {
    margin-right: 0;
    display: flex
}

.banner-inner-page .box>.lists>.item.hotspot-wrapper .picture .image {
    position: relative;
    height: fit-content
}

.banner-inner-page .box>.lists>.item.hotspot-wrapper .picture .image img {
    height: auto
}

@media(min-width: 1024px) {
    .banner-inner-page .item {
        margin-right: 32px;
        max-width: calc(100vw - 60px)
    }
}

.banner-inner-page .btn-left {
    cursor: pointer;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.banner-inner-page .btn-right {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.banner-inner-page .picture {
    max-height: 700px;
    flex-grow: 1
}

@media(min-width: 1024px) {
    .banner-inner-page .picture {
        height: 700px
    }
}

.banner-inner-page .picture .image {
    height: 100%
}

.banner-inner-page .lists .slick-list {
    overflow: visible !important
}

.banner-inner-page .lists .slick-list .picture {
    overflow: visible !important
}

.banner-inner-page .lists .slick-list .picture .image {
    width: 100%;
    height: 100%
}

.banner-inner-page .index {
    line-height: 1;
    margin-top: 10px;
    position: absolute;
    bottom: 0;
    font-family: "Satoshi", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

.banner-inner-page p {
    text-align: right;
    margin-top: 10px;
    font-family: "Satoshi", sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.2px;
    text-transform: uppercase
}

section.contact-us-module input[type=text],
section.contact-us-module textarea,
section.apply-job-module input[type=text],
section.apply-job-module textarea {
    box-sizing: border-box;
    width: 100%;
    height: 60px;
    padding: 24px 20px !important;
    border: 1px solid var(--border-color-2);
    transition: all .3s;
    font-size: 12px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.44px;
    text-transform: uppercase
}

section.contact-us-module input[type=text]::placeholder,
section.contact-us-module textarea::placeholder,
section.apply-job-module input[type=text]::placeholder,
section.apply-job-module textarea::placeholder {
    color: #9f9f9f;
    opacity: 1
}

section.contact-us-module .gform_heading,
section.apply-job-module .gform_heading {
    display: none
}

section.contact-us-module textarea,
section.apply-job-module textarea {
    height: 160px
}

section.contact-us-module .upload,
section.apply-job-module .upload {
    margin-bottom: 5px
}

section.contact-us-module .upload .fonts-13,
section.apply-job-module .upload .fonts-13 {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 150%
}

section.contact-us-module .upload .flex,
section.apply-job-module .upload .flex {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 303px;
    height: 131px;
    border: .8px dashed #877883;
    margin-top: 16px;
    text-align: center;
    grid-gap: 10px;
    cursor: pointer
}

section.contact-us-module .upload svg,
section.apply-job-module .upload svg {
    margin-bottom: 10px
}

section.contact-us-module .form-content,
section.apply-job-module .form-content {
    padding-top: 28px;
    border-top: 1px solid var(--border-color-2)
}

section.contact-us-module .gform_wrapper.gravity-theme .gform_fields,
section.apply-job-module .gform_wrapper.gravity-theme .gform_fields {
    grid-gap: 30px var(--small-gap)
}

section.contact-us-module .gform_fields,
section.apply-job-module .gform_fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px var(--small-gap)
}

section.contact-us-module .single-row,
section.apply-job-module .single-row {
    grid-column: span 2
}

section.contact-us-module .submit,
section.apply-job-module .submit {
    margin-top: 20px
}

@media screen and (max-width: 750px) {
    section.contact-us-module .gform_wrapper.gravity-theme .gform_fields,
    section.contact-us-module .gform_fields,
    section.apply-job-module .gform_wrapper.gravity-theme .gform_fields,
    section.apply-job-module .gform_fields {
        grid-gap: 20px
    }
    section.contact-us-module input[type=text],
    section.contact-us-module textarea,
    section.apply-job-module input[type=text],
    section.apply-job-module textarea {
        padding: 15px 10px;
        height: initial
    }
}

.filter-search .grid {
    grid-template-columns: 31.97% 28.7% auto;
    align-items: center;
    border-bottom: 1px solid var(--border-color-2)
}

.filter-search .item {
    padding: 15px 0;
    margin: 15px 0px;
    align-items: center;
    grid-gap: 10px;
    cursor: pointer
}

.filter-search .item:last-of-type {
    margin-left: auto
}

@media screen and (max-width: 750px) {
    .filter-search .item:last-of-type {
        position: absolute;
        top: 5px;
        right: 0
    }
}

.filter-search .changeTo .fonts-12 {
    text-wrap: nowrap
}

.filter-search .changeTo .btn-1 {
    display: block
}

.filter-search .changeTo .btn-2 {
    display: none
}

.filter-search .changeTo.active .btn-1 {
    display: none
}

.filter-search .changeTo.active .btn-2 {
    display: block
}

@media screen and (max-width: 750px) {
    .filter-search .grid {
        grid-template-columns: 1fr;
        display: flex;
        flex-wrap: wrap;
        position: relative;
        column-gap: 30px
    }
    .filter-search .item {
        padding: 15px 0px
    }
    .filter-search .item:first-of-type {
        width: 100%;
        margin-bottom: 0;
        padding-bottom: 0
    }
}

.gfield--type-fileupload .gfield_description {
    font-size: 13px !important;
    font-weight: normal !important
}

.gfield--type-fileupload .ginput_container_fileupload {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 303px;
    height: 131px;
    border: .8px dashed #877883;
    text-align: center;
    grid-gap: 10px;
    cursor: pointer;
    position: relative
}

.gfield--type-fileupload .ginput_container_fileupload .jcf-file {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: rgba(0, 0, 0, 0) !important;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center
}

.gfield--type-fileupload .ginput_container_fileupload .jcf-file .jcf-upload-button {
    display: none
}

.gfield--type-fileupload .ginput_container_fileupload .jcf-fake-input {
    border: none !important
}

.gfield--type-fileupload .ginput_container_fileupload:not(.selected) .jcf-fake-input {
    display: none
}

.gfield--type-fileupload .ginput_container_fileupload.selected .description-wrapper {
    display: none
}

.gfield--type-fileupload .ginput_container_fileupload input {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999
}

.gform_footer .gform_button {
    opacity: 0;
    width: 1;
    font-size: 1px
}

html.show-enquiry-cart-section {
    overflow: hidden
}

html.show-enquiry-cart-section .btn-add-to-enquiry-cart::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0
}

html:not(.show-enquiry-cart-section) .enquiry-cart-section {
    transform: translateX(120%)
}

html.show-favourites-section {
    overflow: hidden
}

html.show-favourites-section .btn-open-favourites::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0
}

html:not(.show-favourites-section) .favourites-section {
    transform: translateX(120%)
}

.enquiry-cart-section {
    position: fixed;
    right: 0;
    top: 0;
    width: 470px;
    height: 100vh;
    z-index: 99;
    background-color: #f9f8f5;
    box-shadow: -10px 0px 44px -20px rgba(0, 0, 0, .25);
    overflow-y: auto;
    transition: all .3s ease;
    transform: translateX(0%);
    box-sizing: border-box;
    padding-bottom: 85px;
    max-width: 100%;
    max-height: 100%
}

@supports(height: 100dvh) {
    .enquiry-cart-section {
        height: 100dvh
    }
}

.enquiry-cart-section .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0
}

.enquiry-cart-section .head .btn-close {
    cursor: pointer
}

.enquiry-cart-section .head.fixed {
    position: sticky;
    background-color: #f9f8f5;
    padding-right: 35px;
    padding-left: 35px;
    box-sizing: border-box;
    top: 0;
    z-index: 2
}

.enquiry-cart-section .head span {
    font-family: "Satoshi", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%
}

.enquiry-cart-section>.box {
    padding: 0px 35px 0px 35px;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box
}

.enquiry-cart-section>.box .product-list .box .item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper {
    display: flex
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .image {
    width: 80px;
    height: 80px;
    margin-right: 25px
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info .name {
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 8px
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info .type {
    color: #6b6b6b;
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info .path {
    font-family: "Satoshi", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info .path svg {
    vertical-align: middle;
    margin: 0 10px
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info .path a {
    color: #6b6b6b
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info .path a:nth-of-type(2) {
    color: #000
}

.enquiry-cart-section>.box .product-list .box .item .info-Wrapper .info>div {
    display: block
}

.enquiry-cart-section>.box .product-list .box .item .operation a {
    text-decoration: underline
}

.enquiry-cart-section>.box .product-list .empty p:not(:last-child) {
    margin-bottom: 15px
}

.enquiry-cart-section>.box .description {
    padding-bottom: 50px;
    border-top: #6b6b6b solid 1px;
    color: #3c4136;
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.enquiry-cart-section>.box .description p:first-of-type {
    padding-top: 50px
}

.enquiry-cart-section>.box .description a {
    text-decoration: underline
}

.enquiry-cart-section>.box .enquiry-form .gform_title {
    display: none
}

.enquiry-cart-section>.box .enquiry-form textarea,
.enquiry-cart-section>.box .enquiry-form input[type=text] {
    padding: 20px 16px;
    border: #282828 solid 1px;
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.44px
}

.enquiry-cart-section>.box .enquiry-form textarea::placeholder,
.enquiry-cart-section>.box .enquiry-form input[type=text]::placeholder {
    text-transform: uppercase;
    color: #9f9f9f;
    opacity: 1
}

.enquiry-cart-section>.box .enquiry-form .selectr-container.open .selectr-selected::before {
    transform: translateX(-50%) translateY(-50%) rotate(180deg)
}

.enquiry-cart-section>.box .enquiry-form .selectr-container .selectr-options-container {
    border: #282828 solid 1px
}

.enquiry-cart-section>.box .enquiry-form .selectr-container .selectr-options-container .selectr-options {
    padding: 20px 16px
}

.enquiry-cart-section>.box .enquiry-form .selectr-container .selectr-options-container .selectr-options .selectr-option {
    padding: 0;
    color: #282828;
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.44px;
    text-transform: uppercase
}

.enquiry-cart-section>.box .enquiry-form .selectr-container .selectr-options-container .selectr-options .selectr-option:not(:last-of-type) {
    margin-bottom: 15px
}

.enquiry-cart-section>.box .enquiry-form .selectr-container .selectr-options-container .selectr-options .selectr-option.active,
.enquiry-cart-section>.box .enquiry-form .selectr-container .selectr-options-container .selectr-options .selectr-option.selected {
    background-color: rgba(0, 0, 0, 0);
    text-decoration: underline
}

.enquiry-cart-section>.box .enquiry-form .selectr-selected {
    padding: 20px 16px;
    border: #282828 solid 1px;
    font-family: "Satoshi", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 1.44px;
    border-radius: 0
}

.enquiry-cart-section>.box .enquiry-form .selectr-selected .selectr-label {
    text-transform: uppercase;
    color: #9f9f9f
}

.enquiry-cart-section>.box .enquiry-form .selectr-selected::before {
    display: block;
    font-family: "stpvm" !important;
    content: "";
    border: none;
    font-size: 6px;
    width: 10px;
    height: 10px;
    transform: translateX(-50%) translateY(-50%);
    transform-origin: center center;
    transition: all .3s ease
}

.enquiry-cart-section>.box .enquiry-form .jcf-checkbox {
    border-color: #000 !important;
    flex-shrink: 0;
    margin-right: 5px
}

.enquiry-cart-section>.box .enquiry-form .jcf-checkbox.jcf-focus {
    border-color: #000 !important
}

.enquiry-cart-section>.box .enquiry-form .jcf-checkbox.jcf-focus span {
    border-color: #000 !important
}

.enquiry-cart-section>.box .enquiry-form .jcf-checkbox span {
    margin: -6px 0 0 -6px;
    height: 0px;
    width: 0px;
    border: 6px solid #000;
    transform: none
}

.enquiry-cart-section>.box .enquiry-form .gfield_checkbox .gchoice {
    margin-bottom: 16px;
    display: flex;
    align-items: center
}

.enquiry-cart-section>.box .enquiry-form .gfield_checkbox .gchoice label {
    color: #9f9f9f;
    font-family: "Satoshi", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 1.44px;
    text-transform: uppercase
}

.empty {
    padding: 50px 0
}

.empty a {
    text-decoration: underline
}

.four-col-average .container .grid .block {
    width: 100%
}

.favourites-section {
    position: fixed;
    right: 0;
    top: 0;
    width: 270px;
    height: 100vh;
    z-index: 99;
    background-color: #f9f8f5;
    box-shadow: -10px 0px 44px -20px rgba(0, 0, 0, .25);
    overflow-y: auto;
    transition: all .3s ease;
    transform: translateX(0%);
    box-sizing: border-box;
    padding-bottom: 85px
}

.favourites-section .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 50px 0
}

.favourites-section .head .btn-close {
    cursor: pointer
}

.favourites-section .head.fixed {
    position: sticky;
    background-color: #f9f8f5;
    padding-right: 35px;
    padding-left: 35px;
    box-sizing: border-box;
    top: 0;
    z-index: 1
}

.favourites-section .head span {
    font-family: "Satoshi", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%
}

.favourites-section>.box {
    padding: 0px 35px 0px 35px;
    overflow-y: auto;
    width: 100%;
    box-sizing: border-box
}

.favourites-section>.box .product-list .box .item {
    margin-bottom: 50px
}

.favourites-section>.box .product-list .box .item .info-Wrapper .image {
    width: 200px;
    height: 200px;
    position: relative
}

.favourites-section>.box .product-list .box .item .info-Wrapper .image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.favourites-section>.box .product-list .box .item .info-Wrapper .image svg {
    position: absolute;
    right: 10px;
    bottom: 10px;
    cursor: pointer
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 17px
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info .name {
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 8px
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info .type {
    color: #6b6b6b;
    font-family: "Satoshi", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info .path {
    font-family: "Satoshi", sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: capitalize;
    margin-top: 17px;
    padding-top: 17px;
    border-top: #000 solid 1px;
    display: flex;
    align-items: center
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info .path svg {
    vertical-align: middle;
    margin: 0 10px
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info .path a {
    color: #6b6b6b
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info .path a:nth-of-type(2) {
    color: #000
}

.favourites-section>.box .product-list .box .item .info-Wrapper .info>div {
    display: block
}

.favourites-section>.box .product-list .box .item .operation a {
    text-decoration: underline
}

.jw-underline a {
    width: fit-content;
    position: relative
}

.jw-underline a::after {
    content: "";
    display: block;
    height: 0;
    width: 0%;
    position: absolute;
    bottom: -5px;
    left: 0;
    border-bottom: #000 solid 1px;
    transition: width .3s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.jw-underline a:hover::after {
    width: 100%;
    transition: width .3s cubic-bezier(0.68, -0.55, 0.27, 1.55)
}

.high-light {
    color: #fff;
    background-color: #46743b
}

.search-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.search-form .heading {
    color: #282828;
    font-family: "Satoshi", sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-bottom: 40px
}

@media(min-width: 751px) {
    .search-form .heading {
        font-size: 40px;
        margin-bottom: 70px
    }
}

.search-form .search {
    width: 100%;
    height: 54px;
    border: #000 solid 1px;
    position: relative
}

.search-form .search input {
    width: 100%;
    height: 100%;
    padding: 16px 20px;
    box-sizing: border-box;
    font-family: "Satoshi", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%
}

@media(min-width: 500px) {
    .search-form .search input {
        font-size: 20px
    }
}

.search-form .search input::placeholder {
    color: #9f9f9f;
    opacity: 1
}

.search-form .search .btn-search {
    position: absolute;
    right: 0;
    height: 100%;
    top: 0;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center
}

.rotate180deg {
    transform: rotate(180deg);
    transform-origin: center
}

.lds-ellipsis,
.lds-ellipsis div {
    box-sizing: border-box
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px
}

.lds-ellipsis div {
    position: absolute;
    top: 33.33333px;
    width: 13.33333px;
    height: 13.33333px;
    border-radius: 50%;
    background: currentColor;
    animation-timing-function: cubic-bezier(0, 1, 1, 0)
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 .6s infinite
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 .6s infinite
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0)
    }
    100% {
        transform: scale(1)
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1)
    }
    100% {
        transform: scale(0)
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0)
    }
    100% {
        transform: translate(24px, 0)
    }
}

.projects-lists-module:not(.loading) .loading-wrapper {
    display: none
}

.projects-lists-module.loading {
    position: relative
}

.projects-lists-module.loading .image-lists {
    opacity: .05
}

.projects-lists-module .image-lists {
    transition: opacity .3s ease
}

.projects-lists-module .loading-wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    height: 200px;
    align-items: center
}

img[data-lazy-src].lazyload {
    opacity: 0
}

body.loading .read-more-wrapper {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word
}

.read-more-wrapper,
.read-more-sizes-wrapper {
    overflow: hidden;
    transition: .3s
}

.load-more-wrapper {
    width: 100%
}

.states-dropdown {
    display: none
}

.states-dropdown ul li {
    display: flex;
    align-items: center;
    margin-top: 10px
}

.states-dropdown ul li label {
    cursor: pointer;
    display: flex;
    align-items: center
}

.states-dropdown ul li label span:nth-child(1) {
    margin-right: 10px
}

.states-dropdown ul li:last-child {
    margin-bottom: 10px
}

.sectors-dropdown ul li {
    display: flex;
    align-items: center;
    margin-top: 10px
}

.sectors-dropdown ul li label {
    cursor: pointer;
    display: flex;
    align-items: center
}

.sectors-dropdown ul li label span:nth-child(1) {
    margin-right: 10px
}

.sectors-dropdown ul li:last-child {
    margin-bottom: 10px
}

.aligh-right {
    text-align: right
}

.container .grid-two-col .text .item h3 {
    margin-bottom: 20px
}

@media(min-width: 751px) {
    .container .grid-two-col .text .item h3 {
        margin-bottom: 30px
    }
}

.slick-track {
    margin-left: unset !important
}

.enquery-btn {
    cursor: pointer
}

.btn-check-all {
    justify-content: flex-end !important
}

.popup-gallery .item>.picture {
    cursor: pointer
}

@media(min-width: 1280px) {
    .content-halfwidth {
        max-width: 1920px;
        margin: 0 auto
    }
    .content-halfwidth>.container {
        width: 50%;
        margin-right: 0
    }
    .content-halfwidth>.container .half-width {
        width: 100%
    }
}

.content-halfwidth>.container .headline-row {
    margin-bottom: 0
}

.aligh-center {
    align-items: center;
    justify-content: center;
    transform: unset !important
}

.mfp-gallery .mfp-container {
    max-width: 1600px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transofmr: translateX(-50%);
    transform: translateX(-50%);
    padding: 0 50px
}

.mfp-gallery .mfp-content {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
    padding: 0;
    z-index: 0
}

.mfp-gallery .mfp-content img {
    width: 100%;
    object-fit: contain
}

.mfp-gallery .mfp-image-holder .mfp-close,
.mfp-gallery .mfp-iframe-holder .mfp-close {
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    padding: 0;
    padding-left: 5px;
    background-color: #000;
    opacity: 1;
    text-align: center;
    display: none
}

.mfp-gallery .mfp-arrow {
    position: absolute;
    top: 50%;
    width: 52px;
    height: 52px;
    margin-top: -26px;
    background-color: #000;
    padding: 0;
    font-size: 0;
    z-index: 2;
    border-radius: 0;
    overflow: hidden
}

.mfp-gallery .mfp-arrow.mfp-arrow-left {
    left: 25px;
    transform: rotate(180deg)
}

.mfp-gallery .mfp-arrow.mfp-arrow-left::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    background: url("../images/arrow-right.svg");
    background-position: center;
    width: 100%;
    height: 100%
}

.mfp-gallery .mfp-arrow.mfp-arrow-left::after {
    left: 100%
}

.mfp-gallery .mfp-arrow.mfp-arrow-right {
    right: 25px
}

.mfp-gallery .mfp-arrow.mfp-arrow-right::before {
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    background: url("../images/arrow-right.svg");
    background-position: center;
    width: 100%;
    height: 100%
}

.mfp-gallery .mfp-arrow.mfp-arrow-right::after {
    left: -100%
}

.mfp-gallery .mfp-arrow:hover::after {
    left: 0
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    box-sizing: border-box
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none;
    width: fit-content
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-ready .mfp-preloader {
    display: none
}

.mfp-s-error .mfp-content {
    display: none
}

button.mfp-close,
button.mfp-arrow {
    cursor: pointer;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    margin: 0;
    top: 50%;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-right {
    right: 0
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #444
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0;
    width: fit-content
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width: 800px)and (orientation: landscape),
screen and (max-height: 300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.data_empty {
    text-align: center;
    font-size: 12px;
    height: 100px;
    line-height: 100px;
    color: var(--black)
}

@media(max-width: 750px) {
    .jw-mobile-paragraph {
        padding-top: 15px
    }
}

@media(max-width: 768px) {
    .mobile-no-padding-top {
        padding-top: 0 !important
    }
}

.home-banner {
    position: relative;
    height: 100vh;
    max-width: 1856px;
    margin: 0 auto
}

@media(max-width: 768px) {
    .home-banner {
        height: calc(100vh - 110px)
    }
}

.home-banner .picture {
    height: 100%;
    box-sizing: border-box;
    padding-top: 90px
}

@media(min-width: 1024px) {
    .home-banner .picture {
        padding-top: 120px
    }
}

.home-banner .picture .slick-list {
    height: 100%
}

.home-banner .picture .slick-list .slick-track {
    height: 100%
}

.home-banner .picture .slick-list .slick-track img {
    height: 100%
}

.home-banner .text-block {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: grid
}

.home-banner .text-block .container {
    align-self: end;
    position: relative
}

.home-banner .headline-bigger {
    margin-bottom: 40px;
    color: var(--white);
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    text-transform: capitalize
}

.home-banner .position {
    position: absolute;
    right: var(--container-gap);
    bottom: 65px;
    display: grid;
    grid-template-columns: auto 9px;
    grid-template-rows: auto;
    grid-auto-rows: auto;
    align-items: center;
    grid-gap: 10px 20px
}

.home-banner .position .text {
    font-size: 12px;
    line-height: 150%;
    color: var(--white)
}

.home-banner .position .line {
    max-width: 100%;
    position: absolute;
    bottom: -10px;
    transition: all .3s ease
}

.home-banner .position .line rect {
    transition: all 5s ease
}

.about-module .double-col-26-74 {
    border-top: 0
}

.about-module .headline-small {
    line-height: 150%
}

.about-module .btn:not(.tiny,
.medium) svg {
    width: 27px;
    height: auto
}

@media(min-width: 1024px) {
    .about-module .btn:not(.tiny,
    .medium) svg {
        width: 27px;
        height: auto
    }
}

.our-instragram-module .lists {
    display: grid;
    grid-template-columns: repeat(5, 1fr) !important;
    grid-gap: 50px
}

.our-instragram-module .lists .item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative
}

.our-instragram-module .lists .item a::after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 100%
}

.our-instragram-module .lists .item a img {
    position: absolute;
    top: 0
}

.our-instragram-module .lists .item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (max-width: 1280px) {
    .our-instragram-module .lists {
        grid-gap: 35px
    }
}

@media screen and (max-width: 1024px) {
    .our-instragram-module .lists {
        grid-template-columns: repeat(4, 1fr) !important
    }
    .our-instragram-module .lists .item:nth-of-type(n+5) {
        display: none !important
    }
}

@media screen and (max-width: 900px) {
    .our-instragram-module .lists {
        grid-template-columns: repeat(3, 1fr) !important
    }
    .our-instragram-module .lists .item:nth-of-type(n+4) {
        display: none !important
    }
}

@media screen and (max-width: 750px) {
    .our-instragram-module .lists {
        grid-template-columns: repeat(2, 1fr) !important;
        grid-template-rows: calc(50vw - 15px) !important;
        grid-gap: 20px
    }
    .our-instragram-module .lists .item:nth-of-type(n+3) {
        display: none !important
    }
}

.services-module .lists {
    padding-top: 20px
}

.services-module .item {
    padding: 30px 0px;
    border-top: 1px solid var(--border-color-2);
    transition: all .5s
}

.services-module .item:last-child {
    border-bottom: 1px solid var(--border-color-2)
}

.services-module .item .headline-smaller {
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px
}

.services-module .item .headline-smaller .arrow-right {
    display: flex;
    position: relative
}

.services-module .item .headline-smaller .arrow-right svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: auto
}

@media(min-width: 1024px) {
    .services-module .item .headline-smaller .arrow-right svg {
        width: 48px;
        height: auto
    }
}

.services-module .item .headline-smaller .arrow-right::after {
    content: "";
    display: block;
    position: absolute;
    background-color: #000;
    width: 0;
    left: 0;
    height: 100%
}

.services-module .item:hover .headline-smaller .arrow-right svg path {
    stroke: #fff
}

.services-module .item:hover .headline-smaller .arrow-right::after {
    width: 100%
}

.services-module .item .float-image {
    display: none;
    position: absolute;
    width: 260px;
    height: 260px;
    z-index: 2
}

.services-module .item .float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (max-width: 1280px) {
    .services-module .item {
        padding: 25px 0px
    }
}

@media screen and (max-width: 1024px) {
    .services-module .item {
        padding: 20px 0px
    }
}

@media screen and (max-width: 820px) {
    .services-module .item {
        padding: 15px 0px
    }
}

.natural-stone-module {
    overflow-y: hidden
}

@media(max-width: 768px) {
    .natural-stone-module {
        padding-top: 15px
    }
}

.natural-stone-module .product-lists-box {
    position: relative;
    display: flex
}

.natural-stone-module .btn-left {
    position: absolute;
    cursor: pointer;
    transform: rotateY(180deg);
    margin-left: -2px;
    display: flex;
    transform: translateY(-50%)
}

.natural-stone-module .btn-left svg {
    transform: rotate(180deg)
}

.natural-stone-module .btn-left svg rect:nth-of-type(2) {
    display: block;
    width: 0;
    height: 100%;
    transition: width .3s ease
}

.natural-stone-module .btn-left svg path {
    transition: stroke .3s ease
}

.natural-stone-module .btn-left:hover svg rect:nth-of-type(2) {
    width: 100%
}

.natural-stone-module .btn-left:hover svg path {
    stroke: #fff
}

.natural-stone-module .btn-right {
    position: absolute;
    cursor: pointer;
    margin-right: -2px;
    display: flex;
    transform: translateY(-50%)
}

.natural-stone-module .btn-right svg rect:nth-of-type(2) {
    display: block;
    width: 0;
    height: 100%;
    transition: width .3s ease
}

.natural-stone-module .btn-right svg path {
    transition: stroke .3s ease
}

.natural-stone-module .btn-right:hover svg rect:nth-of-type(2) {
    width: 100%
}

.natural-stone-module .btn-right:hover svg path {
    stroke: #fff
}

.natural-stone-module .product-lists-box {
    overflow-x: clip;
    padding-bottom: 58px
}

.natural-stone-module .product-lists {
    text-wrap: nowrap
}

.natural-stone-module .product-lists .slick-list {
    overflow: unset
}

.natural-stone-module .product-lists .slick-list .slick-track {
    width: 100000000px !important
}

.natural-stone-module .product-lists .item {
    display: inline-block;
    min-width: 263px;
    width: calc(100vw - 40px) !important;
    display: flex;
    box-sizing: border-box
}

@media(min-width: 600px) {
    .natural-stone-module .product-lists .item {
        padding-right: 22px;
        margin-right: 22px;
        width: calc((100vw - 40px)/2) !important
    }
}

@media(min-width: 850px) {
    .natural-stone-module .product-lists .item {
        width: calc((100vw - 40px - 22px)/3) !important
    }
}

@media(min-width: 1024px) {
    .natural-stone-module .product-lists .item {
        width: calc((100vw - 50px - 22px)/3) !important
    }
}

@media(min-width: 1200px) {
    .natural-stone-module .product-lists .item {
        width: calc((100vw - 60px - 22px)/4) !important;
        max-width: 358px
    }
}

@media(min-width: 1280px) {
    .natural-stone-module .product-lists .item {
        width: calc((100vw - 64px - 44px)/4) !important
    }
}

@media(min-width: 1450px) {
    .natural-stone-module .product-lists .item {
        width: calc((100vw - 64px - 66px)/5) !important
    }
}

.natural-stone-module .product-lists .item>.box {
    width: 100%
}

.natural-stone-module .product-lists .item .headline-smallest {
    position: absolute;
    bottom: -58px
}

.natural-stone-module .product-lists .item .picture {
    position: relative
}

.natural-stone-module .product-lists .item .picture::after {
    content: "";
    display: block;
    padding-top: 100%
}

.natural-stone-module .product-lists .item .picture img {
    position: absolute;
    top: 0
}

.natural-stone-module .headline-smallest {
    line-height: 1.15;
    margin-top: 28px
}

.our-quarry-module .video {
    border-top: 1px solid var(--border-color)
}

.our-quarry-module .box {
    background: #f9f8f5
}

.our-quarry-module video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.our-quarry-module .rich-text {
    font-size: 18px;
    line-height: 150%
}

.our-quarry-module .rich-text p {
    line-height: inherit
}

.our-quarry-module .btn {
    margin-top: 30px
}

@media(max-width: 768px) {
    .our-quarry-module .btn span {
        line-height: 16px
    }
}

.our-quarry-module .headline {
    line-height: 130%;
    margin-right: 65px;
    transform: translateY(-10px);
    text-transform: none
}

.our-quarry-module .grid {
    grid-template-columns: 1fr 1fr
}

.our-quarry-module .grid .right {
    box-sizing: border-box;
    padding-left: 16px
}

.our-quarry-module .text-box {
    max-width: 1700px;
    padding-left: 20px;
    padding-right: 20px
}

@media screen and (max-width: 750px) {
    .our-quarry-module .box {
        padding-left: 16px;
        padding-right: 16px
    }
    .our-quarry-module .grid {
        grid-template-columns: 1fr
    }
    .our-quarry-module .grid .right {
        padding: 0px
    }
    .our-quarry-module .headline {
        margin-right: 0;
        margin-bottom: 15px
    }
}

.our-brands-module {
    overflow-x: hidden;
    border-bottom: 1px solid var(--border-color)
}

.our-brands-module .item.flex {
    box-sizing: border-box;
    padding: 10px;
    flex: 0 0 auto;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
    height: 100%
}

.our-brands-module .item.flex img {
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all .3s ease
}

.our-brands-module .item.flex:hover img {
    filter: grayscale(0%)
}

.our-brands-module .container>div {
    overflow: hidden
}

.our-brands-module .container>div .text {
    position: relative;
    width: 100%;
    overflow: hidden
}

.our-brands-module .lists {
    width: 100%;
    display: flex;
    flex-wrap: wrap
}

.our-brands-module .lists.slider {
    width: 2000%;
    overflow: hidden;
    border-left: 1px solid var(--border-color-2);
    border-right: 1px solid var(--border-color-2)
}

.our-brands-module .lists.slider::after {
    content: "";
    display: block;
    clear: both;
    border-right: 1px solid var(--border-color-2);
    height: 100%;
    position: absolute;
    right: 0
}

@media(min-width: 500px) {
    .our-brands-module .lists {
        flex-wrap: nowrap
    }
}

.our-brands-module .lists li {
    position: relative;
    width: 100%;
    border: 1px solid var(--border-color-2)
}

.our-brands-module .lists li .item.flex {
    position: absolute;
    top: 0;
    width: 100%
}

@media(min-width: 500px) {
    .our-brands-module .lists li .item.flex {
        position: relative
    }
}

.our-brands-module .lists li::after {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%;
    width: 100%
}

@media(min-width: 500px) {
    .our-brands-module .lists li {
        width: 150px;
        height: 150px
    }
    .our-brands-module .lists li::after {
        display: none
    }
}

@media(min-width: 1024px) {
    .our-brands-module .lists li {
        width: 233px;
        height: 233px
    }
}

.our-brands-module .lists li:not(:last-child) {
    border-bottom: none
}

.our-brands-module .lists li img {
    position: absolute
}

@media(min-width: 500px) {
    .our-brands-module .lists li:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border-color-2)
    }
    .our-brands-module .lists li img {
        position: relative
    }
}

.showroom-module .showroom {
    justify-content: space-between;
    align-items: start;
    grid-gap: 30px;
    overflow: hidden;
    flex-wrap: wrap
}

@media(min-width: 1024px) {
    .showroom-module .showroom {
        flex-wrap: nowrap
    }
}

@media(min-width: 1440px) {
    .showroom-module .showroom {
        grid-gap: 150px
    }
}

.showroom-module .showroom .picture {
    width: 100%;
    flex: 0 0 auto;
    align-self: stretch
}

@media(min-width: 1024px) {
    .showroom-module .showroom .picture {
        max-width: 437px
    }
}

@media(min-width: 1440px) {
    .showroom-module .showroom .picture {
        max-width: 537px;
        flex-shrink: 0
    }
}

.showroom-module .showroom .picture::after {
    content: "";
    display: block;
    padding-top: 100%
}

.showroom-module .showroom .picture img {
    position: absolute;
    top: 0
}

.showroom-module .showroom .text {
    flex: 1
}

@media(min-width: 1440px) {
    .showroom-module .showroom .text {
        flex-shrink: 1
    }
}

.showroom-module .attribute {
    grid-template-columns: repeat(3, 1fr)
}

.showroom-module .attribute .item {
    box-sizing: border-box;
    min-height: 140px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
    flex-flow: column;
    justify-content: space-between
}

.showroom-module .attribute .item:last-child {
    font-size: 14px
}

@media(min-width: 1500px) {
    .showroom-module .attribute .item:last-child {
        font-size: 16px
    }
}

@media(max-width: 1180px) {
    .showroom-module .attribute .item:last-child a {
        white-space: normal;
        word-break: keep-all
    }
}

.showroom-module .rich-text {
    column-count: 2;
    gap: 40px
}

.showroom-module .btn {
    margin-top: 20px
}

.showroom-module .name {
    font-size: 14px;
    text-transform: capitalize;
    margin-bottom: 50px
}

.showroom-module .value {
    line-height: 120%
}

.showroom-module .value a {
    white-space: break-spaces;
    word-break: break-all;
    display: block
}

@media screen and (max-width: 1280px) {
    .showroom-module .rich-text {
        column-count: 1
    }
    .showroom-module .rich-text p:not(:last-child) {
        margin-bottom: 1em
    }
}

@media screen and (max-width: 750px) {
    .showroom-module .attribute {
        grid-template-columns: 1fr;
        grid-gap: 30px
    }
    .showroom-module .attribute .item {
        min-height: 90px
    }
    .showroom-module .showroom {
        flex-flow: column
    }
}

.projects-details .rich-text p {
    line-height: 150%
}

.projects-details .attribute-block .tow-column.flex {
    grid-gap: 32px
}

.projects-details .attribute-block .tow-column.flex .left {
    flex: 1 1 auto;
    align-self: flex-start;
    display: grid;
    grid-template-columns: repeat(1, 1fr)
}

@media(min-width: 1024px) {
    .projects-details .attribute-block .tow-column.flex .left {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width: 1280px) {
    .projects-details .attribute-block .tow-column.flex .left {
        grid-template-columns: repeat(3, 1fr)
    }
}

.projects-details .tow-column.flex {
    grid-gap: 32px
}

.projects-details .tow-column.flex .left {
    flex: 1 1 auto;
    align-self: flex-start;
    display: grid;
    grid-template-columns: repeat(1, 1fr)
}

.projects-details .tow-column.flex .big {
    width: 54.4%;
    flex: 0 0 auto
}

.projects-details .single-row-text {
    width: 54.4%
}

.projects-details .single-row-text.right {
    margin-left: auto
}

.projects-details .single-row-image .picture {
    height: 700px
}

@media screen and (max-width: 1024px) {
    .projects-details .tow-column.flex {
        grid-gap: 30px
    }
    .projects-details .tow-column.flex .picture {
        height: 100%
    }
}

@media screen and (max-width: 750px) {
    .projects-details .tow-column.flex {
        flex-flow: column;
        padding-bottom: 0
    }
    .projects-details .tow-column.flex .big {
        width: 100%
    }
    .projects-details .single-row-text {
        width: 100%
    }
    .projects-details .tow-column.flex .picture {
        height: 100%
    }
    .projects-details .single-row-image .picture {
        max-height: 120vw
    }
}

.attribute-block .attribute.flex {
    flex-flow: row wrap;
    grid-gap: 20px 40px
}

.attribute-block .attribute.flex .item {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color)
}

.attribute-block .attribute.flex .item .label {
    color: #6b6b6b;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.2px
}

.attribute-block .attribute.flex .item .value {
    font-size: 14px;
    text-transform: capitalize
}

@media(min-width: 1024px) {
    .attribute-block .attribute.flex .item.full-width {
        grid-column: 2 span
    }
}

@media(min-width: 1280px) {
    .attribute-block .attribute.flex .item.full-width {
        grid-column: 3 span
    }
}

.attribute-block .attribute.flex .item.full-width a {
    text-decoration: underline;
    display: block
}

@media screen and (max-width: 1024px) {
    .attribute-block .attribute.flex {
        grid-gap: 20px 25px
    }
}

.related-items .box {
    overflow: hidden;
    position: relative
}

.related-items .grid {
    width: 100%;
    grid-template-columns: repeat(5, 1fr)
}

.related-items .grid .item {
    box-sizing: border-box
}

.related-items .grid .item .picture {
    position: relative
}

.related-items .grid .item .picture::after {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%;
    width: 100%
}

.related-items .grid .item .picture img {
    position: absolute;
    top: 0
}

.related-items .grid .item .picture .label {
    position: absolute;
    top: 22px;
    left: 0;
    width: fit-content;
    min-width: 248px;
    text-align: center
}

.related-items .grid .item .name {
    line-height: 130%;
    margin-top: 22px
}

.related-items .grid .item .type {
    line-height: 130%;
    margin-top: 8px;
    color: #6b6b6b
}

.related-items .grid .item .path {
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-color-2);
    align-items: center;
    grid-gap: 10px;
    line-height: 1;
    font-size: 11px
}

.related-items .grid .item .path a:not(:last-child) {
    color: #6b6b6b
}

.related-items .grid .item.hasBorder:not(:last-child) {
    border-right: 1px solid var(--border-color)
}

@media screen and (max-width: 750px) {
    .related-items .grid {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 30px 0px
    }
    .related-items .grid .item.hasBorder:not(:last-child) {
        border: 0
    }
}

.text-lists {
    display: none
}

.text-lists .fonts-12 {
    color: #9f9f9f;
    margin-bottom: 9px
}

@media(min-width: 751px) {
    .text-lists.search-projects-lists {
        margin-left: 20px
    }
}

.text-lists.search-projects-lists .head.grid {
    grid-template-columns: auto 28.7% 31.97%
}

.text-lists.search-projects-lists .head.grid-2cols {
    grid-template-columns: auto 30% !important
}

.text-lists.search-projects-lists .item .grid {
    grid-template-columns: auto 28.7% 31.97%
}

.text-lists.search-projects-lists .item .grid-2cols {
    grid-template-columns: auto 30% !important
}

.text-lists .item {
    cursor: pointer;
    border-top: 1px solid var(--border-color-2)
}

.text-lists .item:last-of-type {
    border-bottom: 1px solid var(--border-color-2)
}

.text-lists .item .flex {
    justify-content: space-between
}

.text-lists .item .grid {
    grid-template-columns: 31.97% 28.7% 31.97% auto;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 45px
}

.text-lists .item .headline-smallest {
    max-width: 440px;
    flex: 1;
    font-weight: 400
}

.text-lists .item .states {
    max-width: 395px;
    flex: 1
}

.text-lists .item .sectors {
    max-width: 440px;
    flex: 1
}

.text-lists .item .date {
    max-width: none;
    margin-left: auto
}

.text-lists .item>img {
    position: absolute;
    display: none;
    width: 260px;
    height: 260px;
    object-fit: cover
}

@media screen and (max-width: 750px) {
    .text-lists .item .grid {
        grid-template-columns: 1fr;
        padding-top: 15px;
        padding-bottom: 25px;
        grid-gap: 10px
    }
}

.single-row-image .picture {
    max-height: 700px
}

.two-col-average .box.grid {
    grid-template-columns: 1fr 1fr
}

.two-col-average .box.grid .left {
    padding-right: 40px;
    box-sizing: border-box
}

.two-col-average .box.grid .right {
    padding-left: 40px;
    box-sizing: border-box
}

.two-col-average .headline {
    border-top: 1px solid var(--border-color);
    padding-top: 25px
}

.two-col-average .btn {
    margin-top: 50px;
    grid-gap: 20px
}

@media screen and (max-width: 1280px) {
    .two-col-average .box.grid .left {
        padding-right: calc(var(--small-gap)/2)
    }
    .two-col-average .box.grid .right {
        padding-left: calc(var(--small-gap)/2)
    }
}

@media screen and (max-width: 1024px) {
    .two-col-average .box.grid .left {
        padding-right: 20px
    }
    .two-col-average .box.grid .right {
        padding-left: 20px
    }
}

@media screen and (max-width: 900px) {
    .two-col-average .box.grid .left {
        padding-right: 15px
    }
    .two-col-average .box.grid .right {
        padding-left: 15px
    }
}

@media screen and (max-width: 768px) {
    .two-col-average .box.grid .left {
        padding-right: 12.5px
    }
    .two-col-average .box.grid .right {
        padding-left: 12.5px
    }
}

@media screen and (max-width: 750px) {
    .two-col-average .box.grid {
        grid-template-columns: 1fr;
        grid-gap: 20px
    }
    .two-col-average .box.grid .left {
        padding-right: 0px
    }
    .two-col-average .box.grid .right {
        padding-left: 0px
    }
}

.four-col-average .grid {
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr
}

@media(min-width: 480px) {
    .four-col-average .grid {
        grid-gap: 20px
    }
}

@media(min-width: 750px) {
    .four-col-average .grid {
        grid-gap: 40px;
        grid-template-columns: 1fr 1fr 1fr
    }
}

@media(min-width: 1024px) {
    .four-col-average .grid {
        grid-gap: 70px 80px;
        grid-template-columns: 1fr 1fr 1fr 1fr
    }
}

.four-col-average .picture::after {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%
}

.four-col-average .picture img {
    position: absolute;
    top: 0
}

.four-col-average .name {
    font-size: 26px;
    font-weight: 400;
    text-transform: capitalize;
    margin-top: 40px;
    display: block
}

.four-col-average .name br {
    display: none
}

.four-col-average .type {
    font-size: 14px;
    font-weight: 400;
    color: #6b6b6b
}

.four-col-average .type a {
    color: #6b6b6b
}

@media(min-width: 768px) {
    .four-col-average .type {
        font-size: 18px;
        margin-top: 8px
    }
}

@media(min-width: 1280px) {
    .four-col-average .type {
        font-size: 20px
    }
}

.four-col-average .path {
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-color-2);
    align-items: center;
    grid-gap: 10px;
    line-height: 1;
    font-size: 12px;
    display: none
}

.four-col-average .path a:not(:last-child) {
    color: #6b6b6b
}

@media(min-width: 600px) {
    .four-col-average .path {
        display: block
    }
}

@media(min-width: 1280px) {
    .four-col-average .path {
        font-size: 14px
    }
}

@media screen and (max-width: 1280px) {
    .four-col-average .grid {
        grid-gap: var(--small-gap)
    }
    .four-col-average .name {
        margin-top: 35px
    }
}

@media screen and (max-width: 1200px) {
    .four-col-average .name {
        margin-top: 30px
    }
}

@media screen and (max-width: 1024px) {
    .four-col-average .grid {
        grid-gap: 40px
    }
    .four-col-average .name {
        margin-top: 25px
    }
}

@media screen and (max-width: 900px) {
    .four-col-average .grid {
        grid-gap: 30px
    }
    .four-col-average .name {
        margin-top: 20px
    }
}

@media screen and (max-width: 768px) {
    .four-col-average .grid {
        grid-gap: 25px
    }
    .four-col-average .name {
        margin-top: 15px;
        font-size: 20px
    }
}

@media screen and (max-width: 750px) {
    .four-col-average .name {
        margin-top: 10px
    }
}

@media screen and (max-width: 500px) {
    .four-col-average .grid {
        grid-gap: 15px
    }
}

.select,
.selected {
    position: relative
}

.select.show-dropdown .can-select,
.selected.show-dropdown .can-select {
    display: block
}

.select .can-select,
.selected .can-select {
    display: none;
    position: absolute;
    top: 100%;
    width: fit-content;
    padding: 5px 20px;
    border: 1px solid var(--black);
    background: #fff;
    z-index: 1;
    top: calc(100% + 20px)
}

.select .can-select::before,
.selected .can-select::before {
    content: "";
    display: block;
    width: 100%;
    height: 21px;
    position: absolute;
    top: 0;
    transform: translateY(-21px)
}

.select .can-select a,
.selected .can-select a {
    display: inline-block;
    padding: 7.5px 0px;
    text-wrap: nowrap
}

.select .can-select a:hover,
.select .can-select a.active,
.selected .can-select a:hover,
.selected .can-select a.active {
    text-decoration: underline
}

.select .can-select a br,
.selected .can-select a br {
    display: none
}

.select:last-of-type .can-select,
.selected:last-of-type .can-select {
    right: 0
}

.result-count {
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color-2);
    padding-top: 15px;
    padding-bottom: 15px;
    flex-wrap: wrap
}

@media(min-width: 768px) {
    .result-count {
        height: 80px;
        padding-top: 0;
        padding-bottom: 0;
        flex-wrap: nowrap
    }
}

.result-count:not(.mobile-two-column) .count {
    display: none
}

@media(min-width: 768px) {
    .result-count:not(.mobile-two-column) .count {
        display: block
    }
}

.result-count>div {
    width: 100%
}

@media(min-width: 768px) {
    .result-count>div {
        width: fit-content
    }
}

.result-count svg {
    margin-left: 5px
}

.result-count .flex {
    align-items: center;
    grid-gap: 10px
}

.result-count .search-filtering {
    position: relative
}

.result-count .search-filtering.range .selected {
    position: static !important
}

.result-count .search-filtering.range .selected span {
    position: relative
}

.result-count .search-filtering.range .selected span::before {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    transform: translateY(100%)
}

.result-count .search-filtering.range .selected .can-select {
    left: 0;
    right: unset;
    width: 300px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden
}

.result-count .search-filtering.range .selected .can-select::before {
    height: 40px;
    transform: translateY(-36px)
}

.result-count .selected {
    position: relative
}

.result-count .selected.tag {
    display: flex;
    flex-wrap: wrap
}

@media(min-width: 750px) {
    .result-count .selected.tag {
        width: 100%;
        text-align: right
    }
}

@media(max-width: 470px) {
    .result-count .selected.tag span {
        padding: 10px 14px !important;
        font-size: 11px
    }
    .result-count .selected.tag span a {
        font-size: 11px
    }
}

@media(max-width: 400px) {
    .result-count .selected.tag span {
        padding: 10px 10px !important;
        font-size: 10px
    }
    .result-count .selected.tag span a {
        font-size: 10px
    }
}

@media(max-width: 470px) {
    .result-count .selected.tag span {
        margin-right: unset !important
    }
}

.result-count .selected.tag span {
    background-color: #f9f8f5;
    padding: 12px 16px
}

.result-count .selected.tag span:last-child {
    margin-right: 0
}

@media(min-width: 750px) {
    .result-count .selected.tag span:nth-last-child(2) {
        margin-right: 0
    }
}

.result-count .selected.tag span:hover {
    background-color: #e7e7e6
}

.result-count .selected.tag span.cur {
    background-color: #282828;
    color: #fff
}

.result-count .selected.tag span.cur a {
    color: #fff
}

.result-filter {
    border: none
}

.result-filter .headline {
    transform: translateY(3px)
}

.result-filter .left .btn {
    cursor: pointer;
    margin-top: 8px
}

@media(max-width: 768px) {
    .result-filter .left .btn span {
        font-size: 10px
    }
}

.result-filter .right {
    align-self: center;
    position: relative;
    display: none
}

@media(min-width: 768px) {
    .result-filter .right {
        display: block
    }
}

.result-filter .right .loading {
    position: absolute;
    bottom: -45px
}

.result-filter .search-box {
    height: 54px;
    padding: 0px 20px;
    border: 1px solid var(--black);
    justify-content: space-between;
    align-items: center;
    grid-gap: 30px
}

.result-filter .search-box input {
    flex: 1;
    font-size: 20px;
    transition: all .3s;
    font-family: Satoshi, sans-serif;
    width: 100%
}

.result-filter .search-box input::placeholder {
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    text-transform: none
}

.result-filter .search-box svg {
    cursor: pointer
}

body:not(.loading) .result-lists .right .loading {
    display: none
}

body:not(.type_loading) .result-filter .right .loading {
    display: none
}

body.loading .result-lists .right::after {
    content: "";
    display: block;
    background-color: #000;
    opacity: .2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed
}

@media(min-width: 768px) {
    body.loading .result-lists .right::after {
        position: absolute
    }
}

body.loading .result-lists .right .search-projects-lists,
body.loading .result-lists .right .product-lists {
    opacity: .8
}

.result-lists .right {
    position: relative
}

.result-lists .right .loading {
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    position: fixed;
    top: 50%
}

@media(min-width: 768px) {
    .result-lists .right .loading {
        position: absolute;
        top: 150px
    }
}

.filter-popup-window .border-top,
.result-lists .border-top {
    border-top: 1px solid var(--border-color)
}

.filter-popup-window .right,
.result-lists .right {
    border-left: 1px solid var(--border-color);
    padding-top: 15px
}

.filter-popup-window .option-conditions,
.result-lists .option-conditions {
    padding: 30px 0px;
    margin-right: 40px
}

.filter-popup-window .option-conditions path,
.result-lists .option-conditions path {
    transform-origin: center;
    transition: all .6s;
    transform-origin: center
}

.filter-popup-window .option-conditions:not(:last-of-type),
.result-lists .option-conditions:not(:last-of-type) {
    border-bottom: 1px solid var(--border-color-2)
}

.filter-popup-window .option-conditions.unfold .type path,
.result-lists .option-conditions.unfold .type path {
    transform-origin: center;
    transition: all .6s;
    transform-origin: center
}

.filter-popup-window .option-conditions.unfold .type path:first-of-type,
.result-lists .option-conditions.unfold .type path:first-of-type {
    transform: rotateZ(90deg)
}

.filter-popup-window .option-conditions.unfold .type path:last-of-type,
.result-lists .option-conditions.unfold .type path:last-of-type {
    transform: rotateZ(180deg)
}

.filter-popup-window .option-conditions .type,
.result-lists .option-conditions .type {
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    text-transform: capitalize;
    color: var(--black);
    cursor: pointer
}

.filter-popup-window .option-conditions .item-box,
.result-lists .option-conditions .item-box {
    display: none;
    margin-top: 22px;
    justify-content: space-between;
    align-items: center
}

.filter-popup-window .option-conditions .item-box .item,
.result-lists .option-conditions .item-box .item {
    padding: 8px 0px;
    justify-content: space-between;
    color: #6b6b6b;
    align-items: flex-start;
    grid-gap: 20px;
    cursor: pointer
}

.filter-popup-window .option-conditions .item-box .item rect:last-of-type,
.result-lists .option-conditions .item-box .item rect:last-of-type {
    display: none
}

.filter-popup-window .option-conditions .item-box .item svg,
.result-lists .option-conditions .item-box .item svg {
    flex: 0 0 auto
}

.filter-popup-window .option-conditions .item-box .item.active,
.result-lists .option-conditions .item-box .item.active {
    color: var(--black);
    font-weight: 500
}

.filter-popup-window .option-conditions .item-box .item.active rect:last-of-type,
.result-lists .option-conditions .item-box .item.active rect:last-of-type {
    display: block
}

.filter-popup-window .option-conditions .item-box .item b,
.result-lists .option-conditions .item-box .item b {
    font-weight: 400;
    margin-left: 5px
}

.filter-popup-window .option-conditions .item-box .item:hover,
.result-lists .option-conditions .item-box .item:hover {
    color: var(--black);
    text-decoration: underline
}

.filter-popup-window .option-conditions .item-box .check-box,
.result-lists .option-conditions .item-box .check-box {
    justify-self: end
}

.filter-popup-window .product-lists::after,
.result-lists .product-lists::after {
    content: "";
    clear: both;
    width: 100%;
    display: inline-block
}

.filter-popup-window .product-lists .block,
.result-lists .product-lists .block {
    box-sizing: border-box;
    width: 50%;
    padding: 10px 20px;
    border-right: 1px solid var(--border-color);
    float: left
}

.filter-popup-window .product-lists .block a,
.result-lists .product-lists .block a {
    display: block
}

@media(min-width: 768px) {
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        width: 50%
    }
    .filter-popup-window .product-lists .block:nth-of-type(-n+2),
    .result-lists .product-lists .block:nth-of-type(-n+2) {
        border-top: 0;
        margin-top: -15px;
        padding-top: 35px
    }
    .filter-popup-window .product-lists .block:nth-of-type(2n),
    .result-lists .product-lists .block:nth-of-type(2n) {
        border-right: 0
    }
}

@media(min-width: 990px) {
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        width: 33.32%
    }
    .filter-popup-window .product-lists .block:nth-of-type(-n+3),
    .result-lists .product-lists .block:nth-of-type(-n+3) {
        border-top: 0;
        margin-top: -15px;
        padding-top: 35px
    }
    .filter-popup-window .product-lists .block:nth-of-type(2n),
    .result-lists .product-lists .block:nth-of-type(2n) {
        border-right: 1px solid var(--border-color)
    }
    .filter-popup-window .product-lists .block:nth-of-type(3n),
    .result-lists .product-lists .block:nth-of-type(3n) {
        border-right: 0
    }
}

@media(min-width: 1280px) {
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        width: 25%
    }
    .filter-popup-window .product-lists .block:nth-of-type(-n+4),
    .result-lists .product-lists .block:nth-of-type(-n+4) {
        border-top: 0;
        margin-top: -15px;
        padding-top: 35px
    }
    .filter-popup-window .product-lists .block:nth-of-type(2n),
    .result-lists .product-lists .block:nth-of-type(2n) {
        border-right: 1px solid var(--border-color)
    }
    .filter-popup-window .product-lists .block:nth-of-type(3n),
    .result-lists .product-lists .block:nth-of-type(3n) {
        border-right: 1px solid var(--border-color)
    }
    .filter-popup-window .product-lists .block:nth-of-type(4n),
    .result-lists .product-lists .block:nth-of-type(4n) {
        border-right: 0
    }
}

.filter-popup-window .product-lists .block .picture-wrapper,
.result-lists .product-lists .block .picture-wrapper {
    position: relative
}

.filter-popup-window .product-lists .block .picture-wrapper .like,
.result-lists .product-lists .block .picture-wrapper .like {
    opacity: 1;
    transition: all .3s ease;
    cursor: pointer
}

@media(min-width: 1024px) {
    .filter-popup-window .product-lists .block .picture-wrapper .like,
    .result-lists .product-lists .block .picture-wrapper .like {
        opacity: 0
    }
}

.filter-popup-window .product-lists .block .picture-wrapper:hover .like,
.result-lists .product-lists .block .picture-wrapper:hover .like {
    opacity: 1
}

.filter-popup-window .product-lists .block .picture,
.result-lists .product-lists .block .picture {
    position: relative
}

.filter-popup-window .product-lists .block .picture::after,
.result-lists .product-lists .block .picture::after {
    content: "";
    display: block;
    height: 0;
    padding-top: 100%
}

.filter-popup-window .product-lists .block .picture img,
.result-lists .product-lists .block .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0
}

.filter-popup-window .product-lists .block .label,
.result-lists .product-lists .block .label {
    position: absolute;
    top: 22px;
    left: 0;
    padding: 2px 10px;
    background: var(--white);
    font-weight: 500
}

.filter-popup-window .product-lists .block .like,
.result-lists .product-lists .block .like {
    position: absolute;
    right: 10px;
    bottom: 10px
}

.filter-popup-window .product-lists .block .like.active path,
.result-lists .product-lists .block .like.active path {
    fill: #e80a43
}

.filter-popup-window .product-lists .block .name,
.result-lists .product-lists .block .name {
    margin-top: 20px;
    text-transform: capitalize;
    line-height: 1
}

.filter-popup-window .product-lists .block .type,
.result-lists .product-lists .block .type {
    margin-top: 8px;
    color: #6b6b6b
}

.filter-popup-window .product-lists .block .path,
.result-lists .product-lists .block .path {
    padding-top: 15px;
    margin-top: 15px;
    padding-bottom: 20px;
    border-top: 1px solid var(--border-color-2);
    align-items: center;
    grid-gap: 10px;
    line-height: 1;
    font-size: 11px
}

.filter-popup-window .product-lists .block .path a:not(:last-child),
.result-lists .product-lists .block .path a:not(:last-child) {
    color: #6b6b6b
}

.filter-popup-window .product-lists .line_2,
.filter-popup-window .product-lists .line_3,
.filter-popup-window .product-lists .line,
.result-lists .product-lists .line_2,
.result-lists .product-lists .line_3,
.result-lists .product-lists .line {
    display: none
}

.filter-popup-window .product-lists .line_1,
.result-lists .product-lists .line_1 {
    width: calc(100% - 40px);
    height: 0px;
    margin: 20px;
    float: left;
    border-bottom: var(--border-color) solid 1px
}

@media(min-width: 500px) {
    .filter-popup-window .product-lists .line_1,
    .result-lists .product-lists .line_1 {
        display: none
    }
    .filter-popup-window .product-lists .line_2,
    .result-lists .product-lists .line_2 {
        width: calc(100% - 20px);
        height: 0px;
        margin: 20px;
        float: left;
        border-bottom: var(--border-color) solid 1px;
        display: block
    }
}

@media(min-width: 990px) {
    .filter-popup-window .product-lists .line_2,
    .result-lists .product-lists .line_2 {
        display: none
    }
    .filter-popup-window .product-lists .line_3,
    .result-lists .product-lists .line_3 {
        width: calc(100% - 20px);
        height: 0px;
        margin: 20px;
        float: left;
        border-bottom: var(--border-color) solid 1px;
        display: block
    }
}

@media(min-width: 1280px) {
    .filter-popup-window .product-lists .line_2,
    .filter-popup-window .product-lists .line_3,
    .result-lists .product-lists .line_2,
    .result-lists .product-lists .line_3 {
        display: none
    }
    .filter-popup-window .product-lists .line,
    .result-lists .product-lists .line {
        display: block;
        width: calc(100% - 20px);
        height: 0px;
        margin: 20px;
        float: left;
        border-bottom: var(--border-color) solid 1px
    }
}

.filter-popup-window .btn,
.result-lists .btn {
    grid-gap: 30px;
    font-weight: 500;
    letter-spacing: 1.92px
}

@media(min-width: 768px) {
    .filter-popup-window .btn,
    .result-lists .btn {
        margin-left: 21px
    }
}

.filter-popup-window .load-more,
.result-lists .load-more {
    float: left;
    width: fit-content
}

@media screen and (max-width: 1280px) {
    .filter-popup-window .option-conditions,
    .result-lists .option-conditions {
        padding: 30px 0px;
        margin-right: 30px
    }
    .filter-popup-window .product-lists .block .path,
    .result-lists .product-lists .block .path {
        margin-top: 12px;
        padding-top: 12px;
        padding-bottom: 12px
    }
    .filter-popup-window .product-lists .line,
    .result-lists .product-lists .line {
        margin: 15px 15px;
        width: calc(100% - 30px)
    }
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        padding: 5px 15px
    }
}

@media screen and (max-width: 900px) {
    .filter-popup-window .option-conditions,
    .result-lists .option-conditions {
        padding: 25px 0px;
        margin-right: 25px
    }
    .filter-popup-window .product-lists .line,
    .result-lists .product-lists .line {
        margin: 15px 12px;
        width: calc(100% - 24px)
    }
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        padding: 5px 12px
    }
}

@media screen and (max-width: 750px) {
    .filter-popup-window .right,
    .result-lists .right {
        border: 0
    }
    .filter-popup-window .product-lists,
    .result-lists .product-lists {
        margin: 0px -12px
    }
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        width: 50%
    }
    .filter-popup-window .product-lists .block:nth-of-type(2n),
    .result-lists .product-lists .block:nth-of-type(2n) {
        border-right: none
    }
}

@media screen and (max-width: 500px) {
    .filter-popup-window .right,
    .result-lists .right {
        border: 0
    }
    .filter-popup-window .product-lists .block,
    .result-lists .product-lists .block {
        width: 100%;
        border: 0
    }
}

.resources-lists .item {
    padding: 15px 0px;
    border-bottom: 1px solid var(--border-color);
    transition: all .5s
}

.resources-lists .item .fonts-14 {
    line-height: 1
}

.resources-lists .item .fonts-10 {
    color: #6b6b6b
}

.resources-lists .item a.flex {
    justify-content: space-between;
    align-items: center
}

@media(min-width: 751px) {
    .resources-lists .item a.flex {
        margin-left: 23px
    }
}

.resources-lists .item a.flex>.flex {
    align-items: center;
    grid-gap: 20px
}

.resources-lists .item a.flex .name {
    flex-flow: column;
    grid-gap: 8px
}

@media screen and (max-width: 1024px) {
    .resources-lists .item {
        padding: 12px 0px
    }
}

.resources-module .btn {
    margin-left: 23px
}

.product-downloads .resources-lists .item .flex {
    margin: 0
}

.title-and-text-module .rich-text {
    max-width: 648px
}

.title-and-text-module .rich-text p {
    line-height: 130%;
    letter-spacing: normal
}

.title-and-text-module .rich-text a {
    text-decoration-line: underline
}

.product-info .btn-box {
    grid-gap: 30px 50px
}

@media screen and (max-width: 750px) {
    .product-info .btn-box {
        flex-flow: column
    }
}

.product-info>.container>div {
    min-width: 100%
}

@media(min-width: 768px) {
    .product-info>.container>div {
        min-width: 570px
    }
}

@media(min-width: 1280px) {
    .product-info>.container>div {
        width: calc(50% - 40px)
    }
}

.show-hide-section .headline-row svg {
    cursor: pointer;
    transform: rotate(90deg)
}

.show-hide-section .headline-row svg g {
    transition: all .3s ease;
    transform-origin: center
}

.show-hide-section .headline-row svg path:nth-of-type(2) {
    opacity: 0
}

.show-hide-section.hide .headline-row svg g {
    transform: rotate(90deg)
}

.show-hide-section.hide .headline-row svg path:nth-of-type(2) {
    opacity: 1
}

.show-hide-section .auto-set-heigt {
    height: 100%;
    transition: all .3s ease;
    overflow: hidden
}

.show-hide-section.hide .auto-set-heigt {
    height: 0 !important
}

.product-specification .fonts-10 {
    color: #6b6b6b
}

.product-specification .fonts-14 {
    margin-top: 8px
}

.product-specification .item {
    padding: 20px 0px;
    border-bottom: 1px solid var(--border-color)
}

.product-specification .item:first-of-type {
    padding-top: 0
}

.product-specification .item .tips-wrapper {
    position: relative;
    display: inline-block
}

.product-specification .item .tips-wrapper:not(.show) .tips {
    display: none
}

.product-specification .item .tips-wrapper .tips {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: fit-content;
    padding: 4px 6px;
    background-color: #000
}

.product-specification .item .tips-wrapper .tips p {
    white-space: nowrap;
    font-family: Satoshi, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #fff
}

.product-specification .square {
    margin-right: 5px
}

.product-specification .square.active rect:last-child {
    fill: var(--black)
}

@media screen and (max-width: 1024px) {
    .product-specification .item {
        padding: 15px 0px
    }
}

.product-sizes .sub-title {
    color: #6b6b6b
}

.product-sizes .title {
    margin-top: 8px;
    line-height: 130%;
    font-weight: 500
}

.product-sizes .grid {
    display: flex;
    justify-content: space-between
}

.product-sizes .grid1>div {
    width: 100%
}

.product-sizes .grid2>div {
    width: 50%
}

.product-sizes .grid2>div:first-child {
    width: 50%
}

.product-sizes .grid2>div:first-child span {
    padding-right: 50px
}

@media(min-width: 500px) {
    .product-sizes .grid2>div {
        width: 30%
    }
    .product-sizes .grid2>div:first-child {
        width: calc(70% + 50px)
    }
}

.product-sizes .grid3>div {
    width: 32.5%
}

.product-sizes .grid3>div:first-child {
    width: 35%
}

.product-sizes .grid3>div:first-child span {
    padding-right: 50px
}

@media(min-width: 500px) {
    .product-sizes .grid3>div {
        width: 25%
    }
    .product-sizes .grid3>div:first-child {
        width: 50%
    }
}

.product-sizes .grid4>div {
    width: 23.32%
}

.product-sizes .grid4>div:first-child {
    width: 30%
}

.product-sizes .grid4>div:first-child span {
    padding-right: 50px
}

@media(min-width: 500px) {
    .product-sizes .grid4>div {
        width: 15%
    }
    .product-sizes .grid4>div:first-child {
        width: 55%
    }
}

.product-sizes .grid5>div {
    width: 12%
}

.product-sizes .grid5>div:first-child {
    width: 25%
}

.product-sizes .grid5>div:first-child span {
    padding-right: 50px
}

@media(min-width: 500px) {
    .product-sizes .grid5>div {
        width: 18.75%
    }
    .product-sizes .grid5>div:first-child {
        width: 52%
    }
}

.product-sizes .label {
    display: block;
    margin-top: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
    color: #121212;
    height: 30px
}

.product-sizes .value {
    display: block;
    margin-top: 5px;
    text-transform: none;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: normal
}

.product-sizes .disclaimer {
    margin-top: 50px
}

.product-sizes .disclaimer p {
    font-weight: 400;
    font-family: Satoshi, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%
}

.product-sizes .disclaimer p b {
    font-weight: 500
}

.product-sizes .btn-box svg {
    width: 20px;
    height: 20px
}

.product-sizes .btn {
    grid-gap: 20px
}

.custom-orders .rich-text p {
    line-height: 130%
}

.custom-orders .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px
}

.custom-orders .name {
    margin-top: 10px
}

@media screen and (max-width: 750px) {
    .custom-orders .grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
    .custom-orders .picture {
        height: calc(50vw - 30px)
    }
}

.delivery-info .fonts-10 {
    color: #6b6b6b;
    margin-bottom: 8px
}

.delivery-info .rich-text p {
    line-height: 130%
}

.delivery-info .rich-text p:not(:last-child) {
    margin-bottom: 9px
}

.delivery-info .item {
    padding: 20px 0px
}

.delivery-info .item:first-child {
    padding-top: 0px
}

.delivery-info .item:not(:last-child) {
    border-bottom: 1px solid var(--border-color)
}

.fold-QA-module .headline-smallest {
    line-height: 1;
    font-weight: 400;
    font-size: 28px
}

.fold-QA-module .fonts-16 {
    line-height: normal
}

.fold-QA-module .btn {
    margin-top: 38px;
    grid-gap: 20px
}

.fold-QA-module .item {
    padding: 30px 0px;
    border-bottom: 1px solid var(--border-color-2)
}

.fold-QA-module .item:first-child {
    border-top: 1px solid var(--border-color-2)
}

.fold-QA-module .item .title {
    justify-content: space-between;
    align-items: center;
    grid-gap: 25px;
    transition: all .5s
}

.fold-QA-module .item .title path {
    transform-origin: center;
    transition: all .6s
}

.fold-QA-module .item .title svg {
    flex: 0 0 auto
}

.fold-QA-module .item.selected .title svg path:first-of-type {
    transform: rotateZ(90deg);
    opacity: 0
}

.fold-QA-module .item.selected .title svg path:last-of-type {
    transform: rotateZ(180deg)
}

.fold-QA-module .rich-text {
    display: none;
    color: var(--black);
    margin-bottom: 20px;
    margin-top: 30px
}

.fold-QA-module .rich-text b,
.fold-QA-module .rich-text strong {
    font-weight: 700
}

.fold-QA-module .rich-text p {
    letter-spacing: normal
}

.fold-QA-module .rich-text p:not(:last-child) {
    margin-bottom: 1em
}

.fold-QA-module .rich-text div.flex {
    max-width: 907px;
    justify-content: space-around;
    grid-gap: 50px
}

.fold-QA-module .rich-text div.flex .text {
    flex: 1
}

.fold-QA-module .rich-text div.flex .picture {
    max-width: 302px
}

.fold-QA-module .rich-text .btn {
    margin-top: 50px;
    padding-bottom: 0
}

.fold-QA-module .float-image {
    display: none;
    position: absolute;
    width: 260px;
    height: 260px
}

.fold-QA-module .float-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

@media screen and (max-width: 1024px) {
    .fold-QA-module .item {
        padding: 25px 0px
    }
    .fold-QA-module .rich-text div.flex {
        grid-gap: 30px
    }
}

@media screen and (max-width: 900px) {
    .fold-QA-module .item {
        padding: 20px 0px
    }
    .fold-QA-module .rich-text div.flex {
        grid-gap: 30px;
        flex-flow: column
    }
    .fold-QA-module .rich-text div.flex .picture {
        max-width: none;
        max-height: 400px
    }
}

@media screen and (max-width: 768px) {
    .fold-QA-module .item {
        padding: 12px 0px
    }
    .fold-QA-module .headline-smallest {
        line-height: 1.3
    }
}

.brands-lists {
    overflow: hidden
}

.brands-lists a {
    display: block
}

.brands-lists .lists {
    clear: both
}

.brands-lists .lists.slick-initialized .item {
    box-sizing: border-box;
    width: 400px;
    padding: 0px 30px;
    border-right: 1px solid var(--border-color);
    float: left
}

@media(min-width: 1280px) {
    .brands-lists .lists.slick-initialized .item {
        width: 600px
    }
}

.brands-lists .lists:not(.slick-initialized) .item {
    margin-bottom: 50px;
    width: 100%;
    padding: 0
}

.brands-lists .slick-list {
    margin-left: -30px
}

.brands-lists .slick-list .slick-track {
    position: relative
}

.brands-lists .slick-list .slick-track .slick-slide {
    padding-bottom: 48px
}

.brands-lists .slick-list .slick-track .slick-slide .btn {
    position: absolute;
    bottom: 0
}

.brands-lists .picture {
    width: 100%;
    height: 335px
}

.brands-lists .logo {
    align-items: center;
    height: 60px;
    margin-top: 30px
}

.brands-lists .logo img {
    display: block;
    max-width: 100%;
    max-height: 50px
}

.brands-lists .name {
    font-size: 22px;
    line-height: 1
}

.brands-lists .brief {
    margin-top: 20px;
    margin-bottom: 30px;
    line-height: 150%
}

.brands-lists .brief P {
    line-height: inherit
}

.brands-lists .btn {
    grid-gap: 20px;
    align-items: center
}

@media screen and (max-width: 750px) {
    .brands-lists .slick-list {
        margin-left: -20px
    }
    .brands-lists .logo {
        height: auto;
        max-height: 50px;
        margin-top: 20px
    }
    .brands-lists .item {
        padding: 0 20px;
        width: calc(100vw - 20px - 20px)
    }
    .brands-lists .item .picture {
        width: 100%;
        height: calc(100vw - 20px - 20px - 40px)
    }
}

.our-people .grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    grid-gap: var(--small-gap)
}

.our-people .block {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px
}

.our-people .block .picture {
    height: calc(100vw - var(--small-gap) * 3 - var(--container-gap) * 2)/4
}

.our-people .block .name {
    text-transform: capitalize
}

.our-people .block .position {
    color: #6b6b6b
}

.our-people .block .brief {
    display: none;
    margin-top: 20px;
    line-height: 150%
}

.our-people .block .flex {
    margin-top: 30px;
    justify-content: space-between;
    cursor: pointer
}

.our-people .block path {
    transform-origin: center;
    transition: all .6s
}

.our-people .block.active path:first-of-type {
    transform: rotateZ(90deg)
}

.our-people .block.active path:last-of-type {
    transform: rotateZ(180deg)
}

@media screen and (max-width: 1280px) {
    .our-people .block {
        margin-bottom: 5px
    }
}

@media screen and (max-width: 1024px) {
    .our-people .block {
        margin-bottom: 5px
    }
}

@media screen and (max-width: 900px) {
    .our-people .grid {
        grid-gap: 30px
    }
    .our-people .block .picture {
        height: calc(100vw - 90px - var(--container-gap) * 2)/4
    }
}

@media screen and (max-width: 750px) {
    .our-people .grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px
    }
    .our-people .block .picture {
        height: calc(50vw - 30px)
    }
}

.accreditations .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px;
    justify-content: center;
    align-items: center
}

.accreditations .item {
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #d4d4d4;
    overflow: hidden;
    position: relative
}

.accreditations .item img {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.accreditations .item::before {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%
}

@media screen and (max-width: 1280px) {
    .accreditations .grid {
        grid-gap: 25px;
        grid-auto-rows: calc((50vw - 15px - var(--container-gap) - 90px)/4);
        grid-template-rows: calc((50vw - 15px - var(--container-gap) - 90px)/4)
    }
}

@media screen and (max-width: 1024px) {
    .accreditations .grid {
        grid-gap: 20px;
        grid-auto-rows: calc((50vw - 15px - var(--container-gap) - 60px)/4);
        grid-template-rows: calc((50vw - 15px - var(--container-gap) - 60px)/4)
    }
}

@media screen and (max-width: 900px) {
    .accreditations .grid {
        grid-gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: calc((50vw - 15px - var(--container-gap) - 60px)/3);
        grid-template-rows: calc((50vw - 15px - var(--container-gap) - 60px)/3)
    }
}

@media screen and (max-width: 750px) {
    .accreditations .grid {
        grid-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: calc(50vw - 15px - var(--container-gap));
        grid-template-rows: calc(50vw - 15px - var(--container-gap))
    }
}

.our-partners .right .rich-text p {
    font-family: Satoshi;
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%
}

@media screen and (min-width: 751px) {
    .our-partners .right .rich-text p {
        font-size: 32px
    }
}

.our-partners .grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 257px;
    grid-auto-rows: 257px;
    justify-content: center;
    align-items: center
}

.our-partners .item {
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px;
    border: 1px solid #d4d4d4;
    overflow: hidden;
    cursor: pointer
}

.our-partners .item img {
    display: block;
    max-width: 100%;
    filter: grayscale(100%);
    transition: all .3s ease
}

.our-partners .item:not(:last-child) {
    border-right: none
}

.our-partners .item:nth-child(4n) {
    border-right: 1px solid #d4d4d4
}

.our-partners .item:not(:nth-last-child(-n+4)) {
    border-bottom: none
}

.our-partners .item:nth-last-child(-n+4) {
    border-bottom: 1px solid #d4d4d4
}

.our-partners .item:hover img {
    filter: grayscale(0%)
}

@media screen and (max-width: 1280px) {
    .our-partners .grid {
        grid-template-rows: 18.5vw;
        grid-auto-rows: 18.5vw
    }
}

@media screen and (max-width: 750px) {
    .our-partners .grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: calc((100vw - 40px)/3);
        grid-auto-rows: calc((100vw - 40px)/3)
    }
    .our-partners .item:nth-child(3n) {
        border-right: 1px solid #d4d4d4
    }
    .our-partners .item:not(:nth-last-child(-n+3)) {
        border-bottom: none
    }
    .our-partners .item:nth-last-child(-n+3) {
        border-bottom: 1px solid #d4d4d4
    }
}

.current-openings .brief {
    max-width: 320px;
    line-height: 130%
}

.current-openings .headline-smallest {
    line-height: 1
}

.current-openings .item .btn {
    margin-top: 30px;
    grid-gap: 20px
}

.current-openings .item .date {
    margin-top: 10px;
    line-height: 130%
}

.current-openings .item .info {
    margin-top: 30px;
    line-height: 130%
}

.job-details-module:not(.no-bottom-border) .container::after {
    content: "";
    display: block;
    width: 100%;
    height: 1;
    border-bottom: 1px solid var(--border-color)
}

.job-details-module .container {
    position: relative
}

.job-details-module .headline-row {
    border-top: 0
}

.job-details-module .half-width {
    margin-top: -20px
}

.job-details-module .date {
    font-size: 16px;
    line-height: 130%;
    margin-top: 20px
}

.job-details-module .rich-text p:not(:last-child) {
    margin-bottom: 1em
}

.job-details-module .rich-text b,
.job-details-module .rich-text strong {
    font-weight: 700
}

.job-details-module .rich-text a {
    position: relative;
    display: inline-block
}

.job-details-module .rich-text a::before {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--font-main-color);
    content: "";
    position: absolute;
    top: 100%;
    transform: translateY(-3px)
}

.job-details-module .rich-text ul,
.job-details-module .rich-text ol {
    margin: 30px 0px;
    padding-left: 18px
}

.job-details-module .rich-text ul li,
.job-details-module .rich-text ol li {
    margin-bottom: 1em;
    padding-left: 10px
}

.job-details-module .rich-text h1,
.job-details-module .rich-text h2,
.job-details-module .rich-text h3,
.job-details-module .rich-text h4,
.job-details-module .rich-text h5,
.job-details-module .rich-text h6 {
    margin: 30px 0px;
    font-size: 24px;
    line-height: 100%;
    font-weight: 400
}

.mm-menu {
    --mm-color-background: #F5F5F5;
    --mm-color-border: none;
    --mm-color-background-highlight: #F5F5F5
}

.mm-menu .mm-navbar__title {
    display: none
}

.mm-menu .mm-btn--prev:before {
    display: none
}

.mm-menu .mm-listitem::after {
    border: 0
}

.mm-menu .mm-listitem__btn:not(.mm-listitem__text) {
    display: none
}

.mm-wrapper__blocker {
    background: none
}

.download-texture .container {
    display: flex;
    justify-content: flex-start
}

@media(min-width: 768px) {
    .download-texture .container {
        justify-content: flex-end
    }
}

.download-texture .container .btn svg {
    width: 25px;
    height: 25px
}

@media(min-width: 768px) {
    .download-texture .container .btn svg {
        width: 48px;
        height: 48px
    }
}

@media(max-width: 768px) {
    .download-texture .container .btn span {
        font-size: 11px
    }
}