@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #37393f;
  width: 100%;
  height: 100%;
}

button {
  outline: none;
  border: none;
}

header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 10%;
}
@media (max-width: 768px) {
  header nav {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 768px) {
  header nav .logo img {
    width: 182px;
  }
}
header nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  header nav ul {
    display: none;
  }
}
header nav ul li {
  list-style: none;
}
header nav ul li a {
  text-decoration: none;
  color: #37393f;
  font-size: 18px;
}
header nav ul li button {
  background: #094a9c;
  color: #fff;
  height: 49px;
  padding: 0 1rem;
}
header nav .menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
header nav .menu-toggle .bar {
  width: 36px;
  height: 3px;
  background: #094a9c;
  margin: 4px 0;
  transition: 0.3s;
  z-index: 1111;
}
@media (max-width: 768px) {
  header nav .menu-toggle {
    display: flex;
  }
  header nav .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #0c0d0f;
    color: #fff;
    position: absolute;
    padding: 3rem 0;
    top: 80px;
    left: 0;
  }
  header nav .nav-list li {
    margin: 10px 0;
  }
  header nav .nav-list li a {
    color: #fff;
  }
  header nav .nav-list.active {
    display: flex;
  }
}
header .header-content-container {
  min-height: 750px;
  width: 100%;
  background-image: url(./images/background.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.6235294118);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  header .header-content-container {
    padding: 0 1rem;
    min-height: 650px;
  }
}
header .header-content-container .header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 800px;
}
header .header-content-container .header-content h2 {
  color: #fff;
  text-align: center;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  overflow: hidden;
}
@media (max-width: 768px) {
  header .header-content-container .header-content h2 {
    font-size: 36px;
  }
}
header .header-content-container .header-content p {
  color: #e1e1e1;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 146.187%;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  header .header-content-container .header-content p {
    font-size: 16px;
  }
}
header .header-content-container .header-content button {
  margin-top: 2rem;
  background: #094a9c;
  font-size: 18px;
  color: #fff;
  height: 54px;
  padding: 0 2rem;
}

.about-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  width: 100%;
  padding-right: 10%;
}
@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse;
    padding: 0;
  }
}
.about-container .left-content {
  display: flex;
  align-items: center;
  flex-basis: 60%;
  width: 100%;
  padding: 4rem 3rem;
  background: #f4f4f4;
  padding: 8rem 10%;
}
@media (max-width: 768px) {
  .about-container .left-content {
    padding: 4rem 1rem;
  }
}
.about-container .left-content img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .about-container .left-content img {
    height: 300px;
  }
}
.about-container .right-content {
  flex-basis: 40%;
  width: 100%;
}
@media (max-width: 768px) {
  .about-container .right-content {
    padding: 100px 1rem;
    padding-bottom: 50px;
  }
}
.about-container .right-content .welcome {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #37393f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.about-container .right-content .welcome .box {
  width: 14px;
  height: 14px;
  background: #094a9c;
}
.about-container .right-content h3 {
  color: #37393f;
  max-width: 500px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .about-container .right-content h3 {
    font-size: 28px;
  }
}
.about-container .right-content p {
  color: #7d7d7d;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.187%;
  margin-top: 1.5rem;
}
@media (max-width: 768px) {
  .about-container .right-content p {
    font-size: 16px;
  }
}
.about-container .right-content .core-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.about-container .right-content .core-details div {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.about-container .right-content .core-details div img {
  width: 20px;
}
.about-container .right-content button {
  margin-top: 2rem;
  background: #094a9c;
  font-size: 18px;
  color: #fff;
  height: 54px;
  padding: 0 2rem;
}

.expertise-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px 10%;
}
@media (max-width: 768px) {
  .expertise-container {
    padding: 100px 1rem;
  }
}
.expertise-container .welcome {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #37393f;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.expertise-container .welcome .box {
  width: 14px;
  height: 14px;
  background: #094a9c;
}
.expertise-container h3 {
  text-align: center;
  color: #37393f;
  max-width: 500px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .expertise-container h3 {
    font-size: 28px;
  }
}
.expertise-container .expertise {
  width: 100%;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .expertise-container .expertise {
    display: flex;
    flex-direction: column;
  }
}
.expertise-container .expertise div {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  background: #f4f4f4;
}
.expertise-container .expertise div h4 {
  font-size: 25px;
  color: #37393f;
  font-style: normal;
  font-weight: 600;
  line-height: 127%;
  max-width: 200px;
  overflow: hidden;
}
.expertise-container .expertise div img {
  width: 56px;
}

