/* header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70px;
}

@media screen and (max-width: 1024px) {
    .header {
        right: 0;
        left: auto;
        height: 100px;
    }
}

body:not(.homepage) .header {
    position: absolute;
    top: 0;
    left: 0;
    height: 60vh;
    width: 70px;
}

@media screen and (max-width: 1024px) {
    body:not(.homepage) .header {
        right: 0;
        left: auto;
        height: 100px;
    }
}



.header #triangle-topleft-white{
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 4;
}

@media screen and (max-width: 1024px) {
    .header #triangle-topleft-white{
        display: none;
    }
}

.overflow-hidden .header #triangle-topleft-white{
    position: fixed;
    z-index: 6;
}


body:not(.homepage) .header #triangle-topleft-white{
    display: none;
}

.header #triangle-bottom-left-white{
    position: absolute;
    bottom: 30px;
    left: 30px;
    width: 100%;
    z-index: 4;
    width: 0;
    height: 0;
    border-bottom: 21px solid #933C2B;
    border-right: 21px solid transparent;
}

.hd-01{
    position: absolute;
    top: 0;
    right: 0;
    height: 100vh;
    width: auto;
    min-width: 100px;
}

@media screen and (max-width: 1024px) {
    .hd-01{
        right: auto;
        left: 0;
        height: 100px;
        width: auto;
        min-width: 100px;
    }
}

body:not(.homepage) .hd-01 {
    position: absolute;
    top: 0;
    left: 0;
    height: 60vh;
    width: auto;
    min-width: 100px;
}


.hd-01 .contact-link {
    float: right;
    margin-top: 30px;
    margin-right: 30px;
    font-family: "FuturaStd";
    color: #933C2B;
    font-size: 14px;	
    font-weight: 700;	
    letter-spacing: 1px;	
    line-height: 17px;	
    text-align: right;
    text-transform: uppercase;
    position: relative;
    z-index: 4;
}

@media screen and (max-width: 1024px) {
    .hd-01 .contact-link {
        display: none;
    }
}

body:not(.homepage) .hd-01 .contact-link{
    display: none;
}

.hd-01 #triangle-bottomright-white {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 4;
}

@media screen and (max-width: 1024px) {
    .hd-01 #triangle-bottomright-white {
        display: none;
    }
}

.overflow-hidden .hd-01 #triangle-bottomright-white {
    position: fixed;
    z-index: 6;
}

body:not(.homepage) .hd-01 #triangle-bottomright-white{
    display: none;
}

/* logo */
.logo {
    position: absolute;
    top: 50%;
    right: 30px;
    bottom: auto;
    z-index: 6;
}

@media screen and (max-width: 1024px) {
    .logo {
        top: 30px;
        right: auto;
        left: 30px;
        width: 73px;
    }
}

.overflow-hidden .logo {
    position: fixed;
    z-index: 6;
}

.logo-img {
    width: 73px;

}
/* nav */
.nav {

}