@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  scroll-behavior: smooth;
}
p {
  color: #111;
  font-weight: 300;
}

.banner {
  width: 100%;
  min-height: 100vh;
  position: relative;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("./images/1.jpg");
  background-size: cover;
}

.banner .content {
  max-width: 900px;
  text-align: center;
  margin-top: 5rem;
}
.banner .content h1 {
  font-size: 5em;
  color: #fff;
}
.banner .content p {
  font-size: 1em;
  color: #fff;
}
.btn {
  font-size: 1em;
  color: #fff;
  background: #ff0157;
  display: inline-block;
  padding: 10px 20px;
  margin-top: 20px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  transition: 0.5s;
}
.btn:hover {
  letter-spacing: 6px;
}

header {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  padding: 40px 100px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.5s;
}
.sticky {
  background: #fff;
  padding: 10px 100px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.sticky > .logo {
  color: #111;
}
header .logo {
  font-weight: 800;
  font-size: 2em;
  color: #fff;
  text-decoration: none;
  width: 200px;
}
.logospan {
  color: #ff0157;
}
.logoimg {
  height: 80px;
  width: 80px;
}

.navigation {
  position: relative;
  display: flex;
}
.navigation li {
  list-style: none;
  margin-left: 30px;
}
.navigation li a {
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}
.sticky > .navigation > li > a {
  color: #111;
}
.navigation li a:hover {
  color: #ff0157;
  border-bottom: 2px solid #ff0157;
}

section {
  padding: 100px;
}
.row {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.row .col {
  width: 50%;
  position: relative;
}
.row .col p {
  letter-spacing: 2;
  padding: 20px;
}
.titlea {
  color: #111;
  font-size: 2em;
  font-weight: 300;
}
.titlea span {
  color: #ff0157;
}
.imagebox {
  width: 100%;
  height: 100%;
  position: relative;
}
.imagebox > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  color: #111;
  font-size: 2em;
  font-weight: 300;
  width: 100%;
  align-items: center;
  /* justify-content: center;
flex-direction: column; */
  text-align: center;
}
.title span {
  color: #ff0157;
}

.services .content {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  margin-top: 40px;
}

.services .content .box {
  width: 340px;
  margin: 20px;
  border: 15px solid #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.services .content .box .imgbox {
  position: relative;
  width: 100%;
  height: 300px;
}

.services .content .box .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services .content .box .text {
  padding: 15 0px 5px;
}
.services .content .box .text h3 {
  color: #111;
  font-weight: 300;
}

.expert .content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 40px;
}

.expert .content .box {
  margin: 15px;
  width: 250px;
}

.expert .content .box .imgbox {
  position: relative;
  width: 100%;
  height: 300px;
}

.expert .content .box .imgbox img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert .content .box .text {
  padding: 15px 0px 5px;
}
.expert .content .box .text h3 {
  font-weight: 400;
  color: #111;
}
.testimonial {
  background: url("/images/jf-brou-915UJQaxtrk-unsplash.jpg");
  background-size: cover;
}
.white .titleText,
.white p {
  color: #fff;
}

.dotting {
  text-decoration: underline;
}

.testimonial .content {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 40px;
}
.testimonial .content .box {
  background: #fff;

  margin: 20px;
  padding: 40px;
  width: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.testimonial .content .box .imgbox {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial .content .box .imgbox img {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial .content .box .text {
  text-align: center;
}
.testimonial .content .box .text p {
  color: #666;
  font-style: oblique;
}
.testimonial .content .box .text h3 {
  margin-top: 30px;
  color: #ff0157;
}

.contact {
  background: url("./images/4.jpg");
  background-size: cover;
}
.contactForm {
  padding: 75px 50px;
  background: #fff;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  margin-top: 50px;
}

.contactForm h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 500;
}
.contact .title .titleText {
  color: #fff;
}
.contact .title p {
  color: #fff;
}
.contactForm .inputbox {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}

.contactForm .inputbox input,
.contactForm .inputbox textarea {
  width: 100%;
  border: 1px solid #555;
  padding: 10px;
  color: #111;
  outline: none;
  font-size: 16px;
  font-weight: 300;
}

.contactForm .inputbox input[type="submit"] {
  font-size: 1em;
  color: #fff;
  background: #ff0157;
  display: inline-flex;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: 0.5s;
  max-width: 100px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.menuToggle {
  display: none;
}

@media (max-width: 991px) {
  header,
  header.sticky {
    padding: 10px 20px;
  }
  header .navigation {
    display: none;
  }
  .menuToggle {
    display: block;
    color: #fff;
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  header.sticky .menuToggle {
    filter: invert(1);
  }
  header.active .logoimg {
    display: none;
  }

  header .navigation.active {
    width: 100%;
    height: calc(100%-70px);
    position: fixed;
    top: 50px;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
  }
  header .navigation.li {
    list-style: none;
    margin-left: 0;
  }
  header .navigation li a {
    text-decoration: none;
    color: #111;
    font-size: 1.6em;
    font-weight: 300;
  }
  section {
    padding: 20px;
  }
  .banner .content h1 {
    font-size: 2.1em;
    color: #fff;
  }

  .row {
    flex-direction: column;
  }
  .row .col {
    position: relative;
    width: 100%;
  }

  .row .col .imagebox {
    height: 300px;
    margin-top: 30px;
  }
  .services .content {
    margin-top: 20px;
  }
  .services .content .box {
    margin-top: 10px;
  }
  .services .content .box .imgbox {
    height: 260px;
  }
  .title {
    text-align: center;
  }
  .expert .title .title {
    font-size: 1.3em;
    margin-bottom: 30px;
  }
  .expert .title p {
    font-size: 20px;
  }

  .testimonial .content .box {
    margin-left: 10px;
  }

  .contactForm {
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 35px 40px;
  }
}
