
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
    
}
/*Header*/
.upper-header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
}
.logo img{
    max-width: 150px;
    position: relative;
    left:15%;
}
.contact{
    display:flex;
    width: 40vw;
    justify-content:space-between ;
    align-items:center;
    position:relative;
    right:5%;
    height:100%;
}
.phone, .mail{
    display: block;
    font-size: 20px;
    margin:0px 10px;
}
.phone a, .mail a{
    text-decoration:none;
    color: #7e8588;
    margin-left:5px;
}
.separator{
    height: 20%;
    width: 1px;
    background: #e9e9e9;
}
.lower-header{
    background-color: #cfa968;
    height: 75px;
    padding-left: 20vw;
    padding-right:20vw;
}
.mobil-logo{
    display:none;
}
.links{
    display: flex;
    flex-direction:row;
    justify-content:center;
    align-items: center;
    height: 100%;
}
.links li{
    list-style:none;
    display: flex;
    height: 100%;
    position:relative;
    width: 150px;
    border-right: rgba(0, 0, 0, .1) solid 1px;
    text-align: center;
    justify-content: center;
}
.links li:hover{
    background-color: #fff;
    
}

.links li a{
    text-decoration: none;
    color:#ffffff;
    font-weight: bold;
    height: 10vh;
    position:absolute;
    top:35%;

}
.links li:hover a{
    color: #cfa968;
}

/*Slider*/
#slider img{
    max-height: 600px;
    width:100vw;
}
/*About us*/
#about{
    height: auto;
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-around;
    padding: 5% 10%;
}
.us{
    width: 40%;
    text-align: justify;
}
.commitment{
    width:40%;
    
    text-align:justify;

}
/*Products*/
#products{
    padding-bottom:2em;
}
.center-title .divider1{
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 25px;
}
.product-row{
    display:flex;
    justify-content: space-around;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
}
.product-box{
    width: 30%;
    display: flex;
    flex-direction: column;
    
}
.product-icon{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.product-icon i{
    font-size: 40px;
    color: #333;
    margin: 10px;
}
.product-icon h3{
    width: 80%;
}
.product-info a,.info a{
    text-decoration: none;
    color: #d6b57c;
}
.product-info a:hover,.info a:hover{
    text-decoration: underline;
    
}
.product-info h3,  .product-info span, .product-info a{
    margin: 15px 5px;
}
/*Team*/
#team{
    background-color: #f4f4f4;
    height: 500px;
    display: none;
}
.team-row{
    display: flex;
    width: 80%;
    margin: 0 auto;
    justify-content: space-around;

}
.member-box{
    width: 20%;
    margin: 15px 0px;

    
}
.member-box img{
    width: 100%;
    cursor: pointer;
    transition:transform .5s ease;
}
.member-box img:hover{
    transform: scale(1.1);
    
}
.member-name{
    text-align: center;
    font-weight: 400;
    margin: 15px 0px;
    font-size: 20px;
    color: #1d2127;

}
.member-socials{
    text-align: center;
}
.member-socials i{
    background-color: #cfa968;
    font-size: 20px;
    margin: 0px 5px;
    color: #ffffff;
    border-radius:100%;
    padding:10px
    
}
/*Location*/
#location{
    height: 500px;
}
.map{
    display:block;
    margin:0 auto;
    width: 1200px;
}
/*Consult*/
#consult{
    background-image: url(../img/consult-background.jpeg);
    background-size: cover;
    height: auto;
    padding: 50px 0px;
}
#consult span{
    margin-top: 5px;
}

.consult-box{
    width: 40%;
    position: relative;
    left: 50%;
}
/*Form*/
input{
    margin-bottom: 10px;
}
.form-info input{
    width: 40%;
    height: 30px;
}
#subject{
    height: 30px;
    width: 100%;
}
#message{
    width: 100%;
    line-height: 30px;
    
}
#submit{
    display: block;
    height: 40px;
    width: 100px;
    background-color: #cfa968;
    border-color: #cfa968;
    color: #fff;
    
}
/*Footer*/
footer{
    background-color:#cfa968;
    color:#000;
    display:flex;
    justify-content:space-around;
    padding:100px 50px;
}
.footer-info{
    width: 30%;
}
.footer-info img{
    max-width: 150px;
    margin-bottom: 15px;
}
.footer-description{
    font-size:14px
}
.footer-contact{
    width: 30%;
}
.contact-item{
    margin: 15px 0px
}
.contact-item a{
    color: #000;
    text-decoration:none;
    font-size: 18px;
    font-weight: 500;
}
.contact-item a:hover{
    text-decoration:underline;
}
.contact-item i{
    color: #000;
}
.footer-social{
    text-align: center;
}
.footer-social i{
    background-color: #cfa968;
    font-size: 20px;
    margin: 15px 5px;
    color: #000;
    border-radius:100%;
    padding:10px
    
}
.footer-social i:hover{
    color:#777;
}

