@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap");

* {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  transition: all 0.5s linear;
}

html,
body {
  scroll-behavior: smooth;
}

.titillium-web-fonts {
  font-family: "Titillium Web", sans-serif;
  font-weight: 400;
}

@media (min-width: 1366px) {
  .container {
    max-width: 1280px !important;
  }
}

/* Top Head */
.top-head {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0000008f;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 5;
  padding: 1.25rem 0;
}

.top-head.scrolled {
  background-color: #fff;
}

.login {
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}

.login i {
  font-size: 25px;
  margin-left: 1rem;
}

.login span {
  position: absolute;
  bottom: -14px;
  left: 47px;
  display: none;
  font-size: 18px;
}

.login:hover {
  color: #fff;
  text-decoration: none;
}

.login:hover span {
  display: inline;
}
/* Top Head End */

/* Hero Section */
.hero-section {
  padding: 10.2rem 0;
  background: url(../images/home-hero-img.jpg) center;
  background-size: cover;
  position: relative;
}

.hero-section::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #007d6f;
  opacity: 0.81;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .heading {
  font-weight: 600;
  color: #fff;
  font-size: 48px;
}

.hero-section .text {
  border-left: 4px solid #fff;
  color: #fff;
  font-size: 24px;
  line-height: 34px;
  padding-left: 10px;
  max-width: 480px;
  margin-left: 2px;
  margin-top: 1.5rem;
}

@media (max-width: 767.98px) {
  .hero-section .heading {
    font-size: 32px;
  }

  .hero-section .text {
    border-left: 4px solid #fff;
    font-size: 20px;
    line-height: 28px;
    padding-left: 10px;
    max-width: 100%;
  }
}
/* Hero Section End */

/* Contents */
.contents {
  position: relative;
  z-index: 3;
  margin-top: -70px;
}

.contents .text {
  text-align: center;
  color: #555555;
  font-size: 18px;
  line-height: 34px;
}

.contents video {
  width: 100%;
}

.wrap-1 {
  border: 2px solid #128576;
  padding: 4rem;
}

.wrap-1 .title-1 {
  color: #000;
  font-size: 42px;
  line-height: 63px;
}

.wrap-1 .text-1 {
  color: #000;
  font-size: 20px;
  line-height: 30px;
}

.wrap-1 .button-1 {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #128576;
  border-radius: 7px;
  padding: 0.75rem 3.25rem;
  text-decoration: none;
}

.wrap-2 {
  border: 2px solid #128576;
  background-color: #128576;
  padding: 5.15rem 4rem;
}

.wrap-2 .title-2 {
  color: #fff;
  font-size: 24px;
  line-height: 36px;
}

.wrap-2 input {
  display: block;
  width: 100%;
  margin: 2rem 0;
  border: 1px solid #fff;
  background: transparent;
  text-align: center;
  font-size: 16px;
  color: #fff;
  padding: 10px;
}

.wrap-2 input::placeholder {
  color: #fff;
}

.wrap-2 .button-2 {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #3f4140;
  border-radius: 7px;
  padding: 0.75rem 3.25rem;
  text-decoration: none;
}

@media (max-width: 576px) {
  .wrap-1 {
    padding: 3rem;
  }

  .wrap-1 .title-1 {
    font-size: 30px;
    line-height: 44px;
  }

  .wrap-2 {
    padding: 3rem;
  }
}
/* Contents End */

/* Footer Upper */
.footer-upper {
  background-image: linear-gradient(180deg, #383838 0%, #044c62 100%);
  padding: 4rem 0;
}

.footer-upper .heading {
  color: #fff;
  font-size: 40px;
}

.footer-upper .button {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  background-color: #128576;
  border-radius: 7px;
  padding: 0.75rem 3.25rem;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .footer-upper .heading {
    font-size: 30px;
  }
}
/* Footer Upper End */

/* Footer Lower */
.footer-lower {
  background: #08211d;
  padding: 0rem 0 2rem;
}

.footer-lower .text {
  color: #fff;
  font-size: 16px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  margin-left: 1.5rem;
}

@media (max-width: 991.98px) {
  .footer-lower {
    padding: 2rem 0 2rem;
  }

  .footer-links a {
    margin: 0 1rem;
  }
}
/* Footer Lower End */
