* {font-family: 'Inter', sans-serif;}

p.lead {
  font-family: "Inter";
  font-size: 16px;
  font-weight: 400;
  line-height: 29px;
  color: #5B708B;
}

.bg-dark {
  background-color: #06080a!important;
}

.navbar-dark .navbar-brand {
  font-family: "Nexa XBold";
  font-size: 24px;
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, .5);
  padding: 8px 24px;
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, .8);
}

.navbar-dark .navbar-nav .active>.nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show>.nav-link {
  color: #fff;
}

.form-control {
  color: #fff;
  font-size: 16px;
  background-color: #1C1C1C;
  border: none;
  height: auto;
  padding: 16px;
  min-height: 56px;
  border-radius: 12px;
}

.form-control:focus {
  color: #fff;
  background-color: #1C1C1C;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.btn-primary {
  /* background: #04727A; */
  border: none;
  box-shadow: none;
}

.btn-sm {
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
}

.btn-md {
  font-weight: 600;
  font-size: 15px;
  padding: 12px 24px;
}

.btn-lg {
  font-weight: 600;
  font-size: 17px;
  padding: 16px 32px;
}

.rounded {
  border-radius: 12px !important;
}

.btn-primary.focus, .btn-primary:focus {
  border: none;
  box-shadow: none;
}

#hero {
  padding-top: 56px;
  padding-bottom: 80px;
}

#hero .heroContent {
  padding-top: 200px;
  padding-bottom: 80px;
}

#hero .heroContent h1 {
  font-size: 56px;
  font-family: 'Archivo Black', sans-serif;
}

#hero .heroContent h1, #hero .heroContent p.lead {
  color: #fff;
}

#hero .text-muted {
  color: #fff !important;
  opacity: .6;
}

#hero .clients img {
  width: 100%;
  object-fit: contain;
  max-height: 44px;
  max-width: 120px;
  opacity: .6;
}

.heroBackground {
  background: url("../img/wavy-hero.png");
  background-size: 100% 100%;
  background-position: bottom;
}

section {
  padding: 100px 0;
}

#core h2, #techStack h2, #works h2, #why h2, #touch h2 {
  font-size: 36px;
  font-family: 'Archivo Black', sans-serif;
}

.service-box img {
  margin-bottom: 20px;
}

.service-box p.lead {
  font-size: 14px;
  line-height: 24.5px;
  margin: 0;
  padding: 0;
}

#techStack img {
  max-width: 120px;
  width: 100%;
  height: 44px;
  max-height: 44px;
  object-fit: contain;
}

.work-box {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  width: 100%;
  min-height: 200px;
}

a.work-box:hover {
  color: #fff;
  text-decoration: none;
}

.work-box.bg-mba {
  position: relative;
  background-image: url(../img/portfolio/bg-mba.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.work-box.bg-qms {
  position: relative;
  background-image: url(../img/portfolio/bg-qms.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.work-box.bg-nps {
  position: relative;
  background-image: url(../img/portfolio/bg-nps.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.work-box.bg-terminal {
  position: relative;
  background-image: url(../img/portfolio/bg-kiosk.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.work-box p.lead {
  color: rgba(255, 255, 255, .6);
  padding: 0;
  margin: 0;
}

.work-box.bg-mba .overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.work-box .overlay {
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, .5);
  transition: background .3s ease;
} 

.work-box:hover .overlay {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .8);
}

.bg-testimonials {
  background: linear-gradient(120deg, rgb(2, 122, 255), rgba(6, 8, 10, 0.8)), url('../img/testimonials/bg-testimonials.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.w64 img {
  width: 64px;
}

.testimonialPerson h5 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 17px;
  margin-bottom: 0;
}

.testimonialPerson small {
  font-size: 14px;
  opacity: .6;
}

#touch form {
  max-width: 430px;
  width: 100%;
}

@media (max-width: 991px) {
  .navbar-collapse .navbar-nav {
    margin: 12px 0;
  }
  
  .navbar-collapse {
    padding-bottom: 24px;
  }

  #hero .heroContent {
    padding: 100px 0 40px;
  }

  section {
    padding: 60px 0;
  }

  #hero .heroContent h1 {
    font-size: 32px;
  }

  #core h2, #techStack h2, #works h2, #why h2, #touch h2 {
    font-size: 21px;
  }

  .navbar-dark .navbar-nav .nav-link {
    padding: 8px 0;
  }
}

@media (max-width: 768px) {
  #touch form {
    max-width: 100%;
    width: 100%;
  }  
}

/* .heroBackground {
  background: linear-gradient(120deg, rgb(230, 251, 254, .3), rgb(211, 248, 253, .5)), url("../img/wavy-hero.png");
  background-size: 200% 200%;

  -webkit-animation: gradientHero 15s ease infinite;
  -moz-animation: gradientHero 15s ease infinite;
  -o-animation: gradientHero 15s ease infinite;
  animation: gradientHero 15s ease infinite;
} */

/* @-webkit-keyframes gradientHero {
  0%{background-position:0% 0%}
  50%{background-position:90% 100%}
  100%{background-position:0% 0%}
}
@-moz-keyframes gradientHero {
  0%{background-position:0% 0%}
  50%{background-position:90% 100%}
  100%{background-position:0% 0%}
}
@-o-keyframes gradientHero {
  0%{background-position:0% 0%}
  50%{background-position:90% 100%}
  100%{background-position:0% 0%}
}
@keyframes gradientHero {
  0%{background-position:0% 0%}
  50%{background-position:90% 100%}
  100%{background-position:0% 0%}
} */