body{
    overflow-x: hidden;
}

body::-webkit-scrollbar{
    width: 8px;
    height: 8px;
    background-color: #ffde59;
}

body::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 4px;
}

.margen{
    padding: 0px 8%;
}

.title{
    width: 100%;
    text-align: center;
    font-size: 50px;
    font-weight: 800;
    padding: 70px 0px 35px 0px;
}   

.body-text-color{
    color: #4f4f4f;
}

.text{
    font-size: 17px;
}

/*********Bannerr**********/

.banner{
    display: flex;
    height: calc(100vh - 120px);
    padding-top: 120px;
    flex-direction: column;

}

.banner .title{
    padding: 10px 0 20px 0;
}

.banner-content{
    height: 100%;
    position: relative;    
}

.banner .banner-item{
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;    
    align-items: center;
    justify-content: center;
    -webkit-transition: all 1s ease;
}

.banner .banner-item.show{
    opacity: 1;
}

.banner .banner-item img{
    width: 100%;
    height: 100%;    
}

.banner .banner-item picture{
    height: 100%;
}

.banner .control{
    top: 45%;
    color: white;
    font-size: 40px;
    cursor: pointer;
    position: absolute;
    z-index: 3;
    -webkit-text-stroke: 1px black;
}

.banner .control.prev{
    left: 10px;    
}

.banner .control.next{
    right: 10px;
    transform: rotate(180deg);
}
/*********navbar***********/

*{
    margin: 0;
    padding: 0;
    cursor: pointer;
    box-sizing: border-box;
    font-family: 'Muli', sans-serif;    
}

#navbar{
    display: flex;
}

nav{
    z-index: 4;
    width: 100%;
    height: 120px;
    display: flex;
    position: fixed;
    padding: 0px 15px;
    align-items: center;
    background-color: white;
    justify-content: space-between;
    box-shadow: 0px 10px 10px rgba(0,0,0,.1);
    -webkit-transition: all .5s ease;
}


nav .logo{
    width: 80px;
    height: 100%;
    display: flex;
    align-items: center;
}

nav .logo img{
    width: 100%;
    max-width: 80px;
}

nav .menu{
    display: flex;
    align-items: center;
}

nav .menu-item{
    color: #4f4f4f;
    font-size: 20px;
    margin-left: 15px;
    text-decoration: none;
    font-weight: 400;
    width: 80px;
    text-align: center;
    -webkit-transition: all .5s ease;
}

nav .menu-item:hover{
    border-radius: 5px;
    width: 100px;
    text-align: center;
    text-decoration: none;
    color: unset;
    background-color: #FFDE59;
}

nav .hamburguer{
    display: none;
    cursor: pointer;
    border: none;
    justify-content: center;
    background-color: transparent;
}

.hamburguer:focus{
    outline: none;
}

.vacante,.servicio,.datos{
    right: -100%;
}

/*****************mobile menu***********************/

.mobile-menu{
    position: fixed;
    top: 120px;
    background-color: white;
    display: none;
    flex-direction: column;
    overflow: hidden;
    height:0px;
    width: 100%;
    -webkit-transition: all .5s ease;
    z-index: 3;
}

.mobile-menu a{
    height: 50px;
    display: flex;
    color:  #4f4f4f;
    align-items: center;
    padding-left: 10px;
    text-decoration: none;
}

/*chatbot*/

.chat_container{
    right: 2%;
    opacity: 0;
    z-index: 3;
    bottom: 3vh;
    display: flex;
    position: fixed;
    align-items: flex-end;
    justify-content: flex-end;
    -webkit-transition: all 1s ease;
}

.chat_icon{    
    height: 46px;
    display: flex;
    cursor: pointer;
    padding: 5px 10px;
    transform: scale(1);
    align-items: center;
    border-radius: 10px;
    background-color: #FFDE59;
    justify-content: space-between;
    -webkit-transition: all 1s ease;
}

.chat_icon_text{
    color: black;
}

.chat_icon_img{
    height: 100%;
    margin-left: 10px;
}


.chat_box{
    right: 0;
    bottom: 0;
    width: 0px;
    height: 0px;
    position: absolute;
    border-radius: 10px;
    transform: scale(0);
    -webkit-transition: all 1s ease;
    box-shadow: 0px 10px 10px rgba(0,0,0,.5);    
}

.chat_box_header{
    height: 50px;
    display: flex;
    align-items: center;
    background-color: #FFDE59;
    justify-content: flex-start;
    border-radius: 10px 10px 0px 0px;
}

.chat_box_header_icon{
    width: 40px;
    margin-left: 20px;
}

.chat_box_header_close_icon{
    width: 20px;
    right: 10px;
    height: 20px;
    cursor: pointer;
    position: absolute;
}

