/* Banner */

.banner {
  width: 100%;
  height: 800px;
  background-position: left;
  background-size: cover;
}

.banner .text {
  height: 800px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  max-width: 55%;
}

.banner .text h1 b {
  font-size: 48px;
}

.banner .text h1 {
  font-size: 42px;
  color: #fff;
  text-transform: uppercase;

  margin-bottom: 30px;
}

.banner .text a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: 1px solid #fff;

  padding: 10px 15px;
  border-radius: 7px;
}

@media (max-width: 992px) {
  .banner,
  .banner .text {
    height: 400px;
  }

  .banner .text {
    max-width: 60%;
  }

  .banner {
    background-position: left;
  }

  .banner .text h1,
  .banner .text h1 b {
    font-size: 30px;
  }
}

@media (max-width: 600px) {
  .banner .text {
    max-width: 100%;
  }
}

/* End of banner */

/* About */

.about {
  position: relative;

  padding: 140px 0;
}

.about .about-bg {
  width: 100%;
  height: 100%;

  z-index: -1;

  position: absolute;
  top: 0;
  left: 0;

  background-color: #fff;
}

.about h1 {
  font-size: 45px;
  color: var(--main-branding);
  text-transform: uppercase;
  font-weight: 900;
}

.about h2 {
  font-size: 16px;
  color: var(--main-branding);
  text-transform: uppercase;
  font-weight: 600;
}

.about h3 {
  color: var(--font-thin);
  font-size: 16px;
  font-weight: 600;

  margin-bottom: 30px;
}

.about a {
  padding: 10px 15px;
  border-radius: 7px;

  background-color: var(--main);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.about img {
  width: 100%;
}

@media (max-width: 992px) {
  .about img {
    margin-top: 40px;
  }
}

/* End of about */

/* Solutions */

.solutions {
  padding: 128px 0;
  position: relative;
  background: linear-gradient(to bottom, #edf1f2 100%, #fff 0%);
}

.solutions .solutions-bg {
  width: 100%;
  height: 60%;

  z-index: 0;

  position: absolute;
  bottom: 0;
  left: 0;

  pointer-events: none;
}

.solutions h1 {
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--main-branding);
}

@media (max-width: 992px) {
  .solutions h1 {
    font-size: 25px;
  }
}

.solutions h2 {
  font-size: 16px;
  color: var(--main-branding);
  text-transform: uppercase;
  font-weight: 600;
}

.solutions h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--font-thin);
}

.solutions .solution {
  height: 520px;
  padding: 0 24px 24px 24px;
  margin-top: 60px;
  border-radius: 44px 0 44px 0;

  position: relative;
}

.solutions .solution img {
  width: 100%;
  height: 360px;

  margin-bottom: 24px;
}

.solutions .solution.s2 img {
  margin-top: -50px;
}

.solutions .solution .solution-info {
  display: flex;
  align-items: center;
}

.solutions .solution .solution-info .solution-info-text {
  margin-left: 10px;

  display: flex;
  flex-direction: column;
}

.solutions .solution .solution-info .solution-info-text h1 {
  font-size: 24px;
  font-weight: 600;
  color: #fff;

  margin-bottom: 10px;
}

.solutions .solution .solution-info .solution-info-text a {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding: 10px 15px;
  border-radius: 7px;
  border: 1px solid #fff;
}
/* End of Solutions */

/* Services */

.services {
  position: relative;
  padding: 130px 0;
  background: linear-gradient(to bottom, #015f9e 100%, #007dd0 100%);
}

.services .services-bg {
  position: absolute;

  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.services h1 {
  font-size: 45px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
}

@media (max-width: 992px) {
  .services h1 {
    font-size: 25px;
  }
}

.services h2 {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  text-align: center;
}

.services h3 {
  font-size: 16px;
  color: #ffffffc4;
  font-weight: 600;
  text-align: center;
  margin: 0 auto;
  max-width: 75%;
  margin-top: 5px;
  letter-spacing: 1.2px;

  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .services h3 {
    max-width: 100%;
  }
}

.services .service {
  padding: 24px;
  border-radius: 32px 0 32px 0;
  background-color: #ffffff25;
  backdrop-filter: blur(7.3px);
  margin-top: 150px;
  height: 200px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.services .service img {
  width: 70%;
  margin-top: -150px;
  max-width: 200px;
}

.services .service h1 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-top: auto;
}

.services .service a {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 7px;
  padding: 10px 15px;
  margin-top: 10px;
}

/* End of Services */

/* Testimonials */

.testimonials {
  position: relative;
  padding: 100px 0;
}

.testimonials .testimonials_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #edf1f2;
}

.testimonials h1 {
  font-size: 45px;
  color: var(--main-branding);
  text-transform: uppercase;
  font-weight: 900;
}

@media (max-width: 992px) {
  .testimonials h1 {
    font-size: 25px;
  }
}

.testimonials h2 {
  font-size: 16px;
  color: var(--main-branding);
  text-transform: uppercase;
  font-weight: 600;
}

.testimonials .testimonials-img {
  width: 100%;
  height: 100%;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.testimonials .testimonials-img img {
  width: 150px;
}

.testimonials .test {
  padding: 24px;
  border-radius: 0 24px 0 24px;
  background-color: #fff;
  height: 280px;
}

.testimonials .test .test-head {
  display: flex;
  align-items: center;
}

.testimonials .test img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

.testimonials .test .test-head-info {
  margin-left: 24px;
}

.testimonials .test .test-head-info h1 {
  font-size: 20px;
  color: var(--main-branding);
  font-weight: 600;
}

.testimonials .test .test-head-info h2 {
  color: var(--font-thin);
  font-size: 16px;
}

.testimonials .test h3 {
  color: var(--font-thin);
  font-size: 16px;
  margin: 24px 0;
}

.testimonials .test .test-stars h1 {
  font-size: 28px;
  color: var(--main-branding);
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 10px;
}

/* End of Testimonials */
