
@import url('https://fonts.googleapis.com/css2?family=Cedarville+Cursive&family=Livvic:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,900&family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

/* =========================
   FOOTER MAIN
========================= */

.sitefooter {
    background: linear-gradient(-45deg, #4b2203, #050c2c, #04081b, #43230b);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
    margin-top: -70px;
    font-family: "Mulish", sans-serif;

}

@keyframes gradient {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* =========================
   TOP WHITE SECTION
========================= */

.ftupsectio {
    font-family: "Mulish", sans-serif;
    background: #fff;
    padding: 40px 0 80px;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    position: relative;
    z-index: 2;
}

/* =========================
   FORM STYLING
========================= */

.secformwhite input,
.secformwhite textarea {
    width: 100%;
    background: #eaedef;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 12px;
    color: rgba(35, 31, 32, 0.7);
    transition: 0.3s ease;
}

.secformwhite input:hover,
.secformwhite textarea:hover,
.secformwhite input:focus,
.secformwhite textarea:focus {
    border-color: #d9dfe3 !important;
    outline: none;
}

.textarea-ta {
    min-height: 160px;
    resize: none;
}

#contact-req-form h2 {
    color: #000;
    font-weight: 400;
}

#contact-req-form button {
    background: #8b5e3c;
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 12px 35px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

#contact-req-form button:hover {
    opacity: 0.9;
}

/* =========================
   FOOTER TITLES
========================= */

.fth6 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
}

/* =========================
   FOOTER MENU
========================= */

.ftmenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ftmenu li {
    margin-bottom: 18px;
}

.ftmenu li a {
    color: #8b5e3c;
    text-decoration: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1.7;
    font-weight: 400;
}

.ftmenu li a i {
    font-size: 13px;
    color: #8b5e3c;
    min-width: 15px;
}

.ftmenu li a span {
    transition: .3s ease;
}

.ftmenu li a:hover span {
    transform: translateX(6px);
    color: #fff;
}

/* =========================
   CONTACT
========================= */

.footer-contact p {
    color: #8b5e3c;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact p a{
    color: #8b5e3c;
    font-size: 20px;
}

/* =========================
   SOCIAL ICONS
========================= */

.social-div ul {
    padding: 0;
    margin: 25px 0 0;
    list-style: none;
    display: flex;
    gap: 12px;
}

.social-div ul li a {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-div ul li a:hover {
    background: #8b5e3c;
    transform: translateY(-5px);
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    margin-top: 50px;
}

.ftcopyrit {
    color: #8b5e3c;
    font-size: 18px;
    margin-bottom: 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 991px) {

    .fth6 {
        font-size: 26px;
    }

    .ftmenu li a {
        font-size: 18px;
    }

    .footer-contact p {
        font-size: 16px;
    }

    .footer-contact p a{
        font-size: 16px;
    }
}

@media (max-width: 600px) {

    .sitefooter {
        padding: 80px 0 50px;
    }

    .fth6,
    .ftmenu,
    .footer-contact {
        text-align: center;
    }

    .ftmenu li a {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .social-div ul {
        justify-content: center;
    }

    #contact-req-form h2 {
        margin-top: 20px;
        font-size: 28px;
        text-align: center;
    }

    .textarea-ta {
        margin-top: 15px;
    }

    .ftcopyrit {
        font-size: 15px;
        text-align: center;
    }
}