@charset "utf-8";

/* IMPORT RESET */
@import url("normalize.css");

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	*behavior: url(../../js/boxsizing.htc);
	/*
		If you need support for IE7 and lower make
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill
	*/
}

::-webkit-scrollbar {
    width: 0px;
}

::-moz-scrollbar {
    width: 0px;
}

/*font*/
@font-face
{
    font-family: 'bebas neue';
    src: url('../../fonts/BebasNeue.otf');
}
.font-bebas-neue {
    font-family: 'bebas neue';
}

@font-face
{
    font-family: 'contax sans';
    src: url('../../fonts/ContaxSans55Reg.otf');
}
.font-contax-sans {
    font-family: 'contax sans';
}

@font-face
{
    font-family: 'montserrat italic';
    src: url('../../fonts/Montserrat-Italic');
}
.font-montserrat-italic {
    font-family: 'montserrat italic';
}

@font-face
{
    font-family: 'montserrat';
    src: url('../../fonts/Montserrat-Regular.ttf');
}
.font-montserrat {
    font-family: 'montserrat';
}

@font-face
{
    font-family: 'montserrat medium';
    src: url('../../fonts/Montserrat-Medium.ttf');
}
.font-montserrat-medium {
    font-family: 'montserrat medium';
}

@font-face
{
    font-family: 'montserrat light';
    src: url('../../fonts/Montserrat-Light.ttf');
}
.font-montserrat-light {
    font-family: 'montserrat light';
}

@font-face
{
    font-family: 'montserrat light italic';
    src: url('../../fonts/Montserrat-LightItalic.ttf');
}
.font-montserrat-light-italic {
    font-family: 'montserrat light italic';
}

@font-face
{
    font-family: 'montserrat thin';
    src: url('../../fonts/Montserrat-Thin.ttf');
}
.font-montserrat-thin {
    font-family: 'montserrat thin';
}

@font-face
{
    font-family: 'montserrat thin italic';
    src: url('../../fonts/Montserrat-ThinItalic.ttf');
}
.font-montserrat-thin-italic {
    font-family: 'montserrat thin italic';
}

@font-face
{
    font-family: 'montserrat semibold';
    src: url('../../fonts/Montserrat-SemiBold.ttf');
}
.font-montserrat-semibold {
    font-family: 'montserrat semibold';
}

@font-face
{
    font-family: 'montserrat semibold italic';
    src: url('../../fonts/Montserrat-SemiBoldItalic.ttf');
}
.font-montserrat-semibold-italic {
    font-family: 'montserrat semibold italic';
}

/* Global */
html, body {
	padding: 0px;
	margin: 0px;
}

img {
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	/*color: inherit;*/
	text-decoration: none;
}

a:focus {
	outline: 0;
}

/* Presets */
.none { /* this class is used to hid the skip to content link at the beginning of the document for accessibility */
	display: none;
}

.clear {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.aligncenter {
	text-align: center;
}

.alignleft {
	text-align: left;
}

.alignright {
	text-align: right;
}

input:focus {
	outline: 0px;
}

.color1 {
	color: #5c5c5c;
}

.color2 {
	color: #074995;
}

.background1 {
	color: #5c5c5c;
}

.background2 {
	color: #074995;
}


/* ----- Master CSS ----- */
.line80 {
    position: fixed;
    top: 80vh;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.line30 {
    position: fixed;
    top: 30vh;
    width: 0px;
    height: 0px;
    opacity: 0;
}

.left-anim {
    left: 200px;
    opacity: 0;
}

.right-anim {
    right: 200px;
    opacity: 0;
}

.top-anim {
    top: -200px;
    opacity: 0;
}

.bottom-anim {
    bottom: -200px;
    opacity: 0;
}

.fade-anim {
    opacity: 0;
}



.container {
	position: relative;
	display: block;
	min-height: 500px;
	width: 100%;
    max-width: unset;
    padding: 0px;
    color: #000;
    overflow: hidden;
}

.mid {
	position: relative;
	width: 100%;
	height: 100%;

	justify-content: center;
	display: flex;
	align-items: center;
}

.header-container {
    position: fixed;
    display: block;
    width: 100%;
    z-index: 1;
    top: 0px;
    left: 0px;
}

.header-nav-trigger {
    position: absolute;
    display: block;
    /* width: 48px; */
    width: 2.5vw;
    /* top: 51px; */
    top: 4.72vh;
    /* right: 63px; */
    right: 3.28vw;
    cursor: pointer;
    overflow: hidden;
}

.header-nav-long {
    position: relative;
    display: block;
    width: 400%;
    height: 100%;
    left: 0px;
    top: 0px;
    font-size: 0px;
    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    transition: left 0.4s;
    -o-transition: left 0.4s;
}

.header-nav-long.active {
    left: -300%;

    -webkit-transition: left 0.4s;
    -moz-transition: left 0.4s;
    -ms-transition: left 0.4s;
    transition: left 0.4s;
}

.header-nav-open {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 25%;
    margin-right: 50%;
}

.header-nav-open-item {
    position: relative;
    display: block;
    width: 100%;
    height: 4px;
    /* height: 0.46vh; */
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    background: #bababa;
    margin-bottom: 7px;
    /* margin-bottom: 0.64vh; */
}

.header-nav-open-item:last-child {
    margin-bottom: 0px;
}

.header-nav-icon {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 25%;
}

.blur-container {
    position: fixed;
    display: block;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.82);
    left: 0px;
    top: 0px;
    z-index: 1;
    display: none;
}

.nav-container {
    position: absolute;
    display: block;
    background: #fff;
    /* padding: 185px 80px 80px 80px; */
    padding: 17.12vh 4.16vw 7.40vh 4.16vw;
    box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.1);
    /* top: 120px; */
    top: 11.11vh;
    /* right: 55px; */
    right: 2.86vw;
}

