/* * ********HERO SECTION******** * */
#hero-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  place-items: center;
  min-height: 100vh;
  padding: 8rem 0 6rem;
}
.hero-btn__container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin: 6rem 0 0; 
  transition: var(--transition-1200ms);
  left: -0%;
  
  &.active {
    left: 0;
  }
}
.logo-home {
    width: 8rem;
}
.hero-sub__heading {
  font-size: 1.8rem;
  color: var(--color-white);
  padding: 0 0 0 10px;
  transition: var(--transition-1100ms);
  left: -0%;
  
  &.active {
    left: 0;
  }
}
.hero-main__heading {
  font-weight: 800;
  font-size: 4.8rem;
  margin: .5rem 0 2rem;
  transition: var(--transition-1000ms);
  left: 0%;
  
  &.active {
    left: 0;
  }
}
.hero-bottom__heading {
  font-size: 1.5rem;
  color: var(--color-white);
  transition: var(--transition-900ms);
  left: -0%;
  
  &.active {
    left: 0;
  }
}
.hero-banner__container {
  position: relative;
}
.hero-banner {
  animation: floatingImage 5s linear infinite alternate;
}
.floating-image {
  position: absolute;
  width: 10rem;
  top: 0;
  right: 0;
  animation: floatingImage 3s linear infinite alternate;
}
.floating-image__two {
  top: unset;
  bottom: -10%;
  width: 15rem;
  left: 0;
  z-index: 1;
}
.hero-banner__container {
  transition: var(--transition-300ms);
  
  &.active {
    left: 0;
  }
}
@keyframes floatingImage {
  0% {
    transform: translateY(0);
  } 50% {
    transform: translateY(-5%);
  } 100% {
    transform: translateY(0);
  }
}

/* * ********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: .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;
}

/* * ********PAGE SERVICES SECTION******** * */
#service-section {
  padding: 2rem 20px 0;
  opacity: 0;
  transform: scale(.5) rotate(240deg);
  transition: var(--transition-900ms);
  &.active {
    opacity: 1;
    transform: unset;
  }
}
.page-services__headingContainer {
  text-align: center;
}
.page-service__subHeading {
  font-size: 2rem;
  font-family: var(--font-mainHeading);
  color: var(--color-white);
  letter-spacing: 1px;
  font-weight: 800;
}
.page-service__mainHeading {
  font-size: 5rem;
  margin: 1rem 0 5rem;
  text-transform: uppercase;
}
.page-services__buttonContainer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.page-services__buttonContainer .btn {
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 800;
}
.page-services__buttonContainer .btn.active {
  background: #222;
  border: 2px solid var(--color-acidic-green);
  box-shadow: unset;
  color: var(--color-white);
  &::after, &::before {
    background: none;
    border: none;
  }
}
.page-services__container {
  margin: 5rem 0 0;
}
.page-service__container {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  padding: 0 20px;
  gap: 0 70px;
  &.active {
    display: grid;
  }
}
.page-service__detailsContainer h3 {
  font-size: 2.5rem;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 3rem;
}
.page-service__detailsContainer p {
  font-size: 1.3rem;
  color: var(--color-white);
  font-weight: 600;
}
.page-service__para {
  margin: 1.5rem 0;
}
.page-service__detailsContainer .btn {
  display: flex;
  align-items: center;
  width: fit-content;
  gap: 30px;
  margin: 3rem 0 0;
}
.page-service__imgContainer {
  padding: 7rem 1rem 0;
}
.page-service__img {
  border-radius: 10px;
  border: 2px solid var(--color-acidic-green);
}

/* * ********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: .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, .5), rgba(74, 134, 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;
}

/* * ********BREAKDOWN 1630PX******** * */
@media screen and (min-width: 1441px) and (max-width: 1650px) {
  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    margin: .5rem 0 1rem;
  }
  .hero-bottom__heading {
    font-size: 1.4rem;
  }
  .hero-buttons__container {
    margin: 4rem 0 0; 
  }
}

/* * ********BREAKDOWN 1440px******** * */
@media screen and (max-width: 1440px) {
  html {
    font-size: 15px;
  }

  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 4.4rem;
  }
  .hero-sub__heading {
    font-size: 1.7rem;
  }
  .hero-main__heading {
    font-weight: 800;
    font-size: 4.4rem;
    margin: .5rem 0 2rem;
  }
  .hero-bottom__heading {
    font-size: 1.4rem;
  }
  .hero-btn__container .btn {
    padding: 14px 55px;
  }

  /* * ********PAGE SERVICES SECTION******** * */
  .page-services__buttonContainer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 20px;
  }
}

