@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');


.feedback-form {
    max-width: 400px;
    margin: 0 auto;
    font-family: "Poppins", serif;
    padding-top: 10px;
    text-align: center;
  }
  
  .rating {
    margin-bottom: 20px;
    display: flex;
    flex-direction: row-reverse; /* this is the magic */
    justify-content: flex-end;
    margin-left: 40% ;
  }
  
  .rating input {
    display: none;
  }
  
  .rating label {
    font-size: 24px;
    cursor: pointer;
  }
  
  .rating label:hover,
  .rating label:hover ~ label { /* reason why the stars are in reverse order in the html */
    color: orange;
  }
  
  .rating input:checked ~ label {
    color: orange;
  }
  
  .comment {
    margin-bottom: 20px;
  }
  
  .comment textarea {
    width: 100%;
    height: 100px;
    resize: none;
  }
  
  .submit-btn {
    background-color: #720e26;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-family: "Poppins", serif;
    margin-bottom: 4%;
  }
  
#reviewgroup{
    margin-top: -10px;
    padding-top: 12%;
    margin-left: 27%;
    background-color:#ADD8E6;
    width: 45%;
    margin-bottom: -12rem;
    min-height: 70vw;
}

#reviewpart{
    margin-top: 10%;
    height: 27vw;
    background-color: white;
    width: 99vw;
    margin-left: -9px;
}
  #clientscomment{
    font-family: 'Poppins';
    margin-top: -100px; 
    font-size: 40px; 
    text-align: center;
  }
#border{
    max-width: 450px;
    margin-bottom: 20px;
    margin-left: 37%;;
}

#caixa{
  width: 50%;
  margin-left: 25%;
  font-family: "Poppins", serif;
  font-size: 20px;
}

.review{
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
}

#card-model{
    height: 80vw;
}

@media(max-width: 450px){
  #reviewgroup{
    width:95%;
    margin-left: 4%;
  }
  .review{
    font-size: 2vw;
  }
  #clientscomment{
    font-size: 150%;
    margin-top: 30%
  }
  #border{
    margin-left:0;
  }
  .feedback-form{
    margin-left: 10%;
    margin-right: 20%;
  }
  #card-model{
    height: 200vw;
    }
    
    #reviewpart{
        height: 100vw;
        font-size: 3vw;
        width: 99.5vw;
    }
    #img2{
        margin-top: -100vw;
    }
}