/*Section commons*/
.section-title{
    color: #1d2127;
    font-weight: 300;
}
.section-subtitle{
    color:#1d2127;
    font-weight: 300;
}
.divider1{
    background-color:#cfa968;
    height: 3px;
    width: 50px;
    margin:15px auto;
    border-radius:5px;
}
.divider2{
    background-color: #cfa968;
    height: 2px;
    width: 50px;
    margin:15px 0px;
    border-radius: 5px;
}
.info{
    color: #777;
    font-size: 1.2em;
    display: block;
    text-align: justify;
}
.center-title {
    width: 300px;
    text-align: center;
    margin: 0 auto;
    padding-top: 35px;
}
.center-divider{
    margin:0 auto;
    margin-top: 15px;
    margin-bottom:15px;
}

/*Hamburger*/
@media screen and (max-width:768px){
    /*Header*/
    .upper-header{
        display:none
    }
    .lower-header{
        padding: 0px;
        position: relative;
        height:150px
    }
    .line{
        width: 30px;
        height:3px;
        background-color: #fff;
        margin: 5px;
    }
    .mobil-logo{
        display: block;
    }
    .mobil-logo img{
        width: 150px;
        position: absolute;
        top: 20%;
        left:30%;
    }
    .hamburger{
        position:absolute;
        cursor:pointer;
        right:5%;
        top:30%;
        transform:translate(5%,30%);
        z-index:100;
    }
    .links{
        position: fixed;
        background-color: #cfa968;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path:circle(100px at 90% -16%);
        -webkit-clip-path:circle(100px at 90% -16%);
        transition: all 1s ease-out;
        pointer-events: none;
        z-index: 10;
    }
    .links.open{
        clip-path:circle(1000px at 90% -10%);
        -webkit-clip-path:circle(1000px at 90% -16%);
        pointer-events: all;
    }
    .links li{
        display:flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        border-right:0 ;
    }
    .links li:hover{
        background-color: #cfa968;
    }
    .links li:hover a{
        color:#fff;
        text-decoration:underline;
        
    }
    /*About Section*/
    #about{
        flex-direction:column;
        height: auto;
        padding: 50px 0px;
        text-align: center;
    }
    .us {
        width: 75%;
        margin:auto;
        margin-bottom: 35px;
        text-align:center;
    }
    .divider1, .divider2{
        background-color:#cfa968;
        height: 3px;
        width: 50px;
        margin:0 auto;
        border-radius:5px;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .commitment {
        width:75%;
        margin:0px auto;
    }

    /*Products*/
    #products{
        padding-bottom: 40px;
    }
    .product-row{
        flex-direction:column;
        margin-bottom: 0px;
        justify-content: center;
        align-items: center;
    }
    .product-box{
        margin: 15px 0px;
        flex-direction:column;
        justify-content: center;
        align-items: center;
        width: 100%;

    }
    .product-info {
        text-align:center;
    }
    /*Team
    Borrar estas reglas cuando se implemente el carrusel del equipo*/
    div.member-box:nth-child(2) {
        display: none;
    }
    
    div.member-box:nth-child(1) {
        display: none;
    }
    
    div.member-box:nth-child(3) {
        display: none;
    }
    
    /*location*/
    #location{
        height: auto;
        padding:20px 0px;
    }
    .map {
        display:block;
        margin:0 auto;
        width: 100vw;
    }
    /*consulting*/
    #consult{
        height: auto;
        padding: 20px 10px;
    }
    .consult-box{
        left: 10%;
    }
    /*Footer*/
    footer{
        flex-direction:column;
        padding:40px;
        text-align: center;
    }
    footer div{
        margin:20px 0px;
    }
    .footer-info, .footer-contact{
        width:100%;
    }
    /*Section commons*/
    .info{
        font-size:1em;
        line-height: 1.25em;
        text-align: justify;
    }
    .section-title{
        font-size: 1.5em;
        text-align:center;
    }
    .section-subtitle{
        text-align:center;
        font-size: 1.5em;
    }
    .consult-box{
        width:80%;
    }
}
/*Extra Pages*/
/*Nosotros*/
#nosotros{
    height: auto;
    margin:50px 0px;
}
.nosotros, #valores, #metlife-timeline{
    width: 80%;
    margin: 0 auto;
    font-size:1.2em
}
.nosotros .divider1{
    margin: 0 auto;
    margin-top:30px;
    margin-bottom:30px;
}
.page-title{
    font-size: 2.2em;
    font-weight: 200;
    text-align: center;
    margin:0 auto;
    color: #1d2127;
}
#nosotros1{
    display: block;
    margin: 1em auto;
}
#nosotros2{
    float: right;
    max-width: 100%;
    margin: 0px 50px 20px 50px;
}

