@import './fonts.css';
@font-face {
  font-family: "Viola";
  src: url("../VIOLA.ttf") format("truetype");
}
html {
  height: 100%;
}

.unvalidated {
  color: #ED4D6E !important;
  border-color: #ED4D6E !important;
}
.unvalidated + span {
  color: #ED4D6E !important;
}

#validation-icon {
  color: #E7AF36;
  margin-right: 6px;
  transform: scale(1.3);
}

.button-light {
  color: #F8F8F8;
  box-shadow: 1px 1px 0, 2px 2px 0, 3px 3px 0, 4px 4px 0;
  border: 2px solid #F8F8F8;
  background-color: transparent;
  margin-left: -4px;
}
.button-light:active {
  margin-top: 4px;
  margin-left: 0px;
  box-shadow: 0 0 0 0;
}

.button-accent {
  box-shadow: 1px 1px 0 #E7AF36, 2px 2px 0 #E7AF36, 3px 3px 0 #E7AF36, 4px 4px 0 #E7AF36;
  border: 2px solid #F8F8F8;
  background-color: transparent;
  color: #F8F8F8;
  margin-left: -4px;
}
.button-accent:active {
  margin-top: 4px;
  margin-left: 0px;
  box-shadow: 0 0 0 0;
}

.button-dark {
  box-shadow: 1px 1px 0 #272727, 2px 2px 0 #272727, 3px 3px 0 #272727, 4px 4px 0 #272727;
  background-color: #F8F8F8;
  border: 2px solid #272727;
  color: #272727;
  margin-left: -4px;
}
.button-dark:active {
  margin-top: 4px;
  margin-left: 0px;
  box-shadow: 0 0 0 0;
}

