@font-face {
    font-family: "MacklinSansLight"; font-display: block;
    src: url('/webFonts/MacklinSansLight/font.woff2') format('woff2'), url('/webFonts/MacklinSansLight/font.woff') format('woff');
    }
@font-face {
    font-family: "MacklinSansMedium"; font-display: block;
    src: url('/webFonts/MacklinSansMedium/font.woff2') format('woff2'), url('/webFonts/MacklinSansMedium/font.woff') format('woff');
    }
footer{
    opacity: 0;
    }
html{
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    }
body{
    position: relative;
    overflow-y: scroll;
 	-webkit-overflow-scrolling: touch;
	font-size:18px;
	line-height:24px;
	color:#000;
	scroll-behavior: smooth;
	background-color:rgb(238, 236, 231);
    font-family: "MacklinSansLight";
    }
*, a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -ms-appearance: none;
    color: inherit;
	}
p, h1, h2, h3, h4, h5 {
	margin:0px;
    padding: 0px;
	}
h1{
    display: block;
    position: relative;
    font-size: 36px;
    line-height: 1em;
    font-family: "MacklinSansMedium";
    }

main {
    position: relative;
    display: block;
    z-index: 99;
    opacity: 0;
    overflow: hidden;
    transition: all ease-in-out 300ms;
    }
main.on {
    opacity: 1;
    }

/* ---------- HEADER ---------- */
header{
    position: fixed;
    display: block;
    top: 0px;
    width: 100%;
    height: 76px;
    z-index: 1000;
    background-color:rgb(238, 236, 231);
    }
header .header{
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0px auto;
    width: 100%;
    height: auto;
    max-width: 1746px;
    padding:0px 21px;
    }
header .header .header-logo{
    position: relative;
    display: block;
    width: 120px;
    height: 76.0436px;
    padding: 12px 0px;
    z-index: 1001;
    }
header .header .menu{
    position: relative;
    display: none;
    width: auto;
    height: auto;
    padding-top: 36px;
    }
header .header .menu ul{
    position: relative;
    display: flex;
    align-content: flex-end;
    }
header .header .menu ul li{
    position: relative;
    margin: 0px 16px;
    transition: all ease-in-out 200ms;
    border-bottom: 1px solid rgba(0,0, 0, 0);
    }
header .header .menu ul li:hover, header .header .menu ul li.selected{
    border-bottom: 1px solid rgba(0,0, 0, 1);
    }

/*
header .header .menu ul li.reg-btn::before{
    content: "";
    position: absolute;
    display: block;
    top: 2px;
    left: -18px;
    height: 21px;
    width: 1px;
    background-color: #000;
    }
*/
header .header .menu ul li:last-child{
    margin-right: 0px;
    margin-left: 19px;
    }
header .header .menu ul li a{
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1em;
    text-transform: uppercase;
    font-family: "MacklinSansLight";
    }
header .header .menu ul li.heritage-btn a{
    font-family: "MacklinSansMedium";
    }
header .header .menu ul li.reg-btn a{
    font-family: "MacklinSansMedium";
    border: 2px solid #000;
    padding: 6px 6px 4px 6px;
    background-color: rgba(0, 0, 0, 0);
    color: rgba(0, 0, 0, 1);
    transition: all ease-in-out 300ms;
    }
header .header .menu ul li.reg-btn:hover a, header .header .menu ul li.reg-btn.selected a{
    background-color: rgba(0, 0, 0, 1);
    color: rgba(238, 236, 231, 1);
    }
header .header .menu ul li.reg-btn:hover, header .header .menu ul li.reg-btn.selected{
    border-bottom: none;
    }
header .header .hamburger-btn {
    position: relative;
    display: block;
    height: 40px;
    width: 36px;
    background-color: transparent;
    cursor: pointer;
    z-index: 1001;
    text-align: center;
    text-decoration: none;
    transition: all ease-in-out 300ms;
    margin-top: 21px;
    }
header .header .hamburger-btn i {
    background: #000;
    display: block;
    height: 2px;
    right: 0px;
    position: absolute;
    top: 0px;
    transition: all ease-in-out 200ms;
    width: 36px;
    }
header .header .hamburger-btn i:nth-child(2) {
    top: 8px;
    }
header .header .hamburger-btn i:nth-child(3) {
    top: 16px;
    }
header .header .hamburger-btn.animate-cross i {
    transform: rotate(45deg);
    top: 12px;
    }
header .header .hamburger-btn.animate-cross i:nth-child(2) {
    opacity: 0;
    }
header .header .hamburger-btn.animate-cross i:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    }
@media only screen and (min-width:992px){
header{
    height: auto;
    }
header .header .header-logo{
    width: 168px;
    height: 114.8611px;
    padding: 21px 0px;
    }
}
@media only screen and (min-width:1200px){
header .header{
    padding-left: 32px;
    padding-right: 32px;
    }
header .header .menu{
    display: block;
    padding-top: 62px;
    }
header .header .hamburger-btn {
    display: none;
    }
}


@media only screen and (min-width:1400px){
header .header .menu ul li a{
    letter-spacing: 0.12em;
    }
}
@media only screen and (min-width:1600px){
header .header{
    padding-left: 73px;
    padding-right: 73px;
    }
}