
.hero-banner {
    width:100%;
    background-repeat:no-repeat;
    background-size: cover;
    background-position: center top;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
}

.hero-banner::after {
    content:"";
    width:100%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .4) 50%, rgba(0, 0, 0, 0) 100%);
}

.hero-banner .grid-container.content {
    width:1900px;
}

.hero-banner.small {
    height:350px;
}

.hero-banner.medium {
    height:750px;
}

.hero-banner.large {
    height:950px; 
}

.hero-message {
    position:relative;
    padding: 0;
    z-index: 20;
    max-width: 1100px;
    text-shadow: 2px 2px 2px rgba(0,0,0,.8);
}

.hero-message a {
    text-decoration: none;
    color:black;
    background-color: var(--theme-color-secondary);
    padding:12px 30px;
    font-size: clamp(14px, calc(100vw * (18 / 1920)), 18px);
    border-radius: 99px;
    margin-top: 40px;
    display: inline-block;
    transition:all 0.3s;
    text-transform: uppercase;
    font-weight: bold;
}

.hero-message a:hover {
    background-color: var(--theme-color-secondary-roll) !important;
}

.hero-banner .grid-container {
    overflow: visible !important;
}

.hero-message .logo-image {
    position:relative;

    &::before {
        content: "";
        width: 550px;
        height: 300px;
        position: absolute;
        background-color: white;
        left: -80px;
        top: -50px;
        filter: blur(50px);
        border-radius: 99px;
        z-index: -1;
    }
}

.hero-message a.btn-center {
    margin:40px auto 0;
    display:table;
}

.hero-message a:hover {
    color:black;
    background-color: rgba(255,255,255,1);
}


.hero-message h1 {
    padding:0;
    margin:0;
    font-family: var(--theme-font-heading);
    font-size: clamp(28px, calc(100vw * (72 / 1920)), 72px);
    font-weight: 400;
    position: relative;
    color:white;
    z-index: 10;
    text-shadow: 2px 2px 2px black;
    
}

.hero-message p {
    color:white;
    font-size: clamp(18px, calc(100vw * (24 / 1920)), 24px);
}

.hero-message h1 strong {
    color:white !important;
    font-weight: 600 !important;
    display:block;
    font-size: clamp(30px, calc(100vw * (60 / 1920)), 60px);
}

.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.dark::before {
     background-color: rgba(15, 41, 47, .8);
}

.hero-trigger-wrap {
    position:absolute;
    bottom: 40px;
    z-index: 20;
}

.hero-trigger-wrap.hidden {
    display: none;
}

.hero-trigger-wrap .trigger {
    width:24px;
    height: 45px;
    border:1px solid white;
    border-radius: 99px;
    position: relative;
    display: block;
}

.hero-trigger-wrap .trigger span {
    position: absolute;
    top: 3px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: white;
    width: 16px;
    height: 16px;
    border-radius: 99px;
    transition:all 0.3s;
}



.hero-trigger-wrap .trigger:hover span {
    top: 23px;
}



/*= Responsive Styles
-------------------------------------------------------------- */
@media only screen and (max-width: 1440px) { /* Template Width */
	
}
@media only screen and (max-width: 1023px) { /* Medium Breakpoint */

    .hero-banner.medium {
        height:auto;
        padding:30px 30px;
    }

    .hero-banner.large {
        height:550px;
        padding:30px 30px;
    }

}
@media only screen and (max-width: 639px) { /* Small Breakpoint */
    .hero-trigger-wrap {
        display: none;
    }
	.hero-banner.small {
        height:auto;
        padding:30px 50px;
    }

    .hero-banner.medium {
       height:auto;
        padding:70px 30px;
    }

    .hero-banner.large {
        height:auto;
        padding:50px 50px;
    }

    .hero-message {
        padding:10px 0;
    }

    .hero-message.dark {
        padding:40px;
    }

    .hero-message .logo-image {
        &::before {
            width: 400px;
            height: 220px;
            left: -60px;
            top: -30px;
            filter: blur(30px);
        }
    }

    .hero-message p {
        color: white;
        background-color: rgba(0, 0, 0, .5);
        padding: 20px;
        border-radius: 10px;
    }

    .hero-banner::after {
        background: linear-gradient(0deg, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, 0) 100%);
    }

    .hero-message .logo-image {
        &::before {
            width: 390px;
            height: 260px;
            top: -50px;
        }
    }

}

@media only screen and (max-width: 405px) {
    
}