footer {
    position: relative;
    background-color: #000;
}

footer .top-footer-cta {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

footer .top-footer-cta::before {
    content: '';
    display: block;
    position: absolute;
    left: -20px;
    top: 50%;
    background: url(../img/backgrounds/section-bg-shape-7.png) no-repeat;
    background-position: right center;
    background-size: cover;
    width: 250px;
    height: 250px;
    transform: translateY(-50%);
    opacity: 50%;
    animation: cuberotate 10s infinite linear;
    animation-direction: alternate;

}

@keyframes cuberotate {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-90%) rotate(360deg);
    }
}

footer .top-footer-cta .main-content-wrapper {
    position: relative;
    background: url(../img/backgrounds/footer-cta-bg.png) no-repeat;
    background-position: center center;
    background-size: auto;
    text-align: center;
}

footer .top-footer-cta .main-content-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../img/backgrounds/footer-cta-bg-gradient.png) no-repeat;
    background-position: center center;
    background-size: contain;
    width: 100%;
    height: 100%;

}

footer .top-footer-cta .main-content-wrapper .content-heading {
    text-align: center;
}

footer .top-footer-cta .main-content-wrapper .content-heading h6.sub-title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;

}

footer .top-footer-cta .main-content-wrapper .content-heading h2 {
    font-size: 180px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;

}

footer .top-footer-cta .main-content-wrapper .main-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

