.hero-section {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background: var(--secondary-color);
    background: radial-gradient(#fff, var(--secondary-color))
}

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

.hero-text-inner ul {
    padding: 0;
    margin-bottom: 50px;
}

.hero-text-inner ul li {
    position: relative;
    padding-left: 40px;
    list-style: none;
    margin-bottom: 20px;
}

.hero-text-inner ul li:before {
    content: 'L';
    font-family: Arial;
    font-weight: bold;
    font-size: 16px;
    width: 25px;
    height: 25px;
    position: absolute;
    top: 5px;
    left: 0px;
    color: #fff;
    z-index: 2;
    -ms-transform: scaleX(-1) rotate(-35deg);
    -webkit-transform: scaleX(-1) rotate(-35deg);
    transform: scaleX(-1) rotate(-35deg);
    border-radius: 50%;
    background-color: var(--primary-color);
    text-align: center;
    line-height: 1.5;
    padding-left: 3px;
}

.hero-section .hero-cta {
    display: flex;
    gap: 20px;
}

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

}

@media only screen and (min-width: 768px) {
    .hero-section {
        padding: 200px 0 70px;
        margin-top: -175px;
    }
}

@media only screen and (max-width: 991px) {
    .hero-section .btn {
        width: 100%;
        max-width: 70%;
        text-align: center;
    }
    
    .hero-section .hero-cta {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .hero-section {
        padding: 0px 0 40px;
    }

    .hero-section .hero-image-holder {
        padding: 0;
        overflow: hidden;
        margin-bottom: 20px;
    }

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

    .hero-section .hero-cta {
        justify-content: center;
    }
}


