
body {
    background-color: #0D0B17;
    color: white;
}

.footer {
    background: #0D0B17;
    padding: 50px 20px;
    text-align: center;
}

.footer h2 {
    font-family: Recoleta;
    font-weight: 600;
    font-size: 80px;
    line-height: 100%;
    text-align: center;
}

.footer p {
    font-family: "Cerapro_Medium";
    font-size: 18px;
    line-height: 200%;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
    font-family: "Cerapro_Medium";
    font-size: 18px;
}

.footer a:hover {
    text-decoration: underline;
}

.footer__social-icons img {
    margin: 30px 30px 30px 0;
}

.footer__social-icons a {
    font-size: 20px;
    margin: 0 10px;
    color: white;
    transition: 0.3s;
}

.footer__social-icons a:hover {
    color: #c71585;
}

/* Contact Box with Gradient Border */
.contact-box {
    background: #0D0B17;
    padding: 15px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.contact-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    border-radius: 12px;
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    z-index: -1;
}

footer h4 {
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.bottom-heading {
    font-family: Cera Pro;
    font-weight: 700;
    font-size: 27px;
}

/* Subscribe Newsletter Section */
.subscribe-heading {
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
}

.subscribe-form {
    position: relative;
    overflow: hidden;
    display: flex;
}

.subscribe-form input {
    width: 100%;
    padding: 14px 28px;
    background: white;
    color: #BEBDBD;
    font-weight: 700;
}

.subscribe-form button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(260.1deg, #FE218B 1.13%, #9366C3 50%, #21B0FE 98.87%);
    border-radius: 8px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form button img {
    width: 22px;
    height: auto;
}
.list-unstyled li{
    margin-bottom: 20px;
}


/* Media Quires */
@media (max-width: 991px) {
    .footer__menu{
        margin-bottom: 30px;
    }

    .subscribe-form button {
        left: 66%;
        width: 56px;
        border: none !important;
    }
    .subscribe-form.newsletter {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer__social-icons img {
        margin: 10px 10px 10px 0 !important;
    }

}
@media (max-width: 575px) {
    .subscribe-form button {
        left: 80%;
    }
    .footer p {
        font-size: 16px !important;
    }
}
