@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 */
/**************************/
.knx{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 80px 0 160px 0;
    color: black;
}

.knx h2{
    text-align: left;
    font-size: 25px;
    
}

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

.knk ul li{
    text-align: left;
    
}

.knx-link{
    width: 300px;
    display: flex;
    flex-direction: row;
    justify-content: start;
}

.knx-logo{
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    margin-top: -40px;
}

.knx-logo img{
    width: 300px;
    height: 150px;
}

/* Media Queries */
/**************************/
@media (max-width: 668px) {
    .knx-logo img{
        width: 250px;
        height: 125px;
    }
} 

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

    .links-title{
      flex-direction: column;
  }
  
  .title h1{
      font-size: 35px;
  }
  
    .title h4{
      display: none;
  }
  
  }

@media screen and (max-width: 490px) {
    .knx-logo img{
        width: 200px;
        height: 100px;
    }
}

@media (max-width: 396px) {
    

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

    .knx-logo img{
        width: 200px;
        height: 100px;
    }
}

@media (max-width: 360px){

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

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


