.footer-20192 {
    padding: 2rem 0;
    background-color: var(--black);
}

.footer-20192 .container {
    position: relative;
}

.footer-20192 h3 {
    margin-bottom: 0px;
    margin-top: 0;
    line-height: 1.5;
    font-family: var(--main-font-book);
    font-size: 24px;
    color: var(--white) !important;
}

.footer-20192 p {
    font-family: var(--main-font-light);
    font-size: 14px;
    color: var(--white) !important;
}

.footer-20192 .bold {
    margin-bottom: 10px;
    font-family: var(--main-font-bold) !important;
}


.footer-20192 .links li {
    margin-bottom: 10px;
    line-height: 1.5;
    display: block;
}

.footer-20192 .links li a {
    color: #666873;
    font-family: var(--main-font-light);
    font-size: 15px;
    color: var(--white) !important;
    text-decoration: none;
}

.footer-20192 .links li a:hover {
    color: var(--yellow) !important;
}

.footer-20192 .social li {
    display: inline-block;
    position: relative;
}

.footer-20192 .social li a {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    padding: 0;
    background-color: var(--red);
    color: #fff;
}

.footer-20192 .social li a > span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.footer-20192 .footer-logo {
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.footer-20192 .copyright {
    color: #666873;
    padding-top: 5rem;
    font-family: var(--main-font-bold);
    font-size: 16px;
    color: var(--white) !important;
}

.footer-20192 .cta {
    -webkit-box-shadow: -20px -20px 0 0 rgba(9, 59, 113, 0.2);
    box-shadow: -20px -20px 0 0 rgba(9, 59, 113, 0.5);
    padding: 20px;
    background-color: var(--blue);
    top: -50px;
    position: relative;
}

.footer-20192 .cta h2, .footer-20192 .cta h3 {
    line-height: 1.5;
    margin-bottom: -20px !important;
}

.footer-20192 h2 {
    font-family: var(--main-font-book);
    font-size: 32px;
    color: var(--white) !important;
}

.footer-20192 .cta h3 {
    margin-bottom: 0;
    line-height: 1.5;
    font-family: var(--main-font-book);
    font-size: 24px;
    color: var(--white) !important;
}

.footer-20192 {
    .button-footer {
        display: inline-block;
        padding: 11px 0px;
        padding-right: 40px;
        padding-left: 40px;
        background-color: var(--yellow);
        font-family: var(--main-font-bold);
        font-size: 15px;
        color: var(--black) !important;
        text-decoration: none;
        border-top-left-radius: 7px;
        border-bottom-right-radius: 7px;
        transition: background-color 0.3s;

        #mail-open {
            display: none;
        }
    }
    .button-footer:hover {
        background-color: var(--bluesoft);
        color: var(--white) !important;

        #mail {
            display: none;
        }

        #mail-open {
            display: unset;
        }

    }
}


.list-social-media {
    display: inline-block !important;
}

.divider {
    border: none;
    border-left: 1px solid hsl(0, 0%, 100%);
    border-right: 1px solid hsl(0, 0%, 100%);
    height: auto;
    width: 1px;
}

#li-icons {
    display: inline-block;
    width: 1.2em;

    &.grow {
        transition: all .2s ease-in-out;
        -webkit-transition-duration: 0.3s;
        transition-duration: 0.3s;

        &:hover {
            -webkit-transform: scale(1.3) translateZ(0);
            transform: scale(1.3) translateZ(0);
        }
    }
}

#hover-links {
    position: relative;
    transition: color .3s ease-in-out;

    &::before {
        content: '';
        position: absolute;
        top: 100%;
        width: 100%;
        height: 3px;
        background-color: var(--yellow);
        transform: scaleX(0);
        transition: transform .3s ease-in-out;
    }

    &:hover {
        color: var(--yellow);
    }

    &:hover::before {
        transform: scaleX(1);
    }
}

@media screen and (max-width: 575px) {
    .footer-20192 h3 {
        margin-bottom: 0px;
    }

    .button-footer {
        font-size: 13px !important;
    }
}

@media (max-width: 768px) {
    .footer-20192 p {
        font-size: 12px;
    }

    .footer-20192 h2 {
        font-size: 25px;
    }

    .button-footer {
        font-size: 13px;
    }

    .footer-20192 h3 {
        font-size: 22px;
    }

    .resize-icon{
        width: 20px!important;
        height: 20px!important;
    }

    .footer-20192 .copyright small{
        font-size: 14px;
    }

    .footer-20192 .links li a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .center-mobile {
        display: flex !important;
        justify-content: center !important;
    }

    .divider {
        border: none;
        border-top: 1px solid hsl(0, 0%, 100%);
        border-bottom: 1px solid hsl(0, 0%, 100%);
        width: -webkit-fill-available;
    }

    .footer-20192 .copyright {
        padding-top: 2rem;
        small{
            text-align: center;
        }
     }

    .list-social-media {
        display: flex !important;
        justify-content: center !important;
    }

    .padding-top-mobile {
        padding-top: 25px;
        padding-bottom: 25px;
    }

    .button-footer {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .text-align-mobile{
        text-align: center;
    }
}