@import url("https://fonts.googleapis.com/css?family=Merriweather|Overpass+Mono&display=swap");
@font-face {
  font-family: "Sofia";
  src: url("../../fonts/Sofia Pro Regular.ttf") format("opentype");
  font-weight: 400;
}
@font-face {
  font-family: "Sofia";
  src: url("../../fonts/Sofia Pro Bold.ttf") format("opentype");
  font-weight: 700;
}
html {
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  font-family: "Sofia", sans-serif;
  max-width: 1250px;
  margin: auto;
  transition: all 500ms;
  background-repeat: no-repeat;
  background-position: bottom left;
  padding: 0 25px;
}

main {
  position: relative;
  height: 100%;
}

.not-found {
  width: 100%;
  height: 100%;
  background-color: #316EE4;
  background-image: url("/img/icons/404.svg");
  background-size: contain;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
}
@media (max-width: 1300px) {
  .not-found {
    background-image: none;
  }
}
@media (min-height: 1024px) {
  .not-found {
    position: absolute;
    top: 80%;
    transform: translateY(-50%);
  }
}
.not-found h1 {
  font-size: 200px;
  font-weight: bold;
  padding-top: 120px;
  margin-bottom: 0;
  margin-top: 0;
}
.not-found p {
  font-weight: bold;
  font-size: 40px;
  line-height: 45px;
}

.bg-0 {
  background-color: #316EE4;
}
.bg-0 .navbar .navbar-collapse {
  display: none;
}

.bg-1 {
  background-color: #316EE4;
  background-image: url("/img/background/digital.svg");
}

.bg-2 {
  background-color: #FF7C00;
  background-image: url("/img/background/time.svg");
}

.bg-3 {
  background-color: #0A33E6;
  background-image: url("/img/background/tools.svg");
}

.bg-4 {
  background-color: #50AE55;
  background-image: url("/img/background/application.svg");
}

.bg-5 {
  background-color: #316EE4;
  background-image: url("/img/background/hello.svg");
}

a {
  cursor: pointer;
  color: white;
  text-decoration: none;
}

h1 {
  font-style: normal;
  font-weight: bold;
  font-size: 75px;
  line-height: 1.1;
  color: #FFFFFF;
}

p {
  font-family: Merriweather, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.5;
  color: #FFFFFF;
  opacity: 0.9;
}

strong {
  font-family: "Sofia", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
}

header {
  position: relative;
  height: 140px;
  width: 100%;
  max-width: 1300px;
  z-index: 9;
}
header .navbar {
  padding-top: 45px;
}
header .navbar .navbar-collapse {
  float: right;
  margin-top: 5px;
  margin-right: 60px;
}
header .navbar .navbar-collapse ul li {
  list-style: none;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  color: white;
}
header .navbar .navbar-collapse ul li a {
  position: relative;
}
header .navbar .navbar-collapse ul li a:after {
  transition: width 300ms ease-in;
  z-index: -1;
  content: "";
  position: absolute;
  height: 2px;
  width: 0;
  background-color: white;
  bottom: 3px;
  left: 0;
}
header .navbar .navbar-collapse ul li a:hover:after {
  width: 100px;
}

