
.hero-banner {
    width:100%;
    background-repeat:no-repeat;
    background-size: contain;
    background-position: center right;
    display: flex;
    justify-content: center;
    align-items: center;
    position:relative;
    background-color: rgb(26, 26, 26);
}


.hero-banner .grid-container.content {
    width:1900px;
}

.hero-banner.small {
    height:350px;
}

.hero-banner.medium {
    height:750px;
}

.hero-banner.large {
    height:1250px; 
}

.hero-message {
    position:relative;
    padding:60px;
    z-index: 20;
    background-color:rgba(34,171,166,0.93);
    border-radius: 20px;
    max-width:650px;
    margin-left: 40px;
}

.hero-message a {
    text-decoration: none;
    color:var(--theme-color-primary);
    background-color: white;
    padding:12px 30px;
    font-size: 18px;
    border-radius: 10px;
    margin-top: 40px;
    display: inline-block;
    transition:all 0.3s;
    font-weight: 300;
    text-align: center;
    border:5px solid #b06ca9;
}

.hero-message a:hover {
    background-color: rgb(238, 238, 238);
}


.hero-message a.btn-center {
    margin:40px auto 0;
    display:table;
}


.hero-message h1 {
    padding:0;
    margin:0;
    font-family: var(--theme-font-heading);
    font-size: clamp(50px, calc(100vw * (92 / 1920)), 92px);
    font-weight: 400;
    position: relative;
    color:white;
    z-index: 10;
    line-height:1;
    margin-bottom: 30px;
}

.hero-message h2 {
    font-size: clamp(20px, calc(100vw * (37 / 1920)), 37px);
    color:white;
    font-weight: 300 !important;
}

.hero-message p {
    color:white;
    font-size: clamp(24px, calc(100vw * (56 / 1920)), 56px);
    margin-bottom: 0px;
}

.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:450px;
    }

    .hero-banner.large {
        height:550px;
    }

}
@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:30px 50px;
    }

    .hero-message {
        margin-left:0px;
    }

    .hero-banner.large {
        height:auto;
        padding:60px 30px;
    }


    .hero-message.dark {
        padding:40px;
    }

    .hero-message a {
        padding:12px 15px;
    }

}