@import url('https://fonts.googleapis.com/css2?family=Saira:wght@100&display=swap%27');

@import url(https://fonts.googleapis.com/css?family=Oswald:300,400,700);
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic);


/* Override UGG site */
main, html {
    width: 100%; 
    padding: 0; 
    margin: 0; 
    display: flex;
    font-family: 'Saira', sans-serif;
    background-color: #f5f6f7;
}
.navBar {
    background-color: transparent;
  }
  
body{
    margin: 0;
    padding: 0;
}

.content-asset p {
    margin:0;
}

.breadcrumb {
    display:none;
}

section{
    width: 100%;
    height: 100vh;
    margin: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.title{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0;
    color: white;
    background-color: rgba(0, 0, 0, 0.6);
}

.title h1{
    text-align: center;
    letter-spacing: 15px;
    font-family: 'Saira', sans-serif;
    font-size: 50px;
    animation: desenfocar 1s ease-in-out forwards;
    color: white;
}

.title h4{
    text-align: center;
    letter-spacing: 15px;
    margin-top: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    animation: desenfocar 1s ease-in-out forwards;
    font-size: 14px;
    margin-top: -10px;
    color: white;
}

.links-title{
    margin-top: 20px;
    width: 100%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: 'Saira', sans-serif;
    animation: desenfocar 1s ease-in-out forwards;
    color: white;
}

.links-title a{
    color: rgb(0, 0, 0);
    border-radius: 0px;
    background-color: transparent;
    font-weight: bolder;
    font-family: 'Saira', sans-serif;
    font-size: 20px;
    padding: 5px 15px;
    text-decoration: none;
    color: white;
}

/* Div - Informacion */
/**************************/
.informacion{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px 0 160px 0;
    color: black;
}

.informacion h2{
    text-align: center;
    font-size: 25px;
}

.informacion p{
    margin: 0 30px;
    font-size: 18px;
    text-align: left;
    font-weight: 800;
}

.informacion img{
    width: 500px;
    height: 200px;
    border: 2px solid black;
    margin: 50px 0;
    object-fit: cover;
}

/* Media Queries */
/**************************/
@media (max-width: 800px) {

}

@media (max-width: 668px) {
    .informacion img{
        width: 400px;
        height: 180px;
        border: 2px solid black;
        margin: 50px 0;
        object-fit: cover;
    }
} 

@media screen and (max-width: 490px) {
    .informacion img{
        width: 300px;
        height: 160px;
        border: 1.5px solid black;
        margin: 30px 0;
    }
}

@media (max-width: 396px) {
    

    .informacion h2{
        text-align: center;
        font-size: 22px;
        margin: 0 10px;
    }
    
    .informacion p{
        margin: 0 10px;
        font-size: 16px;
        text-align: left;
        font-weight: 800;
    }

    .informacion img{
        width: 200px;
        height: 140px;
        border: 1.5px solid black;
        margin: 30px 0;
    }
}



@media screen and (max-width: 600px) {

  .links-title{
    flex-direction: column;
}

.title h1{
    font-size: 35px;
}

  .title h4{
    display: none;
}

.informacion hr{
    width: 80%;
}
}

@media (max-width: 360px){

    .informacion{
        margin: 80px 0 160px 0;
    }

    .informacion p{
        font-size: 14px;
    }
}


