@font-face {
	font-family: Circular;
	font-weight: bold;
	src: url(../fonts/circular/CircularStd-Bold.ttf);
}

@font-face {
	font-family: Circular;
	font-weight: 100;
	src: url(../fonts/circular/CircularStd-Black.ttf);
}

@font-face {
	font-family: Circular;
	font-weight: 200;
	src: url(../fonts/circular/CircularStd-Book.ttf);
}

@font-face {
	font-family: Circular;
	font-weight: 300;
	src: url(../fonts/circular/CircularStd-Medium.ttf);
}

/* ---------- Basic Reset ---------- */
html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: 'Circular';
	font-weight: 200;
	scroll-behavior: smooth;
}

ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}

a:hover {
	text-decoration: none;
}

/* ---------- Reuseables ---------- */

.main-blue-text {
	color: #0c2340;
}

.empty-text-fill {
   -webkit-text-stroke-width: 1.5px;
   -webkit-text-fill-color: transparent; 
   -webkit-text-stroke-color: #0c2340;
}

.clear-fix::after {
	content: "";
	clear: both;
	display: table;
}

/* ---------- Navbar ---------- */
.navbar {
	position: fixed;
    top: 0;
    width: 85%;
    padding: 2rem 5rem 0 5rem;
    z-index: 1100;
    background-color: transparent;
    margin-left: 15%;
}

.navbar-brand-logo {
	width: 120px;
	height: 60px;
	margin: 2rem 5rem 0 3rem;
	z-index: 2000;
	cursor: pointer;
}

.menu-navbar-brand-logo {
	width: 120px;
	height: 60px;
	margin: 0;
}

