.good-hands{
    margin-top: 4rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.heading{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.heading h2{
    font-size: 1rem;
    padding: 0.8rem;
    font-weight: 300;
    border-radius: 12px;
    border: 0.6px solid #b4b4b428;
    color: #fcfcfc;
    font-weight: 400;
    transition: all 0.4s ease-out;
}

.heading h2:hover{
    letter-spacing: -.3px;
}

.heading h1{
    font-size: 3.7rem;
    font-weight: 500;
    text-align: center;
    font-family: 'Satoshi';
    line-height: 1.1;
    letter-spacing: -1px;
}


.heading p{
    margin-top: 0rem;
    width: 50%;
    text-align: center;
    font-size: 1.2rem;
    color: #c4c4c4;
}

.testimonials-container{
    margin-top: 2rem;
    width: 100%;
    padding: 0 6rem
}

.testimonial-container{
    padding: 2rem 4rem;
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    background: rgba(13,13,13);
    border: 0.6px solid #b4b4b428;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.testimonial-container .testimonial{
    font-size: 2rem;
    margin-bottom: 2rem;
}

.testimonial-container .testimony h3{
    font-size: 1.2rem;
    font-weight: 400;
    color: #c4c4c4;
}

.testimonial-container .testimony p{
    font-size: 1rem;
    font-weight: 300;
    color: #c4c4c4;
}

.iframe{
    width: 217px;
    height: 384px;
    border: none;
    border-radius: 8px;
}

@media (max-width: 355px) {
    .hero-button-container{
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .testimonials-container{
        margin-top: 0rem;
        width: 100%;
        padding: 0 2rem;
    }
    .testimonial-container{
        padding: 3rem 2rem;
        flex-direction: column;
    }
    .good-hands .heading p {
        width: 90%;
    }
}

@media (min-width:768px) {
    
}

@media (min-width:1024px) {
}