.banner-story-container {
    width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    display: flex;
    justify-content: center;
    padding: 0 10px;
    min-height: 500px;
}

.banner-story-container::before {
    content: '';
    display: block;
    padding-bottom: 33%;
}

.banner-story-content {
    width: 100%;
    max-width: 1400px;
    font-family: 'Open Sans', sans-serif;
    align-content: center;
}

.banner-story-content a {
    display: block;
    margin: 30px auto;
    width: 25px;
    height: 25px;
    border-top: 2px solid;
    border-left: 2px solid;
    transform: rotate(135deg);
    transition: transform 0.3s ease-in-out;
}

.banner-story-content a::after {
    content: "";
    display: block;
    width: 2px;
    height: 45px;
    background-color: #DADADA;
    transform: rotate(-45deg) translate(15px, 4px);
    left: 0;
    top: 0;
}

.banner-story-content a:hover {
    transform: rotate(135deg) translateY(-5px);
}

.banner-story-content h2 {
    padding-top: 40px;
    font-weight: 300;
    font-size: 33px;
    margin-bottom: 20px;
}

.banner-story-testo {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 400;
}

/* Media query */
@media (max-width: 769px) {
    .banner-story-container::before {
        padding-bottom: 40%;
    }
}