.chat_box_header_text_container{
    height: 100%;
    display: flex;
    margin-left: 5px;
    flex-direction: column;
    justify-content: center;
}

.chat_box_header_text_container_text{
    line-height: 11px;
}

.chat_box_header_text_container_online{
    display: flex;
    align-items: center;    
}

.chat_box_header_text_container_online_circle{
    width: 10px;
    height: 10px;
    border-radius: 100%;
    margin-right: 3px;
    background-color: green;
}

.chat_box_header_text_container_online_text{
    font-size: 12px;
}

.chat_box_body{
    width: 100%;
    display: flex;
    padding: 10px;
    flex-direction: column;
    justify-content: flex-end;
    background-color: white;
    height: calc(100% - 84px); 
    overflow-y: scroll;   
}

.chat_host_cloud{
    max-width: 80%;
    margin-top: 10px;
    padding-left: 10px;
    background-color: #DDDEDD;
    border-radius: 0 10px 10px 10px;
}

.typing{
    width: 90px;
    height: 50px;
    background-image: url("../img/chatbot/typing.gif");
    background-position: center;
    background-size: 217%;
}

.chat_box_user_text{
    width: 100%;
    padding: 1px;
    height: 34px;
    display: flex;    
    align-items: flex-start;
    background-color: white;
    border-radius: 0 0 10px 10px;
    border: 1px solid lightgray;
}

.chat_box_user_input{
    width: 86%;
    height: 100%;
    border: none;
    text-indent: 10px;
    border-radius: 0 0 0 10px;
    background-color: white;
}

.chat_box_user_send_icon{
    width: 9%;
    height: 100%;
    cursor: pointer;
}

.cuadrados{
    display: flex;    
    align-items: flex-end;
    flex-direction: column;
}

.cuadrados button{
    border: none;
    color: black;
    max-width: 80%;
    margin-top: 10px;
    padding: 0 10px;
    background-color: #ffde59;
}

.chat_user_cloud{
    right: -20%;
    padding: 3px;
    color: black;
    max-width: 80%;
    text-align: end;
    margin-top: 10px;
    position: relative;    
    padding-right: 10px;
    border-radius: 10px 0 10px 10px;
    background-color: #ffde59;
}
@media(max-width:900px){
    nav .menu{
        display: none;
    }

    nav .hamburguer{
        display: flex;
        align-items: center;
    }

    nav .hamburguer i{
        color: #4f4f4f;
        font-size: 40px;
    }

    nav .logo{
        max-width: 60px;
    }
    nav{
        height: 80px;
    }

    .mobile-menu{
        top: 80px;
        display: flex;
    }

    .banner{
        padding-top: 81px;
    }
}

@media(max-width:540px){


    nav .logo{
        width: 50px;
    }
}

/******************/

/*footer*/
.mb-40{
    margin-bottom: 40px;
}


footer{
    background-color: black;
    position: relative;
}

footer .container{
    display: flex;
    justify-content: center;
}

.footer-item{
    width: 33%;
    color: white;
    margin: 75px 0px;
}

.footer-item-title{
    width: 100%;
    text-align: center;
    font-size: 25px;
    margin-top: 50px;
    margin-bottom: 4px;
}

#email .content{
    padding-bottom: 45px;
}
footer .content-phone,footer .content{
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    text-decoration: none;
    color: white !important;
}

.content-phone{
    padding-bottom: 18px;
}

footer .rsocial{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer .rsocial img{
    width: 14%;
    min-width: 50px;
    max-width: 70px;
}

#direccion{
    order: 3;
}

#email{
    order: 2;
}

.instagram{
    min-width: 0!important;
}



@media(max-width:900px){
    #email .content{
        padding-bottom: 0;
        padding-top: 25px;
    }
    #direccion .footer-item-title{
        margin-bottom: 56px;
        margin-top: 0;
    }

    footer .container{
        flex-direction: column;
    }

    footer .content{
        height: 0px;
    }

    .footer-item{
        width: 100%;
        margin: 0px 0px;
        padding-bottom: 15px;
    }

    .rsocial{
        margin-top: 50px;
    }
    #telefonos .footer-item-title{
        margin-bottom: 20px;
    }


    #direccion{
        order: 2;
    }

    #email{
        order: 3;
    }

}
/*********************/

@media(max-width:500px){
    
    .text-transform{
        display: none;
    }

    .margen{
        padding: 0px 4%;
    }
}


article{
    text-indent: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}

h3{
    margin-bottom: 10px;
}

ol article{
    font-weight: normal;
}

.first>li{
    font-weight: bolder;
}

.second{
    margin: 10px 0;
    margin-left: 20px;
}
.second > li{
    margin: 10px 0;
}

.third{
    margin: 10px 0;
    margin-left: 40px;
}

.third li{
    font-weight: normal;
}