.navbar-menu-btn {
	position: relative;
	cursor: pointer;
	color: #0c2340;
	width: 45px;
	padding: 0 5px;
	font-size: 0.8rem;
	letter-spacing: 1px;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.sound {
	width: 25px;
    height: 20px;
    position: relative;
    cursor: pointer;
	display: inline-block;
	margin-left: 1rem;
  }

  .sound--icon {
	color: #333;
    width: 75%;
    height: 100%;
    line-height: 100%;
    font-size: 20px;
    display: block;
    margin: auto;
  }
  .sound--wave {
	position: absolute;
    border: 1px solid transparent;
    border-right: 2px solid #333;
    border-radius: 50%;
    transition: all 200ms;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .sound--wave_one {
	width: 50%;
	height: 50%;
  }
  .sound--wave_two {
	width: 75%;
	height: 75%;
  }
  .sound-mute .sound--wave {
	border-radius: 0;
    width: 50%;
    height: 50%;
    border-width: 0 3px 0 0;
  }
  .sound-mute .sound--wave_one {
	-webkit-transform: rotate(45deg) translate3d(0, -50%, 0);
			transform: rotate(45deg) translate3d(0, -50%, 0);
  }
  .sound-mute .sound--wave_two {
	-webkit-transform: rotate(-45deg) translate3d(0, 50%, 0);
			transform: rotate(-45deg) translate3d(0, 50%, 0);
  }
   
.navbar-menu-language-container {
	position: absolute;
	font-size: 0.6rem;
	width: 4rem;
	top: 42px;
	left: -9px;
}

.language-list-item {
	display: inline-block;
}

.language-list-item:first-child {
	padding-right: 3px;
	border-right: 1.2px solid #0c2340;
}

/* Navbar Menu Header */
.navbar-menu-container {
	position: fixed;
	top: 0;
	z-index: 1100;
	width: 100%;
	padding: 0 5rem;
	height: 100%;
	display: none;
}

.navbar-menu {
	position: relative;
}

.navbar-menu-header {
	padding: 2rem 0rem 0 0rem;
}

.navbar-menu-close-btn {
	cursor: pointer;
	width: 42px;
	height: 42px;
}

/* Navbar Menu Navigation */
.navbar-menu-navigation {
	padding: 4rem 25rem;
	font-size: 3rem;
	font-weight: 300;
}

.navbar-menu-navigation a {
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	color: #DCD3CB;
}

.navbar-menu-navigation-list-item {
	position: relative;
}

.navbar-menu-empty-text-fill {
	position: absolute;
	left: 0;
   -webkit-text-stroke-width: 0.1rem;
   -webkit-text-fill-color: #0c2340; 
   -webkit-text-stroke-color: #DCD3CB;
   display: none;
}

.navbar-menu-navigation-list-item a:hover .navbar-menu-empty-text-fill {
	display: inline-block;
}

/* Navbar Menu Side Nav */
.navbar-menu-side-nav {
	position: absolute;
	bottom: 50%;
	right: 0;
}

.text-vertical {
	position: relative;
	top: 5rem;
	font-size: 0.8rem;
	color: #A7A09A;
	float: right;
    transform: rotate(360deg);
	writing-mode: vertical-lr;
	letter-spacing: 0.2rem;
    font-weight: 600;
}

/* ---------- Content ---------- */
.content-wrapper {
	height: calc(100% - 60px);
}

.page-header-title {
	position: fixed;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: #DCD3CB;
	z-index: 300;
	writing-mode: vertical-lr;
	transform: rotate(180deg);
	font-weight: bold;
	letter-spacing: 0.2rem;
	left: 3rem;
    top: 10rem;
}

.page-header-title span {
	position: relative;
}

.page-header-title span::before {
	content: "";
	display: inline-block;
    width: 1px;
	height: 10rem;
	margin-bottom: 10px;
    border-left: 2px solid #DCD3CB;
}

/* Navbar Menu Overlay */
.menu-overlay {
	position: fixed;
	top: 0;
	z-index: -1;
	background-color: transparent;
	border: 0 solid #0c2340;
	width: 100%;
	height: 100vh;
	opacity: 1;
	transition: border .3s ease-in;
}

.menu-overlay-z2k {
	z-index: 1000 !important;
}

.menu-btn-hover .menu-overlay {
	border-width: 10px;
	z-index: 1000;
}

.menu-btn-open .menu-overlay {
	border-width: 50vh 50vw !important;
	z-index: 1000;
}

/* ---------- Carousel Style ---------- */
.slick-dots {
	z-index: 100;
}

.slick-dots li button {
	width: 8px;
	height: 8px;
	cursor: pointer;
	padding: 0;
	background-color: transparent;
	border: 2px solid #DCD3CB;
	border-radius: 10px;
	text-indent: -999999px;
}


.slick-dots li.slick-active button {
	background-color: #DCD3CB;
}


/* ---------- Midpage Navigation ---------- */
.mid-page-navigation {
	margin: 1rem 0;
	padding: 0 5rem;
	font-size: 1rem;
	text-transform: uppercase;
}

.mid-page-navigation-list>li {
	display: inline-block;
	margin-left: 1rem;
	margin-right: 1rem;
	padding-top: 0.5rem;
}

.mid-page-navigation-list a {
	color: #0c2340;
	text-decoration: none;
	font-weight: bold;
}

.mid-page-navigation-list>li:last-child {
	position: relative;
    top: -7px;
    margin-left: 1rem;
    margin-right: 6rem;
    width: 3rem;
    height: 3rem;
    float: right;
    padding-top: 0;
}

.back-to-top:hover {
	cursor: pointer;
}

/* ---------- Footer ---------- */
.footer {
	background: transparent;
	position: absolute;
	bottom: 2rem;
	right: 0;
	min-height: 63px;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 61px;
}

.copyright {
	line-height: 15px;
    margin: 0;
    text-align: right;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.nav-menu-footer {
	color: #A7A09A !important; 
}

.socials-icons {
	width: 100%;
}

.socials-icons ul {
	margin-bottom: 1rem;
    display: table;
    width: 75px;
}
	
.socials-icons li {
	margin: 0;
	display: block;
	float: left;
}

.socials-icons li a {
	display: block;
	background: transparent;
	position: relative;
	width: 30px;
    height: 30px;
	text-align: center;
	line-height: 50px;
}

.socials-icons li a i {
	color: #fff;
    font-size: 20px;
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
	font-size: 18px;
}

.socials-icons li a:hover i {
	color: #fff;
}

.light-style .socials-icons li a:hover i {
	color: #333 !important;
}

/* ---------- Slick Controls ---------- */
.slick-arrow {
    z-index: 50;
	position: absolute;
	top: 55%;
    width: 1.7rem;
    height: 2.8rem;
    cursor: pointer;
}

.slick-prev {
    left: 4rem;
}

.slick-next {
    right: 4rem;
}

.slick-prev:before, .slick-next:before {
    font-family: none;
	content: "";
    position: absolute;
    display: block;
    left: -1.15rem;
    width: 2rem;
    height: 5px;
    background: #DCD3CB;
}

.slick-prev:hover::before {
	transform: rotate(45deg);
}

.slick-next:hover::before {
	transform: rotate(-45deg);
}

/* ---------- Media Queries ---------- */
@media (min-width: 769px) and (max-width: 1200px) {
	.navbar-menu-navigation {
		padding: 4rem 13rem;
		font-size: 3rem;
		font-weight: bold;
	}
}

@media (max-width: 768px) {

	.navbar,
	.navbar-menu-header {
		padding: 2rem;
		padding-bottom: 0;
	}

	.sound {
		display: none;
	}
	
	.navbar-menu-container {
		padding: 0;
	}

	.navbar-menu-navigation {
		padding: 8rem 11rem;;
		font-size: 2rem;
	}

	.navbar-menu-side-nav {
		right: 1rem;
	}

	.letters-NU {
		left: 1.5px;
	}

	.mid-page-navigation {
		display: none;
	}

	.footer {
		padding-right: 1rem;
	}
}

@media (max-width: 667px) {

	.page-header-title {
		font-size: 0.7rem;
		left: 1rem;
		top: 7rem;
	}

	.navbar-brand-logo {
		width: 120px;
		height: 60px;
		margin: 2rem 5rem 0 2rem;
	}

	.menu-navbar-brand-logo {
		width: 120px;
	}

	.navbar-menu-navigation {
		padding: 3rem 5rem;
	}

	.navbar-menu-navigation {
		font-size: 1.8rem;
	}

	.text-vertical {
		top: 7rem;
		font-size: 0.6rem;
	}
}

/* ---------- Keyframes ---------- */
@-moz-keyframes spin {
	from { -moz-transform: rotate(0deg); }
	to { -moz-transform: rotate(360deg); }
}

@-webkit-keyframes spin {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	from {transform:rotate(0deg);}
	to {transform:rotate(360deg);}
}
