:root {
  --white-color: white;
  --black-color: black;
  --dark-blue: #000513;
  --gre-color: rgb(249, 249, 249);
}

/* ================= header ================= */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Poppins;
}

.icons {
  display: none;
}

header {
  background-color: var(--white-color);
  padding: 15px 10%;
  width: 100%;
  position: fixed;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  align-items: center;
  z-index: 3;
  top: 0;
}


.img-flex img {
  width: 250px;
}

ul li {
  display: inline-block;
  padding-right: 30px;
  cursor: pointer;
  font-size: 15px;
  position: relative;
  color: var(--black-color);
}

ul li::after {
  content: "";
  position: absolute;
  width: 60%;
  transform: scaleX(0);
  height: 3px;
  bottom: 0;
  left: 0;
  background-color: #0087ca;
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

ul li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* ====================== section one ===================== */
.banner {
  background-color: var(--black-color);
  width: 100%;
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner::before {
  background-image: url(../images/young-black-race-man-with-blueprint-stading-near-glass-building-1.png);
  height: 80vh;
  width: 100%;
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  opacity: 70%;
}
.body {
  isolation: isolate;
}

.body h2 {
  font-size: 40px;
  color: #fff;
  font-weight: 500;
}
.body p {
  text-align: center;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  position: relative;
}
.body p::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 5px;
  bottom: -20%;
  left: 16%;
  background-color: #ef6828;
}

.about_us {
  background-color: var(--white-color);
}

.about_us .container {
  margin: 6vw 8vw;
}
.about_txts {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.about_txts .btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 2rem;
  margin-bottom: 3rem;
}
.about_txts .btns button {
  background-color: #fff;
  border: 1px solid #ef6828;
  padding: 0.5rem;
  font-weight: 500;
  color: var(--neutral-700, #3d445c);
  transition: 0.3s;
}
.about_txts .btns button:hover {
  cursor: pointer;
  background-color: #3d445c;
  color: var(--white-color);
  border: ipx solid var(--white-color);
}

.about_txts .txts {
  width: 60%;
  justify-content: center;
}
.about_txts .txts p {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 30px;
}



@media only screen and (min-width: 321px) and (max-width: 768px) {

  .body h2 {
    font-size: 30px;
    color: #fff;
    font-weight: 500;
  }



  .banner {
    height: 50vh;
  }


  .banner::before {
    height: 50vh;
  }


  .icons {
    display: block;
    font-size: 25px;
    cursor: pointer;
  }

  .about_txts .txts {
    width: 90%;
    justify-content: center;
  }

  .about_txts .txts p {
    font-size: 13px;
    font-weight: 400;  
    text-align: justify;
    line-height: 30px;
  }

  .icons1 {
    right: 50px;
    top: 30px;
    position: absolute;
    color: var(--black-color);
  }

  .icons2 {
    top: 50px;
    right: 50px;
    position: absolute;
    color: var(--white-color);
  }

  .img-flex img {
    width: 170px;
  }

  ul {
    background-color: var(--dark-blue);
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 70px;
    right: -100%;
    bottom: 0;
    padding-left: 30px;
    z-index: 3;
    padding-top: 40px;
    transition: all ease 0.5s;
  }
  ul li {
    display: block;
    color: var(--white-color);
    padding-top: 30px;
    font-size: 15px;
    margin-left: 20px;
  }

  ul li::after {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1440px) {

  .about_txts .txts p {
    font-size: 13px;
    font-weight: 400;
    padding: 10px 1%;
    text-align: justify;
    line-height: 30px;
  }
}
