.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;
}

.item {
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;

    .left {
        color: rgba(85, 85, 85, 1);
    }
}

@media (max-width: 480px) {
    .item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.right {
    width: 60%;
    border-radius: 50px;
    padding: 10px 30px;
    border: 1px #000000 solid;
    transition: all 0.3s;
    display: flex;
    cursor: pointer;
    justify-content: space-between;
}

.right:hover {
    scale: 1.01;
    background-color: black;
    color: white;

    img {
        filter: brightness(0) invert(1);
    }
}