.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;
    border: 1px #000000 solid;
    border-radius: 50px;
    padding: 10px 30px;
    transition: all 0.3s;

    img {
        width: 25px;
    }
}

.item:hover {
    cursor: pointer;
    scale: 1.02;
    background-color: black;
    color: white;

    img {
        filter: brightness(0) invert(1);
    }
}

.item-1 {
    display: flex;
    align-items: center;
    background-color: white;
    border: 1px rgba(217, 217, 217, 1) solid;
    margin-top: 20px;
    padding-right: 20px;
    height: 100px;
    text-transform: uppercase;
    transition: all 0.1s;
}

.item-1 .left {
    background-color: rgba(187, 26, 33, 1);
    color: white;
    font-weight: bold;
    font-size: 24px;
    width: 100px;
    height: 100%;
    min-width: 60px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: transparent;
    -webkit-text-stroke: 0.1px white;
    font-weight: 800;
    font-size: 50px;
    letter-spacing: 0%;
    outline: 2px solid white;
    outline-offset: 3px; 
}

.item-1 .right {
    flex: 1;
    font-size: 18px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-1 .right img {
    width: 24px;
    height: 24px;
}

.item-1:hover {
    scale: 1.03;
    cursor: pointer;
}