.page-wrapper {
    padding-left: max(24px, min(5vw, 80px));
    padding-right: max(24px, min(5vw, 80px));
    width: 100%;
    max-width: 1512px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-direction: column;
    margin-bottom: 40px;
}

.hero-banner {
    width: 100%;
    margin-bottom: 10px;
    height: -moz-fit-content;
    height: fit-content;
}

.hero-banner .banner-section-message {
        display: flex;
        width: 100%;
        flex-direction: column;
        gap: 40px;
    }

.hero-banner .banner-section-message .welcome-message {
            display: flex;
            width: 100%;
            padding: 40px;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }

.hero-banner .banner-section-message .welcome-message h1 {
                color: #2e3134;
                text-align: center;
                font-size: 40px;
                font-weight: 400;
            }

.hero-banner .banner-section-message .welcome-message span {
                color: #085ef1;
                font-size: 48px;
                font-weight: 600;
            }

.hero-banner .banner-section-message .welcome-message .span2 {
                color: #2e3134;
                font-size: 48px;
                font-weight: 600;
            }

.hero-banner .hero-banner-image-desktop {
        width: 100%;
    }

.hero-banner .hero-banner-image-desktop .image img {
                width: 101%;
                margin-left: -10px;
                background-size: contain;
            }

.hero-banner .hero-banner-image-mobile {
        display: none;
    }

@media (max-width: 724px) {

                .hero-banner .banner-section-message .welcome-message h1,
                .hero-banner .banner-section-message .welcome-message span,
                .hero-banner .banner-section-message .welcome-message .span2 {
                    font-size: 24px;
                }

        .hero-banner .hero-banner-image-mobile {
            display: block;
            width: 100%;
        }

            .hero-banner .hero-banner-image-mobile .wrapper {
                position: relative;
                display: flex;
                justify-content: center;
                height: 450px;
                margin-top: 10px;
            }

                .hero-banner .hero-banner-image-mobile .wrapper .background-image {
                    position: absolute;
                    width: 100%;
                    max-width: 400px;
                    height: 500px;
                    z-index: -1;
                }

                .hero-banner .hero-banner-image-mobile .wrapper .button-container {
                    display: flex;
                    padding: 0px 24px;
                    flex-direction: column;
                    align-self: flex-end;
                    gap: 12px;
                    align-items: center;
                    justify-content: center;
                }

                    .hero-banner .hero-banner-image-mobile .wrapper .button-container .details {
                        display: flex;
                        height: 32px;
                        padding: 8px 12px;
                        width: -moz-fit-content;
                        width: fit-content;
                        gap: 8px;
                        border-radius: 8px;
                        background: #f1f1f2;
                        color: #2e3134;
                        justify-content: center;
                        align-items: center;
                        width: 100%;
                    }

                .hero-banner .hero-banner-image-mobile .wrapper .icon-on-mobile {
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    position: absolute;
                    margin-top: 30px;
                }

                    .hero-banner .hero-banner-image-mobile .wrapper .icon-on-mobile img {
                        max-width: 250px;
                    }

        .hero-banner .hero-banner-image-desktop {
            display: none;
        }
}

@media (max-width: 768px) {
    .details {
        gap: 0px;
        margin-top: 10px;
    }
}

@media (max-width: 500px) {
    .details {
        gap: 0px;
        margin-top: 10px;
    }

    .hero-banner .hero-banner-image-mobile .wrapper .button-container .details {
        font-size: 14px;
    }
}