.nav-close {
    position: absolute;
    /*width: 36px;
    */width: 1.87vw;
    /*height: 36px;
    */aspect-ratio: 36/36;
    border-left: 4px solid #ccc;
    border-bottom: 4px solid #ccc;
    border-radius: 2px;
    cursor: pointer;
    /*right: 49px;
    */right: 2.55vw;
    /*top: 24px;
    */top: 2.22vh;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-transform: rotate(-45deg);
}

.nav-group {
    position: relative;
    display: block;
    /* margin-bottom: 97px; */
    margin-bottom: 8.98vh;
}

.nav-group:last-child {
    margin-bottom: 0px;
}

.nav-list {
    position: relative;
    display: block;
    /* font-size: 24px; */
    font-size: 1.25vw;
    color: #58585a;
    /* line-height: 25px; */
    line-height: 2.31vh;
    /* margin-bottom: 60px; */
    margin-bottom: 5.55vh;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
}

.nav-list:hover {
    color: #b0a967;

    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    -o-transition: color 0.4s;
    transition: color 0.4s;
}

.nav-list:last-child {
    margin-bottom: 0px;
}

.nav-group-title {
    position: relative;
    display: block;
    /* font-size: 24px; */
    font-size: 1.25vw;
    color: #b0a967;
    font-weight: bold;
    /* margin-bottom: 40px; */
    margin-bottom: 3.70vh;
    /* line-height: 21px; */
    line-height: 1.94vh;
}

.pop-container {
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.82);
    left: 0px;
    top: 0px;
    z-index: 1;
    overflow: auto;
}

.pop-content {
    position: relative;
    display: block;
    /* padding: 110px 0px; */
    padding: 10.18vh 0px;
}

/* Desktops and laptops */
@media screen and (max-width : 1536px) {

}

@media screen and (max-width : 1366px) {

}

/* Tablet */
@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 80px 30px 50px 30px;
    }

    .nav-list {
        margin-bottom: 30px;
    }

    .nav-group {
        margin-bottom: 50px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .nav-container {
        top: 100px;
    }

    .header-nav-trigger {
        width: 30px;
    }

    .nav-list {
        margin-bottom: 20px;
        font-size: 12px;
    }

    .nav-group-title {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .nav-group {
        margin-bottom: 40px;
    }

    .pop-content {
        padding: 50px 0px;
        /* padding: 80px 0px 50px; */
    }
}

@media screen and (max-width : 500px) {
    .header-nav-open-item {
        height: 2px;
    }

    .header-nav-trigger {
        right: 20px;
    }

    .nav-container {
        width: 100%;
        height: 100vh;
        top: 0px;
        left: 0px;
        right: 0px;
        text-align: center;
        padding: 150px 30px 50px 30px;
    }

    .nav-close {
        width: 25px;
        right: 30px;
    }

    .nav-list {
        margin-bottom: 40px;
        font-size: 18px;
    }

    .nav-group-title {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .nav-group {
        margin-bottom: 80px;
    }
}
