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

.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 {
  box-shadow: 1px 1px 0 #F8F8F8, 2px 2px 0 #F8F8F8, 3px 3px 0 #F8F8F8, 4px 4px 0 #F8F8F8;
  border: 2px solid #F8F8F8;
  background-color: #272727;
  color: #F8F8F8;
  margin-left: -4px;
}
.button-light:active {
  margin-top: 4px;
  margin-left: 0px;
  box-shadow: 0 0 0 0;
}

.button-dark {
  color: #272727;
  box-shadow: 1px 1px 0, 2px 2px 0, 3px 3px 0, 4px 4px 0;
  background-color: #F8F8F8;
  border: 2px solid;
  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: #272727;
  overflow: visible;
  background-color: #141414;
  background-image: linear-gradient(#272727 1px, transparent 1px), linear-gradient(to right, #272727 1px, #141414 1px);
  background-size: 42px 42px;
}
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 transparent;
  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 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 .custom-cursor {
  position: absolute;
  z-index: 6;
  width: 140px;
  height: 50px;
  border-radius: 6px;
  background-color: #272727;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 1;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  will-change: top left;
}
body .custom-cursor span {
  font-size: 24px;
  font-weight: 200;
  color: #F8F8F8;
}
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 .home {
  position: static;
  display: block;
  height: 200vh;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-box-align: start;
  box-sizing: border-box;
}
body .home .box {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .home .box._2 {
  z-index: -1;
  opacity: 1;
}
body .home .box .left {
  width: 50%;
  height: 100%;
  flex: 0 auto;
  background-color: #272727;
  opacity: 1;
  background-image: linear-gradient(#F8F8F8 1px, transparent 1px), linear-gradient(to right, #F8F8F8 1px, #272727 1px);
  background-size: 42px 42px;
  background-attachment: fixed;
  z-index: 0;
}
body .home .box .right {
  width: 50%;
  height: 100%;
  flex: 0 auto;
  background-color: #F8F8F8;
  opacity: 1;
  background-image: linear-gradient(#272727 1px, transparent 1px), linear-gradient(to right, #272727 1px, #F8F8F8 1px);
  background-size: 42px 42px;
  background-attachment: fixed;
  transform: translateY(0);
  z-index: 0;
}
body .home .box .info {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100dvh;
  transition: all 0.4s ease-out, z-index 0s 0.4s ease-out;
  cursor: initial;
  overflow: hidden;
  z-index: 0;
}
body .home .box .info.show {
  z-index: 4;
  transition: all 0.4s ease-out, z-index 0s;
}
body .home .box .info.info-left {
  left: -50vw;
  background-color: #272727;
  color: #F8F8F8;
}
body .home .box .info.info-left.show {
  left: 0;
}
body .home .box .info.info-left .text-box .header-box {
  border-color: #F8F8F8;
}
body .home .box .info.info-left .text-box .header-box h2 {
  border-left: 1px solid #F8F8F8;
  left: 15%;
}
body .home .box .info.info-left .text-box .background {
  left: 0;
  background-color: #272727;
  background-image: linear-gradient(#F8F8F8 1px, transparent 1px), linear-gradient(to right, #F8F8F8 1px, #272727 1px);
}
body .home .box .info.info-left .text-box .desc-box {
  left: 15%;
  width: 75%;
  border-left: 1px solid #F8F8F8;
}
body .home .box .info.info-left .text-box .desc-box p {
  padding-left: 15px;
  padding-right: 15px;
  text-align: left;
}
body .home .box .info.info-left .line {
  background-color: #F8F8F8;
  right: 10%;
}
body .home .box .info.info-right {
  right: -50vw;
  background-color: #F8F8F8;
  color: #272727;
}
body .home .box .info.info-right.show {
  right: 0;
}
body .home .box .info.info-right .text-box .header-box {
  border-color: #272727;
}
body .home .box .info.info-right .text-box .header-box h2 {
  border-right: 1px solid #272727;
  right: 15%;
}
body .home .box .info.info-right .text-box .background {
  right: 0;
  background-color: #272727;
  background-image: linear-gradient(#F8F8F8 1px, transparent 1px), linear-gradient(to right, #F8F8F8 1px, #272727 1px);
}
body .home .box .info.info-right .text-box .desc-box {
  right: 15%;
  width: 75%;
  border-right: 1px solid #272727;
}
body .home .box .info.info-right .text-box .desc-box p {
  padding-right: 15px;
  padding-left: 15px;
  text-align: right;
}
body .home .box .info.info-right .line {
  background-color: #272727;
  left: 10%;
}
body .home .box .info .line {
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
}
body .home .box .info .text-box {
  position: absolute;
  top: 12%;
  left: 0%;
  width: 100%;
  height: 88%;
}
body .home .box .info .text-box .header-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 45px;
  border-bottom: 1px solid;
  border-top: 1px solid;
}
body .home .box .info .text-box .header-box h2 {
  position: absolute;
  height: 100%;
  top: 0;
  padding: 8px 12px;
  box-sizing: border-box;
}
body .home .box .info .text-box .desc-box {
  position: absolute;
  width: 80%;
  box-sizing: border-box;
}
body .home .box .info .text-box .desc-box p {
  margin: 0;
  padding-top: 20px;
  font-weight: 300;
  box-sizing: border-box;
}
body .home .box .info .text-box .desc-box .home-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 8dvh;
  text-decoration: none;
}
body .home .box .info .text-box .desc-box .home-button:hover {
  cursor: pointer;
}
body .home .box .info .text-box .desc-box .home-button.left-home-button {
  left: 20px;
}
body .home .box .info .text-box .desc-box .home-button.right-home-button {
  right: 35px;
}
body .home .box .right-over {
  overflow: visible;
  position: relative;
  cursor: none;
}
body .home .box .right-over .pattern-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
body .home .box .right-over .pattern-container .pattern {
  position: absolute;
  top: -289px;
  left: 20px;
  width: calc(100% + 244.4px);
  height: calc(100% + 289px);
  background-image: url("mobileadv.png"), url("mobileadv.png");
  background-position: 0 0, 158px 150px;
  background-size: 316px 289px;
  background-repeat: repeat;
  will-change: background-position;
  transform-origin: 0 0;
  z-index: 3;
  transform: rotate(15deg) translateY(0);
}
body .home .box .right-over .pattern-container .pattern.pattern-moving {
  -webkit-animation: animate-right 28s linear infinite;
          animation: animate-right 28s linear infinite;
}
body .home .box .right-over .pattern-container .pattern.pattern-moving-fast {
  -webkit-animation: animate-right 5s linear infinite;
          animation: animate-right 5s linear infinite;
}
@-webkit-keyframes animate-right {
  100% {
    transform: rotate(15deg) translateY(289px);
  }
}
@keyframes animate-right {
  100% {
    transform: rotate(15deg) translateY(289px);
  }
}
body .home .box .left-over {
  overflow: visible;
  position: relative;
  cursor: none;
  flex-shrink: 0;
}
body .home .box .left-over .pattern-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
body .home .box .left-over .pattern-container .pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 358px);
  background-image: url("desktophima.png"), url("desktophima.png");
  background-position: 0 0, 433px 150px;
  background-size: 866px 358px;
  background-repeat: repeat;
  will-change: background-position;
  transform-origin: 0 0;
  z-index: 3;
  transform: rotate(-10deg) translateY(0);
  -webkit-transform: rotate(-10deg) translateY(0);
}
body .home .box .left-over .pattern-container .pattern.pattern-moving {
  -webkit-animation: animate-left 33s linear infinite;
          animation: animate-left 33s linear infinite;
}
body .home .box .left-over .pattern-container .pattern.pattern-moving-fast {
  -webkit-animation: animate-left 6s linear infinite;
          animation: animate-left 6s linear infinite;
}
@keyframes animate-left {
  100% {
    transform: rotate(-10deg) translateY(-358px);
  }
}
@-webkit-keyframes animate-left {
  100% {
    -webkit-transform: rotate(-10deg) translateY(-358px);
  }
}
body .about {
  width: 100vw;
  color: #F8F8F8;
  padding-bottom: 13vh;
}
body .about .about_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 85%;
  margin-left: 5%;
  transform: rotate(5deg);
}
body .about .about_text h2 {
  text-align: left;
  line-height: 1.1;
  width: 100%;
  word-wrap: break-word;
}
body .about .about_text h2 span {
  opacity: 0.14;
}
body .about .about_text h2 span.yellow-letter {
  color: transparent;
  -webkit-text-stroke: 2px #E7AF36;
  paint-order: stroke fill;
}
body .about .about_text h2 span.sub {
  font-weight: 200;
  font-family: "Lato", sans-serif;
}
body .about .about_text .header span {
  color: transparent;
  -webkit-text-stroke: 2px #E7AF36;
  paint-order: stroke fill;
}
body .bottom {
  width: 100vw;
  padding-top: 12vh;
  background-color: #F8F8F8;
  opacity: 1;
  background-image: linear-gradient(#272727 1px, transparent 1px), linear-gradient(to right, #272727 1px, #F8F8F8 1px);
  background-size: 42px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
body .bottom .contact-title {
  border: 2px solid #272727;
  background-color: #F8F8F8;
  width: 100%;
  padding: 14px 0;
}
body .bottom .contact-title h3 {
  margin-top: 14px;
  margin-bottom: 0;
}
body .bottom .contact-form {
  width: 90%;
  border: 2px solid #272727;
  background-color: #F8F8F8;
  margin-top: 4vmax;
}
body .bottom .contact-form form {
  width: 100%;
  padding: 4%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .bottom .contact-form form .upper-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
body .bottom .contact-form form .upper-row .input-box {
  width: 100%;
}
body .bottom .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 .bottom .contact-form form .input-box input, body .bottom .contact-form form .input-box textarea {
  width: 100%;
  padding: 10px;
  outline: none;
  border: 2px solid #272727;
  background-color: #272727;
  font-weight: 300;
  font-family: "Lato", sans-serif;
  box-sizing: border-box;
}
body .bottom .contact-form form .input-box input:not(:-moz-placeholder-shown) ~ span, body .bottom .contact-form form .input-box textarea:not(:-moz-placeholder-shown) ~ span {
  padding: 0 8px;
}
body .bottom .contact-form form .input-box input:not(:-ms-input-placeholder) ~ span, body .bottom .contact-form form .input-box textarea:not(:-ms-input-placeholder) ~ span {
  padding: 0 8px;
}
body .bottom .contact-form form .input-box input:not(:placeholder-shown) ~ span, body .bottom .contact-form form .input-box input:focus ~ span, body .bottom .contact-form form .input-box textarea:not(:placeholder-shown) ~ span, body .bottom .contact-form form .input-box textarea:focus ~ span {
  padding: 0 8px;
}
body .bottom .contact-form form .input-box input:not(:-moz-placeholder-shown), body .bottom .contact-form form .input-box textarea:not(:-moz-placeholder-shown) {
  background-color: #F8F8F8;
}
body .bottom .contact-form form .input-box input:not(:-ms-input-placeholder), body .bottom .contact-form form .input-box textarea:not(:-ms-input-placeholder) {
  background-color: #F8F8F8;
}
body .bottom .contact-form form .input-box input:not(:placeholder-shown), body .bottom .contact-form form .input-box input:focus, body .bottom .contact-form form .input-box textarea:not(:placeholder-shown), body .bottom .contact-form form .input-box textarea:focus {
  background-color: #F8F8F8;
}
body .bottom .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;
  background-color: #272727;
}
body .bottom .contact-form form .check-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
body .bottom .contact-form form .check-box:hover {
  cursor: pointer;
}
body .bottom .contact-form form .check-box input {
  margin-right: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #272727;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
}
body .bottom .contact-form form .check-box input:hover {
  cursor: pointer;
}
body .bottom .contact-form form .check-box input:checked {
  position: relative;
}
body .bottom .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: #272727;
}
body .bottom .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: #272727;
  left: -7px;
}
body .bottom .contact-form form .check-box label {
  font-family: "Lato", sans-serif;
}
body .bottom .contact-form form .check-box label:hover {
  cursor: pointer;
}
body .bottom .contact-low-row {
  width: 90%;
  margin-top: 30px;
  margin-bottom: 12vh;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
body .bottom .contact-low-row a {
  width: 43vw;
  height: 43.5px;
  border: 2px solid #272727;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
}
body .bottom .contact-low-row a:hover {
  cursor: pointer;
}
body .bottom .contact-low-row a p {
  margin: 0;
}
body .bottom .contact-low-row a.contact-submit {
  width: 90vw;
  background-color: #E7AF36;
  margin-bottom: 4vw;
}
body footer {
  color: #272727;
  width: 100%;
  padding-bottom: 50px;
  background-color: #F8F8F8;
}
body footer .footer-banner {
  width: 100%;
  position: relative;
  padding: 20px 0 30px 0;
  border-bottom: 2px solid #272727;
}
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: #272727;
  font-family: "Viola", sans-serif;
  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: #272727;
  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-bottom: 10vmax;
}

@media only screen and (min-width: 470px) {
  body footer .footer-content .footer-cols .footer-col:first-of-type {
    margin-right: 10vmax;
  }
}
@media only screen and (max-width: 700px) {
  body .float.scroll {
    transition: left 0.4s ease-out;
  }
  body .float.scroll.left {
    left: 80%;
  }
  body .float.scroll.right {
    left: 20%;
  }
  body .home .box .left.show-info {
    z-index: 4;
  }
  body .home .box .right.show-info {
    z-index: 4;
  }
  body .home .box .info {
    width: 80vw;
  }
  body .home .box .info .text-box {
    top: 10%;
    height: 90%;
  }
  body .home .box .info .text-box .desc-box p {
    font-size: 12px;
  }
  body .home .box .info .text-box .desc-box .home-button {
    padding: 10px 20px;
    font-size: 10px;
    bottom: 4vh;
  }
  body .home .box .info .text-box .desc-box .home-button.right-home-button {
    right: 20px;
  }
  body .home .box .info.info-left {
    left: -80vw;
  }
  body .home .box .info.info-right {
    right: -80vw;
  }
}
@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;
  }
  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;
  }
  body .bottom .contact-form {
    margin-top: 4vh;
  }
}
@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: 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) 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;
  }
  body .bottom .contact-form {
    width: 70%;
    margin-top: 7vh;
  }
  body .bottom .contact-form form {
    padding: 5%;
    flex-wrap: nowrap;
  }
  body .bottom .contact-form form .upper-row .input-box {
    width: calc(50% - 17px);
    height: 55.5px;
  }
  body .bottom .contact-form form .input-box input, body .bottom .contact-form form .input-box textarea {
    padding: 15px;
  }
  body .bottom .contact-form form .input-box span {
    top: 15px;
    padding: 0 8px;
  }
  body .bottom .contact-form form .check-box .input {
    height: 21px;
    width: 21px;
  }
  body .bottom .contact-form form .check-box .input:checked:before {
    width: 25px;
  }
  body .bottom .contact-form form .check-box .input:checked:after {
    width: 25px;
    left: -8px;
    top: 1.5px;
  }
  body .bottom .contact-low-row {
    width: 70%;
    flex-wrap: nowrap;
  }
  body .bottom .contact-low-row a {
    height: 55.5px;
    width: 25%;
  }
  body .bottom .contact-low-row a.contact-submit {
    width: 40%;
    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 (min-width: 1400px) and (min-height: 600px) and (orientation: landscape) {
  body .bottom .contact-form {
    width: 65%;
    margin-top: 80px;
  }
  body .bottom .contact-low-row {
    width: 65%;
  }
}
@media only screen and (min-width: 1600px) and (min-height: 600px) and (orientation: landscape) {
  body .bottom .contact-form {
    width: 60%;
  }
  body .bottom .contact-low-row {
    width: 60%;
  }
}
@media only screen and (min-width: 1400px) {
  body .bottom .contact-form form .upper-row .input-box {
    width: calc(50% - 17px);
  }
  body .bottom .contact-form form .input-box {
    margin-bottom: 34px;
  }
  body .bottom .contact-form form .input-box input, body .bottom .contact-form form .input-box textarea {
    padding: 15px;
  }
  body .bottom .contact-form form .input-box span {
    top: 13px;
    font-size: 24px;
  }
  body .bottom .contact-low-row {
    margin-top: 60px;
  }
  body .bottom .contact-low-row a {
    width: 25%;
  }
  body .bottom .contact-low-row a.contact-submit {
    width: 40%;
  }
}/*# sourceMappingURL=index.css.map */