*,
*::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-top: 18rem;
  padding-bottom: 12rem;
  background-color: #1c1e53;
}
.hero-text_primary {
  margin-bottom: 2.5rem;
}

.hero-text_description {
  margin-bottom: 5.6rem;
  width: 51rem;
}
.cta-box {
  display: flex;
  align-items: center;
  gap: 3.2rem;
}
.cta-btn_primary:link,
.cta-btn_primary:visited {
  text-decoration: none;
  padding: 1.6rem 5.6rem;
  border-radius: 4rem;
  color: #1b1c2b;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 3.2rem;
  font-family: "Manrope", sans-serif;
  background-color: #fcd980;
  transition: all 0.2s;
}
.cta-btn_primary:hover,
.cta-btn_primary:active {
  color: #fff;
  box-shadow: 0 0.8rem 1rem rgba(255, 255, 255, 0.06);
}

.cta-btn_secondary:link,
.cta-btn_secondary:visited {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.8rem;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-btn_secondary:hover,
.cta-btn_secondary:active {
  color: #fcd980;
}

.cta-btn_secondary:hover .icon-arrow {
  transform: translateX(5px);
  color: #fcd980;
}
.icon-arrow {
  color: #fff;
  vertical-align: middle;
  transition: all 0.3s;
}

.img-hero {
  width: 100%;
  animation: hero-img 5s linear infinite alternate;
}

@keyframes hero-img {
  0% {
    transform: translateY(50px);
  }

  100% {
    transform: translateY(-50px);
  }
}

/* ---------------WORK SECTION---------- */

.work-section {
  padding: 12.8rem 0;
  background-color: #f4f6fc;
}

.work-title {
  margin-bottom: 4.8rem;
  color: #282938;
}

.work-description {
  margin-bottom: 1.8rem;
  color: #666773;
}

.work-link:link,
.work-link:visited {
  color: #2405f2;
  text-decoration: none;
}
.work-link:hover,
.work-link:active {
  color: #2405f2;
}

.icon-arrow_work {
  color: #2405f2;
  transition: all 0.3s;
}
.work-link:hover .icon-arrow_work {
  transform: translateX(5px);
}

.box {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background: #2405f2;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  color: #fff;
  font-size: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.box span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
}
.box::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 60%;
  right: 60%;
  width: 100%;
  height: 100%;
  background-color: #fcd980;
  border-radius: 20px;
  z-index: 2;
}

.box::before {
  content: "";
  position: absolute;
  display: inline-block;
  left: 15%;
  bottom: 15%;
  width: 100%;
  height: 100%;
  background-color: #5239fa;
  border-radius: 20px;
  z-index: 3;
  /* transform: rotateX(45deg); */
}

.box-title {
  margin-top: 1.8rem;
  margin-bottom: 1rem;
  color: #282938;
}

.box-description {
  color: #666773;
}

/* ---------------PROJECT SECTION----------------- */

.project-section {
  padding: 12rem 0;
  background-color: #fff;
}
.project-title_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6.4rem;
}
.project-title {
  /* margin-bottom: 6.4rem; */
  color: #282938;
}

.project-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.project-link:link,
.project-link:visited {
  text-decoration: none;
  color: #282938;
}
.project-link:hover,
.project-link:active {
  color: #282938;
}

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

.project-link:hover .icon-arrow_project {
  transform: translateX(5px);
}

.project-img_box-1 {
  position: relative;
}

.img-overlay_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(306deg, #1c1e53 0%, rgba(28, 30, 83, 0.42) 100%);
  padding: 10rem 3.6rem 4.5rem 5.6rem;
  transform: scale(0);
  transition: all 0.7s;
  /* transform-origin: left; */
}

.overlay-title {
  margin-bottom: 1rem;
}

.overlay-link:link,
.overlay-link:visited {
  color: #fcd980;
  text-decoration: none;
}

.overlay-link:hover,
.overlay-link:active {
  color: #fcd980;
}

.icon-arrow_overlay {
  color: #fcd980;
  transition: all 0.3s;
}

.overlay-link:hover .icon-arrow_overlay {
  transform: translateX(5px);
}

.project-img_box-1:hover .img-overlay_box {
  transform: scale(1);
}

.project-img_box {
  position: relative;
  overflow: hidden;
}

.img-overlay_box-large {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(306deg, #1c1e53 0%, rgba(28, 30, 83, 0.42) 100%);
  padding: 10rem 3.6rem 4.5rem 5.6rem;
  padding: 30rem 4.5rem 8rem 4.5rem;
  transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);

  transform: translateX(-100%);
}

.project-img_box:hover .img-overlay_box-large {
  transform: translate(0);
}

/* ---------------FEATURES SECTION------------------- */

.features-section {
  padding: 11.8rem;
  background-color: #f4f6fc;
}

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

.features-icon {
  width: 3.2rem;
  height: 3.2rem;
}
.features-box:hover .features-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);
  }
}
/* -------------------TESTIMONIAL SECTION------------- */

.testimonial-section {
  padding: 11.8rem 0;
  background-color: #f9fafd;
}

.avatar {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
}

.user-box {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.btn-carosel {
  border: none;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #eee;
}

.btn-carosel:not(:last-child) {
  margin-right: 1.8rem;
}

.btn-carosel:hover,
.btn-carosel:active {
  background-color: #5239fa;
}

/* ---------------FAQ SECTION------------------ */

.faq-section {
  padding: 11.8rem 0;
}

.blue {
  color: #2405f2;
}

/* ------------------CONTACT SECTION----------------- */

.contact-text_box {
  padding: 9.6rem 4.8rem 15rem 4.8rem;
  background-image: linear-gradient(#1c1e53a2, #1c1e53a2),
    url(/images/contact.jpg);
  background-size: cover;
  background-position: center;
}

.contact-form_box {
  padding: 9.6rem 4.8rem 9.6rem 4.8rem;
  background-color: #1c1e53;
}

.form {
  font-family: "Open Sans", sans-serif;
  color: #f4f6fc;
}

.cnt-btn_primary:link,
.cnt-btn_primary:visited {
  width: 100%;
  display: block;
  padding: 1.2rem;
  background-color: #fcd980;
  color: #1b1c2b;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  /* line-height: 3.2rem; */
  text-decoration: none;
  border-radius: 4.1rem;
  text-align: center;
  transition: all 0.3s;
}
.cnt-btn_primary:hover,
.cnt-btn_primary:active {
  color: #fff;
}

.cnt-link:link,
.cnt-link:visited {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.2rem;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

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

.icon-arrow_contact {
  color: #fff;
  transition: all 0.3s;
}

.cnt-link:hover .icon-arrow_contact {
  transform: translateX(5px);
}
.cta-btn_box {
  text-align: center;
}

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

.blog-section {
  padding: 11.8rem 0;
  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;
}

.icon-arrow_blog {
  color: #282938;
}

.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;
}
