.aboutImageArea {
    position: relative;
}

.aboutImageShortDescriptionArea {
    position: absolute;
    width: 85%;
    left: 7.5%;
    bottom: -80px;
    background: #fff;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    box-shadow: 0px 22px 466px 0px #00000014;
}

.aboutImageShortDescriptionArea .shortDescriptionTitle {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
}

.aboutImageShortDescriptionArea .shortDescription {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.aboutContentTextArea {
    margin-top: 170px;
}

.aboutContentText {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    color: #6C6D70;
    padding: 0 60px;
}

.productContentArea {
    font-family: Inter;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    color: #6C6D70;
}

.productContentArea h3 {
    font-family: Inter;
    font-size: 30px;
    font-weight: 700;
    line-height: 38px;
    color: #000000;
}

.productContentArea ul {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    margin: 0;
}

.productContentArea ul li ul {
    list-style: disc;
    margin: 10px 0;
}

.moreButton {
    display: flex;
    justify-content: center;
}

.moreButton button {
    font-family: Inter;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    background: #000000;
    padding: 12px 0;
    width: 50%;
    border: 1px solid #000000;
    color: #fff;
}


.newsCard {
    border: 1px solid #BDBDBD;
}

.newsCardImageArea {
    position: relative;
}

.newsCardImageArea, .newsCardImageArea img {
    aspect-ratio: 1/.9;
}

.newsCardImageArea .newsCardDate {
    position: absolute;
    bottom: -15px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: #D1000F;
    width: max-content;
    transform: translate(-50%, 0%);
    left: 50%;
    font-family: Inter;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    letter-spacing: 1.5px;
    color: #fff;
}

.newsCardContent {
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    background: #FDFDFD;
}

.newsCardContent .newsCardText {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    align-items: center;
    text-align: center;
}

.newsCardContent .newsCardText .newsCardTitle {
    font-family: Inter;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}

.newsCardContent .newsCardText .newsCardDescription {
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6C6D70;
}

.newsCardButton a {
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    width: max-content;
    text-decoration: none;
    color: #000000;
    column-gap: 10px;
}

.newsCardButton a i {
    color: #D1000F;
    font-size: 13px;
}

.lastNews {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.lastNewsTitle {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    color: #101828;
}

.productContentArea a {
    color: #6C6D70;
    text-underline-offset: 2px;
    text-decoration: underline!important;
}

@media only screen and (max-width: 1199px)
{
    .aboutImageShortDescriptionArea {
        padding: 40px 80px;
    }
}

@media only screen and (max-width: 991px)
{
    .aboutImageShortDescriptionArea {
        padding: 40px 30px;
        width: 100%;
        position: static;
    }

    .aboutContentTextArea {
        margin-top: 24px;
    }
    .aboutContentText
    {
        padding: 0;
    }
}

@media only screen and (max-width: 767px)
{
    .aboutImageArea img {
        aspect-ratio: 1/.75;
        object-fit: cover;
    }

    .moreButton button {
        padding: 12px 80px;
        width: unset;
    }

    .productContentArea h3 {
        font-size: 21px;
        line-height: 29px;
    }
}

@media only screen and (max-width: 425px)
{
    .aboutImageShortDescriptionArea {
        padding: 24px;
    }
}