section.slide {
  position: absolute;
  transition: all 500ms ease-in;
  width: 100%;
  height: 100%;
  z-index: 1;
}
section.slide .row {
  display: grid;
  grid-template-columns: 48% 52%;
}
section.slide .row .col:nth-child(2) {
  margin-top: -20px;
}
section.slide.slide-1 {
  top: 0;
}
section.slide.slide-1 .row {
  grid-template-columns: 1fr 1fr;
}
section.slide.slide-1 .row .logo-wrapper {
  position: relative;
  z-index: 2;
}
section.slide.slide-1 .row .logo-wrapper .logo {
  transition: all 500ms;
  position: absolute;
  bottom: -150px;
  left: 150px;
  text-align: left;
  transform: scale(1);
}
section.slide.slide-1 .row .logo-wrapper .logo .mask {
  transition: all 3000ms ease-in-out;
  position: absolute;
  bottom: 7px;
  left: 0;
  transform: rotate(0);
}
section.slide.slide-1 .row .logo-wrapper .logo .mask.animate {
  transform: rotate(810deg);
}
section.slide.slide-1 .loading-overlay {
  transition: all 1500ms;
  position: fixed;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  background-color: white;
}
section.slide.slide-1.loading .loading-overlay {
  z-index: 3;
  opacity: 1;
  background-color: white;
}
section.slide.slide-1.loading .logo-wrapper {
  z-index: 4;
}
section.slide.slide-1.loading .logo-wrapper .logo {
  left: -30% !important;
  transform: scale(0.7) !important;
}
section.slide.slide-1.loading .section-wrapper {
  z-index: 5;
}
section.slide.slide-1:not(.loading) .preloader {
  transition: 500ms linear !important;
  opacity: 0;
}
section.slide.slide-1 h1 {
  max-width: 600px;
  margin-top: 28%;
}
section.slide.slide-1 .scroll-down {
  text-align: center;
  margin-top: 20px;
}
section.slide.slide-1 .scroll-down span {
  cursor: pointer;
  color: white;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
  display: inline-block;
}
section.slide.slide-1 .scroll-down img {
  animation: slide-up-down 4s infinite 3s;
  cursor: pointer;
  text-align: center;
  display: block;
  margin: auto;
}
section.slide.slide-1 .yellow-underline {
  position: relative;
}
section.slide.slide-1 .yellow-underline::after {
  transition: width 500ms linear 1000ms;
  z-index: -1;
  content: "";
  position: absolute;
  height: 10px;
  width: 0;
  background-color: #F1D900;
  bottom: 20px;
  left: 3px;
}
section.slide.slide-2 .row, section.slide.slide-3 .row, section.slide.slide-4 .row {
  justify-content: center;
  align-items: center;
}
section.slide.slide-2 .row h1, section.slide.slide-3 .row h1, section.slide.slide-4 .row h1 {
  margin-top: 25px;
}
section.slide.slide-2 .case-studies, section.slide.slide-3 .case-studies, section.slide.slide-4 .case-studies {
  position: relative;
}
section.slide.slide-2 .case-studies .portfolio-item, section.slide.slide-3 .case-studies .portfolio-item, section.slide.slide-4 .case-studies .portfolio-item {
  width: 100%;
  border-radius: 10px;
}
section.slide.slide-2 .case-studies .eye, section.slide.slide-3 .case-studies .eye, section.slide.slide-4 .case-studies .eye {
  position: fixed;
  bottom: 25px;
  left: calc(50% + 590px);
  width: 84px;
  height: 84px;
  border-radius: 100%;
  background: white;
  border: 5px solid #FFFFFF;
  box-sizing: border-box;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.15);
  transition: all 500ms linear;
}
section.slide.slide-2 .case-studies .eye:hover, section.slide.slide-3 .case-studies .eye:hover, section.slide.slide-4 .case-studies .eye:hover {
  transform: scale(1.1);
}
section.slide.slide-2 .case-studies .eye img, section.slide.slide-3 .case-studies .eye img, section.slide.slide-4 .case-studies .eye img {
  display: block;
  margin: auto;
}
section.slide.slide-2 .case-studies .eye span, section.slide.slide-3 .case-studies .eye span, section.slide.slide-4 .case-studies .eye span {
  display: block;
  text-align: center;
  font-family: "Sofia", sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 20px;
}
section.slide.slide-2 .eye span {
  color: #FF7C00;
}
section.slide.slide-3 .eye span {
  color: #0A33E6;
}
section.slide.slide-4 .eye span {
  color: #50AE55;
}
section.slide.slide-5 {
  transition: all 500ms;
  opacity: 1;
  z-index: 3;
}
section.slide.slide-5 .contact-us {
  background-color: white;
  border: 1px #D6D6D6;
  box-sizing: border-box;
  border-radius: 10px;
  padding: 70px 100px;
  position: relative;
  padding-bottom: 160px;
}
section.slide.slide-5 .contact-us .close-modal {
  position: absolute;
  top: 30px;
  right: 20px;
  cursor: pointer;
}
section.slide.slide-5 .contact-us .close-modal img:hover {
  -webkit-animation: spin ease-in-out 2s;
  -moz-animation: spin ease-in-out 2s;
  animation: spin ease-in-out 2s;
}
section.slide.slide-5 .contact-us p {
  color: #252525;
  opacity: 1;
}
section.slide.slide-5 .contact-us ul {
  list-style: none;
  padding-left: 0;
  padding-top: 15px;
}
section.slide.slide-5 .contact-us ul li {
  line-height: 28px;
}
section.slide.slide-5 .contact-us a {
  color: #0A33E6;
  opacity: 0.9;
}
section.slide.slide-5 .contact-us .grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
section.slide.slide-5 .contact-us .grid form {
  padding-top: 30px;
}
section.slide.slide-5 .contact-us .grid form .response-label {
  margin-top: 40px;
  display: inline-block;
  font-family: Merriweather, sans-serif;
  font-size: 18px;
  line-height: 1.5;
}
section.slide.slide-5 .contact-us .grid form .form-group-floating {
  position: relative;
}
section.slide.slide-5 .contact-us .grid form .form-group-floating label {
  position: absolute;
  pointer-events: none;
  top: 6px;
  left: 0;
  transition: 0.2s ease all;
  -moz-transition: 0.2s;
  -webkit-transition: 0.2s;
  font-family: "Sofia", sans-serif;
  font-weight: bold;
  font-size: 13px;
  line-height: 28px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-bottom: 5px;
  color: #707070;
}
section.slide.slide-5 .contact-us .grid form input, section.slide.slide-5 .contact-us .grid form textarea {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-family: "Sofia", sans-serif;
  width: 100%;
  height: calc(2.25rem + 2px);
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid;
  border-color: #ACACAC;
}
section.slide.slide-5 .contact-us .grid form input:focus, section.slide.slide-5 .contact-us .grid form textarea:focus {
  border-color: #316ee4;
  border-width: 2px;
  outline: none;
}
section.slide.slide-5 .contact-us .grid form input:focus + label, section.slide.slide-5 .contact-us .grid form textarea:focus + label {
  top: -20px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
section.slide.slide-5 .contact-us .grid form input:valid + label, section.slide.slide-5 .contact-us .grid form textarea:valid + label {
  top: -20px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
section.slide.slide-5 .contact-us .grid form textarea:focus + label, section.slide.slide-5 .contact-us .grid form textarea:valid + label {
  top: -35px;
}
section.slide.slide-5 .contact-us .grid form .btn {
  transition: all 300ms linear;
  float: right;
  background: #F3F3F3;
  border-radius: 5px;
  padding: 16px 34px;
  font-weight: bold;
  font-size: 18px;
  line-height: 28px;
  color: #0A33E6;
  border: none;
  box-shadow: none;
  cursor: pointer;
  margin-top: 30px;
}
section.slide.slide-5 .contact-us .grid form .btn:hover {
  background: #0a33e6;
  color: #ffffff;
}
section.slide.slide-5 .contact-us .grid form .inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 66px;
}
section.slide .slide-left {
  opacity: 1;
}
section.slide .slide-right {
  opacity: 1;
}
section.slide .slide-down {
  opacity: 0;
  transform: translateY(-500px);
  transition: all 500ms linear;
}
section.slide .roll-out {
  -webkit-animation: roll-in-right 1s ease-out both reverse;
  animation: roll-in-right 1s ease-out both reverse;
}
section.slide .roll-in {
  -webkit-animation: roll-in-right 1s ease-out both;
  animation: roll-in-right 1s ease-out both;
}
section.slide.hide {
  z-index: 0;
}
section.slide.hide .slide-left {
  transition: all 500ms linear;
  transform: translateX(-100%);
  opacity: 0;
}
section.slide.hide .slide-right {
  transition: all 500ms linear;
  transform: translateX(100%);
  opacity: 0;
}
section.slide.hide .case-studies .portfolio-item {
  transition: all 500ms linear;
  transform: translateY(-2000px);
}
section.slide.hide .case-studies .eye {
  opacity: 0;
}
section.slide.hide .slide-down {
  transition: all 500ms linear 500ms;
}
section.slide.hide .scroll-down {
  display: none;
}
section.slide.hide.slide-5 {
  opacity: 0;
}
section.slide.show .slide-down {
  opacity: 1;
  transform: translateY(0);
}
section.slide.show .case-studies .portfolio-item {
  -webkit-animation: rotate-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: rotate-in 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
section.slide.show .case-studies .portfolio-item .eye {
  opacity: 1;
}
section.slide.show .yellow-underline::after {
  width: 120px;
}

.dots {
  z-index: 2;
  position: fixed;
  right: 40px;
  top: 45%;
}
.dots ul {
  list-style: none;
}
.dots ul li {
  background: #FFFFFF;
  opacity: 0.5;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  margin-bottom: 11px;
  margin-left: 2px;
  cursor: pointer;
  transition: all 500ms linear;
}
.dots ul li.active {
  opacity: 1;
  width: 13px;
  height: 13px;
  margin-left: 0;
}

.mb-1 {
  margin-bottom: 15px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mb-3 {
  margin-bottom: 25px;
}

.mb-4 {
  margin-bottom: 50px;
}

.hide-mobile {
  display: none;
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}
@-webkit-keyframes rotate-in {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    opacity: 1;
  }
}
@keyframes slide-up-down {
  0% {
    margin-top: 0;
  }
  20% {
    margin-top: 15px;
  }
  30% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes roll-in-right {
  0% {
    -webkit-transform: translateX(800px) rotate(540deg);
    transform: translateX(800px) rotate(540deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes roll-in-right {
  0% {
    -webkit-transform: translateX(800px) rotate(540deg);
    transform: translateX(800px) rotate(540deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) rotate(0deg);
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@media (min-height: 1024px) and (min-width: 768px) {
  header {
    position: absolute;
    width: 100%;
    max-width: 1200px;
    height: auto;
  }

  .case-studies .eye {
    position: absolute !important;
    bottom: 120px !important;
    left: calc(50% + 590px);
  }

  .slide {
    width: 100%;
    height: 100%;
    overflow: visible;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }

  .section-wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 100%;
  }

  .scroll-down img {
    animation: none !important;
  }
}
@media (max-height: 810px) and (min-width: 768px) {
  .contact-us {
    padding-bottom: 70px !important;
  }

  .logo-wrapper .logo {
    transform: scale(0.9) !important;
  }
}
@media (max-width: 767px) {
  html {
    height: auto;
    overflow: visible;
  }

  body {
    overflow: hidden;
  }
  body.bg-5 {
    overflow: visible;
  }

  .bg-1, .bg-2, .bg-3, .bg-4, .bg-5 {
    background-image: none;
  }

  h1 {
    font-size: 40px;
    line-height: 1.1;
  }

  p {
    font-size: 16px;
  }

  .contact-us {
    padding: 25px !important;
    margin-bottom: 40px;
  }
  .contact-us p {
    margin-top: 0;
    margin-bottom: 25px;
    width: calc(100% - 35px);
  }
  .contact-us .grid {
    grid-template-columns: 1fr !important;
  }
  .contact-us .grid .inner-grid {
    grid-template-columns: 1fr !important;
  }
  .contact-us .grid .inner-grid .form-group {
    padding-bottom: 20px;
  }
  .contact-us .grid strong {
    display: block;
  }
  .contact-us .grid ul {
    display: inline-block;
    width: 49%;
  }
  .contact-us button {
    width: 100%;
  }

  section.slide .row {
    grid-template-columns: 100%;
  }
  section.slide.hide {
    overflow: hidden;
  }

  header .navbar {
    padding-top: 20px;
  }
  header .navbar .navbar-collapse {
    margin-right: 0;
  }
  header .navbar .navbar-collapse ul {
    padding-left: 0;
  }

  section.slide.slide-1 .scroll-down {
    display: none;
  }
  section.slide.slide-1 .row {
    grid-template-columns: 100%;
  }
  section.slide.slide-1 .row .logo-wrapper .logo {
    position: relative;
    text-align: center;
    bottom: 0;
    left: 0 !important;
    width: 50%;
    margin: auto;
  }
  section.slide.slide-1 .row .logo-wrapper .logo img {
    width: 100%;
  }
  section.slide.slide-1 .row .yellow-underline:after {
    width: 63px;
    bottom: 10px;
    height: 5px;
  }
  section.slide.slide-1 .row h1 {
    margin-top: 0;
    margin-bottom: 65px;
  }
  section.slide.slide-1.loading .hide-on-load {
    display: none;
  }

  .dots {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    right: auto;
    top: auto;
  }
  .dots ul {
    padding-left: 0;
    margin: 0;
  }
  .dots ul li {
    display: inline-block;
    margin-bottom: 0;
  }

  .case-studies .eye {
    position: absolute !important;
    bottom: -25px !important;
    left: auto !important;
    margin: auto;
    right: -15px !important;
  }
}
@media (max-width: 425px) {
  .contact-us .grid .contact-details {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .contact-us .grid .contact-details ul {
    display: block;
    width: 100%;
    padding-top: 0 !important;
    margin: 0 !important;
  }

  .navbar .navbar-nav {
    margin-top: 10px;
  }
  .navbar .navbar-nav .nav-item a {
    font-size: 16px;
  }
  .navbar .navbar-nav .nav-item a:hover:after {
    width: 90px;
  }
  .navbar .navbar-brand img {
    width: 150px;
  }

  .not-found h1 {
    font-size: 140px;
  }
  .not-found p {
    font-size: 33px;
  }
}
@media (max-width: 767px) and (max-height: 710px) {
  body:not(.bg-1):not(.bg-5) header {
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1300px) {
  body {
    padding: 0 85px;
  }

  h1 {
    font-size: 50px;
  }

  section.slide.show .yellow-underline::after {
    width: 82px;
    height: 6px;
    bottom: 15px;
    left: 0;
  }

  .logo-wrapper .logo {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    transform: scale(0.8) !important;
  }

  .case-studies .eye {
    position: absolute !important;
    bottom: 120px !important;
    right: -20px;
    left: auto !important;
  }
}
@media (max-width: 320px) {
  p {
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
  }

  .slide-3 h1 {
    max-width: 90%;
  }
  .slide-3 h1 img {
    width: 20px;
  }

  section.slide.slide-1 .row .yellow-underline:after {
    width: 32px;
    bottom: 4px;
    height: 3px;
    left: 1px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    overflow: hidden;
  }

  header {
    position: relative;
  }
}

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