/*
*/
.hero-home {
    margin-top: 48px;
    margin-bottom: 0px;
}

@media screen and (min-width: 1024px) {
    .hero-home {
        margin-top: 0px;
        margin-bottom: 0px;
    }
}

/*
*/
.hero-home .uptitle {
    margin: 0;
}

.hero-home h1,
.hero-home h2,
.hero-home h3 {
    margin: 0;
    line-height: 1.5;
}

/* .hero-home h1 strong,
.hero-home h1 span {
    -o-border-image: linear-gradient(white, white) 1 fill;
    border-image: linear-gradient(white, white) 1 fill;
    padding: 16px 24px 16px 0;
    display: inline-block;
} */

.hero-home p {
    max-width: 600px;
    font-size: 1rem;
    font-weight: 500;
}

.hero-home--container {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 1024px) {
    .hero-home--container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        min-height: 772px;
        position: relative;
    }
}

.hero-home--content {
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: -20px;
    padding: 0 16px;
}

@media screen and (min-width: 768px) {
    .hero-home--content {
        margin-bottom: -60px;
    }
}

@media screen and (min-width: 1024px) {
    .hero-home--content {
        padding: 0;
        gap: 48px;
        padding-left: 80px;
        margin-bottom: 0;
    }
}

.hero-home--img {
    position: relative;
    display: flex;
    height: 200px;
}

@media screen and (min-width: 768px) {
    .hero-home--img {
        height: 772px;
    }
}

@media screen and (min-width: 1024px) {
    .hero-home--img {
        width: calc(50% + 292px);
        height: 100%;
        flex-shrink: 0;
        position: absolute;
        right: 0;
    }
}

.hero-home--img::before {
    content: '';
    -webkit-clip-path: polygon(0 0, 0 45%, 100% 0);
    clip-path: polygon(0 0, 0 45%, 100% 0);
    background: white;
    height: 100%;
    width: 100%;
    position: absolute;
    left: -1px;
    top: -1px;
}

@media screen and (min-width: 1024px) {
    .hero-home--img::before {
        top: 1px;
        -webkit-clip-path: polygon(0 0, 0% 100%, 52% 100%);
        clip-path: polygon(0 0, 0% 100%, 52% 100%);
    }
}

.hero-home--img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}