@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.logo {
    width: 150px;
}

.logomodal {
    width: 150px;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #f6b26b;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #e69138;
}

.barraContacto {
    position: fixed;
    left: -205px;
    top: 125px;
    z-index: 3;
}

.abrirBarra {
    position: fixed;
    left: 5px;
    top: 125px;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    color: #000;
    font-size: 24px;
    z-index: 3;
    display: block;
    cursor: pointer;
    text-align: center;
    border: 1px solid #dcdcdc;
}

.hidden {
    display: none;
}

.sidebarBody {
    border-radius: 0px 25px 25px 0px;
    transform: translateX(-205px);
    transition: 0.5s;
}

.activo {
    transform: translateX(205px);
    transition: 1.2s ease-out;
}

aside img {
    width: 80px;
}

aside h3 {
    color:orange;
    font-size:larger;
}

aside p {
    font-size:small;
    color:#000;
}

a.translate {
    width: 50px;
}

.idiomas {
    transition: 0.5s;
    border-radius: 50%;
    border: solid 1px black;
    width: 60%;
    object-fit: contain;
    margin-right: 5px;
}

.idiomas:hover {
    cursor: pointer;
    transform: scale(1.2);
    transition: 0.3s;
}

.servicios {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.fotoPerfil {
    width: 65%;
    margin-bottom: 15px;
    transition: 0.5s;
}

.fotoPerfil:hover {
    cursor: pointer;
    transform: scale(1.10);
    transition: 0.3s;
}

.iluminar {
    filter: drop-shadow(0px 0px 5px rgb(255, 203, 158));
}

.cross {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    font-size: 40px;
}

.banderaChica {
    width: 25px;
}

/* Modal pop-up */

.open-modal {
    transition: all 0.1s;
    outline: none;
}
.open-modal:hover {
    transform: scale(1.05);
}
.modal-content {
    position: fixed;
    bottom: 10%;
    left: 10%;
    background: #FFF;
    width: 80%;
    height: 80%;
    padding: 20px 40px;
    border-radius: 10px;
    z-index: 99;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    color: #000;
}

.close-modal {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    font-size: 40px;
}

.close-modal:hover {
    color: #fa5252;
}

.modal-body {
    max-width: 900px;
    /* position: relative; */
    align-self: center;
}

.modal-body p {
    line-height: 1.5;
}

.hidden-modal {
    display: none;
}

.blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    z-index: 4;
}

.hidden-blur {
    display: none;
}

@media (max-width: 990px) {
    .logo {
        width: 170px;
    }    
    .logo1 {
        text-align: center;
    }
    .logomodal {
        width: 130px;
    }   
    .barraContacto {
        top: 150px;
    }

    .abrirBarra {
        top: 150px;
    }
}

@media (max-width: 540px) {
    .derechos {
        font-size: 10px;
    }
}