.thirdSec{
    padding: 0 2rem;
    margin:  5rem 0;   
}
.thirdSec__title{
    font-family: var(--ff-titles);
    font-size: 3rem;
    text-align: center;
}
.thirdSec__text{
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}
.thirdSec__wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.thirdSec__article{
    flex: 1 1 auto;
    min-width: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.thirdSec__article-image{
    width: 100%;
    height: 300px;
    z-index: 1;
    border: 10px solid rgb(243, 243, 243);
}
.thirdSec__article-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border: 1px solid rgb(206, 206, 206);
}
.thirdSec__article-info{
    padding: 1rem 2rem; 
    background: white;
    border-top-right-radius: 50px;
    margin-top: -50px;
    z-index: 5;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.5) 0px -30px 30px -20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1 1 0px;
}
.thirdSec__article-info h2{
    font-size: 2rem;
    font-family: var(--ff-titles);
}
.thirdSec__article-info p{
    font-size: 0.9rem;
}
.thirdSec__article-info p i{
    margin-right: 0.5rem;
    vertical-align: middle;
    color:var(--orange);
}


/**************************************************************************************************/

@media (max-width: 1483px) { }
@media (max-width: 1280px) { }
@media (max-width: 1150px) { }

@media (max-width: 950px) {/*2 REM padding*/
    .thirdSec__text{
        padding: 0;
    }
}

@media (max-width: 768px) { }

@media (max-width: 576px) { /*1 REM padding*/
    .thirdSec{
        padding: 0 1rem;
    }

}

@media (max-width: 480px) { }
@media (max-width: 455px) { }

@media (max-width: 350px) {
    .thirdSec__article{
        min-width: 100%;
        max-width: 100%;
        width: 100%;
    }

}

/***************************************************************************************************/