
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding:0;
    box-sizing:border-box ;
}
body{
    background-image: url(./image/bg-hero-desktop.svg);
    font-family :"Poppins", sans-serif;
}

header{
    height: 100px;
    display:flex;
    justify-content: space-between;
    align-items:center;
}
ul{
    display: flex;
    list-style-type: none;
}
ul li a{
    padding: 0 20px;
    text-decoration: none;
    color :black;
    display:inline-block;

}
li a::after{
    content:'';
    display:block;
    height:0.4rem;
    width:0;
    background:rgb(190, 124, 190);
}
li a:hover::after{
    width:100%
}
/** global**/
.btn-primary {
  background-color: #ff0099;
  color: #fff;
  padding: 10px 50px;
  border: none;
  outline: none;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  align-items: center; 
    display:flex;
}

.btn-primary:hover {
  opacity: 0.8;
  transition: 0.3s;
  transform: scale(1.04);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
}
/**  **/
main{
    display:flex;
    height :calc(100vh - 150px);
    align-items:center;
    justify-content:space-around ;
}
.illustration-mockups-img{
    max-width:590px;
}

.content-left{
    width:40%;
}
main h1{
    font-size:44px ;
    font-weight:700;
    color:black;

}
main p{
    font-size:14px;
    font-weight:300;
    color:rgb(45, 45, 45);
    line-height:31.5px;
    margin: 10px 0;
}

.wrapper{
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}

/**feature section**/
.features {
    width: 100%;
    height: 100%;
    margin: 120px 0px;
  }
  
  .container {
    max-width: 90%;
    margin: 50px auto;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
   
  }
  
  
  .feature-box {
    max-width: 500px;
    margin: auto;
  }
  .feature-box h1 {
    font-size: 1.8rem;
    margin: 20px 0px;
  }
  
  .feature-box p {
    color: #6c757d;
  }
  
  .card-img {
    max-width: 400px;
    margin: auto;
  }
  
 box2 {
    order: 0;
  }
  
  .img2 {
    order: 1;
    max-width:400px;

  }
  /* footer  */
.footer {
    width: 100%;
    height: 100%;
    background-color: #00252e;
    margin-top: 10rem;
    padding-bottom: 20px;
  }
  
  .community-post {
    transform: translateY(-100%);
    flex-direction: column;
  }

  .container-white {
    background: #fff;
  }
  
  .info-and-social {
    display: flex;
    justify-content: space-around;
    font-family: sans-serif;
  }
  
  .info-and-social div div {
    display: flex;
    margin: 15px 0px;
  }
  
  .info-and-social div {
    align-items: center;
  }
  
  .info-text {
    margin: 0px 10px;
    max-width: 300px;
    color: #fff;
    font-size: 0.8rem;
    font-family: sans-serif;
  }
  
  .info-links a {
    display: block;
  }
  
  .info-link {
    color: #fff;
    margin: 10px 0px;
    font-family: sans-serif;
    font-size: 0.8rem;
  }
  
  .social-link {
    margin: 0px 5px;
  } 

  .material-icons {
    color: #fff;
  }

  .contain {
    padding: 10px 50px;
    margin: auto;
  }
  /* footer */
  .footer-text {
    display: flex;
    justify-content: flex-end;
    color: #fff;
    font-family: sans-serif;
    padding: 20px 0px;
  }
 
