@font-face {
  font-family: "Poppins";
  src: url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
}

body,
h1,
p,
button {
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

.hero-container {
  background: url("./asset/images/hero-bg-desktop.png");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: calc(100vh - 137.2px);
  padding-top: 20px;
}

.hero {
  width: 75%;
  margin: 0 auto;
}

.logo {
  width: 200px;
}

.heading {
  max-width: 415px;
  margin-top: 51px;
  color: #0772ba;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}

.heading span {
  color: #050505;
}

.content {
  max-width: 373px;
  margin: 14px 0px 40px;
  color: #050505;
  font-size: 20px;
}

.cta {
  background-color: #0772ba;
  padding: 12px 35px;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  text-decoration: none;
  width: 150px;
}

.cta span {
  margin-left: 10px;
  color: white;
  font-size: 16px;
  font-weight: 500;
}

.cta img {
  width: 25px;
  height: 25px;
}

.footer-container {
  background-color: #050505;
  color: white;
  padding: 30px 0px;
}

.footer {
  width: 75%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.footer div {
  display: flex;
  align-items: center;
}

.footer p {
  margin-left: 10px;
}

.footer img {
  width: 25px;
  height: 25px;
}

.copyright {
  background-color: #064c79;
  color: white;
  text-align: center;
  font-size: 12px;
  line-height: 171%;
  padding: 6px 0px;
}

@media screen and (max-width: 491px) {
  .hero-container {
    background: url("./asset/images/hero-bg-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top top;
  }

  .contact-details p {
    font-size: 14px;
  }
}




@media screen and (max-width: 1024px) {
  .hero-container {
    width: 100%;
    height: calc(100vh - 230.2px);
    padding-top: 20px;
  }

  .contact-details {
    width: 85% !important;
    margin: 20px !important;
    padding: 60px 20px !important;
  }

  .hero {
    width: 85%;
  }

  .logo {
    width: 131px;
    height: 50px;
  }

  .heading {
    max-width: 369px;
    margin-top: 33px;
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    text-align: center;
  }

  .content {
    max-width: 267px;
    margin: 14px auto 26px;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    text-align: center;
  }

  .cta {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .cta span {
    font-size: 16px;
  }

  .footer-container {
    background-color: #050505;
    color: white;
  }

  .footer {
    width: 85%;
    display: block;
    font-size: 14px;
  }

  .footer div {
    margin-bottom: 21px;
  }

  .footer img {
    width: 20px;
    height: 20px;
  }

  .copyright {
    font-size: 10px;
    line-height: normal;
    padding: 8px 0px;
  }
}

@media screen and (max-width: 600px) {
  .contact-details {
    width: 80% !important;
    padding: 40px 20px !important;
  }

  .contact-details h1 {
    font-size: 25px;
  }
}

.font-weight-bold {
  font-weight: bold;
}

.contact-container {
  position: fixed;
  background: rgba(0,0,0,.7);
  width: 100%;
  height: 100vh;
  display:flex;
  flex-wrap: wrap;
  align-content: center;
}

.contact-wrap {
  width: 100%;
}

.contact-details {
  position: relative;
  background: #fff;
  width: 30%;
  display: block;
  margin: auto;
  padding: 60px;
  border-radius: 8px;
}

.close {
  position: absolute;
  right: 30px;
  top: 20px;
  cursor: pointer;
  padding: 10px;
}

.line {
  height: 25px;
  width: 2px;
  position: relative;
  display: block;
  background-color: #858585;
  transform: rotate(45deg);
}

.line2 {
  height: 25px;
  width: 2px;
  display: block;
  position: relative;
  background-color: #858585;
  transform: rotate(-45deg);
  top: -25px;
}
