.screenshots {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: radial-gradient(50% 50% at 50% 50%,
            var(--blue) 0%,
            var(--dark-navy) 100%);
}

.screenshots__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 24px;
    text-align: center;
}

.screenshots__title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.64px;
}

.screenshots__wrapper-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    height: 100%;
    gap: 24px;
}

.screenshots__image {
    position: relative;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.screenshots-button {
    display: flex;
    align-self: center;
    height: 72px;
    width: 248px;
    padding: 16px 48px 16px 32px;
    gap: 8px;
    border-radius: 16px;
    border: 1px solid var(--light-navy);
    background: var(--black);
}

.screenshots-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.screenshots-button span {
    color: var(--white);
    font-family: "Rubik", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.screenshots-button span:last-child {
    font-size: 22px;
    font-weight: 500;
}

.screenshots__image-screenshot {
    display: block;
    width: auto;
    height: 100%;
    max-height: 672px;
}

.screenshots__image-frame {
    position: absolute;
    display: block;
    width: 100%;
    align-self: center;
}

.frame-ios,
.frame-android {
    bottom: 38.5%;
}

.screenshots__image-frame-image {
    opacity: 1;
}

@media (min-width: 700px) {
    .screenshots {
        padding: 48px 72px;
    }

    .screenshots__content {
        gap: 48px;
    }

    .screenshots__title {
        font-size: 24px;
    }

    .screenshots__wrapper-image {
        flex-direction: row;
        gap: 48px;
    }

    .screenshots__image {
        gap: 24px;
    }

    .screenshots__image-frame-image {
        transform: scale(0.85);
        opacity: 0;
        transition: transform 2s ease, opacity 1s ease;
    }

    .screenshots__image-frame-image.animate {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 1200px) {
    .screenshots {
        padding: 72px 104px;
    }

    .screenshots__image-frame {
        min-width: 339px;
    }

    .screenshots__title {
        font-size: 32px;
    }
}

@media (min-width: 1800px) {
    .screenshots {
        min-height: 100svh;
        padding: 104px 72px;
    }
}

@media (min-width: 2400px) {
    .screenshots__image-screenshot {
        max-height: none;
    }

    .screenshots {
        min-height: auto;
        padding: 104px 72px;
    }
}