.hero-banner-wrap {
    position:relative;
    margin-top:-270px;
    z-index: 1;
}

.hero-banner {
    width:100%;
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-banner h6::before {
    content:"";
    width:7px;
    height:7px;
    background-color: var(--theme-color-secondary);
    position:absolute;
    top:45%;
    left:15px;
    border-radius: 100%;
}

.hero-banner .grid-container.content {
    width:1400px;
}

.hero-banner.small {
    height:350px;
}

.hero-banner.medium {
    height:550px;
}

.hero-banner.large {
    height:880px;
}

.hero-message {
    position:relative;
    padding:20px 60px;
    width:100%;
    margin-top: 200px;
}

.hero-message.left {
    width:700px;
}


.hero-message h1 {
    padding:0;
    margin:0;
    font-family: var(--theme-font-heading);
    font-weight: 700 !important;
    font-size: clamp(38px, calc(100vw * (75 / 1920)), 75px);
    line-height: 1.4;
    font-weight: 400;
    color:#ffffff;
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.hero-banner h6 {
    border: 1px solid #3d3d3d;
    border-radius: 99px;
    display: table;
    padding: 5px 20px 5px 30px;
    text-transform: uppercase;
    font-family: "Funnel Display";
    margin: 0 auto;
    position: relative;
    font-size: clamp(13px, calc(100vw * (16 / 1920)), 16px);
    margin-bottom: 30px;
}

.hero-banner p {
    font-size: clamp(16px, calc(100vw * (24 / 1920)), 24px);
    margin-bottom: 60px;
}

.hero-message.dark h2 {
    padding:0 0 20px;
    margin:0;
    font-family: var(--theme-font-heading);
    font-size: clamp(30px, calc(100vw * (50 / 1920)), 50px);
    font-weight: 400;
    color:white;
    position: relative;
    z-index: 10;
}

.hero-message.dark h2,
.hero-message.dark h3 {
    color:white !important;
}

.hero-message.dark h3 {
	z-index: 10;
	position: relative;
	font-weight: normal;
	margin-bottom: clamp(10px, calc(100vw * (20/1440)), 20px);
}

.hero-message.dark p, 
.hero-message.dark strong {
    color:white;
    position: relative;
    z-index: 10;
    line-height: 2;
}

.hero-message strong {
	color: var(--theme-color-primary);
}

.hero-message.dark strong {
    margin-bottom: 20px;
}

.hero-message h1 strong {
    font-weight: 400;
}

.hero-message a {
    background-color: #92b218;
    padding:15px 25px;
    border-radius:99px;
    color:white;
    text-decoration: none;
    text-align: center;
    display: table;
    margin:0 auto;
    transition:all 0.3s;
}

.hero-message a i {
    margin-left:6px;
    transform:rotate(-45deg);
}

.hero-message a:hover {
    background-color: #738b11;
}

/* .hero-message::before {
    content:"";
    width:100%;
    height: 100%;
    background-color: rgba(255,255,255,.8);
    position:absolute;
    top:0;
    left:0;
    z-index: 1;
} */

.hero-message.dark::before {
     background-color: rgba(15, 41, 47, .8);
}

/*= Responsive Styles
-------------------------------------------------------------- */
@media only screen and (max-width: 1440px) { /* Template Width */
	
}
@media only screen and (max-width: 1023px) { /* Medium Breakpoint */

    .hero-banner.medium {
        height:450px;
    }

    .hero-banner.large {
        height:750px;
    }

}
@media only screen and (max-width: 639px) { /* Small Breakpoint */
	.hero-banner.small {
        height:auto;
        padding:30px 50px;
    }

    .hero-banner.medium {
       height:auto;
       padding:30px 50px;
    }

    .hero-banner.large {
        padding:50px 0px;
    }

    .hero-message {
        padding:10px;
        margin-top: 260px;
    }

    .hero-message.dark {
        padding:40px;
    }

    .hero-banner p {
        margin-bottom: 30px;
    }

}