*,
*::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: 12.8rem 0 10rem 0;
}

.blog-img {
  width: 100%;
}

.blog_hero-btn:link,
.blog_hero-btn:visited {
  color: #2405f2;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2.8rem; /* 175% */
  transition: all 0.3s;
}

.blog_hero-btn:hover,
.blog_hero-btn:active {
  border-bottom: 1px solid #2405f2;
}

/* -----------------------BLOG SECTION---------------------- */

.blog-section {
  padding-bottom: 12rem;
  background-color: #fff;
}
.blog-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: all 0.6s;
}

.blog-date {
  color: #282938;
}

.blog-link:link,
.blog-link:visited {
  color: #282938;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
}
.blog-link:hover,
.blog-link:active {
  color: #282938;
}

.blog-link:hover .icon-arrow_blog {
  transform: translateX(5px);
}

.icon-arrow_blog {
  color: #282938;
  transition: all 0.3s;
}

.blog-img_box {
  overflow: hidden;
}

.blog-img_box:hover .blog-img {
  transform: scale(1.2) rotate(5deg);
}
/* ------------------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;
}
