@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

/* reset  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: rgb(2, 69, 245);
  --secondary-color: rgb(0, 21, 52);
  --highlighter-color: #f4db2a;
  --assisting-color-one: #667385;
  --assisting-color-two: #99a1ae;
}
/* utilities  */
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: white;
}
h2, h1{
  margin: 20px 0px;
}
img{
  object-fit: cover;
  
}
body {
  font-family: "Quicksand";
  color: var(--secondary-color);
}
.highlted-text {
  color: var(--highlighter-color);
  font-weight: bold;
}
.container{
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 980px;
  padding: 10px 20px 40px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    overflow-wrap: break-word;
}
.container-column{
  display: flex;
  justify-content: center;
  align-items: center;
flex-direction: column;
}

/* NAV BAR */
nav{
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--secondary-color);
  color: white;
  z-index: 1;

}
.logo-link{
  align-items: flex-end;

}
.logo {
  max-width: 250px;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  
}
.nav-container{
  justify-content: space-around;
}
.nav-list li {
width: 150px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
  font-size: 1rem;
  font-weight: bold;
  margin: 10px 5px;
  border-radius: 5px;
}
.nav-list li:hover {
  background-color: var(--highlighter-color);
  transition: all 0.3s ease-in-out;
}
.nav-list li:hover a{
  color: var(--primary-color);
  cursor: pointer;

}
/* HEADER */

.header-content{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
align-items:center ;
  margin: 20px;

}
p{
  line-height: 25px;
  font-size: 20px;
}
.header-img{
 width: 80%;
 height: 80%;
margin-top: 10px;
border-radius: 5px;
}

/* testimonial section */
.testimonial-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--secondary-color);
  margin: 30px 0px;
}
.testimonial-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  background-color:var(--secondary-color);
  border-radius: 10px;
  max-width:350px;
  max-height: 600px;
  padding: 1rem;
  margin: 20px 30px;
}
.testimonial-content{
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  position: relative;
  height: 250px;
  width:100%;
  color: white;
  padding: 1rem

}
.stars{
  color: #f4db2a;
margin-bottom: 10px;
font-size: 1.5rem;
}
.quote{
  font-size: 2.5rem;
  opacity: 0.5;
}
.fa-quote-right{
  margin-left: 280px;
}
.fa-quote-left{
  margin-left: -280px;
  margin-bottom: 40px;
}
.info{
  margin-top: 10px;
}

/* logos section */
.clints-section{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;

}
.logos-container{
  display: flex;
  border: var(--secondary-color) 5px solid;
  width: 30vw;
  border-radius: 10px;
  overflow-x: none;
  justify-content: center;
  align-items: center;

}
.vendor-logo, .profile img{
  width: 150px;
  border-radius: 50%;
  margin: 10px 40px;
  border: #f4db2a 3px solid;
  cursor: pointer;
}
.vendor-logo{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50px;
  transition: all 5s linear;


}
.hide{
  display: none;

}
.vendor-logo:hover{
  border: var(--primary-color) 4px solid;
}
.logos-slider{
  display: flex;
}
.logos-slider i{
  margin: 80px 30px;
  font-size: 2rem;
  cursor: pointer;
}
.logos-slider i:hover{
  color: var(--primary-color);
}

.who-img{
max-width: 500px;
}

.places{
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  align-items: center;
}
.place-container{
  width: 130px;
  height: 100px;
  margin: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.place-container i{
  color:var(--primary-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.content{
  margin: 0px 20px;
}
footer{
  background-color: var(--secondary-color);
  height: 150px;

}
.footer-container{
  
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: var(--secondary-color);
  color: white;
  padding: 0.5rem;
}
.social-media{
  display: flex;
  justify-content:space-around;
  align-items: center;

}
.social-media i{
  color: white;
  font-size: 2rem;
}
.logo-download{
  max-width: 250px;
}
.btn{
  width: 150px;
height: 50px;
margin: 20px 0px;
border-radius: 5px;
cursor: pointer;
background-color: var(--secondary-color);
color: white;
font-weight: bold;
padding: 0.5rem;
}
.btn:hover{
  background-color: var(--highlighter-color);
color:var(--primary-color);

}
/* privacy and policy page */
.privacy-container{
  display: flex;
  flex-direction: column;
  margin: 0px 50px;
  width: 100vw;
  justify-content: center;
  align-content: center;
  max-width: 980px;
  padding: 10px 20px 40px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    overflow-wrap: break-word;
}
.privacy-container p{
font-size: 1rem;}
.privacy-container ul{
  list-style-type: disc;
  padding: 10px 20px 40px;

}
.bold{
  font-weight: bold;
}
/* Mobile */
@media only screen and (max-width: 768px){
  .container{
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-direction: column;
  }
.nav-list{
  display: none;
}
.nav-list.active{
  display: block;
}
@keyframes navMove {
  from{height: 80px;}
  to {height: 280px}
  
}
nav.active{
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  animation: navMove 0.5s  ease-in-out
}
nav{
  animation: navMoveBack 0.5s  ease-in-out
}
@keyframes navMoveBack {

  from{height: 280px;}
  to {height: 80px}
  
}
.nav-list li{
  animation: liMove 1s ease-in-out;
  border: #99a1ae dotted 1px ;


}
footer{
  display: flex;
  justify-content: space-between;
}
.privacy, .follow{
  display: flex;
  flex-direction: column;
}
@keyframes liMove {
  from{opacity: 0;}
  to {opacity: 1;}
}


nav div{
  display: flex;
  justify-content: center;
  align-items: center;
}
.burger-menu.active :nth-child(1){
  transform: rotate(120deg);
  height: 4px;
  width: 25px;
  transition: all 0.5s ease-in-out;



}
.burger-menu.active :nth-child(2){
  transform: rotate(-120deg) translateY(5px) translateX(8px);
  height: 4px;
  width: 25px;
  transition: all 0.5s ease-in-out;


}
.burger-menu.active :nth-child(3){
  display: none;
}
.line{
  height: 5px;
  margin-top: 5px;
  width: 30px;
  background-color: var(--highlighter-color);
  transition: all 0.5s ease-in-out;


}
.burger-menu{
  display: block;
  margin-right: 20px;
  cursor: pointer;

}

}
