/*--------------------------------------------------------------
# Banner Section
--------------------------------------------------------------*/
.banner{
    background-image: url("../../images/banner/clients_banner.jpg");
}
/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients{
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: var(--margin75);
}
.clients .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: var(--padding100);
}
.clients .container .card50{
    width: 400px;
    height: 200px;
    margin: 0 50px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: 2px solid var(--main-red);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    cursor: pointer;
}
@media (max-width: 1104px) {
    .clients .container{
        padding: 100px 10px;
    }
    .clients .container .card50 {
        width: 300px;
        margin: 0 20px;
    }
}
@media (max-width: 710px) {
    .clients .container {
        padding: 50px 10px;
    }

    .clients .container .card50 {
        width: 100vw;
        margin: 50px 0;
    }
}
.clients .container .card50 h2{
    font-size: var(--subtitle);
    color: rgba(51,51,51,0.8);
    letter-spacing: 3px;
}
.clients .container .card50 h2 span {
    font-size: 45px;
}
.clients .container .card50 h3{
    font-size: var(--text18);
    letter-spacing: 2px;
    color: var(--main-red);
}
.clients .container .box{
    width: 150px;
    margin: 36px;
}
.clients .container .box a{
    cursor: default;
}
.clients .container .box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width: 562px) {
    .clients .container{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        padding: 50px 0;
    }
}
/*--------------------------------------------------------------
# Collaborations Section
--------------------------------------------------------------*/
.collaborations{
    box-shadow:  20px 20px 60px #d9d9d9, -20px -20px 60px #ffffff;
    margin: var(--margin75);
    padding-top: 50px;
}
.collaborations .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px 0;
}
.collaborations .container .box{
    width: 250px;
    height: 400px;
    margin: 0 70px;
    border-radius: 5px;
    text-align: center;
}
.collaborations .container .box img{
    width: 250px;
    height: 250px;
    object-fit: contain;
}
.collaborations .container .box .textBox{
    border-left: 2px solid var(--main-red);
}
/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials{
    display: flex;
    justify-content: center;
    position: relative;
    flex-direction: column;
    margin: var(--margin75);
}
.testimonials .container{
    display: flex;
    justify-content: center;
    padding: var(--padding100);
    flex-wrap: wrap;
}
.testimonials .container .card {
    width: 450px;
    margin: 20px;
}
.testimonials .container .card p{
    color: rgba(42,42,42,0.65);
    font-size: 22px;
}
.testimonials .container .card .card-content{
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
}.testimonials .container .card .card-content img{
     width: 80px;
     height: 80px;
     object-fit: contain;
     margin-right: 50px;
 }
.testimonials .container .card .card-content .card-text{
    font-size: 25px;
    color: #2a2a2a;
    padding-top: 25px;
}
.testimonials .container .card p span{
    font-weight: bold;
}
.testimonials .container .card .card-content .card-text h6{
    font-weight: bold;
    opacity: 0.8;
}
@media (max-width: 700px) {
    .testimonials .container .card{
        margin: 60px 0;
    }
}
@media (max-width: 562px) {
    .testimonials .container{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    .testimonials h3{
        font-size: 35px;
    }
    .testimonials .container .card{
        width: 100%;
        margin: 36px 0;
        padding: 10px;
    }
    .clients .container .box, .lastClients .container .box{
        margin: 36px 18px;
    }
    .clients .title h3{
        font-size: 35px;
    }
}


