body {
    padding: unset;
    margin: unset;
    height: 100vh;
    overflow: hidden;
}

.gb-farewell-container {
    position: relative;
    height: 100vh;

    background: url('./assets/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.gb-farewell-char-left {
    position: absolute;
    top: 10vw;
    width: 24vw;
    left: 19vw;
}

.gb-farewell-char-mid {
    position: absolute;
    top: 9vw;
    width: 24vw;
    left: 39.9vw;
    z-index: 2;
}

.gb-farewell-char-right {
    position: absolute;
    top: 9vw;
    width: 20vw;
    left: 61vw;
}

.gb-farewell-logo {
    position: relative;
    z-index: 5;
}

.gb-farewell-bottom {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 3.4vw;
}

.gb-farewell-logo {
    display: block;
    margin-top: 2vw;
    width: 8.3vw;
}

.gb-farewell-desc {
    display: block;
    width: 61vw;
}

.gb-farewell-schedule {
    display: block;
    width: 15vw;
}

.gb-farewell-thank-you-en {
    position: absolute;
    z-index: 10;
    top: 1vw;
    left: 6vw;
    width: 18vw;
}

.gb-farewell-thank-you-es {
    position: absolute;
    z-index: 10;
    top: 16vw;
    left: 2vw;
    width: 18vw;
}

.gb-farewell-thank-you-id {
    position: absolute;
    z-index: 10;
    top: 1vw;
    right: 6vw;
    width: 18vw;
}

.gb-farewell-thank-you-br {
    position: absolute;
    z-index: 10;
    top: 16vw;
    right: 2vw;
    width: 18vw;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(255, 165, 0, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 165, 0, 1));
    }
}

.gb-farewell-logo {
    animation: fadeIn 2s ease-in-out, bounce 2s ease-in-out 2s infinite;
}

.gb-farewell-thank-you-en,
.gb-farewell-thank-you-es,
.gb-farewell-thank-you-id,
.gb-farewell-thank-you-br {
    animation: fadeIn 1.5s ease-in-out 0.5s both, glow 3s ease-in-out 2s infinite;
}

.gb-farewell-char-left {
    animation: slideInLeft 1.5s ease-out 1s both, breathe 4s ease-in-out 2.5s infinite;
}

.gb-farewell-char-mid {
    animation: fadeIn 2s ease-out 1.2s both;
}

.gb-farewell-char-right {
    animation: slideInRight 1.5s ease-out 1.4s both, breathe 4s ease-in-out 2.9s infinite;
}

.gb-farewell-bottom {
    animation: slideInUp 2s ease-out 1.8s both;
}

.gb-farewell-desc-mobile {
    display: none;
}

@media(max-width : 758px) {
    .gb-farewell-container {
        background: url('./assets/bg-mobile.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
    }

    .gb-farewell-char-mid {
        top: 46vw;
        width: 52vw;
        left: 23.9vw;
    }

    .gb-farewell-char-left {
        top: 47vw;
        width: 41vw;
        left: 2vw;
    }

    .gb-farewell-char-right {
        position: absolute;
        top: 46vw;
        width: 38vw;
        left: 59vw;
    }

    .gb-farewell-logo {
        margin-top: 9vw;
        width: 27.3vw;
    }

    .gb-farewell-thank-you-en {
        position: absolute;
        z-index: 10;
        top: 24vw;
        left: 10vw;
        width: 32vw;
    }

    .gb-farewell-thank-you-es {
        position: absolute;
        z-index: 10;
        top: 45vw;
        left: 2vw;
        width: 30vw;
    }

    .gb-farewell-thank-you-id {
        position: absolute;
        z-index: 10;
        top: 28vw;
        right: 6vw;
        width: 36vw;
    }

    .gb-farewell-thank-you-br {
        position: absolute;
        z-index: 10;
        top: 46vw;
        right: 5vw;
        width: 30vw;
    }

    .gb-farewell-char-left {
        top: 68vw;
        width: 41vw;
        left: 2vw;
    }

    .gb-farewell-char-mid {
        top: 56vw;
        width: 52vw;
        left: 23.9vw;
    }

    .gb-farewell-char-right {
        position: absolute;
        top: 67vw;
        width: 35vw;
        left: 62vw;
    }

    .gb-farewell-schedule {
        width: 52vw;
    }

    .gb-farewell-desc {
        display: none
    }

    .gb-farewell-desc-mobile {
        display: block;
        width: 95vw;
        margin-bottom: 1vw;
    }

    .gb-farewell-bottom {
        margin-bottom: 18.4vw;
    }
}