@font-face {
  font-family: "MacklinDisplay-Italic";
  src: url('../../webFonts/MacklinDisplayItalic/font.woff2') format('woff2'), url('../../webFonts/MacklinDisplayItalic/font.woff') format('woff'); font-display: block;
}
@font-face {
  font-family: "MacklinSans-Medium";
  src: url('../../webFonts/MacklinSansMedium/font.woff2') format('woff2'), url('../../webFonts/MacklinSansMedium/font.woff') format('woff'); font-display: block;
}
html, body{
    height: 100%;
    width: 100%;
    margin: 0px;
    padding:0px;
    }
body{
    display: block;
    opacity: 1;
    background-color: #FFF;
    color: #41423c;
    -webkit-overflow-scrolling: touch;
    font-size: 21px;
    line-height: 26px;
    font-family: 'MacklinSans-Light';
    background: fixed;
    background-repeat: repeat;
    background-position: top left;
    background-size: auto 20px;
    background-image: url(../../images/lineo-6.svg);
    }
footer{
    position: relative;
    left: 0px;
    right: 0px;
    width: 100%;
    margin-top: 107.5px;
    height: auto;
    border-top: 1px solid #d1d3c2;
    opacity: 0;
    transition-delay: 1000ms;
    transition: all ease-in-out 300ms;
    }
a{
    color: inherit;
    text-decoration: none !important;
    transition: all ease-in-out 300ms;
    }
*{
    text-decoration: none;
    list-style: none;
    border: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
    }
img{
    width: 100%;
    height: auto;
    aspect-ratio:attr(width)/attr(height);
    }
main{
    position: relative;
    display: block;
    opacity: 0;
    overflow: hidden;
    transition: all ease-in-out 420ms;
    }
main.on{
    opacity: 1;
    }
.topBlockHome {
    position: relative;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
	z-index:1;
    transition: all ease 300ms;
    background-image: url(../../images/home/vimeo-thumb.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
	}
.topBlockHome::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1001;
	}
.landing-video{
    width: 100vw;
    height: 50vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 200vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    }
/*---------- /GENERAL ----------*/
/*---------- HEADER ----------*/
header{
    position: fixed;
    display: none;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 104px;
    max-width: 100%;
    z-index: 1000;
    transition: all ease-in-out 300ms;
    }
header.dark-bg{
    background-image: linear-gradient(0deg, rgba(0,0,0,0), rgba(0,0,0,0.7)); 
    height: 230px;
    }
header.light-bg{
    background-repeat: repeat;
    background-position: top left;
    background-size: auto 20px;
    background-color: #FFF;
    background-image: url(../../images/lineo-6.svg); 
    }
header .Header{
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    max-width: 1660px;
    height: auto;
    margin: 0px auto;
    padding: 15px 26px 10px 26px;
    }
header .header-logo{
    position: relative;
    display: inline-block;
    display: none;
    width: 260px;
    height: auto;
    top: 0px;
    left: 0px;
    transition: all ease-in-out 300ms;
    }
header.dark-bg .header-logo.dark{
    display: inline-block;
    }
header.light-bg .header-logo.light{
    display: inline-block;
    }
header .header-menu{
    position: relative;
    display: inline-block;
    width: auto;
    right: 0px;
    float: right;
    margin-top: 43px;
    transition: all ease-in-out 300ms;
    }
header .header-menu ul{
    padding: 0px;
    margin: 0px;
    }
header .header-menu ul li{
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    margin: 0px 13px 0px 13px;
    font-size: 14px;
    letter-spacing: 0.15em;
    font-family: 'MacklinSans-Medium';
    }
header .header-menu ul li::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    opacity: 1;
    bottom: 1px;
    display: block;
    transition: all ease-in-out 200ms;
    }
header.dark-bg .header-menu ul li::after{
    background-color:#fff;
    }
header.light-bg .header-menu ul li::after{
    background-color:#95a500;
    }
header .header-menu ul li:hover::after{
    width: 100%;
    }
header .header-menu ul li.selected::after{
    width: 100%;
    transition: all ease-in 0ms;
    }
header .header-menu ul li.last{
    margin: 0px 2px 0px 23px;
    }
header .header-menu ul li a{
    transition: all ease-in-out 300ms;
    margin-right: -0.3em;
    }
header.dark-bg .header-menu ul li a{
    color:#fff;
    }
header.dark-bg .header-menu ul li:hover a{
    color:#fff;
    }
header.dark-bg .header-menu ul li.selected a{
    color:#fff;
    }
header.light-bg .header-menu ul li a{
    color:#6d6e71;
    }
header.light-bg .header-menu ul li:hover a{
    color:#95a500;
    }
header.light-bg .header-menu ul li.selected a{
    color:#95a500;
    }
.special-char{
    font-family: 'MacklinDisplay-Italic' !important;
    font-size: 20px;
    text-transform: lowercase;
    }
header .header-menu-top{
    position: absolute;
    display: block;
    /*width: 539px;*/
    width: auto;
    height: 32px;
    right: 26px;
    top: 12px;
    /*border: 2px solid #111;*/
    transition: all ease-in-out 300ms;
    }




