.general_container{
    width: 100%;
    margin:2rem 0rem 2rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.general_container h2{ 
    color: var(--colory-primary);
    margin-bottom: 1.5rem;
}
/* -----cards---- */
.cards .cards__image{
    width: 100%;
    height: 265px;
    display: inline-block;
    border-bottom: 7px solid var(--colory-primary);
    margin-bottom: 0.5rem;
    position: relative;
}
.cards .cards__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px 5px 0px 0px;
}
.cards .cards__title{
    color:var(--colory-primary);
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.cards .cards__date{
    display: flex;
    justify-content: space-between;
}
.cards .cards__date b{
    color: var(--colory-primary);
    margin-right: 5px;
}
.cards .cards__date span{
    margin-right: 5px;
    cursor: pointer;
}
.cards .cards__date p .fa-eye {
    color: #102179;
}
.cards .cards__date p .fa-heart {
    color: #E2315C;
}
.cards .cards__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color:var(--colory-black);
    margin-bottom: 0.5rem;
}
.cards .cards__more{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color:var(--colory-black);
    margin-top: 0.5rem;
    display: inline-block;
}
.cards .cards__content{
    text-align: center;
    padding:1.2rem 0.5rem 0.5rem;
    background: rgba(230, 247, 239, 1);
}
 .cards:hover .cards__content {
    transition: var(--transition);
    background: var(--colory-primary);
}
.cards:hover .cards__content .cards__title{
    color: var(--colory-white);
}
.cards:hover .cards__content .cards__description {
    color: var(--colory-white);
}

/* -----CALL-info----- */
 .call-box {
    display: flex;
    gap: 1rem;
}
 .call-box .left-icon {
    width: 92px;
    height: 92px;
    border-radius: 100%;
    background: #F3F5F8;
    display: flex;
    align-items: center;
    justify-content: center;
}
 .call-box .left-icon i {
    font-size: 1.5rem;
    color: #ACB3B8;
}
 .call-box .right-info {
    flex-basis: 60%;
}
 .call-box .right-info h5 {
    color: var(--colory-primary);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}
 .call-box .right-info p a {
    display: inline-block;
    margin-bottom: 0.2rem;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--colory-black);
}

@media only screen and (max-width: 1350px) {
    .cards .cards__description {
        font-size: 15px;
    }
}

@media only screen and (max-width: 612px) {
    .cards .cards__description {
        font-size: 14px;
    }
}