body {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow-x: hidden;
}

.hero-background {
    display: flex;
    z-index: 0;
    margin-bottom: 39px;
    flex-wrap: wrap;
    /* height: 100vh; */
}

.hero-background .hero-item {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-background .hero-item:first-child {
    position: relative;
    justify-content: end;
    align-items: center;
    overflow: hidden;
}

.hero-background .hero-text {
    position: relative;
    top: 0;
    z-index: 2;
    flex: 1;
    justify-content: left;
    display: flex;
    flex-direction: column;
    align-self: start;
    line-height: 37.67px;
}

.hero-background .hero-text-main {
    font-weight: 800;
    font-size: 33px;
    /* width: 68%; */
    color: black;
    margin: 0;
    margin-top: 15px;
}

.hero-background .hero-text-sub {
    font-size: 27px;
    color: black;
    margin: 0;
    font-weight: 800;
}

.hero-background .hero-text-subpink {
    font-size: 23px;
    color: var(--secondary-text-color);
    margin: 0;
    font-weight: 800;
}

.hero-background .hero-contact {
    font-size: 17px;
    color: black;
    margin: 0;
    line-height: 25px;
    font-weight: 700;
}

#hero-bg {
    top: 0;
    z-index: 1;
    /* position: absolute; */
    min-width: 400px;
}

.hero-barcode-desktop {
    display: none;
}

.hero-background .hero-item:first-child {
    width: 100%;
    flex-wrap: wrap;
}

.hero-background .hero-item:not(:first-child) {
    width: 100%;
}

.secondary-color {
    background-color: var(--secondary-bg-color);
}

.secondary-color:hover {
    background-color: var(--tertiary-bg-color);
}

.secondary-text-color {
    color: var(--secondary-bg-color);
}

.secondary-text-color:hover {
    color: var(--tertiary-bg-color);
}

.hero-background .hero-item:first-child {
    width: 100%;
    /* height: 100%; */
}

.contact-info{
    display: flex;
    text-align: left;
    flex-direction: column;
    margin-left: 10%;
}

@media (min-width: 640px) {

    .hero-background .hero-text-main {
        margin-top: 50px;
    }

    .hero-background .hero-item:first-child {
        width: 100%;
        /* height: 100%; */
    }

}

@media (min-width: 768px) {

    .hero-background .hero-item:first-child {
        width: 100%;
        /* height: 100%; */
    }

}

@media (min-width: 1024px) {

    .hero-background {
        max-height: 575px;
        height: 575px;
        flex-direction: row-reverse;
        padding: unset;
        display: flex;
    }

    .hero-background .hero-item:first-child {
        width: 50%;
        /* height: 100%; */
    }

    .hero-background .hero-item:not(:first-child) {
        flex: 1;
    }

    .hero-background .hero-item {
        width: auto;
    }

    .hero-background .hero-text .main-text {
        font-size: 55px;
    }

    .hero-background .hero-text .sub-text {
        font-size: 29px;
    }

    .hero-banner {
        padding: 1000px 0;
    }

    .hero-barcode-desktop {
        display: block;
    }

    #hero-bg {
        width: 40%;
        top: 0;
        z-index: 1;
        position: absolute;
        min-width: 575px;
    }

    .hero-background .hero-text {
        position: relative;
        z-index: 2;
    }

    .hero-background .hero-text-main {
        margin-top: 10px;
        font-size: 30px;
    }

    .hero-background .hero-text-sub {
        font-size: 20px;
    }

    .hero-background .hero-text-subpink {
        font-size: 20px;
        color:var(--secondary-text-color);
    }

    .contact-info{
        display: flex;
        text-align: left;
        flex-direction: column;
        margin-left: 20%;
    }
}

@media (min-width: 1280px) {

    .hero-background .hero-text-main {
        margin-top: 49px;
        font-size: 40px;
    }

    .hero-background .hero-text-sub {
        font-size: 30px;
    }

    .hero-background .hero-text-subpink {
        font-size: 30px;
        color:var(--secondary-text-color);
    }
}

@media (min-width: 1536px) {

    .hero-background .hero-text {
        line-height: 56px;
    }

    .hero-background .hero-text-main {
        margin-top: 59px;
        font-size: 50px;
    }

    .hero-background .hero-text-sub {
        font-size: 30px;
    }

    .hero-background .hero-text-subpink {
        font-size: 30px;
        color:var(--secondary-text-color);
    }
}