/*
header.dark-bg .header-menu-top{
    border: 2px solid #fff;
    }
*/
header .header-menu-top ul{
    display: block;
    /*width: 540px;*/
    width: auto;
    height: 32px;
    padding: 0px;
    white-space: nowrap;
    }
header .header-menu-top ul li.boarder-right::after{
    content: '';
    position: absolute;
    display: block;
    top: 0px;
    right: -2px;
    height: 100%;
    width: 2px;
    background-color: #111;
    }
header.dark-bg .header-menu-top ul li.boarder-right::after{
    background-color: #fff;
    }
header .header-menu-top ul li.shift-left{
    right: 2px;
    }
header .header-menu-top ul li.shift-left2{
    right: -6px;
    }
header .header-menu-top ul li.special-button{
    position: relative;
    color: #6d6e71;
    background-color: #fff;
    padding: 0px;
    display: inline-block;
    top: 0px;
    height: 32px;
    width: auto;
    border: 2px solid #000;
    transition: all ease-in-out 300ms;
    }
header.dark-bg .header-menu-top ul li.special-button{
    border: 2px solid #fff;
    }
header .header-menu-top ul li.special-button a{
    color: inherit;
    white-space: nowrap;
    text-align: center;
    font-size: 14px;
    line-height: 1em;
    padding: 0px 16px 6px 16px;
    text-transform: uppercase;
    letter-spacing: 0.31em;
    font-family: 'MacklinSans-Medium';
    }
header .header-menu-top ul li.special-button:hover{
    /*background-color: #adc000;*/
    background-color: #000;
    color: #fff;
    }
header .header-menu-top ul li.special-button:hover a{
    color: #fff;
    }
header .header-menu-top ul li.special-button.selected{
    /*background-color: #adc000;*/
    background-color: #000;
    color: #fff;
    }
header .header-menu-top ul li.special-button.selected a{
    color: #fff;
    }
header.dark-bg .header-menu-top ul li.construction{
    /*background-color: #fff;*/
    color: #fff;
    }
header.dark-bg .header-menu-top ul li.construction:hover {
    /*background-color: #adc000;*/
    background-color: #000;
    color: #fff;
    }
header.dark-bg .header-menu-top ul li.special-button.purchaser, header .header-menu-top ul li.special-button.purchaser{
    background-color: #adc000;
    color: #fff;
    }
header.dark-bg .header-menu-top ul li.special-button.purchaser:hover, header .header-menu-top ul li.special-button.purchaser:hover, header .header-menu-top ul li.special-button.purchaser.selected{
    background-color: #000;
    color: #fff;
    }
header.dark-bg .header-menu-top ul li.special-button{
    color: #fff;
    background-color: #fff;background-color: transparent;
    }
.header-message{
    display: inline-block;
    position: absolute;
    left: 198px;
    top: 13px;
    width: auto;
    text-align: center;
    text-transform: uppercase;
    line-height: 0.45em;
    font-family: "MacklinDisplay-Medium";
    color: #151513;
    letter-spacing: -0.01em;
    transition: all ease-in-out 300ms;
    }
.header-message .top{
    position: relative;
    display: block;
    padding: 4px 0px 4px 0px;
    border-top: 2px solid #adc000;
    border-bottom: 2px solid #adc000;
    }
header.dark-bg .header-message{
    color: #fff;
    }
header.dark-bg .header-message .top{
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    color: #fff;
    }
header.light-bg .header-message .top{
    border-top: 2px solid #adc000;
    border-bottom: 2px solid #adc000;
    color: #151513;
    transition: all ease-in-out 300ms;
    }
header .header-message .top.white{
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
    color: #fff;
    }
.header-message .top .line-1{
    color: inherit;
    font-size: 18.4px;
    }
.header-message .top .line-2{
    color: inherit;
    font-size: 14px;
    letter-spacing: 0em;
    font-weight: 600;
    }
.header-message .bottom{
    position: relative;
    display: block;
    padding-top: 5px;
    }
.header-message .bottom .line-3{
    font-size: 0.95vw;
    line-height: 1.05em;
    }
.header-message .bottom .line-4{
    font-size: 0.95vw;
    }
.header-message-min-nav{
    display: inline-block;
    position: absolute;
    right: 72px;
    top: 13px;
    width: 97px;
    border-top: 2px solid #adc000;
    border-bottom: 2px solid #adc000;
    color: #000;
    transition: all ease-in-out 300ms;
    text-transform: uppercase;
    line-height: 0.45em;
    font-family: "MacklinDisplay-Medium";
    }

.header-message-min-nav .line-1{
    font-size: 23.4px;
    line-height: 0.86em;
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: all ease-in-out 300ms;
    }
.header-message-min-nav .line-2{
    font-size: 20.1px;
    letter-spacing: -0.01em;
    white-space: nowrap;
    font-weight: 600;
    line-height: 0.86em;
    transition: all ease-in-out 300ms;
    }
.header-shrink  .header-message-min-nav{
    top: 11px;
    }
.header-shrink .header-message-min-nav .line-1{
    font-size: 16.9px;
    
    }
.header-shrink .header-message-min-nav .line-2{
    font-size: 14.3px;
    }
