﻿/*==================================================
    FOOTER
==================================================*/

.mst-footer {
    position: relative;
    background: #111;
    color: #fff;
    overflow: hidden;
}

/*=========================
CTA
=========================*/

.mst-footer-cta {
    position: relative;
    background: linear-gradient(135deg,#f58220,#ff9d32);
    border-radius: 28px;
    margin-bottom: -80px;
    z-index: 20;
    padding: 65px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(245,130,32,.30);
}

    .mst-footer-cta::before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,255,255,.08);
        border-radius: 50%;
        right: -180px;
        top: -180px;
    }

    .mst-footer-cta::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        left: -80px;
        bottom: -100px;
    }

    .mst-footer-cta > * {
        position: relative;
        z-index: 2;
    }

    .mst-footer-cta h2 {
        color: #fff;
        font-size: 42px;
        margin-bottom: 15px;
    }

    .mst-footer-cta p {
        color: rgba(255,255,255,.88);
        margin: 0;
        font-size: 18px;
    }

    .mst-footer-cta .mst-btn-primary {
        background: #fff;
        color: var(--primary);
        border: none;
        font-weight: 700;
    }

        .mst-footer-cta .mst-btn-primary:hover {
            transform: translateY(-4px);
        }

/*=========================
MAIN FOOTER
=========================*/

.mst-footer {
    padding: 170px 0 70px;
}
    .mst-footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(245,130,32,.08), transparent 40%);
        z-index: 0;
        pointer-events: none;
    }

    .mst-footer > .container {
        position: relative;
        z-index: 2;
    }

.footer-logo {
    max-width: 220px;
    margin-bottom: 25px;
}

.footer-text {
    color: #bbb;
    line-height: 1.9;
    margin-bottom: 30px;
}

.mst-footer h4 {
    color: #fff;
    margin-bottom: 28px;
    font-size: 20px;
}

.mst-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mst-footer li {
    margin-bottom: 15px;
}

.mst-footer a {
    color: #bbb;
    text-decoration: none;
    transition: .30s;
}

    .mst-footer a:hover {
        color: var(--primary);
        padding-left: 6px;
    }

/*=========================
SOCIAL
=========================*/

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1b1b1b;
        color: #fff;
        transition: .35s;
    }

        .footer-social a:hover {
            background: var(--primary);
            transform: translateY(-6px);
        }

/*=========================
CONTACT
=========================*/

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #bbb;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 3px;
}

/*=========================
SUB FOOTER
=========================*/

.mst-subfooter {
    border-top: 1px solid rgba(255,255,255,.08);
    background: #0b0b0b;
    color: #aaa;
    padding: 22px 0;
}

    .mst-subfooter a {
        color: #aaa;
        margin-left: 25px;
        text-decoration: none;
    }

        .mst-subfooter a:hover {
            color: var(--primary);
        }

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px) {

    .mst-footer-cta {
        text-align: center;
        padding: 45px;
        margin-bottom: -60px;
    }

        .mst-footer-cta h2 {
            font-size: 30px;
        }

    .mst-footer {
        padding-top: 130px;
    }
}

@media(max-width:768px) {

    .mst-footer-cta {
        border-radius: 18px;
        padding: 35px 25px;
    }

        .mst-footer-cta h2 {
            font-size: 24px;
        }

    .mst-subfooter {
        text-align: center;
    }

        .mst-subfooter .text-lg-end {
            text-align: center !important;
            margin-top: 15px;
        }

        .mst-subfooter a {
            margin: 0 10px;
        }
}

.footer-developer {
    margin-left: 6px;
}

    .footer-developer a {
        color: inherit;
        text-decoration: none;
        font-weight: 600;
        transition: color .2s ease;
    }

        .footer-developer a:hover {
            color: #ff7a00;
            text-decoration: none;
        }

.footer-divider {
    margin: 0 5px;
    opacity: .4;
}