.why-choose-us-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 0rem;
  width: 100%;
}
@media (max-width: 768px) {
  .why-choose-us-container {
    flex-direction: column-reverse;
  }
}
.why-choose-us-container .left-content {
  flex-basis: 45%;
  width: 100%;
  background: #f4f4f4;
  overflow: hidden;
}
.why-choose-us-container .left-content img {
  height: 100%;
  min-height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media (max-width: 768px) {
  .why-choose-us-container .left-content img {
    min-height: 300px;
  }
}
.why-choose-us-container .right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-basis: 55%;
  width: 100%;
  padding: 100px 0;
  padding-left: 10%;
  background: #37393f;
  min-height: 600px;
}
@media (max-width: 768px) {
  .why-choose-us-container .right-content {
    padding: 100px 1rem;
  }
}
.why-choose-us-container .right-content .welcome {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.why-choose-us-container .right-content .welcome .box {
  width: 14px;
  height: 14px;
  background: #094a9c;
}
.why-choose-us-container .right-content h3 {
  color: #fff;
  max-width: 500px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .why-choose-us-container .right-content h3 {
    font-size: 28px;
    max-width: 350px;
  }
}
.why-choose-us-container .right-content p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.187%;
  margin-top: 1.5rem;
  max-width: 580px;
}
@media (max-width: 768px) {
  .why-choose-us-container .right-content p {
    font-size: 16px;
  }
}
.why-choose-us-container .right-content .stats-container {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.why-choose-us-container .right-content .stats-container .stat {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #2e2f34;
  padding: 1rem 2rem;
}
@media (max-width: 768px) {
  .why-choose-us-container .right-content .stats-container .stat {
    padding: 1rem;
  }
}
.why-choose-us-container .right-content .stats-container .stat span p {
  margin: 0;
}
@media (max-width: 768px) {
  .why-choose-us-container .right-content .stats-container .stat span p {
    font-size: 14px;
  }
}
.why-choose-us-container .right-content .stats-container .stat span h5 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 768px) {
  .why-choose-us-container .right-content .stats-container .stat span h5 {
    font-size: 16px;
  }
}
.why-choose-us-container .right-content .stats-container .stat img {
  width: 56px;
}
.why-choose-us-container .right-content a {
  color: #50afc0;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  text-decoration: underline;
  margin-top: 2rem;
}

