@font-face {
    font-family: 'gothamblack';
    src: url('../fonts/gotham-black-webfont.woff2') format('woff2'),
        url('../fonts/gotham-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gothambold';
    src: url('../fonts/gothambold-webfont.woff2') format('woff2'),
        url('../fonts/gothambold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'gothambook';
    src: url('../fonts/gothambook-webfont.woff2') format('woff2'),
        url('../fonts/othambook-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gothamlight';
    src: url('../fonts/gothamlight-webfont.woff2') format('woff2'),
        url('../fonts/gothamlight-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0 auto;
  min-width: 1100px;
  font-size: 13px;
  font-family: 'gothambook';
  text-rendering: optimizeLegibility;
}
div, input, textarea, section, img, button, select, figure, figcaption, form, label {
  box-sizing: border-box;
}
/* page loader **********************************************************************************/
.loader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	text-align: center;
	z-index: 99999 !important;
	opacity: 1;
	filter: alpha(opacity=100);
}
.loader-img {
	position: relative;
	width: auto;
  text-align: center !important;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
.loader-img img {
  max-width: none;
  height: 180px;
  margin-left: auto;
  margin-right: auto;
  animation-name: scaleUp;
  animation-duration: 3s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
@keyframes scaleUp {
  100% {
    height: 250px;
  }
}
section {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
}
button, input, textarea, a {
  font-family: 'gothambook';
}
button, input[type=submit], input[type=reset] {
  background-color: #f09c20;
  color: #fff;
  padding: 15px 30px;
  border: none;
  font-size: 1.2em;
  font-family: 'gothambold';
  border-radius: 3px;
  min-width: 200px;
  border: none;
  display: block;
  margin: 0 auto;
}
button:hover, input[type=submit]:hover, input[type=reset]:hover {
  opacity: .8;
  cursor: pointer;
}
input[type=text], input[type=tel],input[type=email], textarea {
  border: none;
  background-color: #fff;
  padding: 10px;
  width: 80%;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  min-height: 30px;
  font-family: 'gothambook';
  font-size: 13px;
}
textarea {
  min-height: 150px;
}
p, li {
  line-height: 150%;
}
h1, h2, h3, h4, h5 ,h6 {
  font-family: 'gothambold';
  text-transform: uppercase;
}
.left, .right {
  position: relative;
  display: inline-block;
  height: 100vh;
  width: 50%;
  padding: 50px 5%;
  text-align: center;
  overflow: hidden;
}
.left {
  background-color: #fff;
}
.right {
  position: absolute;
  right: -50%;
  top: 0;
}
.right .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.right form {
  position: relative;
  width: 80%;
  left: 200%;
  background-color: #f1f1f1;
  padding: 40px 20px;
  top: 15%;
  overflow: hidden;
  z-index: 1;
}
.right form > div {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.right form > div > div {
  position: relative;
  width: 100%;
}
h2 {
  font-size: 2.5em;
  margin-top: 0;
}
.logo-wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.logo {
  width: 15%;
  height: auto;
  position: relative;
  opacity: 0;
}
.animateLogo {
  animation-name: flip;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  animation-delay: .7s;
}
@keyframes flip {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    width: 50%;
    opacity: 1;
  }
}
.scaleUp {
  animation-name: scaleBG;
  animation-duration: 3s;
  animation-fill-mode: forwards;
}
@keyframes scaleBG {
  100% {
    transform:  scale(1.21);
  }
}

/* Smaller Screen Desktop 1376 wide */
@media screen and (max-width: 1376px) {
  .right form {
    top: 10%;
  }
}
