@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap");
html {
  box-sizing: border-box;
  font-size: 62.5%;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* =============================== First Section================================= */

/* Header */

.banner header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 4rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10000;
}

.banner header .logo {
  color: #fff;
  text-decoration: none;
  font-size: 2.4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1rem;
  transition: 0.7s;
}

.banner header .logo:hover {
  transform: rotateY(52deg) scale(1.3);
}

.banner header .logo span {
  transition: 0.7s;
}

.banner header .logo:hover span {
  -webkit-text-stroke: 0.2rem #000;
  color: transparent;
}

.banner header .toggle {
  position: relative;
  background-image: url(../img/toggle.png);
  background-size: cover;
  cursor: pointer;
  height: 2.8rem;
  width: 3.6rem;
}

/* Content */

.banner {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #ca5734;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.banner .content {
  position: relative;
  max-width: 75rem;
  text-align: center;
}

.banner .content h2 {
  color: #fff;
  font-size: 6.1rem;
}

.banner .content p {
  color: #fff;
  font-size: 1.8rem;
}

/* ============================ Second Section =========================== */

/* About */

.about {
  position: relative;
  width: 100%;
  display: flex;
}

.about .contentBx {
  background-color: #2e3b16;
  padding: 10rem;
  width: 50%;
}

.heading {
  color: #fff;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-bottom: 1rem;
}

.text {
  color: #fff;
  font-size: 1.6rem;
}

.about .imgBx {
  background-image: url(../img/window.jpg);
  background-position: center;
  background-size: cover;
  width: 50%;
}

/* ============================ Third Section =========================== */

/* Services */

.services {
  background: #2e3b16;
  text-align: center;
  padding: 10rem;
}

.services .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 6rem;
  width: 100%;
}

.services .container .serviceBx {
  position: relative;
  background-color: #fff;
  width: 35rem;
  height: 40rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.services .container .serviceBx img {
  max-width: 10rem;
}

.services .container .serviceBx h2 {
  font-weight: 500;
  font-size: 2rem;
  letter-spacing: 0.1rem;
}

/* ============================ Section Four =========================== */

/* Technology */

.technology {
  background: #3f8ffc;
  width: 100%;
  padding: 30rem 10rem 10rem 10rem;
  margin-top: -30rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.technology .contentBx {
  max-width: 80rem;
}

.technology .imgBx {
  max-width: 25rem;
}

.technology .imgBx img {
  max-width: 100%;
}

/* ============================ Section Five =========================== */

/* Clients */

.clients {
  background-color: #162c3b;
  padding: 10rem;
  text-align: center;
}

.clients .imgBx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4rem;
}

.clients .imgBx img {
  cursor: pointer;
  max-width: 20rem;
  margin: 2rem;
  opacity: 0.25;
  transition: 0.34s;
}

.clients .imgBx img:hover {
  opacity: 1;
}

/* ============================ Section Six =========================== */

/* Testimonials */

.testimonials {
  position: relative;
  padding: 10rem;
  background-color: #12222d;
  text-align: center;
}

.testimonials .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  flex-wrap: wrap;
}

.testimonials .container .contentBx {
  background-color: #fff;
  padding: 6rem 5rem;
  width: 51rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}

.testimonials .container .contentBx p {
  font-style: italic;
  font-size: 1.6rem;
}

.testimonials .container .contentBx h3 {
  width: 100%;
  text-align: end;
  font-size: 2rem;
  font-weight: 500;
  color: #3f8ffc;
}

/* ============================ Section Seven =========================== */

/* Contact */

.contact {
  padding: 10rem;
  background-color: #162c3b;
  text-align: center;
}

.imgBx2 {
  background-image: url(../img/bg2.jpg);
  background-size: cover;
  background-position: center;
  width: 50%;
}

.redBg {
  background-image: url(../img/red.jpg);
  background-size: cover;
  background-position: center;
}

.form .inputBx {
  margin-bottom: 4rem;
}

.form .inputBx input,
textarea {
  background: transparent;
  border: none;
  box-shadow: none;
  width: 100%;
  outline: none;
  padding: 1rem 0;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  border-bottom: 0.2rem solid #fff;
}

.form .inputBx input::placeholder,
textarea::placeholder {
  color: #fff;
}

.form .inputBx textarea {
  min-height: 15rem;
}

.form .inputBx input[type="submit"] {
  border-bottom: none;
  width: 15rem;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 400;
  transition: 0.4s;
}

.form .inputBx input[type="submit"]:hover {
  box-shadow: 0 0 10px #162c3b, 0 0 40px #162c3b, 0 0 80px #162c3b,
    0 0 160px #162c3b;
  transform: scale(1.06);
}

/* ============================ Section Seven =========================== */

/* Footer */

.footer {
  background: #162c3b;
  padding: 2rem 10rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer ul li {
  list-style: none;
}

.footer ul li a {
  text-decoration: none;
  display: inline-block;
  margin: 0 1rem;
}

.footer ul li a img {
  filter: invert(1);
  max-width: 2rem;
}

@media (max-width: 991px) {
  .banner {
    padding: 5rem;
  }
  .banner header {
    padding: 2rem 5rem;
  }
  .banner content h2 {
    font-size: 3.6rem;
  }
  .banner .content p {
    font-size: 1.6rem;
  }
  .about {
    flex-direction: column;
  }
  .about .contentBx,
  .about .imgBx {
    width: 100%;
    padding: 5rem;
    min-height: 40rem;
    text-align: center;
  }
  .services {
    padding: 5rem;
  }
  .services .container {
    justify-content: center;
    margin-top: 2rem;
  }
  .services .container .serviceBx {
    margin: 2rem;
    width: 30rem;
    height: 35rem;
  }
  .technology {
    padding: 30rem 5rem 5rem 5rem;
    justify-content: center;
    flex-direction: column;
  }
  .technology .imgBx {
    margin-top: 4rem;
    max-width: 25rem;
  }
  .clients {
    padding: 5rem;
  }
  .testimonials {
    padding: 10rem 3rem;
  }
  .testimonials .contentBx {
    padding: 6rem 4rem;
    max-width: 550px;
    margin-bottom: 4rem;
  }
  .testimonials .contentBx:last-child {
    margin-bottom: 0rem;
  }
  .contact {
    padding: 5rem;
  }
  .footer {
    padding: 2rem 5rem;
    flex-direction: column-reverse;
    text-align: center;
  }
  .footer ul {
    margin-bottom: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  .banner header {
    padding: 2rem 2rem;
  }
  .banner .content h2{
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