/* * ********BREAKDOWN 1280px******** * */
@media screen and (max-width: 1280px) {
  html {
    font-size: 14px;
  }
  
  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 4rem;
  }
  .hero-sub__heading {
    font-size: 1.5rem;
  }
  .hero-main__heading {
    font-size: 4.4rem;
  }
  .hero-bottom__heading {
    font-size: 1.3rem;
  }
  .hero-btn__container  {
    gap: 40px;
  }
  .hero-btn__container .btn {
    padding: 14px 45px;
  }
}

/* * ********BREAKDOWN 1080px******** * */
@media screen and (max-width: 1080px) {
  html {
    font-size: 13px;
  }

  /* * ********HERO SECTION******** * */
  #hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-banner__container {
    display: none;
  }
  .hero-heading__container {
    text-align: center;
  }
  .hero-btn__container {
    justify-content: center;
  }
  .hero-sub__heading {
    font-size: 2rem;
  }
  .hero-main__heading {
    font-size: 5.5rem;
  }
  .hero-bottom__heading {
    font-size: 1.6rem;
  }
  .hero-btn__container  {
    gap: 40px;
  }
  .hero-btn__container .btn {
    padding: 14px 60px;
  }

  /* * ********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;
  }

  /* * ********PAGE SERVICES SECTION******** * */
  .page-service__container {
    grid-template-columns: 1fr;
    gap: 50px 0;
  }
  .page-service__imgContainer {
    display: flex;
    justify-content: center;
  }
  .page-service__img {
    width: 85%;
  }
  .page-service__detailsContainer {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin: 3rem 0 0;
  }
  .page-service__detailsContainer h3 {
    font-size: 4rem;
  }
  .page-service__detailsContainer p {
    font-size: 1.8rem;
  }
  .page-service__detailsContainer .btn {
    margin: 4rem auto 0;
  }

  /* * ********PROCESS SECTION******** * */
  .processes-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 3rem 0 0;
    text-align: center;
    justify-content: center;
  }
  .process-container {
    flex: .3;
  }
}

/* * ********BREAKDOWN 768px******** * */
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }

  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 4.5rem;
  }
  .hero-btn__container  {
    gap: 30px;
  }
  .hero-btn__container .btn {
    padding: 12px 50px;
    font-size: 16px;
  }

  /* * ********FAQ SECTION******** * */
  .faq-sub__heading {
    font-size: 2.2rem;
  }
  .faq-main__heading {
    font-size: 4.2rem;
  }

  /* * ********PAGE SERVICES SECTION******** * */
  .page-service__img {
    width: 100%;
  }
  .page-service__detailsContainer h3 {
    font-size: 3.5rem;
  }
  .page-service__detailsContainer p {
    font-size: 1.6rem;
  }
  .page-service__subHeading {
    font-size: 2rem;
  }
  .page-service__mainHeading {
    font-size: 4rem;
  }

  /* * ********PROCESS SECTION******** * */
  .process-main__heading {
    font-size: 4rem;
  }
  .popup-contact__formContainer {
    display: none;
    &.active {
      display: none;
    }
  }
}

/* * ********BREAKDOWN 576px******** * */
@media screen and (max-width: 576px) {
  html {
    font-size: 11px;
  }

  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 5rem;
  }
  .hero-btn__container  {
    gap: 20px;
  }
  .hero-btn__container .btn {
    padding: 12px 40px;
    font-size: 15px;
  }

  /* * ********PAGE SERVICES SECTION******** * */
  .page-service__detailsContainer .btn {
    font-size: 1.5rem;
    padding: 12px 30px;
  }
  .page-services__buttonContainer .btn {
    font-size: 1.4rem;
    padding: 12px 15px;
  }
  #FAQ-section {
    gap: 10px;
  }
  .page-service__imgContainer {
    padding: 0;
    width: 100%;
  }
}

/* * ********BREAKDOWN 480px******** * */
@media screen and (max-width: 480px) {
  html {
    font-size: 10px;
  }
  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 5rem;
  }
  .hero-btn__container  {
    gap: 15px;
  }
  .hero-btn__container .btn {
    padding: 10px 30px;
    font-size: 13px;
  }
  
  /* * ********PAGE SERVICES SECTION******** * */
  .page-service__detailsContainer .btn {
    font-size: 1.5rem;
    padding: 12px 30px;
  }
  .page-services__buttonContainer .btn {
    font-size: 1.1rem;
    padding: 10px 15px;
  }

  /* * ********PROCESS SECTION******** * */
  .process-main__heading {
    font-size: 3rem;
  }
}