.hero-section {
    overflow: hidden;
    position: relative;
    z-index: 3;
}

.hero-section:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(var(--secondary-color-rgb), 0.63);
    position: absolute;
    top: 0;
    right: 50%;
    z-index: 1;
}

.hero-section.no-background-image:before {
    right: 0%;
}

.hero-section:after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
}

.hero-section.no-background-image:after {
    display: none;
}


.hero-section div.hero-right {
    z-index: 2;
    position: relative;
}

.hero-section div.hero-left {
    z-index: 5;
    position: relative;
    padding-bottom: 50px;
}

.hero-section h1 {
    margin-top: 40px;
}

.hero-section p,
.hero-section ul {
    margin-bottom: 30px
}

.cta-buttons {
    margin-top: 40px;
}

.hero-section .shape {
    height: 100%;
    width: 220px;
    background: linear-gradient(to bottom left,transparent 50%,#fff 50%);
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 3;
}

.hero-section.parallelogram .shape {
    background: linear-gradient(to bottom left,transparent 50%, var(--secondary-color-lighter) 50%);
}

.hero-section .hero-image-holder {
    position: relative;
    height: 100%;
}

.hero-section.square .hero-image-holder {
    padding-top: 60px;
    text-align: right;
}

.hero-section.square .shape {
    transform: rotate(180deg);
    margin-left: -213px;
    z-index: 2;
}

.hero-section.parallelogram img {
    height: 100%;
    width: auto;
    position: absolute;
    left: 0;
    top: 0;
    max-width: initial;
    z-index: 1;
}

.hero-section ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 15px;
}

.hero-section ul li:before {
    content: 'L';
    display: block;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 18px;
    font-weight: 500;
    transform: scaleX(-1) rotate(-35deg);
}


@media only screen and (min-width: 992px) {
    .hero-section div.hero-right {
        padding-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .hero-left {
        order: 2;
    }

    .hero-right {
        order: 1;
    }

    .hero-section .shape {
        display: none;
    }

    .hero-section:before {
        right: 0
    }
    .hero-section:after {
        height: 90%;
        width: 100%;
        background: linear-gradient(to bottom left, #fff 50%, transparent 50%);
        position: absolute;
        left: 0;
        top: 0;
    }

    .hero-section.square .hero-image-holder {
        text-align: center;
    }

    .hero-section .hero-image-holder img {
        max-width: 100%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    
}