.title {
    color: black;
    margin-top: 0px;
}

main {
    padding: 40px 10%;
}

.red-line {
    width: 58px;
    height: 5px;
    background-color: #BB1A21;
    margin: -10px 0 25px 0;
}

.paragraph {
    color: #222222;
    text-align: justify;
}

.space {
    height: 37px;
}

.one {
    display: flex;
    flex-direction: row;
    gap: 55px;
    width: 100%;
    padding: 32px 0;

    .item {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .one {
        flex-direction: column;
    }
}

.item {
    display: flex;
    border: 1px solid #D9D9D9;
    transition: all 0.3s ease;
    cursor: pointer;

    >div {
        height: 100%;
        flex: 1;
        display: flex;
    }

    .image {
        width: 100px;
        height: 100px;
        background-color: #BB1A21;
    }

    .text-section {
        margin-left: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;

        .subtitle {
            max-width: 200px;
            color: #D80027;
            font-weight: bold;
        }

        .description {
            color: #000000;
            font-size: small;
        }
    }


    .arrow {
        max-width: 50px;
        display: flex;
        justify-content: center;

        img {
            width: 20px;
        }
    }
}

.item:hover {
    scale: 1.05;
}