body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background: #f7f7f7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-left: 110px;
}

#header .logo span {
  color: #90e0ef;
}

#header.on {
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  transition: all 0.4s linear;
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
}

.navbar a {
  color: #fff !important;
}

.navbar-nav {
  margin-right: 100px;
}

.nav-item {
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
}

.nav-link:hover {
  color: #48cae4 !important;
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero.webp");
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  text-transform: capitalize;
}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f7f7f7;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

.history img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.note {
  font-size: 12px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  color: #7a7777;
  font-family: "Poppins", sans-serif;
}

.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/hero.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  background-attachment: fixed;
}

.cta h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 700;
  padding-bottom: 10px;
}

.cta p {
  color: #fff;
  font-size: 17px;
  margin-top: 15px;
  padding: 0 20px;
  text-align: center;
}

.contact .info-box {
  color: #444444;
  text-align: center;
  padding: 20px 0 30px 0;
  background: #fff;
  box-shadow: 0 0 20px rgba(214, 215, 216, 0.6);
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.contact .info-box i {
  font-size: 32px;
  color: #48cae4;
  padding: 8px;
}

.contact .info-box h3 {
  font-size: 24px;
  color: #48cae4;
  font-weight: 600;
  margin: 10px 0;
}

.contact .info-box a {
  color: #000;
  text-decoration: none;
}

.contact .info-box a:hover {
  text-decoration: none;
  color: #3a7bd5;
}

.contact .info-box:hover {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

@media (max-width: 567px) {
  .nav-item {
    margin-top: 12px;
    margin-left: 10px;
  }

  #header .logo {
    margin-left: 10px;
    font-size: 24px;
  }

  #hero {
    background-attachment: scroll;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    margin-top: -8px;
  }

  .cta p {
    text-align: justify;
  }

  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .nav-item {
    margin-top: 12px;
    margin-left: 10px;
  }

  #header .logo {
    margin-left: 10px;
    font-size: 24px;
  }

  .cta p {
    text-align: justify;
  }
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

.preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #90e0ef;
  border-top-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  to {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
