@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');
/* All */
* {
    outline: none;
}
:root {
    --primary: #072c50;
    --secondary: #ee4536;
    --tertiary: #f9a83f;
    --black: black;
    --white: white;
    --error: #B12028;
    --hov-primary: #0b1f40;
    --gray: #eef1f3;
    --font-size: 14px;
    --font-family: 'Manrope', sans-serif;
}
::selection {
    color: var(--white);
    background: var(--primary);
}
body,
html {
    overflow-x: hidden;
}
body {
    font-family: var(--font-family);
    color: var(--primary);
    font-weight: 400;
    font-size: var(--font-size);
    line-height: 1.25;
}
a,
a:hover {
    color: inherit;
}
p:last-child {
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
.btn {
    border-radius: 0;
    font-size: 1em;
    font-family: 'Roboto Condensed', sans-serif;
}
.text-email,
.email-text {
    height: 0.96em;
}
.overflow-hidden {
    overflow: hidden;
}
.font-condensed {
    font-family: 'Roboto Condensed', sans-serif;
}
.arrow {
    border-top: 1px solid;
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    vertical-align: 0.1em;
}
.arrow.left {
    border-left: 1px solid;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.arrow.right {
    border-right: 1px solid;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.arrow.down {
    border-right: 1px solid;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.arrow.thick {
    border-width: 2px;
}
.loader {
    position: relative;
}
.loader:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 100%;
    background: url('/uploads/images/svg/loader.svg') 50% 50% no-repeat rgba(255, 255, 255, 0.8);
    visibility: visible;
    z-index: 5000;
    background-size: 40px;
}
body.loader:after {
    position: fixed;
}
#scrollUp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    line-height: 45px;
    opacity: 0.8;
    color: var(--black);
    display: none !important;
}
#scrollUp:before {
    content: "\f077";
    display: inline-block;
    vertical-align: middle;
    font: 20px Icons;
}
#error-page {
    background-image: url(../images/404_bg.png);
    background-attachment: scroll;
    background-repeat: no-repeat;
    background-position: top center;
    height: 100vh;
    background-color: #282828;
    box-shadow: inset 0 10px 0 0 #000, inset 0 -10px 0 0 #000;
    position: relative;
}
#error-page .logo {
    padding-top: 2em;
}
#error-page h1 {
    padding-top: 0.5em;
    color: #fff;
    font-size: 5em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}
