.hero-section   {
    min-height: 160px;
    position: relative;
    overflow: hidden;
}

.hero-section-bkg {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    transform: translateX(-50%);
}

.hero-list {
    align-self: center;
}

.hero-section ul {
    list-style: none;
    font-size: 18px;
    padding: 0;
    margin: 0;
}

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

.hero-section li a {
    color: #0a4d80;
}

.hero-section li:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0a4d80;
    position: absolute;
    top: 8px;
    left: 0;
}

.hero-section ul.line1 li a {
    display: flex;
} 

.hero-section ul.line1 li a span {
    margin-left: auto;
    font-family: "open_sansbold";
}

.hero-section .cta-buttons {
    margin-top: 20px;
}

.hero-image {
    text-align: right;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .hero-section ul {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-list {
        padding: 20px 0;
    }

    .hero-image {
        display: none
    }
}