:root{
--primary-color: rgb(10, 10, 31);
--btn-color: rgb(10, 10, 31);
-sec-btn-color: rgb(238, 70, 70);
--secondary-color: rgb(10, 10, 31);
--secondary-font-color: rgb(39, 31, 31);
--font-color: #fff;

}
body{
margin: 0;
padding: 0;
min-height: 100vh;
text-rendering: optimizeSpeed;
box-sizing: border-box;
font-family: Poppins, Arial;
}
.container{
--max-width: 1110px;
  --padding: 1.5rem;

  width: min(var(--max-width), 100% - (var(--padding) * 2      )   );
margin-inline: auto;
}

html:focus-within{
  scroll-behavior: smooth;
}

/*Header*/
header{
  height: 55px;
  display: flex;
  align-items: center;
  position: relative;
}
.logo{
font-size: 21px;
font-weight: 700;

}

.logo span{
 font-size: 24px;

  color: orangered;
  font-family: Kodchasan;
font-style: italic;
}
.nav-column{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-list{
  display: flex;
  gap: 5px;
}
.nav-item{
  list-style: none;
}
.nav-link{
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding: 1rem 1.5rem;
  font-weight: 600;
}
.nav-link:hover{
color: red;
}
.btn{
  padding: 8px 13px;
  background-color: red;
  text-decoration: none;
  color: white;
  border: none;
  border-radius: 8px;
    font-weight: 600;
    transition: 0.2s ease-in-out;
}
.btn:hover{
  transform: scale(1.05);

}

.toggle{
  background: none;
  border: none;
  padding: 10px;
  width: 60px;
  display: none;
}

@media screen and (max-width: 1024px) {
.nav-list{
}

}

@media screen and (max-width: 767px) {
header{
  height: 40px;
 
}

.nav-list{
  display: none;
}
.nav-active{
  display: block;
  position: absolute;
  background-color: var(--secondary-color);
  left: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
}
.nav-item{
  display: block;
  border-bottom: 1px grey solid;
  display: grid;
  align-items: center;
  justify-items: center;
  height: 80px;
  width: 100%;
  text-align: center;
  padding: 0;

}


.nav-item a{
  color: var(--font-color);
  
}

.toggle{
  display: block;
}


}

/*HOME*/

.home-section{
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(/images/annie-spratt-QckxruozjRg-unsplash.jpg)   ;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 120px;

}
.home-text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--font-color);
}
.home-text h2{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;

}
.home-text p{
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
    margin-bottom: 37px;
  text-align: center;
}
.btn-home{
  padding: 12px 22px;
}
span{
  color: rgb(238, 70, 70);
}

@media screen and (min-width: 767px) {


.home-text h2{
  font-size: 50px;

}
.home-text p{
 font-size: 30px;

}

}
/*WEBSITES CARAOUSEL*/
.website-carasoel{
  padding-top: 30px;
  padding-bottom: 30px;
}
.website-grid{
  display: flex;
  gap: 20px;
  align-items: center;
justify-content: space-between; 
}
.website-carasoel img{
  width: 45px;
}

@media screen and (min-width: 50rem) {

.website-grid{
flex-direction: row;
justify-content: space-between;

 }
.website-carasoel img{
width: 110px;
}
 }
.divider{
  height: 30px;
background-color: var(--btn-color);}
/*OUR ACTIONS*/
.OurActions-columns{
  display: grid;
  padding-top: 20px;
  gap: 20px;
  
}

.OurActions h2{
color: var(--secondary-color);
font-size: 15px;
font-weight: 500;
text-align: center;
}
.OurActions p{
color: black;
font-size: 17px;
font-weight: 800;
text-align: center;
}
.actions{
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
flex-direction: column;
padding: 11px 12px;

}

.actions:hover{
transform: scale(1.05);
}



.actions img{
  margin-bottom: 0;
  width: 80px;
}
.actions h3{
  font-size: 19px;
  font-weight: 800;
  margin-top: 5px;
  margin-bottom: 8px;
  text-align: center;
}
.actions h4{
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-font-color);
  margin-top: 0;
  line-height: 1.5;
  text-align: center;
}


@media screen and (min-width: 767px) {
.OurActions-columns{
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}


.OurActions h2{
text-align: start;
}
.OurActions p{
text-align: start;
}
.actions{
 align-items: start;
}
.actions h3{
text-align: start;
}
.actions h4{
text-align: start;
}


}

/*ACHIEVMENTS*/
.achievement-section{
  display: grid;
  gap: 15px;
  margin-top: 100px;
}

.achievements{
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
display: flex;
align-items: center;
justify-items: center;
flex-direction: column;
padding: 10px 8px 3px;
}



.achievements:hover{
  transform: scale(1.05);
}
.achievements img{
  width: 50px;
  justify-self: center;
  margin-bottom: 0;
}
.achievements p{
  font-size: 14px;
  font-weight: 600;
 margin-top: 18px;
margin-bottom: 0;
}
.achievements h2{
  font-size: 28px;
  font-weight: 600;
  color: var(--btn-color);
  margin-top: 15px;
}
@media screen and (min-width: 50rem) {
.achievement-section{
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
} 

/*TESTIMOY*/

.testimonial-container{
  display: grid;
  justify-content: center;
  gap: 20px;
  margin-top: 70px;
}
.testimony{
 background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
display: flex;
align-items: start;
flex-direction: column;
padding: 15px 18px ;
}
.testimony:hover{
transform: scale(1.01);
}
.testimony h3{
   font-size: 14px;
  font-weight: 500;
  color: var(--secondary-font-color);
  margin-top: 0;
  line-height: 1.5;
}
.individual{
  display: flex;
  align-items: center;
}
.testimony img{
  width: 28px;
  border-radius: 28px;
  margin-right: 9px;
}
.testimony h2{
   font-size: 16px;
  font-weight: 600;
 margin-top: 18px;
margin-bottom: 0;
}
.testimony h4{
    font-size: 14px;
  font-weight: 500;
  color: var(--secondary-font-color);
}
@media screen and (min-width: 767px) {
.testimonial-container{
  margin-top: 70px;
  grid-template-columns: 1fr 1fr;

}
}
@media screen and (min-width: 1024px) {
.testimonial-container{
  grid-template-columns: 1fr 1fr 1fr 1fr;

}

}

/*FOOTER*/
footer{
  background-color: var(--secondary-color);
  color: var(--font-color);
  margin-top: 50px;
}

.footer-columns{
  display: flex;
  flex-direction: column;
}

.left-footer{
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
}
.footer-nav-list{
  display: flex;
  gap: 13px;
  padding: 0;
}

  .left-footer h2{
  font-size: 15px;
  font-weight: 600;
  padding-top: 4px;
}
.left-footer li{
  list-style: none;
}
.left-footer li a{
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  color: var(--font-color);
}
.left-footer li a:hover{
  color: red;
}


.right-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.right-footer h2{
font-size: 19px;
  font-weight: 600;

}
.right-footer p{
   font-size: 14px;
  font-weight: 500;
  margin-top: 0;
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.copyright{
  font-size: 12px;
  font-weight: 500;
  display: flex;
  color: var(--font-color);
  align-self: center;
}
@media screen and (min-width: 50rem) {
.footer-columns{
  flex-direction: row;
  justify-content: space-between;
  gap: 60px;
}
.footer-nav-list{
  display: flex;
  flex-direction: column;
}

.left-footer li a{
  font-size: 18px;

}


.right-footer p{
  margin-top: 10px;
}
}

.patnerships{
  text-align: center;
  padding-top: 40px;
  font-size: 2rem;
}