.new_footer_area {
    position: relative;
    overflow: hidden;
}

.new_footer_top {
    padding: 120px 0 270px;
    position: relative;
    overflow-x: hidden;
}

.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 27px 0 50px;
}

.copy_right_text {
    margin-top: 2rem;
    text-align: center;
}

.copy_right_text p {
    color: #010101;
    font-size: 18px;
}

.company_widget .section-title.getstarted_txt {
    color: #010101;
}

.fotter_book_btn {
    background: var(--color-primary-1);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius-default);
    font-weight: 600;
    text-decoration: none;
    border: none;
    transition: 0.3s ease-in-out;
}

.fotter_book_btn:hover {
    transform: scale(1.05);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
    color: #d6bfa5;
    transform: translateX(3px);
    opacity: 0.9;
}

.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    column-gap: 2rem;
    row-gap: 0.4rem;
}

.fotter_link_txt_adj {
    text-align: left;
    width: 100%;
}

.new_footer_top .fotter_link_txt_adj ul li a {
    color: #010101;
    font-size: 1.5rem;
    font-weight: 500;
}

@media (min-width: 992px) {
    .fotter_link_txt_adj {
        padding-top: 1rem;
    }
}

@media (max-width: 768px) {
    .two-column-list {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .footer-links a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 600px) {
    footer .footer__row__copyright {
        flex-direction: column;
        gap: 0.5rem
    }
    .parachute-2 {
        display: none;
    }
}

.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 266px;
    background: url('/assets/images/dubai_pic.webp');
}

.parachute-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70%;
    pointer-events: none;
    overflow: hidden;
}

.parachute {
    position: absolute;
    width: 70px;
    opacity: 0.9;
    animation: parachuteFall linear infinite;
}

.parachute-1 {
    left: 10%;
    animation-duration: 14s;
    animation-delay: 0s;
}

.parachute-2 {
    left: 45%;
    width: 90px;
    animation-duration: 17s;
    animation-delay: 3s;
}

.parachute-3 {
    left: 75%;
    width: 60px;
    animation-duration: 15s;
    animation-delay: 5s;
}

@keyframes parachuteFall {
    0% {
        top: -120px;
        transform: translateX(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(25px) rotate(5deg);
    }

    75% {
        transform: translateX(-25px) rotate(-5deg);
    }

    100% {
        top: 100%;
        transform: translateX(10px) rotate(0deg);
        opacity: 0;
    }
}