.hero-homepage {
    position: relative;
    padding: 0 !important;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 660px;
    height: calc(100vh - 142px);
    max-height: 1000px;

    @media screen and (max-width: 1600px) {
        height: calc(100vh - 138px);
    }
    @media screen and (max-width: 1500px) {
        height: calc(100vh - 132px);
    }
    @media screen and (max-width: 1200px) {
        height: calc(100vh - 125px);
    }
    @media screen and (max-width: 991px) {
        min-height: auto;
        height: auto;
        max-height: none;
    }
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-top-right-radius: var(--border-radius);
        border-bottom-right-radius: var(--border-radius);
        overflow: hidden;

        @media screen and (max-width: 991px) {
            position: relative;
            border-bottom-right-radius: 0;
            overflow: visible;
        }
        .row {
            height: 100%;
            margin-top: 0;

            .col-lg-6 {
                margin-top: 0;
            }
        }
        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .asterisk {
            display: none;
            position: absolute;
            bottom: -6vw;
            right: -3.027vw;
            width: 25.227vw;
            height: 25.227vw;
            background-image: url('../../../assets/svg/asterisk.svg');
            background-size: cover;
            background-repeat: no-repeat;
            animation: rotate-continuously 20s linear infinite;

            @media screen and (max-width: 991px) {
                display: block;
            }
        }
    }
    .hero-text {
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        min-height: calc(100vh - 142px);
        padding: 100px 0;

        @media screen and (max-width: 991px) {
            min-height: auto;
            padding: var(--spacing-2xl) 0;
        }
        @media screen and (max-width: 576px) {
            padding: var(--spacing-lg) 0;
        }
        .container {
            height: 100%;

            .row {
                height: 100%;
            }
        }
        .col-lg-6 {
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }
        h1 {
            font-size: 6.5rem;

            @media screen and (max-width: 1500px) {
                font-size: 5.5rem;
            }
            @media screen and (max-width: 1200px) {
                font-size: 5rem;
            }
            @media screen and (max-width: 991px) {
                font-size: 4rem;
            }
            @media screen and (max-width: 576px) {
                font-size: 3rem;
                margin-bottom: var(--spacing-xs);
            }
        }
        p {
            max-width: 550px;
            margin-bottom: 0;

            @media screen and (max-width: 991px) {
                max-width: none;
            }
        }
    }
    .asterisk {
        position: absolute;
        bottom: 100px;
        right: -55px;
        width: 350px;
        height: 350px;
        background-image: url('../../../assets/svg/asterisk.svg');
        background-size: cover;
        background-repeat: no-repeat;
        animation: rotate-continuously 20s linear infinite;

        @media screen and (max-width: 1500px) {
            bottom: 6.667vw;
            right: -3.667vw;
            width: 23.333vw;
            height: 23.333vw;
        }
        @media screen and (max-width: 991px) {
            display: none;
        }
    }
}

@keyframes rotate-continuously {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-360deg);
    }
}