.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}
.footer-social__mail a {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: bold;
}
.footer-social-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 100px;
}
.footer__jdomez-info-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(50%, 90vw, 800px);
    margin: auto;
}
.footer__jdomez-info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 80%;
}
.footer__human-eye {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}
.footer__human-eye img {
    width: 100%;
}
.footer__jdomez-info-content {
    display: flex;
    flex-direction: row;
}
.footer__jdomez-info-title {
    width: 80%;
    font-size: 2em;
    text-transform: uppercase;
}
.footer__jdomez-info-text p{
    width: 100%;
    font-size: clamp(.8rem, 2vw, 1rem);
    text-transform: uppercase;
    line-height: 1.5;
    text-wrap: balance;
}
.footer__jdomez-info-text p span {
    color: var(--color-tertiary);
}
/*Text reveal footer start*/
.text-reveal {
    position: relative;
    height: 3em;
    overflow: hidden;
    cursor: pointer;
}
.text-wrapper {
    position: relative;
    height: 200%;
    text-align: center;
    transition: transform 0.5s ease;
}
.text-bottom {
    color: var(--color-tertiary);
}
.text-top, .text-bottom {
    display: block;
    height: 50%;
}
.text-top span, .text-bottom span {
    display: inline-block;
    transition: transform 0.5s ease;
}
.text-reveal:hover .text-wrapper {
    transform: translateY(0);
}
.text-reveal:hover .text-top span {
    transform: translateY(-100%);
}
.text-reveal:hover .text-bottom span {
    transform: translateY(-100%);
}