.hero-banner-section {
	color: #fff;
	background-color: #00172e;
    background: url('https://www.lexisnexis.co.uk/assets/lexis-plus/legal-ai-tools/bg-ai-hero-banner-3.png');
    background-size: cover;
    background-repeat: no-repeat !important;
    background-position: center;
    padding: 80px 3rem 0;
}

.hero-banner-section div.hero-content {
	margin: 2.7vmax auto 4.5vmax;
	text-align: center;
}

div.hero-content div.logo-container {
    width: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

div.hero-content div.logo-container img.product-logo {
    width: 7vmax;
    height: 5vmax;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

div.hero-content h1.hero-heading {
	font-size: 3vmax;
	font-weight: 700;
}

div.hero-content p.hero-description {
    max-width: 767px;
    font-size: 1.6vmax;
    font-weight: 300;
    margin: 0 auto 2rem;
}

div.hero-content .cta-container {
    max-width: 880px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

div.hero-content .cta-container .btn {
    margin: 1rem auto;
    min-width: 45%;
    font-size: 0.85rem;
}

/*responsive layout - 991px, 575px*/
@media screen and (min-width: 1200px) {}
            
@media screen and (max-width: 1199px) {
    div.hero-content div.logo-container img.product-logo {
        width: 11vmax;
        height: 8vmax;
    }
}

@media screen and (max-width: 991px) {
    div.hero-content div.logo-container { width: 100%; }

    div.hero-content .cta-container a.btn { font-size: 0.70rem; }

    .btn.btn-lg { font-size: 12px; }

    div.hero-content p.hero-description {
        max-width: auto;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 767px) {
    div.hero-content .cta-container { flex-direction: column; }

    div.hero-content .cta-container a.btn {
        min-width: 290px;
        margin: 10px 0;
    }
}

@media screen and (max-width: 575px) {
    .hero-banner-section div.hero-content { margin-bottom: 2.5rem; }

    .hero-banner-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    div.hero-content div.logo-container img.product-logo { margin-bottom: 0.5rem; }

    div.hero-content h1.hero-heading {
        font-size: 2.05rem;
        margin: 1.5rem auto;
    }

    div.hero-content p.hero-description {
        font-size: 1.2rem;
        margin: 1.5rem auto;
    }

    div.hero-content .cta-container a.btn {
        margin: 0.50rem auto;
        min-width: 100%;
        font-size: 10px !important;
        line-height: 1rem !important;
    }

    div.hero-content .cta-container a.btn:first-child { margin-top: 0; }
}
/*end of responsive layout*/