body {
  margin: 0;
  min-height: 100%;
  width: 100vw;
  font-family: "Viola", sans-serif;
  color: #F8F8F8;
  background-image: linear-gradient(#272727 1px, transparent 1px), linear-gradient(to right, #272727 1px, #141414 1px);
  background-size: 42px 42px;
  background-attachment: fixed;
}
body .loader-container {
  align-items: center;
  justify-content: center;
  display: flex;
}
body .loader-container .loader-spinner {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: solid 2px #F8F8F8;
  border-top: solid 2px #272727;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body .float {
  position: fixed;
  height: 50px;
  width: 50px;
  background-color: #141414;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
body .float.circle-float {
  border-radius: 25px;
}
body .float.transparent-float {
  background-color: transparent;
  box-shadow: none;
}
body .float.scroll {
  z-index: 2;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  height: 63px;
  width: 36px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.3s ease-in;
}
body .float.scroll.hidden-scroll {
  height: 0;
  opacity: 0;
}
body .float.scroll .scroll-outline {
  border: 2px solid #F8F8F8;
  box-sizing: border-box;
  height: 63px;
  width: 36px;
  border-radius: 18px;
  transform: scale(0.7);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
body .float.scroll .scroll-outline .scroll-circle {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background-color: #F8F8F8;
  transform: translateY(10px);
  -webkit-animation: scrolldown 2.5s infinite;
          animation: scrolldown 2.5s infinite;
}
@-webkit-keyframes scrolldown {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(47px);
  }
  100% {
    opacity: 0;
  }
}
@keyframes scrolldown {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translateY(47px);
  }
  100% {
    opacity: 0;
  }
}
body .float.logo {
  top: 15px;
  left: 15px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .float.logo:hover {
  cursor: pointer;
}
body .float.logo .logo-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
body .float.logo .logo-text span {
  color: #E7AF36;
  font-size: 40px;
  font-weight: 800;
  margin-left: 5px;
}
body .float.toggle-nav-cont {
  z-index: 3;
  top: 15px;
  right: 15px;
  transition: all 0.6s ease-in;
}
body .float.toggle-nav-cont.on {
  scale: 100;
}
body .float.toggle-nav {
  z-index: 5;
  top: 15px;
  right: 15px;
}
body .float.toggle-nav.on span:nth-child(1) {
  -webkit-animation: span-first-on 0.5s ease-in-out;
          animation: span-first-on 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav.on span:nth-child(2) {
  -webkit-animation: span-second-on 0.5s ease-in-out;
          animation: span-second-on 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav.on span:nth-child(3) {
  -webkit-animation: span-third-on 0.5s ease-in-out;
          animation: span-third-on 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav span {
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  left: 50%;
  background: #F8F8F8;
  border-radius: 1px;
  overflow: hidden;
  transition: all 0.3s linear;
}
body .float.toggle-nav span:nth-child(1) {
  -webkit-animation: span-first-off 0.5s ease-in-out;
          animation: span-first-off 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav span:nth-child(2) {
  -webkit-animation: span-second-off 0.5s ease-in-out;
          animation: span-second-off 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
body .float.toggle-nav span:nth-child(3) {
  -webkit-animation: span-third-off 0.5s ease-in-out;
          animation: span-third-off 0.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes span-first-on {
  0% {
    transform: translate(-50%, -300%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@keyframes span-first-on {
  0% {
    transform: translate(-50%, -300%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
@-webkit-keyframes span-first-off {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -300%);
  }
}
@keyframes span-first-off {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -300%);
  }
}
@-webkit-keyframes span-second-on {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-150%, -50%) scale(0);
  }
}
@keyframes span-second-on {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-150%, -50%) scale(0);
  }
}
@-webkit-keyframes span-second-off {
  0% {
    transform: translate(-150%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@keyframes span-second-off {
  0% {
    transform: translate(-150%, -50%) scale(0);
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
@-webkit-keyframes span-third-on {
  0% {
    transform: translate(-50%, 200%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes span-third-on {
  0% {
    transform: translate(-50%, 200%);
  }
  30% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@-webkit-keyframes span-third-off {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 200%);
  }
}
@keyframes span-third-off {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, 200%);
  }
}
body .float.toggle-nav:hover {
  cursor: pointer;
}
body nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 4;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s 0.5s, opacity 0.3s linear 0s;
}
body nav.on {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.5s linear 0.25s;
}
body nav a {
  font-family: "Viola", sans-serif;
  color: #F8F8F8;
  padding: 0;
  margin: 5vh;
  position: relative;
}
body nav a::before, body nav a::after {
  content: "";
  background: #E7AF36;
  position: absolute;
  top: calc(50% - 1px);
  height: 2px;
  width: 0;
}
body nav a::before {
  left: -5%;
}
body nav a::after {
  right: -5%;
  transition: width 500ms ease;
}
body nav a:hover, body nav a.active {
  color: #E7AF36;
}
body nav a:hover::before, body nav a.active::before {
  width: 110%;
  transition: width 500ms ease;
}
body nav a:hover::after, body nav a.active::after {
  width: 110%;
  background: transparent;
  transition: 0;
}
body a {
  transition: 0.3s;
  text-decoration: none;
}
body h2 {
  text-align: center;
  font-weight: bold;
  margin: 0;
  line-height: 0.9;
}
body h3 {
  text-align: center;
  font-weight: 300;
  font-family: "Lato", sans-serif;
}
body p {
  padding: 0;
  font-size: 18px;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
}
body .container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 15vmin;
}
body .container .left {
  height: 100vh;
}
body .container .right {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
body .container .right .contact {
  width: 100%;
  margin-top: 15vh;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
body .container .right .contact .contact-title {
  width: 100%;
  padding: 14px 0;
  box-sizing: border-box;
  margin-bottom: 3%;
}
body .container .right .contact .contact-title h3 {
  margin-top: 20px;
  margin-bottom: 0;
}
body .container .right .contact .contact-form {
  width: 90%;
  margin-top: 3vh;
}
body .container .right .contact .contact-form form {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .container .right .contact .contact-form form .upper-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
body .container .right .contact .contact-form form .upper-row .input-box {
  width: 100%;
}
body .container .right .contact .contact-form form .input-box {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
body .container .right .contact .contact-form form .input-box input, body .container .right .contact .contact-form form .input-box textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 2px solid #F8F8F8;
  background-color: transparent;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
  color: #F8F8F8;
}
body .container .right .contact .contact-form form .input-box input:not(:-moz-placeholder-shown) ~ span, body .container .right .contact .contact-form form .input-box textarea:not(:-moz-placeholder-shown) ~ span {
  background-color: #F8F8F8;
  color: #272727;
  padding: 0 8px;
}
body .container .right .contact .contact-form form .input-box input:not(:-ms-input-placeholder) ~ span, body .container .right .contact .contact-form form .input-box textarea:not(:-ms-input-placeholder) ~ span {
  background-color: #F8F8F8;
  color: #272727;
  padding: 0 8px;
}
body .container .right .contact .contact-form form .input-box input:not(:placeholder-shown) ~ span, body .container .right .contact .contact-form form .input-box input:focus ~ span, body .container .right .contact .contact-form form .input-box textarea:not(:placeholder-shown) ~ span, body .container .right .contact .contact-form form .input-box textarea:focus ~ span {
  background-color: #F8F8F8;
  color: #272727;
  padding: 0 8px;
}
body .container .right .contact .contact-form form .input-box input:not(:-moz-placeholder-shown), body .container .right .contact .contact-form form .input-box textarea:not(:-moz-placeholder-shown) {
  background-color: transparent;
}
body .container .right .contact .contact-form form .input-box input:not(:-ms-input-placeholder), body .container .right .contact .contact-form form .input-box textarea:not(:-ms-input-placeholder) {
  background-color: transparent;
}
body .container .right .contact .contact-form form .input-box input:not(:placeholder-shown), body .container .right .contact .contact-form form .input-box input:focus, body .container .right .contact .contact-form form .input-box textarea:not(:placeholder-shown), body .container .right .contact .contact-form form .input-box textarea:focus {
  background-color: transparent;
}
body .container .right .contact .contact-form form .input-box span {
  position: absolute;
  top: 11px;
  left: 2px;
  padding: 0 15px;
  text-transform: uppercase;
  transition: 0.3s;
  pointer-events: none;
  color: #F8F8F8;
}
body .container .right .contact .contact-form form .check-box {
  font-size: 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
body .container .right .contact .contact-form form .check-box:hover {
  cursor: pointer;
}
body .container .right .contact .contact-form form .check-box input {
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #F8F8F8;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
}
body .container .right .contact .contact-form form .check-box input:hover {
  cursor: pointer;
}
body .container .right .contact .contact-form form .check-box input:checked {
  position: relative;
}
body .container .right .contact .contact-form form .check-box input:checked:before {
  position: absolute;
  top: -1px;
  content: "";
  width: 19px;
  height: 2px;
  transform: rotate(45deg);
  transform-origin: top left;
  background-color: #F8F8F8;
}
body .container .right .contact .contact-form form .check-box input:checked:after {
  position: absolute;
  top: -1px;
  content: "";
  width: 19px;
  height: 2px;
  transform: rotate(-45deg);
  transform-origin: top right;
  background-color: #F8F8F8;
  left: -7px;
}
body .container .right .contact .contact-form form .check-box label {
  font-family: "Lato", sans-serif;
}
body .container .right .contact .contact-form form .check-box label:hover {
  cursor: pointer;
}
body .container .right .contact .contact-low-row {
  width: 90%;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
body .container .right .contact .contact-low-row a {
  width: 43vw;
  height: 43.5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
body .container .right .contact .contact-low-row a:hover {
  cursor: pointer;
}
body .container .right .contact .contact-low-row a p {
  margin: 0;
}
body .container .right .contact .contact-low-row a.contact-submit {
  width: 90vw;
  border-color: #E7AF36;
  margin-bottom: 4vw;
}
body .container .right .info {
  width: 90%;
  margin-top: 10vmax;
  margin-bottom: 10vmax;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
body .container .right .info .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10vmax;
  font-weight: 300;
}
body .container .right .info .col .col-content {
  text-align: center;
}
body .container .right .info .col.col3 {
  margin: 0;
}
body .container .right .info .col .col-title {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-family: "Viola", sans-serif;
}
body .container .right .info .col p {
  font-size: 16px;
  margin: 2px 0px;
  font-family: "Lato", sans-serif;
}
body .container .right .info .col p a {
  color: #F8F8F8;
}
body .container .right .info .col p span {
  text-decoration: underline;
}
body footer {
  color: #F8F8F8;
  width: 100%;
  padding-bottom: 50px;
}
body footer .footer-banner {
  width: 100%;
  position: relative;
  padding: 20px 0 30px 0;
  border-bottom: 2px solid #F8F8F8;
}
body footer .footer-banner .banner-content {
  position: relative;
  left: 15%;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
body footer .footer-banner h4 a {
  text-align: center;
  margin: 0;
  padding: 24px 0;
  text-transform: uppercase;
  color: #F8F8F8;
  position: relative;
}
body footer .footer-banner h4 a::before, body footer .footer-banner h4 a::after {
  content: "";
  background: #E7AF36;
  position: absolute;
  top: calc(50% - 0.5px);
  height: 1px;
  width: 0;
}
body footer .footer-banner h4 a::before {
  left: -5%;
}
body footer .footer-banner h4 a::after {
  right: -5%;
  transition: width 500ms ease;
}
body footer .footer-banner h4 a:hover, body footer .footer-banner h4 a.active {
  color: #E7AF36;
}
body footer .footer-banner h4 a:hover::before, body footer .footer-banner h4 a.active::before {
  width: 110%;
  transition: width 500ms ease;
}
body footer .footer-banner h4 a:hover::after, body footer .footer-banner h4 a.active::after {
  width: 110%;
  background: transparent;
  transition: 0;
}
body footer .footer-content {
  position: relative;
  left: 15%;
  width: 70%;
}
body footer .footer-content span {
  font-family: "Lato", sans-serif;
}
body footer .footer-content .footer-col-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Viola", sans-serif;
}
body footer .footer-content .footer-cols {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 32px;
  font-weight: 300;
}
body footer .footer-content .footer-cols a {
  margin-bottom: 15px;
  color: #F8F8F8;
  font-family: "Lato", sans-serif;
}
body footer .footer-content .footer-cols a:hover {
  cursor: pointer;
  color: #E7AF36;
}
body footer .footer-content .footer-cols .col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 16px;
}
body footer .footer-content .footer-cols .col i {
  margin-right: 8px;
}
body footer .footer-content .footer-cols .footer-col1 {
  margin-bottom: 10vmax;
}
body footer .footer-content .footer-cols .footer-col1 .col:first-of-type {
  margin-bottom: 4vmax;
}
body footer .footer-content .footer-cols .footer-col1 .row {
  display: none;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
}
body footer .footer-content .footer-cols .footer-col:first-of-type {
  margin-right: 10vmax;
  margin-bottom: 10vmax;
}

@media only screen and (min-width: 600px) and (orientation: portrait) {
  body .float {
    height: 60px;
    width: 60px;
  }
  body .float.circle-float {
    border-radius: 30px;
  }
  body .float.scroll {
    bottom: 20px;
    height: 70px;
    width: 40px;
    border-radius: 20px;
  }
  body .float.scroll .scroll-outline {
    height: 70px;
    width: 40px;
    border-radius: 20px;
  }
  body .float.logo {
    top: 25px;
    left: 25px;
    min-width: 60px;
  }
  body .float.toggle-nav-cont {
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav {
    z-index: 5;
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav span {
    width: 40px;
  }
}
@media only screen and (min-width: 750px) and (min-height: 600px) and (orientation: landscape) {
  body .float {
    height: 60px;
    width: 60px;
  }
  body .float.circle-float {
    border-radius: 30px;
  }
  body .float.scroll {
    bottom: 20px;
    height: 70px;
    width: 40px;
    border-radius: 20px;
  }
  body .float.scroll .scroll-outline {
    height: 70px;
    width: 40px;
    border-radius: 20px;
  }
  body .float.logo {
    top: 25px;
    left: 25px;
    min-width: 60px;
  }
  body .float.toggle-nav-cont {
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav {
    z-index: 5;
    top: 25px;
    right: 25px;
  }
  body .float.toggle-nav span {
    width: 40px;
  }
}
@media only screen and (min-width: 1000px) and (min-height: 600px) and (orientation: landscape) {
  body .float.logo {
    left: 30px;
  }
  body .float.toggle-nav-cont {
    right: 30px;
  }
  body .float.toggle-nav {
    right: 30px;
  }
}
@media only screen and (min-height: 800px) {
  body .container .right .contact {
    margin-top: 10vh;
  }
}
@media only screen and (min-width: 800px) {
  body footer .footer-banner .banner-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (min-width: 944px) {
  body footer .footer-banner .banner-content {
    width: 90%;
    left: 5%;
  }
  body footer .footer-content {
    width: 90%;
    left: 5%;
  }
  body footer .footer-content .footer-cols .footer-col1 {
    margin-bottom: 0;
    width: 35%;
  }
  body footer .footer-content .footer-cols .footer-col1 .col:first-of-type {
    margin-bottom: 4vmax;
  }
  body footer .footer-content .footer-cols .footer-col1 .col {
    display: none;
  }
  body footer .footer-content .footer-cols .footer-col1 .row {
    display: flex;
  }
  body footer .footer-content .footer-cols .footer-col {
    margin-bottom: 0;
  }
  body footer .footer-content .footer-cols .footer-col:first-of-type {
    margin-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1000px) {
  body footer .footer-banner .banner-content {
    width: 80%;
    left: 10%;
  }
  body footer .footer-content {
    width: 80%;
    left: 10%;
  }
  body footer .footer-content .footer-cols .footer-col1 {
    width: 40%;
  }
  body footer .footer-content .footer-cols .footer-col1 .col:first-of-type {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 1200px) {
  body footer .footer-banner .banner-content {
    width: 70%;
    left: 15%;
  }
  body footer .footer-banner a {
    padding: 12px 0;
  }
  body footer .footer-content {
    width: 70%;
    left: 15%;
  }
}
@media only screen and (orientation: landscape), only screen and (min-width: 900px) {
  body .container {
    flex-direction: row;
  }
  body .container .left {
    width: 40vw;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0;
    left: 0;
  }
  body .container .right {
    width: 60vw;
  }
  body .container .right .contact .contact-low-row a {
    width: 25vw;
  }
  body .container .right .contact .contact-low-row a.contact-submit {
    width: 54vw;
    margin-bottom: 2vw;
  }
}
@media only screen and (orientation: portrait) and (max-width: 900px) {
  body .container {
    flex-direction: column-reverse;
  }
  body .container .left {
    width: 100vw;
    position: initial;
    top: initial;
    left: initial;
  }
  body .container .right {
    width: 100vw;
  }
}
@media only screen and (min-width: 1300px) {
  body .container .right .info {
    width: 90%;
    height: 100vh;
    margin: 0;
    transform: translateY(50%);
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
  body .container .right .info .col {
    align-items: flex-start;
    height: 120px;
    margin: 0;
  }
  body .container .right .info .col .col-content {
    text-align: left;
  }
  body .container .right .info .col.col2 {
    align-items: center;
  }
  body .container .right .info .col.col2 .col-content {
    text-align: center;
  }
  body .container .right .info .col.col3 {
    align-items: flex-end;
  }
  body .container .right .info .col .col-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: "Viola", sans-serif;
  }
  body .container .right .info .col p {
    font-size: 14px;
    margin: 2px 0px;
  }
  body .container .right .info .col p span {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 1400px) {
  body .container .right .contact .contact-form form .upper-row .input-box {
    width: calc(50% - 17px);
  }
  body .container .right .contact .contact-form form .input-box {
    margin-bottom: 34px;
  }
  body .container .right .contact .contact-form form .input-box input, body .container .right .contact .contact-form form .input-box textarea {
    padding: 15px;
  }
  body .container .right .contact .contact-form form .input-box span {
    top: 13px;
  }
  body .container .right .contact .contact-low-row {
    margin-top: 60px;
  }
  body .container .right .contact .contact-low-row a {
    width: 25%;
  }
  body .container .right .contact .contact-low-row a.contact-submit {
    width: 40%;
  }
}/*# sourceMappingURL=contact.css.map */