@font-face {
  font-family: "Cera Pro Thin";
  src: url("../fonts/CeraPro-Thin.eot");
  src: url("../fonts/CeraPro-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/CeraPro-Thin.woff") format("woff"), url("../fonts/CeraPro-Thin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro Light";
  src: url("../fonts/CeraPro-Light.eot");
  src: url("../fonts/CeraPro-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/CeraPro-Light.woff") format("woff"), url("../fonts/CeraPro-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro Regular";
  src: url("../fonts/CeraPro-Regular.eot");
  src: url("../fonts/CeraPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/CeraPro-Regular.woff") format("woff"), url("../fonts/CeraPro-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro Medium";
  src: url("../fonts/CeraPro-Medium.eot");
  src: url("../fonts/CeraPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/CeraPro-Medium.woff") format("woff"), url("../fonts/CeraPro-Medium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro Bold";
  src: url("../fonts/CeraPro-Bold.eot");
  src: url("../fonts/CeraPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/CeraPro-Bold.woff") format("woff"), url("../fonts/CeraPro-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Cera Pro Black";
  src: url("../fonts/CeraPro-Black.eot");
  src: url("../fonts/CeraPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/CeraPro-Black.woff") format("woff"), url("../fonts/CeraPro-Black.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* Variables */
/* Basic */
#fader {
  position: fixed;
  top: 0;
  lefts: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
  background: #FFFFFF;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#fader.fade-out {
  opacity: 0;
  animation-name: fade-out;
}

#fader.fade-in {
  opacity: 1;
  animation-name: fade-in;
}

html {
  max-width: 100%;
}

body, input, select, textarea {
  color: #363636;
  font-size: 16px;
  text-rendering: optimizeLegibility;
}

body {
  background: #ECEFF6;
}

a, p {
  font-size: 1em;
}

strong, b {
  font-family: "Cera Pro Black";
  font-weight: 900;
}

alt {
  font-family: "Cera Pro Regular";
  font-weight: 400;
}

p, ul, ol, dl, table, blockquote {
  margin: 0 0 1em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Cera Pro Thin", "Lato", sans-serif;
  font-weight: 300;
  color: #363636;
  line-height: 1.75em;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
  border: 0;
}

.logo {
  text-align: center;
  margin: 0.5em;
  float: left;
}

#logo {
  font-family: "Cera Pro Regular", "Lato", sans-serif;
  font-size: 1.5rem;
  color: #363636;
  letter-spacing: 3px;
  text-align: center;
  position: relative;
  top: 3px;
  left: 3px;
}

.btn {
  font-family: "Cera Pro Medium", "Lato", sans-serif;
  font-size: 1rem;
  margin: 1em;
  color: transparent;
  letter-spacing: 2px;
  border-style: solid;
  border-width: 4px;
  border-image: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  border-image-source: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  border-image-slice: 1;
  background: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  -webkit-background-clip: text;
  line-height: 1em;
  text-fill-color: transparent;
}
.btn:hover {
  background: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  transition: all 0.8s ease;
}
.btn:focus {
  box-shadow: none;
  background: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  transition: all 0.8s ease;
}

.row {
  overflow: hidden;
  max-width: 100%;
  margin: 0;
}

a {
  font-family: "Cera Pro Medium", "Lato", sans-serif;
  font-size: 1rem;
  color: #363636;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  font-style: normal;
  border-bottom: none;
}
a:hover {
  text-decoration: none;
  color: dimgray;
}

p {
  font-family: "Cera Pro Light", "Lato", sans-serif;
  font-size: 1rem;
  color: #363636;
  letter-spacing: 0.65px;
  line-height: 1.125rem;
}

h1 {
  color: #363636;
  font-size: 2.5rem;
  letter-spacing: 1.67px;
}

h2 {
  color: #363636;
  font-size: 1.5rem;
  letter-spacing: 1px;
  line-height: 1em;
}

.form-field, .textarea {
  font-family: "Cera Pro Thin", "Lato", sans-serif;
  font-size: 0.875rem;
  color: #363636;
  letter-spacing: 0.65px;
  line-height: 1rem;
  display: block;
  width: 100%;
  padding: 8px 16px;
  border-radius: 6px;
  -webkit-appearance: none;
  border: 1px solid #e0e7f4;
  background: #fff;
  transition: border 0.3s ease;
  margin-bottom: 0.5rem;
}
.form-field::placeholder, .textarea::placeholder {
  color: #CBD1DC;
}
.form-field:focus, .textarea:focus {
  outline: none;
  border-color: #E95400;
}
.form-field:focus::placeholder, .textarea:focus::placeholder {
  color: #363636;
}

.form-group {
  font-family: "Cera Pro Light", "Lato", sans-serif;
  font-size: 0.875rem;
  color: #363636;
  letter-spacing: 0.65px;
  line-height: 2rem;
}
.form-group .btn {
  color: #E95400;
}

.textarea {
  width: 100%;
  height: 150px;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */
#content {
  width: 100%;
  padding-top: 5%;
  min-height: 75vh;
  position: absolute;
  right: 0;
  top: 50px;
  overflow: hidden;
}

#content.active {
  width: calc(100% - 250px);
}

.hero_computer {
  right: 0;
  position: absolute;
  float: right;
  max-height: 471px;
  overflow: hidden;
}

.hero_contact {
  right: 0;
  bottom: 50px;
  position: absolute;
  float: right;
  max-height: 471px;
  overflow: hidden;
}

.hero_graphic_computer {
  position: absolute;
  right: 0;
  top: -2%;
}

.hero_graphic_contact {
  position: absolute;
  right: -20%;
  bottom: 60px;
}

.infographic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.infographic_svg {
  height: 100%;
  padding: 2em;
  display: inline;
}

.infographic_svg_mobile {
  height: 100%;
  padding: 2em;
  display: none;
}

.container_one {
  height: 461px;
  padding-top: 15vh;
}
.container_one .copy {
  height: 100%;
  width: 100%;
}
.container_one .graphic {
  height: 100%;
}
.container_one h2 {
  padding-bottom: 1em;
}

.container_two {
  height: 100%;
  background-color: #FFFFFF;
  padding: 40px;
  width: 100%;
  z-index: 100;
}
.container_two p {
  max-width: 60%;
  margin: 0 auto;
  padding-bottom: 1em;
}

footer {
  background-color: #ECEFF6;
  position: relative;
  height: 50px;
  bottom: 0;
  width: 100%;
}
footer p {
  font-size: 0.8em;
  padding-left: 1.5em;
  margin: 0;
}

.social_icons {
  padding-right: 1.5em;
}

.social_icon {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin-left: 1em;
  margin-bottom: 15px;
  width: 16px;
  height: 16px;
  fill: #363636;
  cursor: pointer;
}
.social_icon:hover {
  fill: #E95400;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
  .hero_graphic_computer {
    left: 180px;
    top: 20px;
  }

  .container_one {
    padding: 0;
  }
  .container_one .copy {
    width: 70%;
  }
  .container_one h2 {
    padding-top: 15%;
  }

  .container_two p {
    max-width: 80%;
  }

  .container {
    margin-left: 5%;
  }

  .infographic_svg {
    display: none;
  }

  .infographic_svg_mobile {
    display: inline;
    padding: 1em 0;
  }

  .form-group {
    max-width: 90%;
  }

  .hero_graphic_contact {
    display: none;
  }

  footer p {
    font-size: 0.7em;
  }
}
.navbar {
  display: block;
}

.PrimaryNav {
  list-style: none;
  max-width: 720px;
  padding: 0;
  width: 200px;
  z-index: 100000;
  bottom: 5px;
}

.Nav-item {
  background: transparent;
  display: block;
  margin: 0;
  padding: 0;
  width: 50%;
  text-align: center;
}
.Nav-item:first-child {
  border-radius: 3px 0 0 3px;
}
.Nav-item:last-child {
  border-radius: 0 3px 3px 0;
}
.Nav-item.is-active a {
  color: dimgray;
}
.Nav-item a {
  color: #363636;
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  text-decoration: none;
}
.Nav-item a:hover {
  color: dimgray;
}

.with-indicator {
  position: relative;
  z-index: 0;
}
.with-indicator .Nav-item:last-child:before, .with-indicator .Nav-item:last-child:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  transition: left 1.3s ease;
}
.with-indicator .Nav-item:last-child:after {
  background: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  height: 3px;
  top: 40px;
  margin-left: 10%;
  width: 30%;
  z-index: -1;
}
.with-indicator .Nav-item:nth-child(1).is-active ~ .Nav-item:last-child:after {
  left: 0%;
}
.with-indicator .Nav-item:nth-child(1).is-active ~ .Nav-item:last-child:before {
  left: 25%;
}
.with-indicator .Nav-item:nth-child(1):hover ~ .Nav-item:last-child:after {
  left: 0% !important;
}
.with-indicator .Nav-item:nth-child(1):hover ~ .Nav-item:last-child:before {
  left: 25% !important;
}
.with-indicator .Nav-item:last-child:hover:before, .with-indicator .Nav-item:last-child.is-active:before {
  left: 75% !important;
}
.with-indicator .Nav-item:last-child:hover:after, .with-indicator .Nav-item:last-child.is-active:after {
  left: 50% !important;
}

/* ---------------------------------------------------
    MOBILE NAVBAR
----------------------------------------------------- */
.menu__toggler {
  position: absolute;
  top: 40px;
  left: 40px;
  z-index: 999;
  height: 28px;
  width: 28px;
  outline: none;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.menu__toggler span,
.menu__toggler span::before,
.menu__toggler span::after {
  position: absolute;
  content: "";
  width: 28px;
  height: 2.5px;
  background: #363636;
  border-radius: 20px;
  transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu__toggler span::before {
  top: -8px;
}
.menu__toggler span::after {
  top: 8px;
}
.menu__toggler.active > span {
  background: transparent;
}
.menu__toggler.active > span::before, .menu__toggler.active > span::after {
  background: dimgray;
  top: 0px;
}
.menu__toggler.active > span::before {
  transform: rotate(-225deg);
}
.menu__toggler.active > span::after {
  transform: rotate(225deg);
}

/*
 * SLIDING MENU PANEL
 */
.menu {
  position: absolute;
  left: -200px;
  z-index: 998;
  color: #363636;
  background: #FFFFFF;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  width: 200px;
  height: 100%;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 300ms left cubic-bezier(0.77, 0, 0.175, 1);
}
.menu.active {
  left: 0;
}
.menu p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.menu__toggler {
  display: none;
}

.side_nav .Nav-item a:hover:after, .side_nav .Nav-item a.is-active:after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  background: linear-gradient(90deg, #FFD301 0%, #E95400 100%);
  height: 3px;
  margin-left: 10%;
  width: 30%;
  z-index: -1;
}

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 768px) {
  .menu__toggler {
    display: inline-block;
  }

  .logo {
    float: right;
  }
}

/*# sourceMappingURL=theme.css.map */
