*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
}
body {
  /* font-family: "Manrope", sans-serif; */
  font-family: "Open Sans", sans-serif;
}

/* --------------HERO SECTION---------------- */
.hero-section {
  padding: 12rem 0;
}

.hero_left-box {
  color: #282938;
}

.hero-img {
  width: 100%;
}

/* ----------------WHO SECTION------------------------ */

.who-section {
  padding-top: 8rem;
  background-color: #f4f5f5;
}

.who_left-box {
  color: #282938;
}

.who_right-box {
  color: #282938;
}

.who-img {
  width: 100%;
}
/* ----------------PROCESS SECTION------------------------ */

.process-section {
  padding: 12rem 0;
}
.circle_line-box {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.circle_ {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background-color: #2405f2;
}
.line_ {
  width: 80%;
  /* background-color: #2405f2; */
  height: 2px;
  border: 1px dashed #2505f2b9;
}

/* ----------------MISSION SECTION------------------------ */

.mission-section {
  padding: 12rem 0;
  background-color: #eef4fa;
}

.mission-img {
  width: 100%;
}

/* -------------------WORK SECTION--------------------- */
.work-section {
  padding: 12rem 0;
}

.work-box {
  padding: 4.8rem 2.8rem;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 5px;
}

.work-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.work-box:hover .work-icon {
  animation: shaking 0.5s linear;
}

@keyframes shaking {
  0% {
    transform: rotate(15deg);
  }

  25% {
    transform: rotate(-15deg);
  }
  50% {
    transform: rotate(15deg);
  }
  75% {
    transform: rotate(-15deg);
  }

  100% {
    transform: rotate(0);
  }
}
.work_logo-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.work-logo {
  height: 3.2rem;
}

/* ----------------------TEAM SECTION------------------ */
.team-section {
  padding: 12rem 0;
  background-color: #f4f6fc;
}

.user-box {
  background-color: #fff;
  padding: 4.8rem 0;
  color: #1d2130;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
}

.user-img {
  width: 50%;
  margin-bottom: 3.2rem;
}

.user_img-box {
  position: relative;
  overflow: hidden;
}
.user_img-box:hover .overlay {
  top: 40%;
  left: 50%;
  opacity: 1;
}

.overlay {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(348deg, #5239fa 0%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.4s;
  opacity: 0;
}

.overlay_icon-box {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition-delay: 0.3s;
}
.overlay_icon-box a {
  text-decoration: none;
}
.overlay-icon {
  font-size: 1.8rem;
  color: #fff;
}

/* ------------------FOOTER SECTION-------------- */

.footer-section {
  padding: 9.6rem 0 0 0;
  background-color: #1c1e53;
}

.contact-box_footer {
  background-color: #fcd980;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.footer-icon_box {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
.footer-icon {
  color: #fff;
  font-size: 2.4rem;
}

.nav-items {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.footer-last {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 0;
}
.nav-link_:link,
.nav-link_:visited {
  color: #282938;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
  text-decoration: none;
}
.nav-link_:hover,
.nav-link_:active {
  color: #1c1e53;
}
/* -------------------HEADER SECTION----------- */

.nav-btn:link,
.nav-btn:visited {
  padding: 1.6rem 4.8rem;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
  border: 1px solid #f4f6fc;
  border-radius: 4.1rem;
  transition: all 0.3s;
}
.nav-btn:hover,
.nav-btn:active {
  color: #1c1e53;
  background-color: #fff;
}

.navbar {
  background-color: #1c1e53;
  padding: 2rem 0;
}
.nav-item {
  margin-right: 1.8rem;
}
.nav-link:link,
.nav-link:visited {
  color: #bbbbcb;
  transition: all 0.3s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
}

.nav-link:hover,
.nav-link:active {
  color: #fff;
}

.nav-link::after {
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transition: all 0.3s;
  transform-origin: left;
}
.nav-link::before {
  content: "";
  display: inline-block;
  bottom: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.3s;
  transform-origin: right;
  transform: scaleX(0);
}

.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-link:hover::before {
  transform: scaleX(1);
}
.sticky {
  position: fixed;
  width: 100%;
  background-color: #1c1e53;
  z-index: 999;
}