.valores{
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    text-align: center;
    margin:1em auto;
}
.lista-valores{
    text-align: justify;
    display: flex;
    justify-content:space-around;
    width:80%;
    margin:.5em 0;
}
.lista-valores li{
    list-style:none;
    font-size:1.2em;
    color:#777;
    width: 5%;
}
.mision-vision{
    display:flex;
    justify-content: space-around;
    flex-direction: column;
    width: 50%;
}
.datos-metlife{
    display:flex;
    justify-content: space-between;
    flex-direction: row;
    width: 80%;
    margin:0 auto;
}
.datos{
    width: 45%;
}
.mision, .vision{
    width: 100%;
    margin:1em;
}
.image-container1{
    width: 50%;
    height: auto;
}
.image-container2{
    width: 50%;
    height: auto;
}
.metlife-timeline{
    width:40%;
}
#valores {
    display: flex;
    justify-content: space-between;
    margin: 2em auto;
}
#valores .info{
    text-align:justify;
    line-height: 1.5em;
}
#valores .info ul{
    list-style:none;

}
.info ul{
    list-style: none;
}
.info ul li{
    font-size: 1em;
    line-height: 1.25em;
    margin: 0 0 1em 0;
}
@media screen and (max-width:768px){
    #nosotros{
        margin:25px 0px;
        width: 100%;
    }
    #nosotros1{
        float:none;
        max-width: 100%;
        margin: 0px 0px 15px 0px;
    }
    .mision-vision{
        flex-direction:column;
        width: 80%;
        margin:0 auto
    }
    .mision, .vision{
        width: 100%;
        margin:25px 0px
    }
    #valores{
        flex-direction:column;
        align-items: center;
        padding-right:0px;   
    }
    .image-container1, .image-container2{
        width: 100%;
        margin: 0 auto;
        margin-bottom:15px;
        padding-right:0px;
    }
    .metlife-timeline{
        width: 100%;
    }
    .datos-metlife{
        display:flex;
        justify-content: space-between;
        flex-direction: column;
        width: 80%;
        margin:0 auto;
    }
    .datos{
        width: 100%;
    }
    #nosotros2{
        height: auto;
        float: none;
        margin: 1em 0 ;
        max-width:100%;
    }
    #valores .info{
        text-align:center;
    }
    .info ul{
        list-style: none;
    }
    .info ul li{
        font-size: 1em;
        line-height: 1.25em;
        margin: 1em 0;
    }
}


/*Product*/
#product{
    padding :50px 0px;
    color: #777;
}
.featured{
    display:flex;
    justify-content: center;
    align-items: center;
    margin: 25px 0px;
}
.featured-image{
    max-width: 40%;
}
.featured-text{
    width: 30%;
}
.featured-text, .featured-image{
    margin:0px 30px;
}
.featured-item{
    display: flex;
    font-size: 1.6em;
    margin:1em 0px;
}
.featured-icon{
    color: #cfa968;
    font-size:35px;
    margin: 0 1em 0 0;
    max-width: .5em;
    
}
.product-description{
    width:80%;
    margin: 0 auto;
    text-align:justify;
    font-size: 1.2em;
    font-weight: 200;
    line-height: 1.15em;
    color: #777;
}
.product-highlight{
    color:#1d2127;
}
@media screen and (max-width:768px){
    #product{
        padding:25px 0;
    }
    .featured{
        flex-direction:column;
        margin:0;
    }
    .featured-image{
        max-width: 100%;
        margin:0 auto;
    }
    .featured-item{
        width: 100%;
        margin: 1em 0;
        justify-content: space-between;
        font-size:1.3em;
        justify-content: space-around;
        align-items: center;
    }
    .featured-icon{
        margin: 0;
    }
    .featured-text{
        width: 90%;
        text-align: left;
        
    }
    .product-highlight{
        text-align: justify;
        width: 60%;
    }

}
/*Member Page*/

