@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes soundWaveHero {

    0%,
    100% {
        height: 50%;
    }

    50% {
        height: 100%;
    }
}

.hero-full-1 {
    display: flex;
    flex-direction: column;
    background: #c5fdee;
    margin-left: calc(-1 * (var(--global-container-padding-x) + var(--padding-inline-start)));
    margin-right: calc(-1 * (var(--global-container-padding-x) + var(--padding-inline-end)));
    margin-top: calc(-1 * calc(var(--header-height) + var(--language-suggestion-height, 0px)));
    min-height: 100vh;
    min-height: 100dvh;
    max-height: max-content;
    margin-bottom: 20px;

    ::selection {
        background: #13383b;
        color: white;
    }
    ::-moz-selection {
        background: #13383b;
        color: white;
    }
}

.hero-full-1 .hero-spacer-header {
    flex-grow: 0;
    flex-shrink: 0;
    width: 100%;
    height: calc(var(--header-height) + var(--language-suggestion-height, 0px));
    background: #c5fdee;
}

.hero-full-1 .hero-content {
    display: flex;
    flex-grow: 1;
    flex-shrink: 1;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

.hero-full-1 .hero-content .sound-waves {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    height: 53px;
    margin-left: 6px;
    vertical-align: middle;
}

.hero-full-1 .hero-content .sound-waves span {
    width: 19px;
    background-color: #13383B;
    border-radius: 10px 10px 0 0;
    animation: soundWaveHero 1s ease-in-out infinite;
    align-self: flex-end;
}

.hero-full-1 .hero-content .sound-waves span:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-full-1 .hero-content .sound-waves span:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-full-1 .hero-content .sound-waves span:nth-child(3) {
    animation-delay: 0.1s;
}

.hero-full-1 .hero-content .hero-content-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

@media (max-height: 900px) {
    .hero-full-1 .hero-content .hero-content-text {
        margin-top: 20px;
    }
}

.hero-full-1 .hero-content .hero-content-download {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 35px;
    padding-top: 30px;
    padding-bottom: 20;
}

.hero-full-1 .hero-content .hero-content-download .button {
    padding: 25px 40px;
    font-family: 'Jeko SemiBold', sans-serif;
    font-size: 26px;
    color: white;
    background-color: #13383B; /* Primary color */
    border-radius: 16px;
    text-decoration: none;
}

.hero-full-1 .hero-content .hero-store-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.hero-full-1 .hero-content .hero-store-rating .rating {
    font-family: "Jeko SemiBold", sans-serif;
    font-size: 14px;
}

.hero-full-1 h1 {
    text-align: center;
}

.hero-full-1 h1 .line-1 {
    font-size: 70px;
    font-family: 'Jeko SemiBold', sans-serif;
    display: block;
    color: black;
}

.hero-full-1 h1 .line-2 {
    display: block;
}

.hero-full-1 h2 {
    color: black;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 400;
    text-align: center;
}

.hero-full-1 .hero-main-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin-top: -20px;
}

.hero-full-1 .hero-main-items .hero-main-images {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-full-1 .hero-main-items .hero-main-images .hero-round-image {
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    max-height: 264px;
}

.hero-full-1 .hero-main-items .hero-main-images .hero-round-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-full-1 .hero-main-items .hero-main-images .hero-iphone {
    width: 230px;
}

.hero-full-1 .hero-content .hero-fcc {
    margin-top: -30px;
    display: flex;
    align-self: flex-start;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 31px;
    flex-shrink: 0;
}

.hero-full-1 .hero-content .hero-reviews-mobile .hero-fcc {
    margin-top: 0px;
}

.hero-full-1 .hero-content .hero-fcc img {
    height: 100%;
}

.hero-full-1 .hero-content .hero-fcc .fcc-text {
    font-family: "IBM Plex Sans", sans-serif;
    font-size: 20px;
}

.hero-full-1 .hero-show-mobile {
    display: none;
}


/* RESPONSIVE MENU DESKTOP */

@media (max-width: 1000px) {
    .hero-full-1 h1 .line-1 {
        font-size: 60px;
    }

    .hero-full-1 h2 {
        font-size: 25px;
    }
}

@media (max-width: 600px) {
    .hero-full-1 {
        padding: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .hero-full-1 h1 .line-1 {
        font-size: 36px;
        line-height: 36px;
    }

    .hero-full-1 h2 {
        font-size: 20px;
    }

    .hero-full-1 .hero-show-mobile {
        display: flex;
    }

    .hero-full-1 .hero-hide-mobile {
        display: none !important;
    }

    .hero-full-1 .hero-content {
        padding: 0;
        gap: 20px;
    }

    .hero-full-1 .hero-content .hero-content-text {
        margin-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
        gap: 10px;
    }

    .hero-full-1 .hero-content .hero-reviews-mobile {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        height: 100%;
        gap: 10px;
    }

    .hero-full-1 .hero-content .hero-reviews-mobile .separator {
        width: 1px;
        background-color: #13383B;
    }

    .hero-full-1 .hero-content .hero-content-download-mobile .button-mobile {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        background-color: #13383B;
        border-radius: 43px;
        padding: 24px 45px;
        gap: 12px;
    }

    .hero-full-1 .hero-content .hero-content-download-mobile .button-mobile .button-text {
        font-size: 20px;
        font-family: 'Jeko SemiBold', sans-serif;
        white-space: nowrap;
    }

    .hero-full-1 .hero-content .hero-mobile-items {
        display: flex;
        align-items: start;
        justify-content: center;
        gap: 20px;
        width: 100%;
        max-height: 250px;
        width: 250px;
        overflow: hidden;
        position: relative;
    }

    .hero-full-1 .hero-content .hero-mobile-items .sound-waves {
        height: 30px;
        margin-left: 4px;
        position: absolute;
        top: 30px;
        left: 0;
    }

    .hero-full-1 .hero-content .hero-mobile-items .sound-waves span {
        width: 11px;
    }

    .hero-full-1 .hero-content .hero-mobile-items .hero-mobile-iphone-images {
        position: relative;
        width: 250px;
    }

    .hero-full-1 .hero-content .hero-mobile-items .hero-mobile-iphone-images .hero-iphone-left {
        position: absolute;
        left: -50%;
        top: 50px;
    }

    .hero-full-1 .hero-content .hero-mobile-items .hero-mobile-iphone-images .hero-iphone-right {
        position: relative;
    }
}

@media (max-width: 350px) {
    .hero-full-1 h1 .line-1 {
        font-size: 25px;
        line-height: 30px;
    }
}