@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


.containerAbt{
    width: 100%;
    min-height: 100vh;
    background-color: white;
}

.containerAbt .title{
   width: 100%;
   display: flex;
   align-items: center; 
   justify-content: center;
   text-transform: uppercase;
   color: black;
   padding: 20vh 0;
   padding-bottom: 4vh;
   
}

.containerAbt .title h1{
    font-weight: 500;
    font-size: 34px;
}

.content{
    width: 85%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 30px auto;
}

.content .desc{
   /* box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.2);*/
    background-color: white;
    padding: 25px 25px;
}

.content .desc h2{
    color: black;
    font-size: 22px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: uppercase;
}

.content .desc p {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.5;
    color: black;
    font-weight: 400;
}

.desc li{
    list-style: circle;
    margin-top: 1vh;
    font-size: 15px;
}


.image-sec img{
    width: 100%;
    height: auto;
}

.content .desc p:nth-child(1) {
    margin-top: 1vh;
    font-size: 15px;
    line-height: 1.5;
    color: black;
    font-weight: 400;
}

.content .desc h2:nth-child(2){
    margin-top: -1.1vh;
    margin-bottom: -1.5vh;
}

.image-sec:nth-child(1) img{
    width: 30vw;
}

.image-sec:nth-child(4) img{
    height: 50vh;
    margin-top: 4.5vh;
}

/*-----------------------------------------------BOTTOM SECTION------------------------------------------------*/

#join{
    background-color: white;
    padding-top: 4vh;
    padding-bottom: 5vh;
    margin-top: -5vh;
  }
  
  .bottominput{
   
    width: 100%;
    margin-top: -2vh;
    margin-bottom: 2vh;
    display: inline-block;
    text-align: center;
  }
  
  .bottominput input{
  height: 5vh;
  border-radius: 5px;
  margin-right: 5px;
  text-align: center;
  }
  
  .bottom{
    margin: 0 auto;
  }
  
  
  #join .btn-trial2{
    width: 15vw;
    text-transform: uppercase;
    font-weight: 400;
    background: linear-gradient(#4EB9AB, #6EBA77, #5CB05F);
    color: white;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
    padding: 6px;
    font-size: 90%;
  
    margin-bottom: 3vh;
    text-decoration: none;
  }
  
  
  #join h1{
    font-size: 26px;
      text-align: center;
      margin-top: 3vh;
      margin-bottom: 3vh;
      text-transform: uppercase;
      font-weight: 500;
  }
  

@media screen and (max-width: 991px) {
    .content{
    
        grid-template-columns: repeat(1, 1fr);
        
    }

    .image-sec:nth-child(1){
        text-align: center;
    }

    .desc h2{
       text-align: center; 
    }

    .btn-trial2{
        min-width: 30vw;
    }
}

@media screen and (max-width: 720px) {
    
    .containerAbt .title h1{
        font-size: 22px;
    }
  
    #join h1{
      font-size: 22px;
    }
  
    .btn-trial2{
      min-width: 40vw;
      margin: 10px;
      margin-bottom: 15px;
    }

    .content .desc h2{
        font-size: 95%;
    }

    .content .desc li{
        font-size: 14px;
    }

    .image-sec:nth-child(4) img{
        max-height: 220px;
    }
    
}

@media screen and (max-width: 600px) {
    
    .title h1{
        font-size: 22px;
    }
  
    #join h1{
      font-size: 22px;
    }
  
    .btn-trial2{
      min-width: 40vw;
      margin: 10px;
      margin-bottom: 15px;
    }

    .content .desc p{
        font-size: 13px;
    }
    
}
