.sectiontestimonios {
    padding-top: 30px;
    padding-bottom: 30px;
    background-image: url(../img/backgrounds/backgroundtest.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
}

.sectiontestimonios p {
    color: white;
}

.sectiontestimonios h2 {
    color: white;
}

.testimonioscontainer {
    display: block;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.testimonioscontainer h2,
.testimonioscontainer p
{
    text-align: center;
}

.boxtest {
    
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.boxtestcont {
    background: white;
    border-radius: 20px;
    width: calc(25% - 20px);
    padding: 20px;
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    
}

.boxtestcont h2{
    color: #11345D;
    margin-top: 10px;
    margin-bottom: 10px;
}

.boxtestcont h2:hover{
    color: #B1090B;
}

.boxtestcont p {
    color: black;
}

.boxtestcont img {
    height: 100px;
    width: auto;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.boxtestcont img:hover {
    transform: scale(1.1);
}


@media only screen and (max-width: 900px) {
    .boxtestcont {
        width: calc(50% - 20px);
    }
}

@media only screen and (max-width: 500px) {
    .boxtestcont {
        width: calc(100% - 20px);
    }
}

