@import url('https://fonts.googleapis.com/css?family=Roboto');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Roboto', sans-serif;
    line-height: 1.4;
    height: 100%;
}

a{
    text-decoration: none;
}

p{
    margin: 0.75rem 0;
}

/* Utils */
.l-heading{
    font-size: 4rem;
    color: #333;
}

.lead{
    color: #333;
}

/* Colors de les caixes */
.bg-light{
    background-color: #f4f4f4;
    color: #333;
}

.bg-caixa2{
    background-color: rgba(11, 86, 133, 0.9);
    color: white;
}

.bg-primary{
    background-color: lightskyblue;
    color: #333;
}

/* Navbar */
#navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    background: #333;
    color: #fff;
    z-index: 1;
}

#navbar .navigation-left{
    flex: 1;
}

#navbar .navigation-center{
    flex: 2;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
}

#navbar .navigation-right{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#navbar .navigation-right ul{
    display: flex;
}

#navbar .navigation-right ul li{
    padding: 10px;
    height: 40px;
}

#navbar .navigation-right ul li a{
    padding: 0;
    color: white;
    transition: color 0.5s ease;
    display: flex;
    align-items: center;
}

#navbar .navigation-right ul li a:hover{
    color: lightskyblue;
}

#navbar .navigation-right ul li img{
    width: 19px;
}

#navbar .navigation-left{
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

#navbar .navigation-left i{
    color: red;
}

#navbar ul{
    display: flex;
    align-items: center;
    list-style: none;
}

#navbar ul li{
    padding: 1rem;
}

#navbar .navigation-center ul li a{
    color: white;
    padding: 1rem;
    transition: background 1s ease, border 1s ease;
    border-radius: 5px;
    border: transparent 1px solid;
}

#navbar .navigation-center ul li a:hover{
    background: lightskyblue;
    border-radius: 5px;
    color: #333;
    border: lightskyblue 1px solid;
    /* border-radius: 5px; */
}

#navbar .dropdown {
    position: relative;
    display: inline-block;
}

#navbar .dropdown-content {
    display: none;
    color: #000;
    position: absolute;
    top: 37px;
    background-color: rgba(0, 0, 0, 0.5);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
    z-index: 1;
}

#navbar .dropdown-content a {
    display: block;
}

#navbar .dropdown:hover .dropdown-content {display: block;}
#navbar .dropdown:hover .dropbtn a {
    background: lightskyblue;
    border-radius: 5px;
    color: #333;
    border: lightskyblue 1px solid;
}

#navbar-2{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 50;
    background: #666;
    color: #fff;
    z-index: 0;
    padding: 0;
    margin: 0;
}

#navbar-2 .navigation-center{
    flex: auto;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

#navbar-2 .navigation-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* padding-left: 200px; */
}

#navbar-2 .navigation-right ul{
    display: flex;
}

#navbar-2 .navigation-right ul li{
    padding: 10px;
    height: 40px;
}

#navbar-2 .navigation-right ul li a{
    padding: 0;
    color: white;
    transition: color 0.5s ease;
    display: flex;
    align-items: center;
}

#navbar-2 .navigation-right ul li a:hover{
    color: lightskyblue;
}

#navbar-2 .navigation-right ul li img{
    width: 19px;
}

#navbar-2 .navigation-left{
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

#navbar-2 .navigation-left i{
    color: red;
}

#navbar-2 ul{
    display: flex;
    align-items: center;
    list-style: none;
}

#navbar-2 ul li{
    padding: 1rem 0rem;
}

#navbar-2 .navigation-center ul li a{
    color: white;
    padding: 1rem;
    transition: background 1s ease, border 1s ease;
    border: transparent 1px solid;
}

#navbar-2 .navigation-center ul li a:hover{
    background: #333;
    color: #DDD;
    /* border-radius: 5px; */
}

#navbar-2 .dropdown {
    position: relative;
    display: inline-block;
}

#navbar-2 .dropdown-content {
    display: none;
    color: #000;
    position: absolute;
    top: 37px;
    background-color: rgba(0, 0, 0, 0.5);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.8);
    z-index: 1;
}

#navbar-2 .dropdown-content a {
    display: block;
}

#navbar-2 .dropdown:hover .dropdown-content {display: block;}
#navbar-2 .dropdown:hover .dropbtn a {
    background: lightskyblue;
    border-radius: 5px;
    color: #333;
    border: lightskyblue 1px solid;
}

#navbar-mobile{
    display: none;
}

/* Contact */
.contact-form{
    border-top: lightskyblue 3px solid;
    padding: 30px;
    height: 350px;
    justify-content: center;
}

.contact-form img{
    padding-left: 50px;
    width: 500px;
}

.contact-form ul{
    display: flex;
    list-style: none;
    text-align: justify;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    /*justify-content: space-around;*/
}

.contact-form h1{
    font-size: 20px;
}

.contact-form ul ul{
    display: flex;
    flex-direction: column;
}

.contact-form ul li{
    line-height: 1.1;
    font-size: 15px;
}

/* Footer */
footer{
    background: #333;
    color: white;
    padding: 1px;
    text-align: center;
    font-size: 0.75rem;
}
