.footer {
    background: #000;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer_logo img {
    width: 200px;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.subscribe {
    flex: 1 1 250px;
}

.subscribe p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px !important;
    color: #ccc;
    margin-top: 1rem;
}

.subscribe-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-weight: 600;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 2px;
    font-size: 15px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: end;
    flex: 3 1 700px;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 1.5s infinite;
}

.footer-column h4 {
    font-size: 24px;
    margin-bottom: 15px !important;
    font-weight: 600;
    color: var(--main-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px !important;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-column ul li a:hover {
    color: var(--main-color);
}

.footer-column.contact p {
    font-size: 14px;
    margin-bottom: 10px !important;
}

.socials a {
    margin-right: 10px;
    display: inline-block;
}

.socials img {
    width: 20px;
    height: 20px;

}

.footer-touch {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #444;
    padding-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-touch h2 {
    font-size: 90px;
    font-weight: 700;
    background: linear-gradient(45deg, #06D3F9, #C342F8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* for Firefox */
    color: transparent;
}

.footer-touch .arrow {
    font-size: 66px;
    background: linear-gradient(45deg, #06D3F9, #C342F8);

    color: #fff;
    height: 90px;
    width: 90px;
    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 100px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer-policy a {
    color: #aaa;
    margin: 0 8px;
    text-decoration: none;
}

.footer-policy span {
    color: #666;
}

/* Responsive */
@media(max-width:1200px) {
    .footer-links {
        justify-content: start;
    }

    .footer-touch h2 {
        font-size: 60px;
    }

    .footer-touch .arrow {
        height: 75px;
        width: 75px;
    }
}

@media (max-width: 768px) {
    .footer-touch {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .footer_logo img {
        width: 110px;
    }

    .footer-touch h2 {
        font-size: 25px;
    }

    .footer-touch .arrow {
        font-size: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 12px;
    }

    .footer-column ul li {
        margin-bottom: 6px !important;
    }

    .footer-column h4 {
        font-size: 20px;
        margin-bottom: 10px !important;
    }
}