section {
  padding: 6.25rem 20px !important;
}
#video-section {
  padding: 10rem 20px !important;
  text-align: center;
}
#video-section .btn {
  padding: 0.938rem 3.75rem;
  font-size: 1.125rem;
}
.video-container {
  max-width: 100%;
  margin: 0 auto;
}
#service-video {
  width: 100%;
  height: 70vh;
  border-radius: 16px;
}
.video-title {
  font-size: 2.5rem;
  margin: 30px 0 15px;
  color: var(--color-white);
  font-weight: 700;
}
.video-description {
  font-size: 1.3rem;
  color: var(--color-white);
  line-height: 1.6;
  padding: 0 10px;
}
.hero-btn__container {
  display: flex;
  justify-content: center;
  margin: 5rem 0 0;
  gap: 2rem;
}
.hero-btn__container .btn {
  display: block;
}

/* * ********FAQ SECTION******** * */
#FAQ-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.faq-sub__heading {
  font-size: 1.75rem;
  font-weight: 600;
  font-family: var(--font-mainHeading);
  padding: 0 15px;
  color: var(--color-white);
}
.faq-main__heading {
  font-size: 5rem;
  margin: 0.5rem 0 1.5rem;
}
.FAQ-bottom__heading {
  font-size: 1.6rem;
  margin: 0 0 5rem;
  color: var(--color-white);
}
#FAQ-button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 40px;
  font-weight: 800;
  width: fit-content;
}
/* * ********PROCESS SECTION******** * */
#process-section {
  padding: 0 20px 2rem;
}
.process-headings__container {
  text-align: center;
}
.process-sub__heading {
  font-size: 2rem;
  color: var(--color-white);
  font-family: var(--font-mainHeading);
}
.process-main__heading {
  font-size: 5rem;
  text-transform: uppercase;
  margin: 0.5rem 0 1.5rem;
}
.process-bottom__heading {
  color: var(--color-white);
  font-size: 1.3rem;
  padding: 0 10%;
}
.processes-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin: 3rem 0 0;
  text-align: center;
}
.process-container {
  color: #a0a0a0;

  &.active {
    color: #fff;
  }
}
.process-heading {
  margin: 2rem 0 1rem;
}
.process-img__container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(rgba(74, 134, 0, 0.5), rgba(74, 134, 0, 0.5));
  margin: 0 auto;
  &.active {
    background: var(--color-dark-green);
  }
}
.process-img__container img {
  width: 60%;
  opacity: 0.6;
  &.active {
    opacity: 1;
  }
}
.process-heading {
  font-size: 1.8rem;
  color: inherit;
}
.process-paragraph {
  font-size: 1.1rem;
  color: inherit;
}
.country-name {
  font-size: 1.5rem;
}
.observe {
  position: relative;
  left: -70%;
  opacity: 0;
  transition: var(--transition-900ms);

  &.active {
    left: 0;
    opacity: 1;
  }
}
.image-observe {
  transform: rotateY(-90deg);
  transition: var(--transition-900ms);
  &.active {
    transform: unset;
  }
}
.portfolios-container {
  margin: 4rem 0 0;
}

/* * ********BREAKDOWN 1440px******** * */
@media screen and (max-width: 1440px) {
}

/* * ********BREAKDOWN 1280px******** * */
@media screen and (max-width: 1280px) {
}

/* * ********BREAKDOWN 1080px******** * */
@media screen and (max-width: 1080px) {
  /* * ********FAQ SECTION******** * */
  #FAQ-section {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 40px;
  }
  .FAQ-headings__container {
    text-align: center;
  }
  .faq-sub__heading {
    font-size: 2.5rem;
  }
  .faq-main__heading {
    font-size: 6rem;
  }
  .FAQ-bottom__heading,
  #FAQ-button {
    display: none;
  }

  .processes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 3rem 0 0;
    text-align: center;
    justify-content: center;
  }
  .process-container {
    flex: 0.3;
  }
}

/* * ********BREAKDOWN 768px******** * */
@media screen and (max-width: 768px) {
  /* * ********FAQ SECTION******** * */
  .faq-sub__heading {
    font-size: 2.2rem;
  }
  .faq-main__heading {
    font-size: 4.2rem;
  }

  /* * ********PROCESS SECTION******** * */
  .process-main__heading {
    font-size: 4rem;
  }
  .popup-contact__formContainer {
    display: none;
    &.active {
      display: none;
    }
  }
}

/* * ********BREAKDOWN 576px******** * */
@media screen and (max-width: 576px) {
  /* * ********PAGE SERVICES SECTION******** * */
  #FAQ-section {
    gap: 10px;
  }
}

/* * ********BREAKDOWN 480px******** * */
@media screen and (max-width: 480px) {
  #video-section .btn {
    padding: 0.938rem 3rem;
    font-size: 1.125rem;
  }

  /* * ********PROCESS SECTION******** * */
  .process-main__heading {
    font-size: 3rem;
  }
}