footer .top-footer-cta .main-content-wrapper .main-btn a {
    background-color: #BFF747;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

footer .top-footer-cta .main-content-wrapper .main-btn a svg {
    width: 20px;
    height: 20px;
    color: #000;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;

}

footer .top-footer-cta .main-content-wrapper .main-btn a span {
    display: block;
    font-weight: 700;
    text-transform: capitalize;
    color: #000;
    transition: all 0.3s ease-in-out;
}

footer .top-footer-cta .main-content-wrapper .main-btn:hover a {
    background-color: #1B1B1B;
}

footer .top-footer-cta .main-content-wrapper .main-btn:hover a svg {
    color: #fff;
    transform: rotate(0);
}

footer .top-footer-cta .main-content-wrapper .main-btn:hover a span {
    color: #fff;
}



footer .footer-main {
    border-top: 1px solid #FFFFFF1A;
    padding: 60px 0 0;
}

.about-footer {
    margin-right: 30px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    width: 100%;
    max-width: 170px;
}

.about-footer-content {
    margin-bottom: 30px;
}

.about-footer-content p {
    margin-bottom: 0;
    color: #F5F5F4;
    position: relative;
    line-height: 1.7em;
}

.footer-privacy-policy ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-privacy-policy ul li {
    display: inline-block;
    border-right: 1px solid #FFFFFF1A;
    margin-right: 15px;
    padding-right: 15px;
}

.footer-privacy-policy ul li:last-child {
    margin: 0;
    padding: 0;
    border-right: none;
}

.footer-privacy-policy ul li a {
    color: #F5F5F4;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li a:hover {
    color: #BFF747;
}

.footer-links {
    border-right: 1px solid #FFFFFF1A;
    padding-right: 15px;
    margin-right: 15px;
}

.footer-links h3 {
    font-size: 22px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 40px;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    text-transform: capitalize;
    line-height: 1.7em;
    margin-bottom: 15px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    color: #F5F5F4;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: #BFF747;
}

.footer-links.footer-content-list {
    border: none;
    padding-right: 0;
    margin-right: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #FFFFFF1A;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.footer-contact-item:last-child {
    border-bottom: none;
    margin: 0;
    padding: 0;
}

.footer-contact-item .icon-box {
    position: relative;
    height: 55px;
    width: 55px;
    background-color: #BFF747;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.footer-contact-item .icon-box::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.footer-contact-item:hover .icon-box::before {
    transform: scale(1);
}

.footer-contact-item .icon-box svg {
    position: relative;
}

.footer-contact-content {
    width: calc(100% - 70px);
}

.footer-contact-content p {
    margin-bottom: 0;
}

.footer-contact-content p a {
    color: #F5F5F4;
    transition: all 0.3s ease-in-out;
}

.footer-contact-content p a:hover {
    color: #BFF747;
}



.footer-cta-box {
    position: relative;
    border: 1px solid #FFFFFF1A;
    backdrop-filter: blur(100px);
    -webkit-backdrop-filter: blur(100px);
    display: flex;
    gap: 30px 50px;
    flex-wrap: wrap;
    align-items: center;
    border-radius: 30px;
    margin-top: 60px;
    padding: 45px;
    overflow: hidden;
}

.footer-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #1B1B1B;
    opacity: 40%;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer-newsletter-form {
    width: calc(70% - 25px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-right: 50px;
    border-right: 1px solid #FFFFFF1A;
}

.footer-newsletter-form h3 {
    font-size: 22px;
    color: #FFF;
    font-weight: 500;
    text-transform: capitalize;
}

.footer-newsletter-form form {
    width: 60%;
}

.footer-newsletter-form .form-group {
    display: flex;
}

.footer-newsletter-form .form-group .form-control {
    width: 72%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4em;
    color: #F5F5F4;
    background: transparent;
    border: 1px solid #FFFFFF1A;
    border-radius: 100px;
    outline: none;
    box-shadow: none;
    padding: 15px 20px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
    color: #F5F5F4;
}

.footer-newsletter-form .form-group .btn-highlighted {
    width: 28%;
    padding: 22px 20px;
    line-height: 1em;
    position: relative;
    display: inline-block;
    line-height: 1.3em;
    font-size: 16px;
    font-weight: 700;
    background: #BFF747;
    color: #000;
    text-transform: capitalize;
    border-radius: 100px;
    text-align: center;
    border: none;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.footer-newsletter-form .form-group .btn-highlighted:hover {
    background-color: #fff;
}




.footer-social-links {
    width: calc(30% - 25px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.footer-social-links span {
    font-size: 22px;
    color: #FFF;
}

.footer-social-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 15px;
}

.footer-social-links ul li:last-child {
    margin: 0;
}

.footer-social-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid #BFF747;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a svg {
    color: #BFF747;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a {
    border-color: #FFF;
}

.footer-social-links ul li:hover a svg {
    color: #FFF;
}

.footer-social-links ul li i {
    font-size: 18px;
    color: #BFF747;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a i {
    color: #FFF;
}

.footer-copyright-text {
    padding: 30px 0;
    text-align: center;
}

.footer-copyright-text p {
    margin: 0;
    color: #fff;
}
.footer-copyright-text p a{
    color: #BFF747;
    font-weight: 700;
    letter-spacing: 1px;
}
@media (min-width:992px) and (max-width:1200px) {
    footer .top-footer-cta .main-content-wrapper .content-heading h2 {
        font-size: 140px;
    }

    .about-footer {
        margin-right: 0;
    }

    .footer-links {
        border-right: 1px solid #FFFFFF1A;
        padding-right: 10px;
        margin-right: 0;
    }

    .footer-contact-item .icon-box {
        height: 40px;
        width: 40px;
        margin-right: 6px;
    }

    .footer-cta-box {
        gap: 30px 20px;
    }

    .footer-newsletter-form {
        padding-right: 30px;
        width: 60%;
    }

    .footer-newsletter-form form {
        width: 100%;
    }

    .footer-social-links span {
        font-size: 18px;
        color: #FFF;
    }

    .footer-social-links {
        width: calc(35% - 25px);
        gap: 10px;
    }

    .footer-social-links ul li {
        display: inline-block;
        margin-right: 5px;
    }
}

@media (max-width:992px) {
    footer .top-footer-cta .main-content-wrapper .content-heading h2 {
        font-size: 120px;
    }

    .about-footer {
        margin-bottom: 50px;
        margin-right: 0;
    }

    .footer-newsletter-form {
        padding-right: 0;
        border: none;
        padding-bottom: 50px;
        margin-bottom: 10px;
        border-bottom: 1px solid #FFFFFF1A;
        width: 100%;
    }

    .footer-newsletter-form form {
        width: 100%;
    }

    .footer-social-links {
        width: 100%;
        justify-content: start;
        gap: 10px;
    }
}

@media (max-width:768px) {
    footer .top-footer-cta {
        position: relative;
        padding: 120px 0 60px;
        overflow: hidden;
    }
    
    footer .top-footer-cta::before {
        width: 120px;
        height: 120px;
        
    }
    
    footer .top-footer-cta .main-content-wrapper .content-heading h6.sub-title {
        font-size: 18px;
    }
    
    footer .top-footer-cta .main-content-wrapper .content-heading h2 {
        font-size: 58px;
    }
    
    footer .top-footer-cta .main-content-wrapper .main-btn a {
        width: 90px;
        height: 90px;
    }
    
    footer .top-footer-cta .main-content-wrapper .main-btn a svg {
        width: 20px;
        height: 20px;
        color: #000;
        transform: rotate(-45deg);
        transition: all 0.3s ease-in-out;
        
    }
    
    footer .top-footer-cta .main-content-wrapper .main-btn a span {
        font-size: 14px;
        display: block;
        font-weight: 700;
        text-transform: capitalize;
        color: #000;
        transition: all 0.3s ease-in-out;
    }
    
    .footer-links {
        margin-top: 30px;
    }
    
    .footer-links h3 {
        margin-bottom: 20px;
    }
    
}
@media (max-width:568px) {
    .footer-cta-box {
        margin-top: 30px;
        padding: 40px 20px;
        overflow: hidden;
    }
    .footer-newsletter-form .form-group {
        display: block;
    }
    
    .footer-newsletter-form .form-group .form-control {
        width: 100%;
    }
    .footer-newsletter-form .form-group .btn-highlighted {
        width: fit-content;
        margin-top: 10px;
        padding: 12px 20px;
       
    }
    .footer-social-links ul{
        text-align: center;
        width: 100%;
    }
    .footer-social-links ul li {
        display: inline-block;
        margin-right: 8px;
    }
}