/* FONTS */

@font-face {
    font-family: 'BrandonGrotesque-Bold';
    src: url('../fonts/BrandonGrotesque-Bold.woff2') format('woff2'),
        url('../fonts/BrandonGrotesque-Bold.woff') format('woff'),
        url('../fonts/BrandonGrotesque-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Ogg-Roman';
    src: url('../fonts/Ogg-Roman.woff2') format('woff2'),
        url('../fonts/Ogg-Roman.woff') format('woff'),
        url('../fonts/Ogg-Roman.ttf') format('truetype');
}

@font-face {
    font-family: 'Graphik-Regular';
    src: url('../fonts/Graphik-Regular.woff2') format('woff2'),
        url('../fonts/Graphik-Regular.woff') format('woff'),
        url('../fonts/Graphik-Regular.ttf') format('truetype');
}


/* MAIN */

html,body {   
	color: #fff;
	background: #FBF9F7;
	height: 100%;
	font-family: Graphik-Regular, helvetica, sans-serif;
	scroll-behavior: smooth;
}


/* PRELOADER */

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999;
}

#loader {
  display: none;
}

@keyframes loader {
  to {transform: rotate(360deg);}
}
 
#loader:before {
  content: '';
  box-sizing: border-box;
  position: absolute;
  top: 40%;
  left: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 50%;
  border: 2px solid #222;
  border-top-color: #222;
  border-right-color: #222;
  border-bottom-color: #F6F1EB;
  animation: loader .6s linear infinite;
}


/* NAVIGATION */

#nav {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
	overflow: hidden;
}

.name {
	position: relative;
	display: block;
	text-align: center;
	margin: 20px auto;
	font-size: 26px;
	font-family: BrandonGrotesque-Bold, helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.white {
	color: #fff;
}

.black {
	color: #222;
}


/* PAGE */

#intro {
	width: 100%;
	background: #222;
	overflow: hidden;
}

#intro-content {
	position: relative;
	text-align: center;
	font-size: 20px;
	letter-spacing: 0px;
	width: 60%;
	height: 100%;
	max-width: 1200px;
	margin: 25% auto 35% auto;
}

#intro-content a {
	font-size: 16px;
	display: inline-block;
	margin: 50px 6%;
}

#intro-content a:hover {
	color: #999;
}

h1 {  
	text-align: center;
    color: #fff;
    font-size: 48px;
    font-family: Ogg-Roman, helvetica, sans-serif;
    line-height: 66px;
	margin-bottom: 3%;
}

.hero {
	position: relative;
	width: 80%;
	margin: -18% auto 0 auto;
	z-index: 100;
}

#services {
	position: relative;
	width: 100%;
	background: #FBF9F7;
	margin-bottom: 15%;
	overflow: auto;
}

#services-content {
	position: relative;
	width: 60%;
	margin: 10% auto 0 auto;
}

h2 {  
	text-align: left;
    color: #222;
    font-size: 12px;
    font-family: Graphik-Regular, helvetica, sans-serif;
	margin-bottom: 5%;
	text-transform: uppercase;
	letter-spacing: 2px;
}

li {
	position: relative;
	color: #222;
    font-size: 48px;
    font-family: Ogg-Roman, helvetica, sans-serif;
}

li span.super {
    font-size: 12px;
    font-family: Graphik-Regular, helvetica, sans-serif;
	color: rgba(34, 34, 34, .4);
    margin: 0 20px 0 -25px;
    vertical-align: super;
    display: inline-block;
}

li:after {
    content: "";
    display: block;
    height: 1px;
    margin: 20px auto;
    background: rgba(34, 34, 34, .1);
}

#contact {
	position: relative;
	width: 100%;
	color: #222;
	background: #F6F1EB;
    overflow: auto;
}

#contact-content {
	position: relative;
	width: 60%;
	margin: 10% auto 0 auto;
}

h3 {  
	text-align: center;
    font-size: 48px;
    font-family: Ogg-Roman, helvetica, sans-serif;
    line-height: 66px;
	margin-bottom: 10%;
}

/* CONTACT */

#contact-form {
	margin-bottom: 20%;
}

input, textarea {
	display: block;
	width: 100%;
	margin: 0px auto;
	overflow: hidden;
	text-align: left;
	background: none;
	padding: 15px;
	margin-bottom: 30px;
	font: inherit;
	font-size: 16px;
	font-family: Graphik-Regular, helvetica, sans-serif;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid rgba(34, 34, 34, .1);
	line-height: 24px;
}

textarea {
    height: 50px;
}

input:focus::-webkit-input-placeholder { color: rgba(34, 34, 34, .4); }
input:focus::-moz-placeholder { color: rgba(34, 34, 34, .4); }
input:focus:-ms-input-placeholder { color: rgba(34, 34, 34, .4); }

textarea:focus::-webkit-input-placeholder { color: rgba(34, 34, 34, .4); }
textarea:focus::-moz-placeholder { color: rgba(34, 34, 34, .4); }
textarea:focus:-ms-input-placeholder { color: rgba(34, 34, 34, .4); }


#contact-form a.submit {
    cursor: pointer;
    display: block;
    padding: 20px 40px;
    margin: 10% auto;
    text-align: center;
    vertical-align: middle;
    width: 120px;
    border: none;
    background: #FBF9F7;
    font-size: 12px;
    font-family: Graphik-Regular, helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

#contact-form a.submit:hover {
    background: rgba(255, 255, 255, .4);
}

#contact-form a.submit:active {
    background: #eaeaea;
}

#response {
	margin-top: 20px;
	font-size: 14px;
	line-height: 18px;
}



/* FOOTER */

#footer {
	width: 100%;
	margin: 0 auto;
	font-family: Graphik-Regular, helvetica, sans-serif;
	overflow: hidden;
	background: #F6F1EB;
	border-top: 1px solid rgba(34, 34, 34, .1);
}

#footer-copyright {
	text-align: center;
    color: #222;
    font-size: 12px;
    font-family: Graphik-Regular, helvetica, sans-serif;
	margin: 5% 0 5% 0;
	text-transform: uppercase;
	letter-spacing: 2px;
}



/* QUERIES */

@media (max-width: 2200px) {

}

@media (max-width: 1400px) {

}

@media (max-width: 900px) {

h1 {  
    font-size: 38px;
	line-height: 48px;
}

li {  
    font-size: 38px;
}

h3 {  
    font-size: 38px;
	line-height: 48px;
}

}

@media (max-width: 600px) {

.name {
    font-size: 22px;
}

#intro-content {
	width: 80%;
	margin: 35% auto 35% auto;
}

h1 {  
    font-size: 28px;
	margin-bottom: 4%;
	line-height: 38px;
}

#services-content {
	width: 78%;
	margin: 20% 8% 10% 14%;
}

h2 {  
    font-size: 11px;
	margin-bottom: 10%;
}

li {  
    font-size: 28px;
}

#contact-content {
	width: 80%;
	margin: 20% auto 30% auto;
}

h3 {  
    font-size: 28px;
	line-height: 38px;
}

#contact-form a.submit {
    margin-top: 15%;
    width: 72%;
}

	
}