.component-three{
    margin: 0 auto;
    max-width: 1200px;
    width: 100%;
    background-color: #2B4B83;
}

.component-three-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: stretch;
    gap: 50px;
}

.component-three-banner{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.component-three-banner span{
    font-size: 44px;
    color: white;
    text-transform: uppercase;
    font-family: 'Duepuntozero', sans-serif;
}

.component-three-row{
    margin-top: 50px;
    display: flex;
    align-items: start;
    justify-content:space-between;
}

.section-image{
    max-width: 366px;
    width: 100%;
    opacity: 65%;
    transition: .8s;
}


.section-image:hover{
    opacity: 100%;
}

.section-a{
    transition: .3s;
}
.section-a:hover{
    color: rgb(209, 209, 209);
}

.component-three-row > div{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.component-three-row > div div{
    display: flex;
    align-items: center;
    gap: 5px;
}

.component-three-row > div div a{
    color: white;
    font-size: 32px;
    font-family: 'Duepuntozero', sans-serif;
    text-transform: uppercase;
    text-decoration: none;
}

.component-three-container-mobile{
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
}

div.component-three-container-mobile a{
    width: 100%;
    min-height: 400px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    font-size: 44px;
    font-family: 'Duepuntozero', sans-serif;
    text-transform: uppercase;
    aspect-ratio: 1/1;
    text-decoration: none;
}

@media(max-width: 850px){
    .component-three{
        display: none;
    }

    .component-three-container-mobile{
        display: flex;
    }
}