#contacts {
    position: relative;
    width: 100%;
    height: 100vh;
    margin-top: 10vw;
    background-color: var(--color-bg-blue);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contacts-section__title {
    display: none;
    margin-top: 25vw;
    margin-left: 50%;
    transform: translateX(-50%);
    position: absolute;

    text-transform: uppercase;
    text-wrap: nowrap;

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1vw;

    font-family: var(--font-heading);
    line-height: 0.6;
    font-size: 12vw;
    font-weight: 100;

    :nth-child(1) {
        color: var(--color-fg-blue-common);

    }

    :nth-child(2) {
        color: var(--color-fg-blue-accent);
    }
}

.contacts__cloud--backgorund {
    width: 115%;
    transform: translateX(-7vw);
}

.footer__ensemble-image {
    width: 101%;
    height: auto;
    transform: translate(-1vw, 0.9vw);
}

.footer__moon {
    position: absolute;
    width: 20vw;
    height: auto;
    right: 2vw;
    bottom: 30vw;
}

.footer__contacts {
    position: relative;
}

.footer__stars {
    margin-top: 19vw;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100vh;
    background-image: url("../assets/images/stars.webp");
    background-size: 60%;
    background-repeat: repeat;
    transform: translateY(-30vw);
}

.footer__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts__clouds {
    transform: translateY(-19vw);
    position: relative;
    z-index: 2;
    width: 100%;
}

.contacts__cloud {
    position: absolute;
    width: 55vw;
    height: auto;
}

.contacts__cloud--1 {
    left: -14vw;
    bottom: -1vw;
}

.contacts__cloud--2 {
    left: 12vw;
    bottom: -2vw;
}

.contacts__cloud--3 {
    left: 38vw;
    bottom: -1vw;
    width: 65vw;
}

.contacts__cloud--4 {
    left: 58vw;
    bottom: -1vw;
}

.contacts__cloud--5 {
    left: 48vw;
    bottom: 0;
    width: 65vw;
}

.contacts__cloud--6 {
    left: 10vw;
    bottom: 0;
}

.contacts__cloud--7 {
    left: -24vw;
    bottom: -1vw;
}

.footer__contacts {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.footer__socials {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.footer__cta-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    padding: 2vw 4vw;
    text-decoration: none;
    border-radius: 2vw;
    font-size: 3vw;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-weight: 500;
    border: 0.3vw solid var(--color-fg-blue-quote);
    color: var(--color-fg-blue-quote);
    transition: all 0.5s ease;

    svg {
        height: 3.5vw;
        width: auto;
        object-fit: contain;
        color: var(--color-bg-blue-quote);
    }
}

.footer__cta-button:hover {
    color: var(--color-bg-blue);
    background-color: var(--color-fg-blue-quote);
    box-shadow: 0 0 4vw var(--color-fg-blue-quote), 0 0 10vw var(--color-fg-blue-quote);

    svg {
        color: var(--color-bg-blue);
    }
}

.footer__social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8vw;
    aspect-ratio: 1;
    background-color: var(--color-fg-blue-common);
    border-radius: 2vw;

    img {
        width: 5vw;
        height: auto;
        max-height: 6vw;
        object-fit: contain;
    }
}

.footer__social-link-tiktok {
    img {
        height: 5vw;
        width: auto;
    }
}

.contacts__bottom {
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 650px) {
    .contacts-section__title {
        display: flex;
    }

    .footer__contacts {
        gap: 2vw;
    }

    .footer__cta-button {
        width: 65vw;
        height: 10vw;
        gap: 3vw;
        padding: 2vw 4vw;

        font-size: 4vw;

        img {
            height: 5vw;
        }
    }

    .footer__social-link {
        width: 12vw;

        img {
            width: 8vw;
        }
    }

    .footer__social-link-tiktok {
        img {
            height: 8vw;
        }
    }
}