.member-page{
    display: flex;
    justify-content:space-around;
    padding: 10%;
    width: 100vw;
}
.member-image{
    width: 30%;
    border-bottom:#ccc solid 1px;
    display:flex;
    flex-direction: column;
    align-items: center;
    padding-bottom:1em;
}
.member-image img{
    max-width: 100%;
}
.member-information{
    width: 50%;
}
.member-page-name{
    font-size: 2em;
}
.member-info{
    color: #777;
    font-size: .75em;
}
.member-subtitle{
    margin-bottom:1em;
}
@media screen and (max-width:768px){
    .member-page{
        flex-direction:column;
        
    }
    .member-information{
        margin-top:2em;
    }
    .member-information, .member-image{
        width:100%;
    }
}
/*Contact-form*/
#contact-form{
    background-color: #fff;
    padding: 100px;
    display: block;
}
.form-container{
    margin:0 auto;
    width: 50%;
}
.form-container .divider1{
    margin:0 auto;
    margin-top: 1em;
    margin-bottom: 1em;
}
.form-group{
    margin:1em 0;
}
.form-label{
    font-size:1.2em;
    color:#cfa968;
    display:block;
    opacity: 1;
    
}
.form-control{
    box-shadow:none;
    border-radius: 0;
    border-color:#ccc;
    border-style:none none solid none;
    width: 100%;
    font-size:1.25em;
    background-color: rgba(0, 0, 0, 0);
}
.form-control::placeholder{
    color:#000;
}
.form-control:focus{
    box-shadow:none;
    border-color:#cfa968;
}
.btn{
    background: 0 0 #cfa968;
    border:1px solid #aaa;
    border-radius:8px;
    color:#fff;
    font-size: 1em;
    padding:10px 50px;
    text-transform:uppercase;
}
.btn:hover{
    border-color:#cfa968;
    background-color: rgba(207, 169, 104,.9);
    color:#fff;
}
textarea{
    resize:none;
}
@media screen and (max-width:768px){
    #contact-form{
        padding: 25px 0px;
    }
    .form-container{
        width:80%;
    }
}
.product-subtitle{
    margin:.75em 0;
    line-height:1em;
    color:#1d2127;
}
.product-list{
    list-style: none;
    margin-left: 1em;
}
.product-list li{
    margin: .75em 0;
}
@keyframes anim1{
    from{
        transform: translateX(-100px);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes anim2{
    from{
        transform: translateX(100px);
        opacity: 0;
    }
    to{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes anim3{
    from{
        transform: translateY(-100px);
        opacity: 0;
    }
    to{
        transform: translateY(0);
        opacity: 1;
    }
}
#formatos{
    display: flex;
    flex-direction: row;
    justify-content: left;
    padding:25px 50px;
}
.sidebar{
    width: 30%;
}
.sidebar ul{
    list-style:none;
}
.sidebar ul li{
    margin: 2em;
    text-decoration:none;
    color: #777;
    font-size: 1.3em;
    display: block;

}
.sidebar ul li:hover{
    color: #fff;
    cursor: pointer;
    background-color: rgba(214,181,124,0.8);
    border-radius: 3px;
}

.sidebar-title{
    font-size: 1.5em;
}
.colum-title{
    margin: 0 auto;
    text-align: center;
    left: 40%;
}
.formatos{
    width: 100%;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: left;
}
.format-box{
    width: 45%;
    margin: 2%;

}
.box-upper{
    display: flex;
    flex-direction: row;
    justify-content: left;
}
.box-upper i,button{
    margin: .5em ;
    color: #cfa968;
}
.box-upper i{
    font-size:2em;
}
.box-upper p{
    text-align: left;
    margin: .5em;
}
.mainbar{
    width: 100%;
    border: 1px #eee solid;

}
button{
    background-color: #d6b57c;
    border: none;
    border-radius: 3px;
    padding: 5px;
    color: #fff;
}
button:hover{
    background-color: rgba(214,181,124,0.8);
    cursor: pointer;
}
@media screen and (max-width:768px){
    #formatos, .formatos{
        flex-direction: column;
    }
    .format-box{
        width:100%;
    }
    .sidebar{
        width: 100%;
        text-align: center;
    }
    .sidebar ul li{
        margin: .5em 0;
    }
    .format-box{
        text-align: center;
        margin: 10% 0;
    }
}
.footer-link{
    text-decoration: none; 
    color: #000;
}
.footer-link:hover{
    text-decoration: underline;
}
.recruitment{
    max-width: 100%;
}
.recruitment:hover{
    opacity: .9;
    cursor: pointer;
}
.consult-info{
    color: #bbb;
}
.consult-title{
    color: #cfa968;
}
#thank-you{
    text-align: center;
    padding: 1em 0 3em 0;
}
#thank-you h2{
    margin-top: 1em ;

}
.recruit{
    padding: 2em 0;
    background-image: url("../img/recruitment.jpg");
    background-position: center;
    background-repeat:no-repeat;
    margin: 0 auto;
}
.form-box{
    width: 50%;
    margin: 0 auto;
}
.form-box .info, .form-box h2{
    color: #222;
    text-align: left;
    font-weight: 500;
}
.form-box form div label{
    color: #222;
}
@media screen and (max-width: 768px){
    .form-box{
        width: 80%;
    }
}
h1 a{
    text-decoration: none;
    color: inherit;
}
button a{
    text-decoration:none;
    color: inherit;
}
#design{
    background-color: #000;
    color: #fff;
    text-align: center;
}
#design a{
    text-decoration: none;
    color: inherit;
}