:root{
    --color-primario:#009fc2;
}
html,body{
    overflow-x: hidden;
}
.open-sans{
    font-family: 'Open Sans Condensed', sans-serif;
}
.open-sans-n{
    font-family: 'Open Sans', sans-serif;
}

*,p{
    margin: 0;
    padding: 0;
}

/*section 1*/
.custom-card{
    height: 35vw;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: center;
}
.custom-card a{
    background-color: #009fc299;
    font-size: 25px;
    text-decoration: none;
    transition: all 0.5s;
    color: white;
}
.custom-card a:hover{
    background-color: #ffffff99;
    color: var(--color-primario);
}
.custom_card-decorator{
    width: 8px;
    height: 35px;
    background-color: white;
}
.custom-card a:hover .custom_card-decorator{
    background-color: var(--color-primario);
}

@media only screen and (max-width:768px){
    .custom-card{
        background-position-y: center;
        height: 370px;
    }
}