*,
*::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;
}
/* -----------------CONTACT SECTION-------------- */
.contact-section {
  padding: 12.8rem 0;
}

.contact-form {
  background-color: #f4f6fc;
  padding: 4.8rem;
  font-family: inherit;
}
.contact-btn:link,
.contact-btn:visited {
  color: #f4f6fc;
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.2rem;
  padding: 1.6rem 6.4rem;
  background-color: #282938;
  border-radius: 41px;
}

/* ------------------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;
}
