#footer {
    position: relative;
    width: 100%;
    background-color: white;
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    overflow: hidden;
}

.footerSection {
    width: 100%;
    position: relative;
    padding-top: 45px;
    display: flex;
    justify-content: center;
    column-gap: 128px;
}

.footerSection .ftr_info {
    max-width: 243px;
    padding-inline: 0;
    width: -webkit-fill-available;
}

.footerSection .ftr_info .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footerSection .ftr_contact {
    padding-top: 43px;
    max-width: 344px;
}

.footerSection .ftr_contact h3 {
    margin: 0 0 24px 0;
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 27px;
    text-transform: uppercase;
}

.footerSection .ftr_contact ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footerSection .ftr_contact ul li {
    position: relative;
    margin: 0;
    padding: 0 0 10px 0;
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 400;
    line-height: 26px;
}

.footerSection .ftr_contact ul li:last-child {
    margin-bottom: 0;
}

.footerSection .ftr_contact ul li img {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.footerSection .ftr_contact ul li span {
    display: inline-block;
}

.footerSection .ftr_contact ul li a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: underline 1px transparent;
    text-underline-offset: 4px;
}

.footerSection .ftr_contact ul li a:not(.footerSection .ftr_contact ul li a.address) {
    text-transform: uppercase;
}

.footerSection .ftr_contact ul li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footerBottom {
    float: left;
    width: 100%;
}

.footerBottom .container {
    display: flex;
    justify-content: right;
    align-items: center;
    grid-gap: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid rgb(255 255 255 / 20%);
    margin-right: 82px;
}

.footerBottom .container:before,
.footerBottom .container:after {
    display: none;
}

.footerBottom .copy_text {
    font-size: 15px;
    color: #8290b7;
    font-weight: 400;
    line-height: 20px;
}

.footerBottom .footerContent {
    display: inline;
    white-space: nowrap;
    color: #bbbbbb;
    position: relative;
}

.footerBottom .footerContent img {
    filter: brightness(0) saturate(100%);
}

.footerBottom .ftr_menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footerBottom .ftr_menu ul li {
    position: relative;
    float: left;
    width: auto;
    padding: 0;
    padding-right: 25px;
    font-size: 15px;
    color: #8290b7;
    font-weight: 400;
    line-height: 20px;
}

.footerBottom .ftr_menu ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.footerBottom .ftr_menu ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footerBottom .ftr_menu ul li:after {
    content: "|";
    position: absolute;
    top: 0;
    right: 10px;
}

.footerBottom .ftr_menu ul li:last-child {
    padding-right: 0;
}

.footerBottom .ftr_menu ul li:last-child:after {
    display: none;
}




/* ======= Footer style ======= */
.footer {
    position: relative;
    display: block;
}

.footer-top {
    position: relative;
    display: block;
    background-color: var(--secondary-color);
    padding: 170px 0 60px 0;
    z-index: 1;
}

.footer-top .footer-column {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 15px;
    color: #adadad;
    margin: 0;
}

.footer-about-social-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
}

.footer-about-social-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-size: 19px;
    background-color: transparent;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    width: 20px;
    height: 20px;
    overflow: hidden;
}

.footer-about-social-list a+a {
    margin-left: 15px;
}

.footer-about-social-list a:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.footer-explore-list li+li {
    margin-top: 3px;
}

.footer-explore-list li a {
    position: relative;
    display: block;
    font-size: 15px;
    color: #adadad;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-explore-list li a:hover {
    padding-left: 15px;
    color: var(--primary-color);
}

