.footer {
    color: var(--tp-common-white);
    background-color: var(--tp-common-black-solid);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-newsletter {
    background-color: color-mix(in srgb, #37517e, transparent 95%);
    padding: 50px 0;
    
}

.footer .footer-newsletter h4 {
    font-size: 24px;
    color: var(--tp-common-white);
    font-family: "Arsenal", sans-serif;
}

.footer .footer-newsletter p {
    color: var(--tp-grey-1);
    font-family: "Arsenal", sans-serif;
    font-size: 16px;
}

.footer .footer-newsletter .newsletter-form {
    margin-top: 30px;
    position: relative;
    display: flex;
    gap: 30px;
    transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
    border-color: #821F40;
}

.footer .footer-newsletter .newsletter-form input[type=email] {
    border: 0;
    padding: 12px 20px;
    width: 100%;
    color: var(--tp-common-white);
    background-color: color-mix(in srgb, #ffffff, transparent 0%);
    box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-family: "Arsenal", sans-serif;
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
    outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
    border: 0;
    font-size: 16px;
    padding: 10px 20px;
    background: #821F40;
    color: #ffffff;
    transition: 0.3s;
    font-family: "Arsenal", sans-serif;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
    background: color-mix(in srgb, #821F40, transparent 20%);
}


.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, #ffffff, transparent 80%);
}

.footer h4 {
    font-size: 18px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    color: var(--tp-common-white);
    font-family: "Arsenal", sans-serif;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 12px;
    line-height: 0;
    color: #821F40;
}

.footer .footer-links ul a {
    display: inline-block;
    color: color-mix(in srgb, var(--tp-common-white), transparent 20%);
    line-height: 1;
    font-size: 14px;
    font-family: "Arsenal", sans-serif;
}

.footer .footer-links ul a:hover {
    text-decoration: underline;
    color: var(--tp-common-white);
}

.footer .social-links {
    margin-bottom: 30px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid transparent;
    font-size: 16px;
    color:
        color-mix(in srgb, var(--tp-common-white), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
    position: relative;
}

.footer .social-links a:hover {
    color: #821F40;
    border: 2px solid color-mix(in srgb, var(--tp-common-white), transparent 50%);
    background-color: #fff;
}

.footer .social-links a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-sizing: content-box;
    top: -7px;
    left: -7px;
    padding: 7px;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
    transform: scale(.8);
    opacity: 0;
    box-shadow: 0 0 0 2px #ffffff;
}

.footer .social-links a:hover:before {
    transform: scale(1);
    opacity: 1;
}

.footer .footer-links ul.footer-list-payment {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer .footer-links ul li.list-payment__item {
    width: 60px;
    padding: 0;
}

.footer .footer-links ul li.list-payment__item svg {
    width: 100%;
    height: auto;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid color-mix(in srgb, #ffffff, transparent 80%);
}

.footer .copyright p {
    margin-bottom: 0;
    color: var(--tp-common-white);
    font-size: 16px;
    font-family: "Arsenal", sans-serif;
}