

/*CONTACTO ESSENCES*/
.contacto-essences {
    display: flex;
    margin-right: 0;
    align-items: center;
    justify-content: center;
}

.contacto-essences ul li {
    display: inline-block;
    margin: 0 0px;
    width: 80px;
    height: 100px;
    text-align: center;
}

.contacto-essences ul li a {
    display: block;
    padding: 0;
    background: #d59e2a;
    border-radius: 6px;
    color: #fff;
    line-height: 80px;
    font-size: 40pt;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, .3);
}

.contacto-essences ul li a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .7);
}

.contacto-essences ul li .whatsapp:hover {
    background-color: #05d327;
}

.contacto-essences ul li .location-dot:hover {
    background-color: #117bb8;
}

/*REDES SOCIALES DE-TUR*/
:root {
    --facebook: #3e5c9a;
    --instagram: #8134AF;
    --linkedin: #117bb8;
    --tiktok: #000000;
    --whatsapp: #05d327;
    --youtube: #c3271a;
}

.redes-container {
    display: flex;
    margin-right: 35px;
    align-items: center;
    justify-content: center;
}

.redes-container ul li {
    display: inline-block;
    margin: 0 3px;
    width: 30px;
    height: 35px;
    text-align: center;
}

.redes-container ul li a {
    display: block;
    padding: 0 10px;
    background: #6e8594;
    border-radius: 6px;
    color: #fff;
    line-height: 30px;
    font-size: 8pt;
    box-shadow: 0 3px 5px 0px rgba(0, 0, 0, .3);
}

.redes-container ul li a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, .7);
}

.redes-container ul li .whatsapp:hover {
    background: var(--whatsapp);
}

.redes-container ul li .facebook:hover {
    background: var(--facebook);
}

.redes-container ul li .instagram:hover {
    background: var(--instagram);
}

.redes-container ul li .linkedin:hover {
    background: var(--linkedin);
}

.redes-container ul li .tiktok:hover {
    background: var(--tiktok);
}

.redes-container ul li .youtube:hover {
    background: var(--youtube);
}

/*FIN REDES SOCIALES*/