#developers {
    position: relative;
    display: flex;
    flex-direction: column;
    background-color: var(--color-bg-cherry);
    overflow: hidden;
}

.developers__inner {
    margin-top: 12vw;
    display: flex;
    justify-content: space-around;
    align-items: end;
}

.developers__content {
    display: flex;
    flex-direction: column;
    gap: 1vw;
    justify-content: center;
    align-items: center;
}

.developers__title {
    display: flex;
    flex-direction: column;
    gap: 1vw;

    text-transform: uppercase;
    width: max-content;
    align-items: center;

    font-family: var(--font-heading);
    line-height: 0.6;
    font-size: 6vw;
    font-weight: 100;
    color: var(--color-fg-cherry-common);
}

.developers__column {
    width: 15vw;
    height: auto;
    object-fit: contain;
    transform: translate(-1vw);
}

.developers__team-image {
    padding-bottom: 4vw;
    width: 45vw;
    height: auto;
}

.developers__subtitle {
    align-self: flex-end;
    font-family: var(--font-quote);
    color: var(--color-fg-cherry-accent);
    font-size: 3vw;
    transform: rotate(-10deg) translate(4vw, -1vw);
}

.developers__socials {
    display: flex;
    flex-direction: row;
    gap: 2vw;
    font-family: var(--font-quote);
    transform: translateY(-2vw);
}

.developers__social-link {
    color: var(--color-fg-cherry-common);
    text-decoration: none;
    font-size: 3vw;
}

.developers__decoration {
    position: absolute;
    width: 35vw;
    height: auto;
    z-index: 3;
}

.developers__decoration--flower-1 {
    width: 25vw;
    top: 22vw;
    left: -2vw;
}

.developers__decoration--flower-2 {
    bottom: -10vw;
    right: -18vw;
    width: 45vw;
}

.developers__decoration--flower-3 {
    bottom: 6vw;
    left: -14vw;
    width: 35vw;
}

.developers__decoration--flower-4 {
    top: 24vw;
    right: -14vw;
    width: 40vw;
}

.developers__footer {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: var(--color-bg-footer);
    padding: 2vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    object-fit: contain;
}

.developers__icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1vw;
}

.developers__footer--x {
    height: 0.9vw;
    width: auto;
    margin-bottom: 0.4vw;
}

.developers__footer-link {
    color: rgba(0, 255, 255, 0);
    text-decoration: none;
}

.developers__footer-icon {
    height: 3.5vw;
    width: auto;
}

@media (max-width: 650px) {
    #developers {
        height: 100vh;
        justify-content: end;
    }

    .developers__footer-icon {
        height: 5vw;
    }

    .developers__inner {
        width: 100%;
        margin-top: 0;
        height: 100vh;
        justify-content: center;
        align-items: center;
    }

    .developers__column {
        z-index: 0;
        position: absolute;
        height: 97vh;
        width: auto;
    }

    .developers__column--left {
        left: -8vh;
    }

    .developers__column--right {
        right: -10vh;
    }

    .developers__team-image {
        width: 65vw;
    }

    .developers__title {
        font-size: 8vw;
    }

    .developers__decoration--flower-1 {
        width: 35vw;
        top: 26vw;
        left: -2vw;
    }

    .developers__decoration--flower-2 {
        bottom: -12vw;
        right: -18vw;
        width: 55vw;
    }

    .developers__decoration--flower-3 {
        bottom: 8vw;
        left: -14vw;
        width: 55vw;
    }

    .developers__decoration--flower-4 {
        top: 28vw;
        right: -14vw;
        width: 45vw;
    }
}