/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 152;
  /* --primary-color: hsl(var(--hue), 24%, 32%); */
  --primary-color-alt: hsl(var(--hue), 24%, 28%);
  /* --secondary-color: #E9F6E6; */
  --secondary-color: #372B70;
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten: hsl(var(--hue), 24%, 92%);
  /* --title-color: hsl(var(--hue), 4%, 15%); */
  --title-color: #fff;
  --text-color: hsl(var(--hue), 4%, 35%);
  --text-color-light: hsl(var(--hue), 4%, 55%);
  --body-color: hsl(var(--hue), 0%, 100%);
  --container-color: #FFF;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

@media screen and (min-width: 1023px){
  :root {
    --big-font-size: 4.5rem;
    --h1-font-size: 3rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 2rem;
    --normal-font-size: 1.25rem;
    --small-font-size: 1.1rem;
    --smaller-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

body,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body{
  margin: var(--header-height) 0 0 0;
  background-color: var(--body-color);
  color: var(--text-color);
  transition: .4s; /*For animation dark mode*/
  overflow-x: hidden;

}

button{
  cursor: pointer;
  border: none;
  outline: none;
}

h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/


/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 5.5rem 0 1rem;
}

.section__title,
.section__title-center{
  /* font-size: var(--h2-font-size); */
  margin-bottom: var(--mb-2);
  line-height: 120%;
  color: #000;
}

.section__title-center{
  text-align: center;
  color: var(--secondary-color);
  font-size: 32px;
}

.section__title span{
  color: var(--secondary-color);

}

.container{
  /* max-width: 968px; */
  /* max-width: 75%; */
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}

/*=============== HEADER ===============*/

.header{
  position: fixed;
  top: 0;
  left: 0;
  background: var(--body-color);
  width: 100%;
  z-index: var(--z-fixed);
}


nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img{
  width: 120px;
  /* padding-top: 1rem; */
}

.nav__close,
.nav__toggler{
  color: var(--secondary-color);
  cursor: pointer;
  font-size: 1.5rem;
  display: inline-flex;
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.25rem;
}

.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link{
  color: var(--title-color-secondary);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover{
  color: var(--primary-color);
}

@media screen and (max-width: 768px){
    .nav__menu{
      position: fixed;
      background-color: var(--container-color);
      top: 0;
      right: -100%;
      width: 80%;
      height: 100%;
      box-shadow: -2px 0 4px hsla(var(--hue), 24%,15%.1);
      padding: 4rem 0 0 3rem;
      border-radius: 1rem 0 0 1rem;
      transition: .3s;
      z-index: var(--z-fixed);
    }
}

.active-menu{
  right: 0;
}


/* Change background header */


/* Active link */


/*=============== HOME ===============*/

.home{
  min-height: 50vh;
  width: 100%;
  /* background-color: var(--secondary-color); */
  border-radius: 0 0 25% 0;
}

.section__bg{
  padding: 3.5rem 0 2rem;
  background-color: var(--secondary-color);
  min-height: 50vh;
  width: 100%;
}

.home__container{
  position: relative;
  max-width: 80%;
  /* row-gap: 2rem; */

  /* grid-template-columns: 1fr 1fr; */
}
.lead-desc{
  color: var(--text-color-light);
  max-width: 100%;
  margin: 2rem 0;
}

.slider{
  /* margin-top: 2rem; */
  display: flex;
  flex-direction: row;
  /* transform: rotate(90deg); */
  height: 100%;
  order: -1;
  overflow-x: hidden;
  margin: 0;
    padding: 0;
}

.slider-scroll{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 350px;
  max-width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent, #fff 20%,#fff 80%, transparent);

}

.slider-scroll div{
  display: flex;
  flex-direction: column;
  animation: scrollDown var(--t) linear infinite;
  animation-delay: calc(var(--t) * -1);
}

.slider-scroll div:nth-child(2){
  animation: scrollDownSec var(--t) linear infinite;
  animation-delay: calc(var(--t) / -2);
}



.imgbx img{
  max-width: 150px;
  border-radius: 1rem;
  margin: 0.5rem;
  /* transform: rotate(-90deg); */
}

@keyframes scrollDown{
  0%{
    transform:  translateY(100%);
  }
  100%{
    transform: translateY(-100%);
  }
}

@keyframes scrollDownSec{
  0%{
    transform:  translateY(0);
  }
  100%{
    transform: translateY(-200%);
  }
}

.slider-scroll div span{
  display: inline-flex;
  margin: 10px;
  color: #fff;
  padding: 5px 10px;
  transition: 0.5s;
}

.home__img{
  width: 250px;
  position: absolute;
  right: 0;
  filter: drop-shadow(10px 10px 10px #222);
  /* top: -300px; */
}


.home__highlight{
  /* border-radius: 20px; */
  /* border: 1px solid var(--primary-color); */
  display: inline-block;
  /* padding: .25rem .5rem; */
  /* background-color: #fff; */
  font-size: 10px;
  font-weight: lighter;
  letter-spacing: 5px;
}

.home__title{
  font-size: 42px;
  line-height: 130%;
  margin-bottom: var(--mb-1);
  font-weight: 900;
  width: 100%;
}

.home__title>span{
  color: var(--primary-color);
}

.home__desc{
  margin-bottom: var(--mb-2-5);
}

.home__data{
  padding-top: 4rem;

}

.home__social{
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__circle{
  width: 800px;
  height: 800px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  top: -7rem;
  right: -16rem;
}

.home__social .social-follow{
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: var(--primary-color);
  position: relative;
  transform: rotate(90deg);
}

.home__social .social-follow::after{
  content: '';
  position: absolute;
  right: -45%;
  top: 50%;
  width: 1rem;
  height: 2px;
  background-color: var(--primary-color);
}

.home__social .social-links{
  display: inline-flex;
  flex-direction: column;
  row-gap: .25rem;
}

.home__social .social-link{
  font-size: 1rem;
  color: var(--primary-color);
  transition: .3s;
}

.home__social .social-link:hover{
  transform: translateX(.25rem);
}

.hero__filler{
  margin-top: 2rem;
  width: 30%;
}



.slider .item:not(.is-active){
  opacity: 0;
  pointer-events: none;
}

.btn{
  display: inline-block;
  /* background-color: var(--primary-color); */
  color: #fff;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
  background-color: var(--title-color);
  color: var(--secondary-color);
}

.btn:hover{
  
}

.btn-icon{
  transition: .3s;
}

.btn:hover .btn-icon{
  transform: translateX(.25rem);
}

.btn-flex{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}

.btn-link{
  color: var(--primary-color);
  font-weight: var(--font-medium);
}

.questions .btn-link{
  color: var(--title-color);
}

.btn-link:hover .btn-icon{
  transform: translateX(.25rem);
}

.hero__icons i{
  font-size: 18px;
  color: var(--primary-color);
  border-radius: 50%;
  padding: 0.5rem;
  border: 1px solid var(--primary-color);
  margin-right: 0.25rem;
}

.hero__icons{
  margin-bottom: var(--mb-2-5);
}

.home-sub{
  min-height: 40vh;
  width: 100%;
  padding-top: 3rem;
  text-align: center;
}


.lead-title{
  /* text-transform: lowercase; */
  color: var(--primary-color);
  font-weight: lighter;
}

.features{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  column-gap: 3rem;
  padding-top: 3rem;
}

.feature-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

}

.feature-index{
  padding: 1rem;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.feature-text{
  font-size: 12px;
}

.explore{
  padding-top: 3rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
 
}

.about{
  min-height: 100vh;
}

.about__container{
  gap: 2rem;
  align-items: center;
}



.about__img{
  background: url('../img/circle.png');
  background-repeat:  repeat;
  background-position: center;
  background-size: 8rem;
  width: 100%;
  height: 100%;
  max-width: 400px;
  justify-self: center;
  border-radius: 4rem;
  -webkit-mask-image: linear-gradient(180deg, transparent, #fff 10%,#fff 90%, transparent);
  /* filter: drop-shadow(2px 2px 2px #222); */
}

.about__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__title{
  margin-bottom: var(--mb-1);
}

.about-desc{
  margin-bottom: var(--mb-2);
}

.about-highlights{
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.highlight-desc{
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
  align-items: center;
}

.highlight-desc i{
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-top: 0.15rem;
}

.header-block{
  box-shadow: 0 1px 4px hsla(var(--hue), 4%,15%,.1);
}

.steps__bg{
  background-color: var(--primary-color);
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
}

.steps__container{
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title{
  color: #fff;
}

.steps__card{
  background-color: var(--container-color);
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number{
  display: inline-block;
  padding: .5rem .75rem;
  background-color: var(--primary-color-alt);
  border-radius: .25rem;
  color: #fff;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: .3s;
}

.steps__card-title{
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.steps__card-desc{
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number{
  transform: translateY(-.25rem);
}

.product-desc{
  text-align: center;
}

.product__container{
  display: block;
  padding: 3rem 0;
  /* grid-template-columns: repeat(2,1fr); */
  grid-template-columns: 1fr;
  /* grid-template-rows: repeat(2,1fr); */
  column-gap: 1rem;
  
  /* gap: 2.5rem 3rem; */
}

.product__wrapper{
  display: grid;
  /* grid-template-columns: repeat(2,1fr); */
  grid-template-columns: 1fr;
  
  gap: 1rem;
}

.product__container-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.f-reverse{
  flex-direction: column-reverse;
}

.grid__img{
  width: 300px;
}

.grid__data{
  background-color: #f8f6e8;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 1rem 2rem;
  row-gap: 1rem;
  align-self: center;
  width: 300px;
  height: 300px;
}



.grid__data h1{
  color: #000;
  font-size: 24px;
  text-align: center;
  line-height: 32px;
  /* font-weight: 400; */
}

.grid__data h4{
  font-size: 16px;
  text-align: center;
  opacity: 0.7;
  font-weight: 200;
}

.grid__data a{
  font-size: 16px;
  /* margin-left: 2rem; */
  color: var(--secondary-color);
}

.grid__img img{
  border-radius: 1rem;
}

.explore__btn{
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__card{
  display: grid;
  position: relative;
}

.product-img{
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-1);
  transition: .3s;
}

.product__data{
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product__title,
.product__rate{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

/* .product__title{
  margin-bottom: .25rem;
} */

.product__btn{
  background-color: var(--primary-color);
  color: #fff;
  padding: .25rem;
  border-radius: .35rem;
}

.product__btn:hover{
  background-color: var(--primary-color-alt);
}

.product__circle{
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  position: absolute;
  top: 18%;
  left: 5%;
  transition: .3s;
}

.product__card:hover .product-img{
  transform: translateY(-.5rem);
}

.product__card:hover .product__circle{
  transform: scale(1.2);
}

.questions{

  margin-top: 3rem;
  background-color: var(--secondary-color);
  align-items: center;
  justify-content: center;
  padding-block-end: 5rem !important;
}

.faq__container{
  gap: 1.5rem;
  padding: 1.5rem 0;
  
}

.faq__group{
  display: grid;
  row-gap: 1.5rem;
}

.faq__item{
  background-color: var(--container-color);
  border-radius: .25rem;
}

.faq__item-title{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.faq__icon{
  font-size: 1.25rem;
  color: var(--secondary-color);
}

.faq__desc{
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.faq__header{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.faq__content{
  overflow: hidden;
  height: 0;
}

.faq__item,
.faq__header,
.faq__item-title,
.faq__icon,
.faq__desc,
.faq__content{
  transition: .3s;
}

.faq__title{
  color: #f8f6e8;
}

.faq__title span{
  color: var(--title-color) !important;
}

.faq__item h3{
  color: #000;
}

.faq__item:hover{
  box-shadow: 0 2px 8px hsla(var(--hue), 4%,15%,.15);
}

.accordion-open .faq__header,
.accordion-open .faq__content{
  background-color: var(--primary-color);
}

.accordion-open .faq__item-title,
.accordion-open .faq__desc,
.accordion-open .faq__icon{
  color: var(--secondary-color);
}

.accordion-open .faq__icon{
  transform: rotate(45deg);
}

.contact{
  margin-bottom: 4rem;
}

.contact__container{
  row-gap: 3.5rem;
}

.contact__data{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);

}

.contact__subtitle{
  font-size: 1.5rem;
  font-weight: var(--font-medium);
  color: var(--secondary-color);
  margin-bottom: var(--mb-0-5);
}

.contact__desc{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: #000;
  font-weight: var(--font-medium);
  font-size: 1.15rem;
}

.contact__icon{
  font-size: 1.25rem;
}


.contact__fields{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content{
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__item{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none ;
  outline: none;
  border: none;
  color: var(--text-color);
  z-index: 1;
}

.contact__label{
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area{
  height: 7rem;
}

.contact__area textarea{
  resize: none;
}

.contact__item:focus + .contact__label{
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

.contact__item:not(:placeholder-shown).contact__item:not(:focus) + .contact__label{
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

.section__title-center span{
  color: var(--secondary-color);
  font-weight: 900;
  font-size: 32px;
}

form .btn-flex{
  background-color: var(--secondary-color);
  color: var(--title-color);
}

.filler__container{
  background-image: url('../img/filler-img.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80vh;
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  filter: grayscale(1);
  transition: all .5s ease-in-out;
}

.filler__container:hover{
  filter: grayscale(0);
}

.filler__content{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}

.filler__container h1{
  font-size: 6rem;
  line-height: 6rem;
  color: var(--container-color);

}

.filler__container img{
  width: 350px;
  filter: grayscale(0) !important;
}

.company__data{

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}

footer{

  /* margin-top: 2rem; */
  margin-left: auto;
  margin-right: auto;
  background-color: var(--secondary-color);

}

.footer__top{
  background-color: #f8f6e8;
}

.footer__top .container{
  display: flex;
  align-items: left;
  flex-direction: column;
  justify-content: space-between;
}

.footer__top-content{
  display: flex;
  align-items: center;
  font-size: 14px;
  padding: 0.5rem;
  gap: 0.5rem;

}

.footer__top-content i{
  font-weight: 800;
}

.footer__container{
  row-gap: 3rem;
  color: #dbdbdb;
}

footer .brand__logo img{
  filter: saturate(0) invert(1);
}

footer .social__icons{
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  margin-bottom: 2rem;
}

footer .social__icons i{
  color: #f8f6e8;
}

footer .footer__brand p{
  max-width: 60%;
  margin-bottom: 1rem;
}

.footer__list-title{
  font-size: 28px;
  font-weight: 800;
  color: #f8f6e8;
}

.footer__list{
  display: flex;
  flex-direction: column;
  padding-top: 4rem;
  gap: 1rem
}

.footer__list li a{
  color: #fff;
  opacity: 0.8;
}

.footer__logo{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--mb-2);
}

.footer__img{
  width: 200px;
  margin: 0 auto;
}

.footer__title{
  color: var(--secondary-color);
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}

.footer__sub{
  background-color: var(--first-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input{
  width: 70%;
  padding: 0 .5rem;
  background: none;
  border: none;
  outline: none;
}

.footer__data{
  display: grid;
  row-gap: .75rem;
}

.footer__info{
  font-size: var(--small-font-size);
}

.footer__social{
  display: inline-flex;
  column-gap: 1rem;
}

.footer__social-item{
  font-size: 1.5rem;
  color: var(--secondary-color);
}

.footer__social-item:hover{
  transform: translateY(-.25rem);
}

.footer__copy{
  text-align: center;
  font-size: var(--smaller-font-size);
  color: #f8f6e8;
  padding: 1.5rem;
  /* color: var(--secondary-color); */
  /* margin: 5rem 0 1rem; */
}



.active-link{
  position: relative;
  color: var(--secondary-color);
}

.active-link::after{
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--primary-color);
}

.backToTop{
  position: fixed;
  background-color: var(--title-color);
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.backToTop i{
  font-size: 1rem;
  color: var(--secondary-color);
}

.backToTop:hover{

  opacity: 1;
}

.show-scroll{
  bottom: 3rem;
}


::-webkit-scrollbar{
  width: .6rem;
  background: hsl(var(--hue), 4%,53%);
}

::-webkit-scrollbar-thumb{
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

footer .social__icons-item{
    color: #fff !important;
    text-decoration: underline;
}

/* SUBPAGE */

.subpage .product-desc{
  padding: 0;
  font-size: 18px;
  margin-bottom: 2rem;
}

.subpage .product{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subpage #products img{
  margin: 0 auto;
  width: 150px;
  /* filter: saturate(0); */
}

.subpage .explore__btn{
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.arr-bx span{
  display: block;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid var(--secondary-color);
  border-right: 2px solid var(--secondary-color);
  transform: rotate(45deg);
  margin: -10px;
  animation: osc 2s infinite;
}

.arr-bx span:nth-child(2){
  animation-delay: -0.2s;
}

.arr-bx span:nth-child(3){
  animation-delay: -0.4s;
}

@keyframes osc{
  0%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}

.o-1{
  order: -1;
}

.key__header{
  display: grid;
  /* grid-template-columns: repeat(2,1fr); */
  grid-template-columns: 1fr;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.key__header p{
  /* text-align: right; */
  max-width: 80%;
  /* justify-self: flex-end; */
  text-align: left;

}

.key__list{
  display: grid;
  /* grid-template-columns: repeat(3,1fr); */
  grid-template-columns: 1fr;
  gap: 1rem;
}

.key__list-item{
  padding: 2rem;
  background-color: #f8f6e8;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}

.key__list-item i{
  font-size: 28px;
}

.subpage .about{
  min-height: 0;
}

.subpage .about .highlight-desc{
  column-gap: 1rem;
}

.subpage .about__data{
  /* justify-self: center; */
  justify-self: flex-start;
}

.call-to{
  /* grid-template-columns: repeat(2,1fr); */
  grid-template-columns: 1fr;
  row-gap: 2rem;
}

.subpage .section__title-center{
  text-align: left;
}

.subpage .questions p{
  max-width: 80%;
  text-align: left;
  color: #f8f6e8;
  opacity: 0.8;
}

.mb-4{
  margin-bottom: 4rem;
}



.products__list{
  display: grid;
  /* grid-template-columns: repeat(3,1fr); */
  grid-template-columns: 1fr;
  gap: 3rem;
  justify-content: space-between;
}

.products__list-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.products__list-img{
  width: 300px;
  height: 300px;
  position: relative;
}

.products__list-img img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.products__list-img::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f8f6e8;
  top: 20px;
  left: 20px;
  z-index: -1;
  border-radius: 2rem;
}

.products__list-item p{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
}


@media screen and (max-width: 320px){
  .container{
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img{
    width: 150px;
  }

  .home__title{
    font-size: var(--h1-font-size);
  }

  .steps__bg{
    padding: 2rem 1rem;
  }

  .steps__card{
    padding: 1.5rem;
  }

  /* .product__container{
    grid-template-columns: .6fr;
    justify-content: center;
  } */
}


@media screen and (min-width: 576px) {
  .steps__container{
    grid-template-columns: repeat(2,1fr);
  } 

  .product-desc{
    padding: 0 4rem;
  }

  /* .product__container{
    grid-template-columns: repeat(2,170px);
    justify-content: center;
    column-gap: 5rem;
  } */

  .footer__sub{
    width: 400px;
  }

  .imgbx img{
    max-width: 250px;
  }

  .products__list{
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
  }

  .products__list-img{
    width: 200px;
    height: 200px;
  }

  .footer__top-content{
    font-size: 16px;
  }

  .product__wrapper{
    grid-template-columns: repeat(2,1fr);
    
  }

  .product__wrapper:nth-child(1){
    margin-bottom: 1rem;
  }

  .grid__img{
    width: 250px;
  }

  .grid__data{
    width: 250px;
    height: 250px;
  }
}

@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .nav{
    height: calc(var(--header-height) + 1.5rem);
    column-gap: 3rem;
  }

  .nav__close, 
  .nav__toggler{
    display: none;
  }

  .nav__list{
    flex-direction: row;
    column-gap: 3rem;
  }

  .nav__menu{
    margin-left: auto;
  }

  .about__container,
  .faq__container,
  .contact__container{
    grid-template-columns: repeat(2,1fr);
    align-items: center;
  }

  .grid__img{
    width: 350px;
  }

  .grid__data{
    width: 350px;
    height: 350px;
  }



  .home__container{
    /* padding-top: calc(var(--header-height) + 1.5rem); */
    align-items: center;
  }

  .home .section__bg{
    padding: 10rem 0 5rem;
  }

  .faq__container{
    align-items: flex-start;

  }

  .home__img{
    width: 360px;
  }

  /* .footer__sub{
    width: initial;
  } */
  .products__list{
    grid-template-columns: repeat(3,1fr);
  }

  .key__header {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
  .key__header p {
    text-align: right;
    justify-self: flex-end;

  }

  .section__title{
    font-size: 2.5rem;
  }

  .home__container {
    row-gap: 2rem;
    grid-template-columns: 1fr 1fr;
}

  .slider {
    margin-top: 2rem;
    height: 100%;
    order: 0;

  }

  .home__container {
    position: relative;
    max-width: 100%;
}

  .footer__top .container{
    align-items: center;
    flex-direction: row;
  }
  .key__list {

    grid-template-columns: repeat(3, 1fr);

  }

  .o-1{
    order: 1;
  }

}

@media screen and (min-width:992px){
  .container{
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .home__container{
    gap: 2rem;
  }

  .slider-scroll {
    height: 700px;
  }

  .section{
    padding: 8rem 0 1rem;
  }

  .section__title,.section__title-center{
    font-size: var(--h2-font-size);
  }

  .section__title span,.section__title-center span{
    font-size: 52px;
  }

  .home{
    /* padding: 13rem 0 5rem; */
    min-height: 100vh;
  }

  .home__title{
    font-size: 82px;
    line-height: 110%;
    max-width: 100%;
  }

  .home__highlight{
    padding: .5rem .75rem;
    /* background-color: #fff; */
    font-size: var(--normal-font-size);
    /* border: 2px solid var(--primary-color); */
  }

  .slider{
    top: 0;
  }

  .section__bg{
    padding: 13rem 0 5rem;
    min-height: 100vh;
  }

  .home__img{
    width: 500px;
  }

  .home__desc{
    padding-right: 7rem;
  }


  .about__img{
    width: 380px;
  }

  .product-desc{
    padding: 0 8rem;
  }

  /* .product__container{
    padding: 4rem 0;
    gap: 4rem 12rem;
  } */

  .product-img{
    width: 160px;
  }

  .product__circle{
    width: 110px;
    height: 110px;
  }

  .product__title{
    font-size: var(--normal-font-size);
  }

  .faq__container{
    padding: 1rem 0 4rem;
  }

  .faq__title{
    text-align: initial;
  }

  

  .faq__group{
    row-gap: 2rem;
  }

  .faq__header{
    padding: 1rem;
  }

  .faq__desc{
    padding: 0 3.5rem 2.25rem 2.75rem;
  }

  .footer__container{
    grid-template-columns: 1fr .5fr .5fr;
  }

  .footer__logo{
    justify-content: flex-start;
  }

  .footer__img{
    margin: 0;
  }

  .subpage .product-desc {

    font-size: 24px;
}
.call-to{
  grid-template-columns: 1fr 1fr;
}

.grid__img{
  width: 400px;
}

.grid__data{
  width: 400px;
  height: 400px;
}

}

@media screen and (min-width: 1200px) {

  .product__container{
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: center;
  }

  .f-reverse{
    flex-direction: column;
  }

  .grid__img{
    width: 100%;
  }

  .grid__data{
    width: 100%;
    height: 100%;
  }

  .f-reverse{
    gap: 1rem
  }
  .container{
    max-width: 75%;
  }

  .lead-desc {
    max-width: 80%;

}

.imgbx img {
  max-width: 350px;
}

.key__header {
  padding: 0 2rem;
}

.subpage #products img {
  width: 250px;
}

.products__list-item p {
  font-size: 24px;

}

.products__list-item {
  gap: 3rem;
}

  .home__container {
    grid-template-columns: 2fr 1fr;
}

  .subpage .product-desc {
    font-size: 28px;
}

  .products__list-img {
    width: 300px;
    height: 300px;
}
  .about__container{
    column-gap: 7rem;
  } 

  .product{
    min-height: 80vh;
  }

  /* .product__container{
    grid-template-columns: repeat(4,1fr);
  } */

  .backToTop{
    right: 3rem;
  }

  .home__img{
    width: 550px;
  }

  /* .home__data{
    padding: 2rem 8rem;
  } */

  .product-img{
    width: 300px;
  }

  .footer__top-content {
    font-size: 18px;
    padding: 1rem;
}


}

/*=============== FOOTER ===============*/


/*=============== SCROLL UP ===============*/


/* Show Scroll Up*/


/*=============== SCROLL BAR ===============*/


/*=============== BREAKPOINTS ===============*/
/* For small devices */


/* For medium devices */


/* For large devices */