.green-container {
  min-height: 100vh;
  padding: 150px 10%;
  background: #50afc0;
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .green-container {
    flex-direction: column;
    padding: 120px 1rem;
    gap: 4rem;
  }
}
.green-container .how-it-works-container {
  flex-basis: 50%;
}
.green-container .how-it-works-container .welcome {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.green-container .how-it-works-container .welcome .box {
  width: 14px;
  height: 14px;
  background: #094a9c;
}
.green-container .how-it-works-container h3 {
  color: #fff;
  max-width: 450px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .green-container .how-it-works-container h3 {
    font-size: 28px;
  }
}
.green-container .how-it-works-container p {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.187%;
  margin-top: 1.5rem;
  max-width: 580px;
}
@media (max-width: 768px) {
  .green-container .how-it-works-container p {
    font-size: 16px;
  }
}
.green-container .how-it-works-container .steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.green-container .how-it-works-container .steps .step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}
.green-container .how-it-works-container .steps .step span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid #fff;
  padding-bottom: 1rem;
}
.green-container .how-it-works-container .steps .step span h5 {
  color: #fff;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 768px) {
  .green-container .how-it-works-container .steps .step span h5 {
    font-size: 20px;
  }
}
.green-container .how-it-works-container .steps .step span p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 146.187%;
}
@media (max-width: 768px) {
  .green-container .how-it-works-container .steps .step span p {
    font-size: 16px;
  }
}
.green-container .book-now-container {
  flex-basis: 50%;
}
.green-container .book-now-container .welcome {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.green-container .book-now-container .welcome .box {
  width: 14px;
  height: 14px;
  background: #094a9c;
}
.green-container .book-now-container h3 {
  color: #fff;
  max-width: 450px;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  overflow: hidden;
}
@media (max-width: 768px) {
  .green-container .book-now-container h3 {
    font-size: 28px;
  }
}
.green-container .book-now-container form {
  margin-top: 2rem;
  display: flex;
  gap: 2rem;
  flex-direction: column;
  width: 100%;
  background: #fff;
  padding: 3rem;
}
@media (max-width: 768px) {
  .green-container .book-now-container form {
    padding: 3rem 1rem;
  }
}
.green-container .book-now-container form input,
.green-container .book-now-container form textarea {
  padding: 1rem;
  border: 1px solid #ddd;
  background: #f8f8f8;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .green-container .book-now-container form input,
  .green-container .book-now-container form textarea {
    font-size: 16px;
    padding: 0.8rem 1rem;
  }
}
.green-container .book-now-container form span {
  display: flex;
  gap: 1.5rem;
}
.green-container .book-now-container form span input {
  flex-basis: 50%;
}
.green-container .book-now-container form button {
  max-width: 200px;
  margin-top: 2rem;
  background: #094a9c;
  font-size: 18px;
  color: #fff;
  height: 54px;
  padding: 0 2rem;
}

.subscribe-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 850px;
  background-image: url(./images/background-1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  background-size: cover;
  background-color: rgba(33, 90, 100, 0.859);
}
@media (max-width: 768px) {
  .subscribe-container {
    padding: 0 1rem;
  }
}
.subscribe-container .welcome {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.subscribe-container .welcome .box {
  width: 14px;
  height: 14px;
  background: #094a9c;
}
.subscribe-container h3 {
  color: #fff;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 121%;
  max-width: 700px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .subscribe-container h3 {
    font-size: 28px;
  }
}
.subscribe-container p {
  color: #e1e1e1;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 155%;
  margin-top: 1rem;
  max-width: 900px;
}
@media (max-width: 768px) {
  .subscribe-container p {
    font-size: 16px;
  }
}
.subscribe-container button {
  margin-top: 3rem;
  background: #094a9c;
  font-size: 18px;
  color: #fff;
  height: 54px;
  padding: 0 2rem;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  background: #37393f;
  padding-top: 50px;
}
@media (max-width: 768px) {
  footer {
    padding: 50px 0;
    padding-bottom: 0;
  }
}
footer .footer-wrapper {
  width: 100%;
  max-width: 1440px;
  margin: 0px auto;
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  flex-direction: column;
  border-bottom: 0.5px solid #6f6f6f;
}
@media (max-width: 768px) {
  footer .footer-wrapper {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 0 1.5rem;
  }
}
footer .footer-wrapper ul {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  footer .footer-wrapper ul {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
footer .footer-wrapper ul li {
  list-style: none;
}
footer .footer-wrapper ul li a {
  color: #fff;
  text-decoration: none;
}
footer .footer-wrapper .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
footer .footer-wrapper .footer-logo .desc {
  margin-top: 1rem;
  text-align: center;
  color: #d9d9d9;
  font-size: 16px;
  font-style: normal;
  line-height: 32px;
  max-width: 300px;
}
@media (max-width: 768px) {
  footer .footer-wrapper .footer-logo {
    margin: 2rem 0;
    align-items: flex-start;
  }
  footer .footer-wrapper .footer-logo .desc {
    text-align: left;
  }
}
footer small {
  color: #fff;
  margin: 2rem auto;
}
@media (max-width: 768px) {
  footer small {
    margin: 2rem auto;
  }
}/*# sourceMappingURL=style.css.map */