:root {
   
    --ff-primary: "Barlow Semi Condensed", sans-serif;
    --color-dark-green:#14664b;
    --color-text: #333333;
    --color-lime: #d4f5c4;
    --color-purple: #4949F2;
    --color-cream: #fcf6f0;
    --color-purple-faint: #E4E4FD;
    --color-red: #F24949;
    
}



#preloader{
  background: white url(/assets/images/Pulse-1s-277px.gif) no-repeat center;
  background-size: 5%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
}





@keyframes slideAndFade {
  0% {
      opacity: 0;
      transform: translateY(-50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}



.modal-box{
  z-index: 9999;
  animation: slideAndFade 0.5s ease-in-out forwards;
}

  /* THIS IS THE INDEX PAGE CSS FILE */

  .modal-flex{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  
  }
  
  .mod-side{
    display: flex;
    align-items: flex-start;
    padding-inline: 2rem;
  }
  
  .modal-left{
    width: 50%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }
  
  .modal-right{
   
    width: 50%;
  }
  .modal-right img{
    transform: scale(1);
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .modal-box{
    z-index: 10;
    max-width: 880px;
    height: 550px;
    width: 100%;
    border-radius: 10px;
    background-color: white;
    color: white;
    transition: all 0.3s ease-in-out;
    border: none;
  }
  
  
  
  .modal-box h2{
    /* margin:0; */
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 2.4rem ;
    color: #333333;
  }
  .cancel-flex{
    display: flex;
    align-self: flex-end;
    cursor: pointer;
  }
  
  .cancel{
    color: var(--color-text);
    background-color: white;
    padding: 5px;
    font-size: 30px;
    border-radius: 5px;
    transition: all 0.1s ease-in-out;
   
  }
  
  .cancel:hover{
    color: white;
    background-color: var(--color-purple);
  }
  
  .modal-box h3{
    font-size: 1.4rem;
    font-weight: 300;
    padding-block: 1rem;
    text-align: left;
    color: #333333;
  }
  
  .modal-left h3 span{
    font-weight: 700;
  }
  
  .modal-btns{
    display: flex;
    gap: .9rem;
    flex-direction: column;
  }

  .goto{
    width: fit-content;
    display: flex;
    border-radius: 5px;
    padding-block: .6rem;
    padding-inline: 1rem;
    gap: 1rem;
    align-items: center;
    text-decoration: none;
    color: white;
    background-color: #333333;
    transition: all 0.2s ease-in-out;
  }
  
  .goto:hover{
    background-color: var(--color-purple);
  }
  
  .integrates{
    color: var(--color-text);
    font-weight: 300;
  }
  
  .pop-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding-block: 1rem;
  }










/* THIS IS THE HERO PAGE SECTION */

.hero{
    display: flex;
    align-items: last baseline;
    justify-content: space-around;
    padding-inline: 2rem;
    gap: 1rem;
    /* flex-wrap: wrap; */

}

.hero-left{
    width: 50%;
    padding-block: 2rem;
}





.hero-right img{
    width: 900px;
}

.hero-text{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 80%;
}


.trusted{
    color: var(--color-purple);
    font-size: .9rem;
    font-weight: 600;
    /* opacity: 0; */
}



.hero-text h1{
    font-size: 3.2rem;
    line-height: 3.5rem;
    
}
.hero-text h2{
    font-weight: 300;
    font-size: 1.1rem;
    width: 100%;
}



.list{
    display: flex;
    gap: 1rem;
    font-weight: 500;
    font-size: .9rem;
}

.hero-list{
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding-block: 2rem;
}



.t-logo{
    width: 90px;
}

.stars{
    width: 120px;
}

.img-flex{
    display: flex;
    flex-direction: column;
}

.btn-hero{
    display: flex;
    gap: 2rem;
}

.rounded-btn{
    border-radius: 8px;
}

.rounded-btn a{
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero-link{
    display: flex;
    gap: 1rem;
    align-items: last baseline;
}

.hero-link{
    text-decoration: none;
    color: var(--color-text);
    font-size: .8rem;
    font-weight: 600;
}

/* THIS IS THE BANNER SECTION */
.green-banner{
  text-align: center;
  font-size: clamp(0.7rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--color-dark-green);
  background-color: var(--color-lime);
  padding-block: 2rem;
  border-bottom: 1px solid black;
  border-top: 1px solid black;
}

.green-banner-flex{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  padding-inline: 2rem;
}

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

@-webkit-keyframes rotating {
  from{
      -webkit-transform: rotate(0deg);
  }
  to{
      -webkit-transform: rotate(360deg);
  }
}


.green-banner-flex img{
  width: 60px;
  color: #14664b;
  -webkit-animation: rotating 8s linear infinite;
  


}

dialog::backdrop{
  background-color: rgba(0, 0, 0, .7);
}



/* THIS IS THE TESTIMONIAL SECTION */

.testimonial{
  display: flex;
  align-items: first baseline;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
  padding-block: 3rem;
  padding-inline: 2rem;
}

.testimonial-flex{
  display: flex;
  align-items: first baseline;
  flex-direction: column;
  gap: 2rem;
  width: 350px;
}

.testimonial-flex h3{
  font-size: 1rem;
}

.testimonial-flex>img{
  width: clamp(150px, 2.5vw, 100px);
  filter: grayscale();
}

.av-image-name{
  display: flex;
  gap: 1rem;
  align-items: center;
}


.av-image{
  display: block;
  max-width: 70px;
  height: 70px;
}

.av-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: grayscale();
}

.name-position{
  display: flex;
  flex-direction: column;
  gap: .2rem;
  font-size: .9rem;
}

.name-position p:nth-child(2){
  font-weight: 200;
}


.pb-2{
  padding-block: 1rem;
}

/* THIS IS THE RATING SECTION */




.rating{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-bottom: solid 1px black;
}

.rating h2{
  font-size: 2.3rem;
  line-height: 2.4rem;
  margin-inline: 3rem;
}


.details-flex{
  margin-inline: 3rem;
  display: flex;
  align-items: first baseline;
  justify-content: center;
  gap: 2.7rem;
}


.details{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%; 
  max-width: 300px; 
  margin: 0 auto; 
  padding:-inline 10px; 
  text-align: center;
  line-height: 1.4rem;
  gap: 1rem;
}
.details p:first-of-type {
  font-size: 1.4rem;
  font-weight: 600;
}


.details-text{
  font-size: .9rem;
  font-weight: 300;
}


/* THIS IS THE MORE DETAILS SECTION */

.more-details{
  padding-block: 4rem;
  /* padding-inline: 1rem; */
  border-bottom: solid 1px black;
}



.more-details-flex{
  display: flex;
  align-items: first baseline;
  justify-content: center;
  gap: 3rem;
}


.more-details-card{
  display: flex;
  gap: 1rem;
  align-items: first baseline;
  justify-content: center;
  flex-direction: column;
  max-width: 350px; 
  width: 100%;
}



.more-details-card p{
  max-width: 100%;
  font-size: .9rem;
  font-weight: 300;
}


.purp-cont{
  width: 100%;
  height: 257px;
  padding: 1rem;
  border-radius: 15px;
  background-color: var(--color-purple);
  transition: all ease-in-out .2s;

}

.purp-cont:hover{
  filter: grayscale();

}

.purp-cont img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(0.88);
}



/* THIS IS THE MAIN USE CASES SECTION */



.main-use-cases{
  margin-inline: 2rem;
}

.grid-use-cases{
  
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
  

}



@media (max-width: 968px) {
    .grid-use-cases {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }
}
  


.use-cases{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.use-case-image{
  grid-area: 1/3/3/4;
  justify-self: center;
  
}
.use-case-image img{
 
  object-fit: contain;
 
  
}

.main-use-cases-header{
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-block: 2rem;
}

.main-use-cases h2{
  font-size: 3.2rem;
  line-height: 3.5rem;
}

.main-use-cases-header >p{
  font-size: 1rem;
  font-weight: 300;
  text-align: center;
  width: 80%;
}

.main-use-cases-header >p span{
  font-weight: 700;
}

.use-cases p{
  font-size: .9rem;
  font-weight: 300;
}


/* THIS IS THE SAFETY SECTION */

.safety{
  display: flex;
  flex-direction: column;
  padding-block: 5rem;

}


.safety-header{
  display: flex;
  flex-direction: column;
  margin-inline: 2rem;
  text-align: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.safety-header h2{
  font-size: 2.3rem;
  line-height: 2.4rem;
}

.safety-flex{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.safety-card{
  display: flex;
  width: 600px;
  padding: 2rem;
  flex-direction: column ;
  border-radius: 10px;
  gap: 2rem;
  margin-inline: 2rem;
}

.safety h3{
  font-size: 1.5rem;
}

.safety-card p{
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 300;
}

.green{
  background-color: var(--color-lime);
}


.v-cards{
  width: 100%;
}

.v-cards img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.customers{
  background-color: var(--color-lime);
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding-block: 5rem;
}

.customers a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  background-color: none;
  border: none;
  text-decoration: none;
}


.customers-section-flex{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 3rem;
}

.customers h2{
  font-size: 2.3rem;
  line-height: 2.6rem;
  text-align: center;
  width: 80%;

}



.customer-card-flex{
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding-inline: 2rem;
}


.customer-card{
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  width: 90%;
  min-width: 260px;
  max-width: 350px;
  padding: 2rem;
  border-radius: 10px;
  background-color: white;
}

.customers-stars{
  width: 130px;
}

.customer-card p:nth-child(2){
  font-weight: 300;
}

.customer-card p:nth-child(3){
  color: rgb(138, 137, 137);
  font-weight: 500;
}

.customer-card p span{
  font-weight: 600;
}



/* THIS IS THE ACCORDION SECTION */

.accordion{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.accordion h2{
  font-size: 3.2rem;
  padding-block: 1rem;
}

sl-details{
  width: 800px;
  color: rgb(0, 0, 0);
  border-bottom: 0.6px solid rgb(128, 125, 125);
  font-size: 1rem;
  font-weight: 300;
  padding-block: 0.5rem;
}

sl-details::part(summary){
  color: var(--color-text);
  font-size: 1.2rem;
  padding-block: 1rem ;
  font-weight: 400;

}

sl-details .accordion-span{
  display: block;
  padding-block: 1rem;
}

/* THIS IS THE SIGNUP COMPONENT. MOVE THIS TO THE RESET.CSS PAGE */









































/* WRITE MEDIA QUERIES BELOW */


@media (max-width: 1380px) {
  .details-flex{
    flex-wrap: wrap;
  }
  .more-details-flex{
    flex-wrap: wrap;
  }
  .details{
    text-align: left;
  }

  .main-use-cases-header >p{
    text-align: left;
    width: 100%;
  }
  .safety-card p{
    font-size: .9rem;
  }
  .ror-badge{
    display: none;
  }
  
}



@media (max-width: 1502px) {
  .hero{
    flex-wrap: wrap;
    gap: 4rem;
  }
  .hero-left{
    width: 100%;
  }
  .hero-text{
    width: 100%;
  }
  .hero{
    margin-inline: 0.2rem;
  }

  .hero-right img{
    width: 1200px;
}
  
}

@media (min-width: 1210px) {
  .hero{
    padding-inline: 5rem;
  }
  
}


@media (max-width: 430px) {
  .hero-text h1{
    font-size: 2.3rem;
    line-height: 2.4rem;
  }
  .hero-text h2{
    font-size: 1rem;
  }
  .purp-cont{
    height: 150px;
  }
  .more-details-card{
    width: 240px;
  }
  .main-use-cases h2{
    font-size: 2rem;
    line-height: 2.4rem;

  }
  .sign-up h2{
    font-size: 2.3rem;
  }
  .customers h2{
    font-size: 1.8rem;
    line-height: 2.3rem;
    text-align: center;
  
  }
}


@media (max-width: 520px) {
  .btn-hero{
    flex-wrap: wrap;
  }

}


@media (max-width: 604px) {
  .modal-box{
    width: 80%;
  }


  .modal-right{
    display:none;
  }
  .modal-left{
    width: 100%;
  }
  .mod-side{
    font-size: 12px;
  }
  .modal-flex h2{
    font-size: 1.4rem;
  }
  .modal-flex h3{
    font-size: 1.1rem;
  }

  
}

@media (max-width: 890px) {
  sl-details{
    width: 80%;
    max-width: 400px;
    color: rgb(0, 0, 0);
    border-bottom: 0.6px solid rgb(128, 125, 125);
    font-size: 0.9rem;
    font-weight: 300;
  }
  
  sl-details::part(summary){
    color: var(--color-text);
    font-size: 1rem;
    padding-block: 1rem ;
  }

  .accordion h2{
    font-size: 2.3rem;
    padding-block: 1rem;
  }
  
  
}



