/*section 5*/

.news-section-5 {
    width: 100%;
    position: relative;
}

.news-section-5 h2,
.underline {
    text-align: center;
    position: relative;
    width: fit-content;
}

.news-section-5 h2::after {
    content: "";
    background-color: var(--color-2);
    position: absolute;
    /* inset: 0; */
    bottom: 0;
    height: 3px;
    width: 80%;
    left: 10%;
    /* right: 0; */
    /* margin: auto; */
}

.underline::after {
    content: "";
    background-color: var(--color-2);
    position: absolute;
    /* inset: 0; */
    bottom: 0;
    height: 3px;
    width: 100%;
    left: 0;
    /* right: 0; */
    /* margin: auto; */
}

.news-section-5>* {
    margin: 20px auto;
    width: 100%;
    padding: var(--padding-1);
    /* overflow-x: scroll; */
    /* overflow-y: hidden; */
    /* padding: var(--padding-1); */
}

.news-sec-5-1 {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 2em;
    /* overflow-x: scroll; */
}

.news-sec-5-1-1 {
    width: 350px;
    min-height: 480px;
    background-color: var(--color-9);
    /* border: 2px dashed pink; */
    min-width: 300px;
}

.img {
    height: 45%;
    background-size: cover;
    background-position: center;
}

.content-description {
    height: 55%;
    padding: 5px 20px;
}

.content-description>* {
    margin: 30px auto;
}

.content-description p {
    color: var(--color-8);
    font-family: var(--family-2);
    font-size: var(--font-size-1);
    font-style: normal;
    font-weight: 500;
    text-align: justify;
    position: relative;
}

.news-sec-5-1-1:nth-child(1) .img {
    background-image: url(../images/2.png);
}

.news-sec-5-1-1:nth-child(2) .img {
    background-image: url(../images/3.png);
}

.news-sec-5-1-1:nth-child(3) .img {
    background-image: url(../images/10.png);
}


/*section 5*/


/*second carousel*/

.carousel2_button {
    background-color: transparent;
    color: darkgreen;
    width: 50px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    border: 3px solid darkgreen;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.carousel_2_container {
    transition: all 1s;
    width: max-content;
}

.cadfvsjkf {
    overflow: hidden;
}


/*second carousel*/


/*hero*/

.news-hero::before {
    content: "";
    inset: 0;
    position: absolute;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.news-hero {
    display: grid;
    align-items: end;
    background-image: url(../images/49.JPG);
    background-size: cover;
    margin: 0 0 10vh 0;
    height: 80vh;
}


/*hero*/

.content h1 {
    transition: all 1s;
}

@media all and (max-width: 550px) {
    .content h1 {
        transform: translateY(-16vh);
    }
}

@media all and (max-width: 960px) {
    .sec-5-1 {
        flex-wrap: wrap;
    }
}