.footer-website-container {
    display: flex;
    flex-direction: column;
    width: 89%;
    margin-top: 5rem;
    border: 2px solid #c5222624;
    padding: 4rem 7rem;
    border-radius: 40px;
    margin-bottom: 2rem;
    background: #E8EDF5;
    gap: 3rem;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-website-container .footer-wrapper {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #e3d1d7;
    padding-bottom: 3rem;
}

.footer-website-container .footer-wrapper .footer-wrap {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-description {
    width: 75%;
}

.footer-wrap span {
    color: #68686d;
    font-weight: 500;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-address .footer-addres-title > span {
    color: #000;
    font-weight: 600;
    font-size: 16px;
}

.footer-addres-content {
}

.footer-list-title {
    height: 50px;
}

.footer-website-container .footer-wrapper .footer-wrap .footer-list-title > span {
    color: #000;
    font-weight: 600;
    font-size: 19px;
}


.footer-website-container .footer-wrapper .footer-wrap > ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-website-container .footer-wrapper .footer-wrap > ul > li {
    width: calc(50% - 1rem);
}

.footer-website-container .footer-wrapper .footer-wrap > ul > li > a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: .2s ease;
    color: #68686d;
}

.footer-website-container .footer-wrapper .footer-wrap > ul > li > a:hover {
    color: #c52226;
    font-weight: 600;
    padding-left: .2rem;
}

.footer-description > span {
    letter-spacing: 1px;
}

.footer-addres-content > span {
    letter-spacing: 1px;
}

.footer-newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-newsletter-content .footer-newsletter-desc {}

.footer-newsletter-content .footer-newsletter-desc > span {
    letter-spacing: 1px;
    font-size: 15px;
}

.footer-newsletter-form {
    display: flex;
}

.footer-newsletter-form > form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

.footer-newsletter-form > form .newsletter-form-input {
    display: flex;
    align-items: center;
    position: relative;
}

.footer-newsletter-form > form .newsletter-form-input > input {
    width: 100%;
    padding: .5rem;
    padding-left: 1.8rem;
    border: none;
    background: no-repeat;
    border-bottom: 1px solid #68686d;
}

.footer-newsletter-form > form .newsletter-form-input > i {
    position: absolute;
    top: 8px;
    left: 5px;
    font-size: 15px;
}

.footer-newsletter-form > form .newsletter-form-input > input::placeholder {
    color: #68686d;
}

.footer-newsletter-form > form > button {
    width: 42%;
    padding: .5rem;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg,#c52226,#f96d71 51%,#c52226) var(--x,0)/200%;
    color: #fff;
    font-size: 15px;
    margin-top: 1rem;
    transition: .5s;
}

.footer-newsletter-form > form > button:hover {--x: 100%;/* transform: translateY(-2px); */}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
}

.footer-copyright > span {
    font-weight: 500;
    font-size: 17px;
    color: #68686d;
}

.footer-social-media {
    display: flex;
    gap: 3rem;
}

.footer-social-media > a {
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.footer-social-media > a:hover {
    background: linear-gradient(90deg,#c52226,#f96d71 51%,#c52226) var(--x,0)/200%;
    transition: all .2s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-3px);
--x: 100%;
}

.footer-copyright > span > a {
    color: #cb2b2f;
}

.footer-newsletter-form > form .newsletter-form-input > input:focus-visible {
    outline: none;
}
