.testimonialsSection {
    background-color: transparent;
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.innerTestimonialsSection {
    width: 90%;
    max-width: var(--max-width);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 15px;
}

.innerTestimonialsSection h1 {
    color: #FAFBFF;
    font-family: var(--font-two);
    font-size: 300%;
    text-transform: capitalize;
    line-height: 1;
    font-weight: 800;
}

.oneTestimonial {
    padding: 15px;
    border: 1px solid #666;
    backdrop-filter: blur(3px);
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 0.2em;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    transition: 100ms ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 7px;
    transition: 100ms ease;
}

.oneTestimonial h1 {
    font-family: var(--font-two);
    color: white;
    font-size: 100%;
    text-transform: capitalize;
}



.rating:not(:checked)>input {
    position: absolute;
    appearance: none;
}

.rating:not(:checked)>label {
    float: right;
    cursor: pointer;
    font-size: 25px;
    color: #666;
}

.rating:not(:checked)>label:before {
    content: '★';
}

.rating>input:checked+label:hover,
.rating>input:checked+label:hover~label,
.rating>input:checked~label:hover,
.rating>input:checked~label:hover~label,
.rating>label:hover~input:checked~label {
    color: #e58e09;
}

.rating:not(:checked)>label:hover,
.rating:not(:checked)>label:hover~label {
    color: #ff9e0b;
}

.rating>input:checked~label {
    color: #ffa723;
}


.oneTestimonial p {
    font-family: var(--font-two);
    color: white;
    font-size: 80%;
    line-height: 1.7;
    transition: 70ms ease;
}

.oneTestimonial:hover {
    border: 1px solid rgb(231, 231, 231);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    transform: translate3d(0, -3px, 10px);
}

.oneTestimonial:hover p {
    padding-left: 7px;
}








































  
  
  @media only screen and (max-width: 768px) {
    
    .innerTestimonialsSection > h1 {
        font-size: 250%;
    }
  
  }
  
  
  @media only screen and (max-width: 576px) {
    
    .innerTestimonialsSection {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .innerTestimonialsSection > h1 {
        margin-bottom: 50px;
    }
  
  }