.footer-explore-list li a:before {
    position: absolute;
    top: 55%;
    left: 0;
    bottom: 0;
    width: 6px;
    height: 6px;
    content: "";
    background-color: var(--primary-color);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-explore-list li a:hover:before {
    opacity: 1;
}

.footer-contact {
    position: relative;
    display: block;
}

.footer-contact .footer-title {
    margin-bottom: 20px;
}

.footer-contact-text {
    font-size: 15px;
    margin: 0;
    color: #adadad;
    padding-bottom: 20px;
}

.footer-contact-info p {
    margin: 0;
}

.footer-contact-phone {
    font-family: 'Gilda Display', serif;
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    display: block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-contact-phone:hover {
    color: #fff;
}

.footer-contact-mail {
    font-size: 15px;
    line-height: 3em;
    color: #fff;
    position: relative;
    display: inline-block;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-contact-mail:hover {
    color: #fff;
}

.footer-contact-mail:before {
    position: absolute;
    bottom: 9px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--primary-color);
    content: "";
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-contact-mail:hover:before {
    background-color: var(--primary-color);
}

/* language + logo */
.footer-language-logo-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

/* language */
.footer-language {
    width: 160px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.footer-language i {
    position: absolute;
    right: 30px;
    top: 17px;
    font-size: 15px;
    opacity: 0.6;
    color: #adadad;
}

.footer-language select {
    height: 50px;
    background: #282828;
    color: #adadad;
    border: 1px solid #282828;
    border-radius: 0px;
}

.footer-language select option {
    color: #fff;
}

.footerSection select {
    width: 160px;
    max-width: 100%;
    height: 70px;
    padding: 0 30px;
    border: 1px solid #adadad;
    color: #adadad;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* logo footer */
.footer-logo img {
    width: 100px;
}

/* end language + logo */

.footer-bottom {
    position: relative;
    display: block;
    background-color: #1e1e1e;
    -webkit-box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.05);
    box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.05);
    padding: 32px 0;
}

.footer-bottom-inner {
    position: relative;
    display: block;
    text-align: center;
}

.footer-bottom-copy-right {
    font-size: 12px;
    color: #adadad;
    margin: 0;
}

.footer-bottom-copy-right a {
    color: #fff;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.footer-bottom-copy-right a:hover {
    color: var(--primary-color);
}

.footer .flaticon-call {
    margin-right: 10px;
}



@media (max-width: 1024px) {
    .footerSection .ftr_info {
        padding-right: unset;
        margin-right: 0;
    }
}


/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {

    .footerSection {
        padding-top: 70px;
    }

    .footerSection .ftr_info {
        text-align: center;
    }

    .footerBottom .container {
        flex-direction: column-reverse;
        grid-gap: 15px;
        margin-right: unset;
    }
}



/*  #Mobile (Portrait)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {
    .footerSection .ftr_info,
    .footerSection .ftr_contact {
        text-align: center;
    }

    .footerSection .ftr_contact h3 {
        margin: 0 0 15px 0;
        font-size: 20px;
        line-height: 25px;
    }

    .footerSection .ftr_contact ul li {
        padding: 0 0 0 0px;
    }

    .footerSection .ftr_contact ul li img {
        position: static;
        display: inline-block;
        margin: 3px 10px 0 0;
        vertical-align: top;
    }

    .footerBottom .container {
        flex-direction: column-reverse;
        grid-gap: 15px;
    }

}

/* KIT DIGITAL */
.logo-kitdigital {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-kitdigital__images {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    height: 100px;

}

.logo-kitdigital__images img {
    max-width: 177px;
    height: auto;
}

.logo-kitdigital__images__unioneuropea {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 57px;
}

.logo-kitdigital__images__logorecuperacion {
    margin-left: 18px;
}

@media (max-width: 1024px) {
    .footerSection {
        margin-inline: unset;
        column-gap: 41px;
    }

    .footerSection .ftr_contact {
        margin-top: 25px;
    }

    .footerSection .ftr_contact:nth-child(2) {
        max-width: 160px;
    }
}

@media (max-width: 992px) {
    .footerSection {
        flex-direction: column;
        row-gap: 52px;
    }

    .footerSection .ftr_info .logo {
        width: 150px;
        margin-inline: auto;
    }

    .footerSection .ftr_contact {
        margin-top: unset;
        padding-top: unset;
    }

    .footerSection .ftr_info,
    .footerSection .ftr_contact {
        max-width: unset !important;
    }
}

/* Ajuste en el contenedor del kit digital */
@media only screen and (max-width: 768px) {
    .logo-kitdigital__images {
        max-width: 100%;
        margin: 0 auto;
        /* Centra el contenido y elimina márgenes laterales */
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .logo-kitdigital__images img {
        width: 100%;
        /* Forzamos que las imágenes no excedan el ancho del contenedor */
        max-width: 100%;
        /* Evitamos desbordamientos */
        height: auto;
        /* Ajustamos la altura automáticamente */
    }

    .logo-kitdigital__images__unioneuropea,
    .logo-kitdigital__images__logorecuperacion {
        margin: 0 0.5rem;
    }


}

/* Para ajustar el espacio y evitar que el kit digital quede cubierto */
@media only screen and (max-width: 959px) {
    .logo-kitdigital {
        margin-right: 0 !important;
        margin-bottom: 54px;
    }
}

/* END KIT DIGITAL */