/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.socials li {
    list-style-type: none;
}

.socials li + li {
    margin-left: 2.9rem;
}

.socials a {
    display: block;
    height: 1.8rem;
    -webkit-transition: opacity 0.4s;
    -o-transition: opacity 0.4s;
    transition: opacity 0.4s;
    position: relative;
}

.socials img {
    height: 100%;
    width: auto;
}

.socials a:hover {
    opacity: 0.5;
}

/* ------------------------------------------------------------ *\
	Nav Footer
\* ------------------------------------------------------------ */

/*Hover underline*/
.footer_bottom_row a::after,
.footer_bottom_row span.lnk::after,
.footer__nav a::after,
.feedback-link::after {
    content: '';
    display: block;
    width: 100%;
    height: .1rem;
    background: currentColor;
    opacity: 0;
}

.footer_bottom_row a:hover::after,
.footer_bottom_row span.lnk:hover::after,
.footer__nav a:hover::after,
.feedback-link:hover::after {
    opacity: 1;
}

.footer_bottom_row {
    color: inherit;
}

.footer_bottom_row ul {
    margin: -0.95rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media (max-width: 1023px) {
    .footer_bottom_row ul {
        margin: -0.5rem;
    }
}

@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
    .footer_bottom_row ul {
        margin: -0.3rem -1.3rem;
    }
}

.footer_bottom_row li {
    padding: 0.95rem;
    list-style-type: none;
}

@media (max-width: 1023px) {
    .footer_bottom_row li {
        padding: 0.5rem;
    }
}

@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
    .footer_bottom_row li {
        padding: 0.3rem 1.3rem;
    }
}

.feedback-link {
    cursor: pointer;
}

.footer_bottom_row .lnk {
    text-decoration: none;
    position: relative;
    cursor: pointer;
    color: unset;
}

.footer__inner a:hover,
.footer__inner .lnk:hover {
    text-decoration: none !important;
}

.footer_bottom_row .lnk:hover:after, .footer_bottom_row .lnk:focus:before {
    opacity: 1;
}

.footer_bottom_row .lnk:after {
    content: "";
    display: block;
    width: 100%;
    height: 0.1rem;
    background: currentColor;
    opacity: 0;
}

.footer_bottom_row .lnk:before {
    content: "";
    display: block;
    position: absolute;
    inset: -0.2rem -0.7rem;
    border: 0.1rem solid #fff;
    border-radius: 0.5rem;
    opacity: 0;
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */

.footer {
    margin-top: 1rem;
    clear: both;
    padding-top: 6.1rem;
    background: #333333;
    color: #fff;
    overflow: hidden;
    @media print {
        display: none;
    }
}

.footer h6 {
    margin-bottom: 1.4rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.footer .footer__inner {
    margin-bottom: 7.5rem;
}

.footer .footer__cols {
    margin: -2.5rem;
    display: flex;
}

.footer .footer__col {
    padding: 2.5rem;
    flex: 0 0 14.1%;
}

.footer .footer__col--size-1 {
    flex: 0 0 31%;
}

.footer .footer__col--size-2 {
    flex: 0 0 15.6%;
}

.footer .footer__col--size-3 {
    flex: 0 0 auto;
}

.footer .footer__logo::before {
    border-color: #fff;
}

.footer .footer__logo {
    width: 14.8rem;
    height: 4rem;
    margin-top: .5rem;
}

.footer .footer__logo img {
    object-position: left;
}

.footer .footer__nav {
    font-size: 1.4rem;
}

.footer .footer__nav li {
    list-style-type: none;
}

.footer .footer__nav li + li {
    margin-top: 1.3rem;
}

.footer_bottom_row a,
.footer_bottom_row a:visited,
.footer_bottom_row span.lnk,
.footer__nav a,
.footer__nav a:visited,
.feedback-link {
    display: inline-block;
    text-decoration: none;
    color: white;
    font-weight: 500;
    position: relative;
}


.footer .footer__actions a + a {
    margin-top: 1.1rem;
}

.footer .footer__bar {
    padding: 2.2rem 0;
    background: #191C1E;
    color: #D2D5D7;
    font-size: 1.2rem;
}

.footer .footer__bar-inner {
    padding: 0 .2rem 0 .1rem;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

@media screen and (max-width: 1400px) {
    .footer .footer__cols {
        justify-content: space-between;
    }

    .footer .footer__col {
        flex: 0 0 auto;
    }

    .footer .footer__col--size-1 {
        flex: 1 0 auto;
    }

    .footer .footer__col--size-2 {
        flex: 0 0 20%;
    }
}

@media screen and (max-width: 1024px) {
    .footer .footer__cols {
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .footer .footer__col--size-2 {
        order: 2;
        flex: 0 0 100%;
    }

    .footer .footer__bar {
        padding: 2.2rem 0;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding-top: 4.2rem;
    }

    .footer .footer__inner {
        margin-bottom: 4.5rem;
    }

    .footer .footer__cols {
        margin: -2.2rem -1.9rem;
    }

    .footer .footer__col {
        padding: 2.2rem 1.9rem;
        flex: 0 0 47.3%;
    }

    .footer .footer__col--size-1 {
        flex: 0 0 100%;
    }

    .footer .footer__col--size-2 {
        flex: 0 0 100%;
    }

    .footer .footer__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 2.1rem;
    }

    .footer .footer__actions a + a {
        margin: 0;
    }

    .footer .footer__bar {
        padding: 1.4rem 0;
    }

    .footer .footer__bar-inner {
        padding: 0;
    }
}