#error-page h3 {
    color: #7f7f7f;
    font-size: 1.5em;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.75);
}
#error-page h3.primary {
    margin-top: 2em;
}
#error-page #but.button {
    font-size: 2em;
    border-radius: 500em;
}
#error-page #but.button i.icon {
    font-size: 4em;
}
/*Swiper Carousel*/
.swiper {
    overflow: visible;
}
.swiper.overflow-hidden {
    overflow: hidden;
}
.swiper:not(.without-pseudos)::before,
.swiper:not(.without-pseudos)::after {
    content: "";
    position: absolute;
    top: -2px;
    bottom: -2px;
    width: 10000px;
    background-color: var(--white);
    z-index: 2;
}
.swiper-slide.auto {
    width: auto;
}
/*Header*/
header {
    position: relative;
    z-index: 10;
}
.header-right-container {
    background-color: var(--white);
    position: relative;
}
.header-cat-res-menu-toggle,
.header-cat-res-menu-item > a {
    padding: 20px 10px;
    text-align: center;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.header-cat-res-menu-item:not(.has-categories) div.header-cat-res-menu-toggle,
body:not(.is-mobile) .header-cat-res-menu-item.has-categories div.header-cat-res-menu-toggle,
body.is-mobile .header-cat-res-menu-item.has-categories a.header-cat-res-menu-toggle {
    display: none;
}
.header-cat-res-menu-item:hover .header-cat-res-menu-toggle,
.header-cat-res-menu-item.active .header-cat-res-menu-toggle,
.header-cat-res-menu-item > a:hover {
    background-color: var(--primary);
    color: var(--white);
}
.header-cat-res-menu-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 0;
    margin: auto;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-cat-res-menu-item:hover .header-cat-res-menu-toggle::after,
.header-cat-res-menu-item.active .header-cat-res-menu-toggle::after {
    opacity: 1;
}
.header-cat-res-menu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 2px);
    background-color: var(--white);
    border-top: 2px solid rgba(7,44,80,0.2);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow: hidden;
    -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
    box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.1);
}
.header-cat-res-menu-item:hover .header-cat-res-menu-dropdown,
.header-cat-res-menu-item.active .header-cat-res-menu-dropdown {
    opacity: 1;
    pointer-events: all;
}
.header-menu-carousel:after {
    content: "";
    position: absolute;
    right: -25px;
    top: -5px;
    bottom: -5px;
    width: 50px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right,  rgba(255,255,255,0) 0%,rgba(255,255,255,1) 100%);
}
.header-menu-car-wrap {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-menu-car-title-text {
    border-bottom: 1px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-menu-car-wrap:hover .header-menu-car-title-text {
    border-bottom-color: var(--primary);
}
.header-menu-car-wrap.inactive {
    opacity: 0.3;
}
.header-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header-menu li.nav-item:not(:last-child) {
    margin-right: 20px;
}
.header-menu li.nav-item strong {
    font-weight: 400;
}
.header-menu li.nav-item a:hover {
    color: var(--primary);
}
.header-languages {
    position: relative;
    z-index: 1;
}
.header-languages-toggle {
    border: 1px solid transparent;
    color: var(--primary);
    padding: 2px 4px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-languages-toggle svg {
    fill: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    margin-right: 0.1em;
    vertical-align: -0.25em;
}
.header-languages-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--hov-primary);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: var(--white);
}
.header-languages:hover .header-languages-toggle,
.header-languages.active .header-languages-toggle {
    color: var(--primary);
}
.header-languages.active .header-languages-toggle {
    border: 1px solid;
}
.header-languages:hover .header-languages-toggle svg,
.header-languages.active .header-languages-toggle svg {
    fill: var(--primary);
}
.header-languages.active .header-languages-dropdown {
    opacity: 1;
    pointer-events: all;
}
.header-languages-dropdown .item {
    border-bottom: 1px solid;
    display: block;
    padding: 2px 4px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.header-languages-dropdown a.item:hover {
    background-color: var(--secondary);
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -ms-transform: translateY(calc(-100% - 30px));
    transform: translateY(calc(-100% - 30px));
    opacity: 0;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    pointer-events: none;
    z-index: 1001;
    border-bottom: 2px solid rgba(7,44,80,0.2);
}
.fixed-header.header-down {
    pointer-events: all;
    opacity: 1;
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.fixed-header .header-cat-res-menu-dropdown {
    top: 100%;
}
.fixed-header .header-cat-res-menu-toggle,
.fixed-header .header-cat-res-menu-item > a {
    padding: 15px 10px;
}
.megamenu-opened .fixed-header {
    z-index: 999;
}
/*Megamenu*/
.megamenu-toggle {
    width: 38px;
    height: 38px;
    border: 2px solid var(--primary);
    position: relative;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon {
    width: 25px;
    position: relative;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top,
.megamenu-toggle .icon .bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.megamenu-toggle .icon .top {
    top: -7px;
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
}
.megamenu-toggle .icon .bottom {
    top: 7px;
    -webkit-transform-origin: right bottom;
    -moz-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    -o-transform-origin: right bottom;
    transform-origin: right bottom;
}
.megamenu-toggle.open .icon {
    background-color: transparent !important;
}
.megamenu-toggle.open .icon .top {
    -webkit-transform: rotate(-45deg) translate(-5px, 0px);
    -moz-transform: rotate(-45deg) translate(-5px, 0px);
    -ms-transform: rotate(-45deg) translate(-5px, 0px);
    -o-transform: rotate(-45deg) translate(-5px, 0px);
    transform: rotate(-45deg) translate(-5px, 0px);
    top: -12px;
}
.megamenu-toggle.open .icon .bottom {
    -webkit-transform: rotate(45deg) translate(-4px, 2px);
    -moz-transform: rotate(45deg) translate(-4px, 2px);
    -ms-transform: rotate(45deg) translate(-4px, 2px);
    -o-transform: rotate(45deg) translate(-4px, 2px);
    transform: rotate(45deg) translate(-4px, 2px);
    top: 10px;
}
.megamenu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1002;
}
.megamenu-scroll {
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}
.megamenu-menu-res-toggle,
.megamenu-menu-res-item > a {
    padding: 10px 0;
    position: relative;
    display: block;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
}
body:not(.is-mobile) .megamenu-menu-res-toggle:hover,
body:not(.is-mobile) .megamenu-menu-res-item > a:hover,
body.is-mobile .megamenu-menu-res-item.has-categories.active .megamenu-menu-res-toggle,
body.is-mobile .megamenu-menu-res-item.has-categories.active > a {
    color: var(--secondary);
}
.megamenu-menu-res-item.has-categories .megamenu-menu-res-toggle {
    padding-right: 30px;
}
.megamenu-menu-res-item.has-categories .megamenu-menu-res-toggle:after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 0;
    margin: auto;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
body.is-mobile .megamenu-menu-res-item.has-categories.active .megamenu-menu-res-toggle:after,
body:not(.is-mobile) .megamenu-menu-res-item.has-categories:hover .megamenu-menu-res-toggle:after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.megamenu-menu-res-item:not(.has-categories) div.megamenu-menu-res-toggle,
body.is-mobile .megamenu-menu-res-item.has-categories a.megamenu-menu-res-toggle,
body:not(.is-mobile) .megamenu-menu-res-item.has-categories div.megamenu-menu-res-toggle {
    display: none;
}
.megamenu-menu-res-dropdown {
    display: none;
}
body:not(.is-mobile) .megamenu-menu-res-item:hover .megamenu-menu-res-dropdown,
body.is-mobile .megamenu-menu-res-item.active .megamenu-menu-res-dropdown {
    display: block;
}
#header-megamenu {
    list-style: none;
}
#header-megamenu li:not(:last-child) {
    margin-bottom: 10px;
}
#header-megamenu li a:hover {
    color: var(--secondary);
}
#header-megamenu li a strong {
    font-weight: 400;
}
/*General Header*/
.shading-publish-header-desc strong {
    color: var(--primary);
    font-weight: 700;
}
.shading-publish-header .blinds-group {
    position: relative;
    bottom: 30px;
}
.shading-publish-header .blinds-group .blind,
.home-number-single-blind .blind {
    height: 42px;
    position: relative;
}
.shading-publish-header .blinds-group .blind:nth-child(1) {
    right: -250px;
}
.shading-publish-header .blinds-group .blind:nth-child(2) {
    right: -180px;
}
.shading-publish-header .blinds-group .blind:nth-child(3) {
    right: -140px;
}
.shading-publish-header .blinds-group .blind:nth-child(4) {
    right: -100px;
}
.shading-publish-header .blinds-group .blind:nth-child(5) {
    right: -60px;
}
.shading-publish-header .blinds-group .blind:nth-child(6) {
    right: -40px;
}
.shading-publish-header .blinds-group .blind:nth-child(7) {
    right: -30px;
}
.shading-publish-header .blinds-group .blind:nth-child(8) {
    right: -15px;
}
.shading-publish-header .blinds-group .blind:nth-child(9) {
    width: calc(100% + 115px);
    left: -115px;
}
.shading-publish-header .blinds-group .blind:nth-child(10) {
    right: -15px;
}
.shading-publish-header .blinds-group .blind:nth-child(11) {
    right: -20px;
}
.shading-publish-header .blinds-group .blind:nth-child(12) {
    right: -10px;
}
.shading-publish-header .blinds-group .blind div {
    position: relative;
    background-color: var(--gray);
    height: 34px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: top center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.shading-publish-header .blinds-group .blind:nth-child(1) div {
    -ms-transform: skew(25deg) rotateX(83deg);
    transform: skew(25deg) rotateX(83deg);
}
.shading-publish-header .blinds-group .blind:nth-child(2) div {
    -ms-transform: skew(25deg) rotateX(77deg);
    transform: skew(25deg) rotateX(77deg);
}
.shading-publish-header .blinds-group .blind:nth-child(3) div {
    -ms-transform: skew(25deg) rotateX(71deg);
    transform: skew(25deg) rotateX(71deg);
}
.shading-publish-header .blinds-group .blind:nth-child(4) div {
    -ms-transform: skew(25deg) rotateX(65deg);
    transform: skew(25deg) rotateX(65deg);
}
.shading-publish-header .blinds-group .blind:nth-child(5) div {
    -ms-transform: skew(25deg) rotateX(59deg);
    transform: skew(25deg) rotateX(59deg);
}
.shading-publish-header .blinds-group .blind:nth-child(6) div {
    -ms-transform: skew(25deg) rotateX(53deg);
    transform: skew(25deg) rotateX(53deg);
}
.shading-publish-header .blinds-group .blind:nth-child(7) div {
    -ms-transform: skew(25deg) rotateX(47deg);
    transform: skew(25deg) rotateX(47deg);
}
.shading-publish-header .blinds-group .blind:nth-child(8) div {
    -ms-transform: skew(25deg) rotateX(41deg);
    transform: skew(25deg) rotateX(41deg);
}
.shading-publish-header .blinds-group .blind:nth-child(9) div {
    -ms-transform: skew(25deg) rotateX(35deg);
    transform: skew(25deg) rotateX(35deg);
    background: linear-gradient(to right, var(--tertiary) 0%,var(--tertiary) 22%,var(--secondary) 58%,var(--secondary) 100%);
}
.shading-publish-header .blinds-group .blind:nth-child(9) div:before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background-color: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.shading-publish-header .blinds-group .blind:nth-child(10) div {
    -ms-transform: skew(25deg) rotateX(29deg);
    transform: skew(25deg) rotateX(29deg);
}
.shading-publish-header .blinds-group .blind:nth-child(11) div {
    -ms-transform: skew(25deg) rotateX(23deg);
    transform: skew(25deg) rotateX(23deg);
}
.shading-publish-header .blinds-group .blind:nth-child(12) div {
    -ms-transform: skew(25deg) rotateX(17deg);
    transform: skew(25deg) rotateX(17deg);
}
.shading-publish-header .blinds-group .blind:nth-child(13) div {
    -ms-transform: skew(25deg) rotateX(11deg);
    transform: skew(25deg) rotateX(11deg);
}
.shading-publish-header .blinds-group .blind.hover div {
    -ms-transform: skew(25deg) rotateX(85deg);
    transform: skew(25deg) rotateX(85deg);
}
.shading-publish-header .blinds-group .blind.next-hover div {
    -ms-transform: skew(25deg) rotateX(80deg);
    transform: skew(25deg) rotateX(80deg);
}
.shading-publish-header .blinds-group .blind.next-next-hover div {
    -ms-transform: skew(25deg) rotateX(75deg);
    transform: skew(25deg) rotateX(75deg);
}
.shading-publish-header .blinds-group .blind.next-next-next-hover div {
    -ms-transform: skew(25deg) rotateX(70deg);
    transform: skew(25deg) rotateX(70deg);
}
.shading-publish-header .blinds-group .blind.hover div:before,
.shading-publish-header .blinds-group .blind.next-hover div:before,
.shading-publish-header .blinds-group .blind.next-next-hover div:before,
.shading-publish-header .blinds-group .blind.next-next-next-hover div:before {
    opacity: 0;
}
/*General Mobile Header*/
.shading-publish-mobile-blinds .blinds-group .blind {
    height: 30px;
    position: relative;
}
.shading-publish-mobile-blinds .blinds-group .blind {
    width: 75%;
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(1) {
    left: -30px;
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(2) {
    left: -15px;
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(3) {
    left: -15px;
    width: calc(100% + 15px);
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(4) {
    left: -15px;
}
.shading-publish-mobile-blinds .blinds-group .blind div {
    position: relative;
    background-color: var(--gray);
    height: 25px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: top center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(1) div {
    -ms-transform: skew(-25deg) rotateX(47deg);
    transform: skew(-25deg) rotateX(47deg);
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(2) div {
    -ms-transform: skew(-25deg) rotateX(41deg);
    transform: skew(-25deg) rotateX(41deg);
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(3) div {
    -ms-transform: skew(-25deg) rotateX(35deg);
    transform: skew(-25deg) rotateX(35deg);
    background: linear-gradient(to right, var(--secondary) 0%,var(--secondary) 22%,var(--tertiary) 58%,var(--tertiary) 100%);
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(3) div:before {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    left: 2px;
    right: 2px;
    background-color: var(--white);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.shading-publish-mobile-blinds .blinds-group .blind:nth-child(4) div {
    -ms-transform: skew(-25deg) rotateX(29deg);
    transform: skew(-25deg) rotateX(29deg);
}
.shading-publish-mobile-blinds .blinds-group .blind.hover div {
    -ms-transform: skew(-25deg) rotateX(85deg);
    transform: skew(-25deg) rotateX(85deg);
}
.shading-publish-mobile-blinds .blinds-group .blind.next-hover div {
    -ms-transform: skew(-25deg) rotateX(80deg);
    transform: skew(-25deg) rotateX(80deg);
}
.shading-publish-mobile-blinds .blinds-group .blind.next-next-hover div {
    -ms-transform: skew(-25deg) rotateX(75deg);
    transform: skew(-25deg) rotateX(75deg);
}
.shading-publish-mobile-blinds .blinds-group .blind.next-next-next-hover div {
    -ms-transform: skew(-25deg) rotateX(70deg);
    transform: skew(-25deg) rotateX(70deg);
}
.shading-publish-mobile-blinds .blinds-group .blind.hover div:before,
.shading-publish-mobile-blinds .blinds-group .blind.next-hover div:before,
.shading-publish-mobile-blinds .blinds-group .blind.next-next-hover div:before,
.shading-publish-mobile-blinds .blinds-group .blind.next-next-next-hover div:before {
    opacity: 0;
}
/*Homepage - Steps*/
.home-steps-item {
    background-color: rgba(7,44,80,0.4);
}
.home-steps-item:not(:last-child) {
    border-bottom: 1px solid var(--white);
}
.home-steps-image {
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-steps-image.active {
    opacity: 1;
}
.home-steps-wrap {
    text-align: center;
    height: 100px;
    position: relative;
    padding: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-steps-wrap.active {
    background-color: rgba(7,44,80,0.4);
}
.home-steps-number {
    position: absolute;
    top: 50%;
    left: 10px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.home-steps-title {
    position: relative;
}
.home-steps-title .home-steps-number {
    top: 0;
    left: 0;
    -ms-transform: none;
    transform: none;
}
.home-steps-wrap.active .home-steps-title:after {
    opacity: 1;
}
.home-steps-desc {
    position: absolute;
    left: 0;
    top: 100%;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.home-steps-wrap.active .home-steps-desc {
    opacity: 1;
}
.home-steps-bottom-title {
    position: relative;
    z-index: 1;
}
/*Who we are - Outdoors Areas*/
.who-outdoors-image {
    position: relative;
}
.who-outdoors-over {
    position: relative;
    color: var(--white);
    background: linear-gradient(to right, rgba(7, 44, 80, 0.35) 0%, rgba(7, 44, 80, 0) 100%);
    z-index: 1;
    min-height: 160vw;
}
.who-outdoors-over:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary);
    opacity: 0.35;
    z-index: -1;
}
.who-outdoors-over h2 strong {
    font-weight: 700;
}
.who-outdoors-over ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.who-outdoors-over ul li {
    padding-left: 1.3em;
    position: relative;
}
.who-outdoors-over ul li::before {
    content: "";
    position: absolute;
    top: 0.1em;
    left: 0;
    border-bottom: 2px solid;
    border-right: 2px solid;
    width: 0.3em;
    height: 0.7em;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.who-outdoors-over ul li:not(:last-child) {
    margin-bottom: 15px;
}
.who-outdoors-over ul li strong {
    font-weight: 700;
}
/*Who we are - Mission / Vision*/
#mission-vision {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.mission-res-text {
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 25px;
}
.mission-res-item h3 {
    font-size: 30px;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgba(7,44,80,0.5);
    font-weight: 400;
}
.mission-res-item h3 strong {
    color: var(--primary);
    font-weight: 700;
}
.mission-res-text p {
    letter-spacing: 0.05em;
    line-height: 1.5;
}
/*Who we are - Innovation*/
.who-innovation-title strong {
    font-weight: 700;
    color: var(--white);
}
.who-innovation-white-box {
    position: relative;
    z-index: 1;
    padding-top: var(--grid);
}
.who-innovation-white-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    left: -1000px;
    right: -1000px;
    background-color: var(--white);
    z-index: -1;
}
/*Contact*/
.contact-top {
    position: relative;
}
.contact-top-right {
    pointer-events: none;
    position: relative;
    z-index: 1;
}
.contact-top-right h3,
.contact-top-right p {
    pointer-events: all;
}
.contact-description strong {
    color: var(--primary);
    font-weight: 700;
}
.contact-form-link {
    padding: 0 0 0 7px;
    cursor: pointer;
}
.contact-form-link .arrow.down {
    mix-blend-mode: unset;
}
.contact-top .blinds-group {
    position: absolute;
    left: 0;
    top: -195px;
    -ms-transform: rotateY(180deg);
    transform: rotateY(180deg);
    width: 45%;
}
.contact-top .blinds-group .blind {
    height: 20px;
    position: relative;
}
.contact-top .blinds-group .blind:nth-child(1) {
    right: -110px;
}
.contact-top .blinds-group .blind:nth-child(2) {
    right: -90px;
}
.contact-top .blinds-group .blind:nth-child(3) {
    right: -70px;
}
.contact-top .blinds-group .blind:nth-child(4) {
    right: -50px;
}
.contact-top .blinds-group .blind:nth-child(5) {
    right: -40px;
}
.contact-top .blinds-group .blind:nth-child(6) {
    right: -30px;
}
.contact-top .blinds-group .blind:nth-child(7) {
    right: -30px;
}
.contact-top .blinds-group .blind:nth-child(8) {
    right: -40px;
}
.contact-top .blinds-group .blind:nth-child(9) {
    right: -50px;
}
.contact-top .blinds-group .blind:nth-child(10) {
    right: -50px;
}
.contact-top .blinds-group .blind:nth-child(11) {
    right: -30px;
}
.contact-top .blinds-group .blind:nth-child(12) {
    right: -10px;
}
.contact-top .blinds-group .blind div {
    position: relative;
    background-color: var(--gray);
    height: 15px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: top center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.contact-top .blinds-group .blind:nth-child(1) div {
    -ms-transform: skew(25deg) rotateX(83deg);
    transform: skew(25deg) rotateX(83deg);
}
.contact-top .blinds-group .blind:nth-child(2) div {
    -ms-transform: skew(25deg) rotateX(77deg);
    transform: skew(25deg) rotateX(77deg);
}
.contact-top .blinds-group .blind:nth-child(3) div {
    -ms-transform: skew(25deg) rotateX(71deg);
    transform: skew(25deg) rotateX(71deg);
}
.contact-top .blinds-group .blind:nth-child(4) div {
    -ms-transform: skew(25deg) rotateX(65deg);
    transform: skew(25deg) rotateX(65deg);
}
.contact-top .blinds-group .blind:nth-child(5) div {
    -ms-transform: skew(25deg) rotateX(59deg);
    transform: skew(25deg) rotateX(59deg);
}
.contact-top .blinds-group .blind:nth-child(6) div {
    -ms-transform: skew(25deg) rotateX(53deg);
    transform: skew(25deg) rotateX(53deg);
}
.contact-top .blinds-group .blind:nth-child(7) div {
    -ms-transform: skew(25deg) rotateX(47deg);
    transform: skew(25deg) rotateX(47deg);
}
.contact-top .blinds-group .blind:nth-child(8) div {
    -ms-transform: skew(25deg) rotateX(41deg);
    transform: skew(25deg) rotateX(41deg);
}
.contact-top .blinds-group .blind:nth-child(9) div {
    -ms-transform: skew(25deg) rotateX(35deg);
    transform: skew(25deg) rotateX(35deg);
}
.contact-top .blinds-group .blind:nth-child(10) div {
    -ms-transform: skew(25deg) rotateX(29deg);
    transform: skew(25deg) rotateX(29deg);
}
.contact-top .blinds-group .blind:nth-child(11) div {
    -ms-transform: skew(25deg) rotateX(23deg);
    transform: skew(25deg) rotateX(23deg);
}
.contact-top .blinds-group .blind:nth-child(12) div {
    -ms-transform: skew(25deg) rotateX(17deg);
    transform: skew(25deg) rotateX(17deg);
}
.contact-top .blinds-group .blind:nth-child(13) div {
    -ms-transform: skew(25deg) rotateX(11deg);
    transform: skew(25deg) rotateX(11deg);
}
.contact-top .blinds-group .blind.hover div {
    -ms-transform: skew(25deg) rotateX(85deg);
    transform: skew(25deg) rotateX(85deg);
}
.contact-top .blinds-group .blind.next-hover div {
    -ms-transform: skew(25deg) rotateX(80deg);
    transform: skew(25deg) rotateX(80deg);
}
.contact-top .blinds-group .blind.next-next-hover div {
    -ms-transform: skew(25deg) rotateX(75deg);
    transform: skew(25deg) rotateX(75deg);
}
.contact-top .blinds-group .blind.next-next-next-hover div {
    -ms-transform: skew(25deg) rotateX(70deg);
    transform: skew(25deg) rotateX(70deg);
}
.contact-map {
    min-height: 225px;
    height: 55vw;
    position: relative;
    overflow: hidden;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}
/*Footer*/
footer a:hover {
    color: var(--secondary);
}
.footer-socials a svg {
    fill: var(--primary);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.footer-socials a:hover svg {
    fill: var(--secondary);
}
footer .blinds-group {
    position: absolute;
    top: 0;
    left: -25px;
    z-index: 1;
    width: 75%;
}
footer .blinds-group .blind {
    height: 20px;
    position: relative;
}
footer .blinds-group .blind:nth-child(1) {
    left: -140px;
}
footer .blinds-group .blind:nth-child(2) {
    left: -130px;
}
footer .blinds-group .blind:nth-child(3) {
    left: -120px;
}
footer .blinds-group .blind:nth-child(4) {
    left: -110px;
}
footer .blinds-group .blind:nth-child(5) {
    left: -100px;
}
footer .blinds-group .blind:nth-child(6) {
    left: -90px;
}
footer .blinds-group .blind:nth-child(7) {
    left: -80px;
}
footer .blinds-group .blind:nth-child(8) {
    left: -70px;
}
footer .blinds-group .blind:nth-child(9) {
    left: -60px;
}
footer .blinds-group .blind:nth-child(10) {
    left: -50px;
}
footer .blinds-group .blind:nth-child(11) {
    left: -40px;
}
footer .blinds-group .blind:nth-child(12) {
    left: -30px;
}
footer .blinds-group .blind:nth-child(13) {
    left: -20px;
}
footer .blinds-group .blind:nth-child(14) {
    left: -10px;
}
footer .blinds-group .blind:nth-child(15) {
    height: 27px;
}
footer .blinds-group .blind div {
    position: relative;
    background-color: var(--white);
    height: 15px;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: top center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
footer .blinds-group .blind:nth-child(1) div {
    -ms-transform: skew(25deg) rotateX(47deg);
    transform: skew(25deg) rotateX(47deg);
    background-color: var(--gray);
}
footer .blinds-group .blind:nth-child(2) div {
    -ms-transform: skew(25deg) rotateX(41deg);
    transform: skew(25deg) rotateX(41deg);
    background-color: var(--gray);
}
footer .blinds-group .blind:nth-child(3) div {
    -ms-transform: skew(25deg) rotateX(35deg);
    transform: skew(25deg) rotateX(35deg);
    background-color: var(--gray);
}
footer .blinds-group .blind:nth-child(4) div {
    -ms-transform: skew(25deg) rotateX(29deg);
    transform: skew(25deg) rotateX(29deg);
    background-color: var(--gray);
}
footer .blinds-group .blind:nth-child(5) div {
    -ms-transform: skew(25deg) rotateX(23deg);
    transform: skew(25deg) rotateX(23deg);
    background-color: var(--gray);
}
footer .blinds-group .blind:nth-child(6) div {
    -ms-transform: skew(25deg) rotateX(53deg);
    transform: skew(25deg) rotateX(53deg);
}
footer .blinds-group .blind:nth-child(7) div {
    -ms-transform: skew(25deg) rotateX(47deg);
    transform: skew(25deg) rotateX(47deg);
}
footer .blinds-group .blind:nth-child(8) div {
    -ms-transform: skew(25deg) rotateX(41deg);
    transform: skew(25deg) rotateX(41deg);
}
footer .blinds-group .blind:nth-child(9) div {
    -ms-transform: skew(25deg) rotateX(35deg);
    transform: skew(25deg) rotateX(35deg);
}
footer .blinds-group .blind:nth-child(10) div {
    -ms-transform: skew(25deg) rotateX(29deg);
    transform: skew(25deg) rotateX(29deg);
}
footer .blinds-group .blind:nth-child(11) div {
    -ms-transform: skew(25deg) rotateX(23deg);
    transform: skew(25deg) rotateX(23deg);
}
footer .blinds-group .blind:nth-child(12) div {
    -ms-transform: skew(25deg) rotateX(17deg);
    transform: skew(25deg) rotateX(17deg);
}
footer .blinds-group .blind:nth-child(13) div {
    -ms-transform: skew(25deg) rotateX(11deg);
    transform: skew(25deg) rotateX(11deg);
}
footer .blinds-group .blind:nth-child(14) div {
    -ms-transform: skew(25deg) rotateX(11deg);
    transform: skew(25deg) rotateX(11deg);
}
footer .blinds-group .blind:nth-child(15) div {
    -ms-transform: skew(25deg) rotateX(11deg);
    transform: skew(25deg) rotateX(11deg);
}
footer .blinds-group .blind.hover div {
    -ms-transform: skew(25deg) rotateX(85deg);
    transform: skew(25deg) rotateX(85deg);
}
footer .blinds-group .blind.next-hover div {
    -ms-transform: skew(25deg) rotateX(80deg);
    transform: skew(25deg) rotateX(80deg);
}
footer .blinds-group .blind.next-next-hover div {
    -ms-transform: skew(25deg) rotateX(75deg);
    transform: skew(25deg) rotateX(75deg);
}
footer .blinds-group .blind.next-next-next-hover div {
    -ms-transform: skew(25deg) rotateX(70deg);
    transform: skew(25deg) rotateX(70deg);
}


/*Responsive - Mobile First*/
/* sm */
@media (min-width: 576px) {
    /*Who we are - Outdoors Areas*/
    .who-outdoors-over {
        min-height: 90vw;
    }
}
/* md */
@media (min-width: 768px) {
    /*All*/
    :root {
        --font-size: 16px;
    }
    /*Who we are - Outdoors Areas*/
    .who-outdoors-over ul li:not(:last-child) {
        margin-bottom: 25px;
    }
    /*Who we are - Mission / Vision*/
    .mission-res-item h3 {
        font-size: 40px;
    }
    .mission-res-text p {
        line-height: 1.7;
    }
}
/* lg */
@media (min-width: 1050px) {
    /*Header*/
    body.white-header header {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }
    /*Homepage - Steps*/
    .home-steps-item:not(:last-child) {
        border-bottom: none;
        border-right: 1px solid var(--white);
    }
    .home-steps-wrap {
        height: 34vw;
        min-height: 500px;
        padding: 50px 10px;
    }
    .home-steps-number {
        top: 10px;
        left: 10px;
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    .home-steps-title:after {
        content: "";
        width: 45px;
        height: 2px;
        margin: 5px auto 0;
        background: linear-gradient(to right, var(--secondary) 0%,var(--secondary) 32%,var(--tertiary) 68%,var(--tertiary) 100%);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
        opacity: 0;
        display: block;
    }
    /*Who we are - Outdoors Areas*/
    .who-outdoors-over {
        min-height: 50vw;
    }
    /*Who we are - Mission / Vision*/
    #mission-vision::before {
        content: "";
        position: absolute;
        top: -400px;
        bottom: -400px;
        left: 0;
        background-color: var(--gray);
        transform-origin: top left;
        -ms-transform: skew(-17deg);
        transform: skew(-17deg);
        right: 63%;
        z-index: -1;
    }
    .mission-res-item:not(:last-child) {
        border-bottom: 2px solid var(--primary);
    }
    .mission-res-text {
        padding-top: 10px;
    }
    .mission-res-item:last-child .mission-res-text {
        padding-bottom: 150px;
    }
    /*Who we are - Innovation*/
    #who-innovation {
        margin-top: -100px;
    }
    /*Contact*/
    .contact-map {
        height: 100%;
        min-height: 100%;
    }
    .contact-map::after {
        content: "";
        position: absolute;
        top: 0;
        left: -1000px;
        bottom: 0;
        background-color: var(--white);
        right: 100%;
        -ms-transform-origin: top right;
        transform-origin: top right;
        -ms-transform: skew(13deg);
        transform: skew(13deg);
    }
    /*Contact*/
    .contact-top .blinds-group {
        left: auto;
        right: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 260px;
    }
    .contact-top .blinds-group .blind {
        height: 42px;
    }
    .contact-top .blinds-group .blind:nth-child(1) {
        right: -190px;
    }
    .contact-top .blinds-group .blind:nth-child(2) {
        right: -130px;
    }
    .contact-top .blinds-group .blind:nth-child(3) {
        right: -90px;
    }
    .contact-top .blinds-group .blind:nth-child(7) {
        right: -20px;
    }
    .contact-top .blinds-group .blind:nth-child(9) {
        right: -35px;
    }
    .contact-top .blinds-group .blind div {
        height: 34px;
    }
    .contact-map {
        height: 100%;
        min-height: 100%;
    }
    /*Footer*/
    footer .blinds-group {
        top: auto;
        bottom: 0;
        width: 300px;
    }
    footer .blinds-group .blind {
        height: 38px;
    }
    footer .blinds-group .blind div {
        height: 27px;
    }
}
/* xl */
@media (min-width: 1350px) {
    /*All*/
    :root {
        --font-size: 18px;
    }
    /*Header*/
    .header-languages {
        position: absolute;
        right: -70px;
        top: 23px;
    }
    .header-languages-toggle {
        color: rgba(7,44,80,0.4);
    }
    .header-languages-toggle svg {
        fill: rgba(7,44,80,0.4);
    }
    body.white-header header .header-languages-toggle {
        color: var(--white);
    }
    body.white-header .header-languages-toggle svg {
        fill: var(--white);
    }
    body.white-header .header-languages:hover .header-languages-toggle,
    body.white-header .header-languages.active .header-languages-toggle {
        color: var(--white);
    }
    body.white-header .header-languages:hover .header-languages-toggle svg,
    body.white-header .header-languages.active .header-languages-toggle svg {
        fill: var(--white);
    }
    /*Homepage - Steps*/
    .home-steps-bottom-title {
        margin-top: -100px;
        padding-right: 6%;
    }
    .home-steps-bottom-title:before {
        content: "";
        position: absolute;
        top: -0.2em;
        left: -1000px;
        right: 5%;
        bottom: 0;
        background-color: var(--white);
        z-index: -1;
    }
    /*Who we are - Outdoors Areas*/
    .who-outdoors-over ul li:not(:last-child) {
        margin-bottom: 40px;
    }
    /*Who we are - Innovation*/
    .who-innovation-white-box {
        padding-left: 60px;
        padding-top: 50px;
    }
    .who-innovation-white-box:before {
        left: 0;
    }
}
/* xxl */
@media (min-width: 1650px) {
    /*Header*/
    .header-menu li.nav-item:not(:last-child) {
        margin-right: 30px;
    }
    /*Homepage - Steps*/
    .home-steps-bottom-title {
        margin-top: -200px;
    }
    /*Who we are - Mission / Vision*/
    .mission-res-item h3 {
        font-size: 50px;
    }
    .mission-res-text {
        padding-bottom: 100px;
    }
    .mission-res-item:last-child .mission-res-text {
        padding-bottom: 200px;
    }
    .mission-res-text p {
        line-height: 1.9;
    }
    /*Who we are - Innovation*/
    .who-innovation-white-box {
        padding-left: 90px;
        padding-top: 80px;
    }
    /*Footer*/
    footer .blinds-group {
        width: 400px;
    }
}
/*Responsive - Desktop First*/
/* xl */
@media (max-width: 1649.98px) {

}
/* lg */
@media (max-width: 1349.98px) {

}
/* md */
@media (max-width: 1049.98px) {
    /*Megamenu*/
    body.opened-megamenu .megamenu {
        opacity: 1;
        pointer-events: all;
    }
    /*Homepage - Steps*/
    .home-steps-title {
        margin-bottom: 0;
        text-align: left;
        padding-left: 50px;
    }
    .home-steps-desc {
        text-align: left;
        position: relative;
        top: 0;
        display: none;
        opacity: 1;
        margin-top: 5px;
    }
    .home-steps-wrap.active .home-steps-desc {
        display: block;
    }
    /*Who we are - Mission / Vision*/
    .mission-res-item:not(:last-child) {
        margin-bottom: 70px;
    }
    .mission-res-image {
        margin-left: var(--min-grid);
        margin-right: var(--min-grid);
    }
    /*Footer*/
    footer .blinds-group .blind:nth-child(6) {
        left: -55px;
    }
    footer .blinds-group .blind:nth-child(7) {
        left: -50px;
    }
    footer .blinds-group .blind:nth-child(8) {
        left: -45px;
    }
    footer .blinds-group .blind:nth-child(9) {
        left: -40px;
    }
    footer .blinds-group .blind:nth-child(10) {
        left: -35px;
    }
    footer .blinds-group .blind:nth-child(11) {
        left: -30px;
    }
    footer .blinds-group .blind:nth-child(12) {
        left: -25px;
    }
    footer .blinds-group .blind:nth-child(13) {
        left: -20px;
    }
}
/* sm */
@media (max-width: 767.98px) {
    /*Who we are - Mission / Vision*/
    .mission-res-item h3 {
        margin-bottom: 0;
    }
}
/* xs */
@media (max-width: 575.98px) {

}