.min-nav {
    top: -76px;
    }







/* --- MIN NAV --- */
.min-nav{
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 66px;
    margin: 0px auto;
    text-align: left;
    z-index: 999999999;
    transition-duration: 500ms;
    transition-property: all;
    transition-timing-function: ease-in-out;
    padding: 13px 13px 13px 13px;
    background-color: #f9faf6;
    transition: all ease-in-out 300ms;
    border-bottom: 1px solid #cfd2be;
    }
.min-nav .min-logo {
    display: block;
    width: 160px;
    float: left;
    margin: 1px 0px 0px 0px;
    transition: all ease-in-out 300ms;
    }
.min-nav .min-logo a{
    font-family: 'MacklinDisplay-Medium';
    font-size: 21px;
    text-transform: uppercase;
    }
.min-nav-btn {
    position: relative;
    display: block;
    height: 42px;
    width: 42px;
    cursor: pointer;
    z-index: 1000;
    top: 2px;
    float: right;
    transition: all ease-in-out 300ms;
    }
.min-nav-btn .min-nav-btn-btn {
    position: absolute;
    display: block;
    height: 42px;
    width: 42px;
    right: 0px;
    text-align: center;
    text-decoration: none;
    transition: all ease-in-out 300ms;
    border-radius: 0px !important;
    cursor: pointer;
    top: 0px;
    }
.min-nav-btn .min-nav-btn-btn i {
    background: #272625;
    display: block;
    height: 2px;
    right: 0px;
    position: absolute;
    top: 0px;
    transition: background .3s,transform .3s cubic-bezier(.165,.84,.44,1);
    width: 42px;
    }
.min-nav-btn .min-nav-btn-btn i:nth-child(2) {
    top: 10px;
    }
.min-nav-btn .min-nav-btn-btn i:nth-child(3) {
    top: 20px;
    }
.min-nav.on .min-nav-btn .min-nav-btn-btn i:nth-child(1) {
    transform: translate3d(0,8px,0) rotate(45deg);
    right: -4px;
    top: 5px;
    }
.min-nav.on .min-nav-btn .min-nav-btn-btn i:nth-child(2) {
    opacity: 0;
    }
.min-nav.on .min-nav-btn .min-nav-btn-btn i:nth-child(3) {
    transform: translate3d(0,-10px,0) rotate(-45deg);
    top: 23px;
    right: -4px;
    }
.drop-down-navigation {
    position: fixed;
    display: block;
    overflow-y: scroll;
    height: 100%;
    max-height: 100%;
    width: 100%;
    top: -200%;
    left: 0px;
    background-color: #f8f6f4;
    z-index: 99999999;
    opacity: 1;
    behavior: 'smooth';
    transition: all ease-in-out 300ms;
    padding: 0px 15px;
    }
/* ---------- /HEADER ---------- */
@media only screen and (min-width:768px){
/* ---------- HEADER ---------- */
.min-nav{
    padding: 12px 26px 12px 26px;
    }
.header-message-min-nav{
    right: 80px;
    }
.header-shrink .header-message-min-nav .line-1{
    font-size: 18.4px;
    
    }
.header-shrink .header-message-min-nav .line-2{
    font-size: 16.1px;
    }
}
@media only screen and (min-width:1100px){
/* ---------- HEADER ---------- */
header{
    display: block;
    }
.min-nav{
    padding: 12px 26px 12px 26px;
    height: 52px;
    }
.min-nav .min-logo {
    display: none;
    }
.min-nav .header-message-min-nav{
    display: none;
    }
.header-message{
    left: 61px;
    top: 128px;
    }
.header-message .top .line-1{
    font-size: 44px;
    line-height: 0.86em;
    letter-spacing: -0.01em;
    }
.header-message .top .line-2{
    font-size: 37px;
    letter-spacing: 0em;
    font-weight: 600;
    line-height: 0.86em;
    }
.min-nav {
    top: -76px;
    }
/* ---------- /HEADER ---------- */
}
@media only screen and (min-width:1200px){
main{
    /*margin-top: 173px;*/
    }
/* ---------- HEADER ----------- */
header .Header{
    padding-left: 52px;
    padding-right: 52px;
    }
header .header-menu-top{
    right: 52px;
    }
header .header-menu ul li{
    margin: 0px 14px 0px 14px;
    letter-spacing: 0.22em;
    }
.header-message{
    left: 52px;
    }
}
@media only screen and (min-width:1300px){
 header .header-menu ul li{
    margin: 0px 18px 0px 18px;
    letter-spacing: 0.3em;
    }
/* ---------- HEADER ---------- */

}
@media only screen and (min-width:1400px){
/* ---------- HEADER ---------- */
header .header-menu ul li{
    margin: 0px 23px 0px 23px;
    letter-spacing: 0.31em;
    }
/* ---------- /HEADER ---------- */    
}
@media only screen and (max-width:1367px) and (orientation: portrait){
.topBlockHome {
    background-image: url(../../images/home/vimeo-thumb-port.webp);
	}
.landing-video{
    width: 100vw;
    height: 133.398vw; /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 74.963vh; /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
}