/* .hero-container {
    width: 100vw;
    height: 100vh;
} */
.has-custom-acf-bg-image{
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center top;
    background-size: cover;
}

.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #000;
    width: 100%;
    height: 100%;
}
.border-left {
    border-left: 1px solid #000;
}
.hero-col-6{
    display: flex;
    flex-basis: 50%;
    
}
.hero-sec-section{
    padding: 20px 40px;
    gap: 40px;
}
.hero_side_image{
    width: 100%;
    /* height: auto; */
    margin: 0;
    padding: 0;
}
.hero_side_image video { width: 100%; height: 100%; margin: 0; padding: 0; object-fit: cover; }

.hero-title{
    font-family: 'TroisMilleRegular';
    font-size: 60px;
    font-weight: 400;
    line-height: 54px;
    letter-spacing: -0.01em;
    text-align: left;
    margin-bottom: 30px;
}

.hero-description{
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 500;
    line-height: 25.2px;
    text-align: left;

}

.anchors{
    padding: 30px 0px;
}

.anchor-1{
    padding: 15px 24px 14px 24px;
    border-radius: 100px;
    background-color: #1E3E37;
    color: #D7E6FF;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    text-align: center;
    text-decoration: none;
	transition: all 0.3s ease;
}
.anchor-2{
    padding: 12px 24px 12px 24px;
    border-radius: 100px;
    border: 1px solid #1E3E37;
    background-color: transparent;
    color: #1E3E37;
    font-family: Montserrat;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
    text-align: center;
    text-decoration: none;
	transition: all 0.3s ease;
}
.anchor-1:hover{
	background-color: #A884FF;
	color: #fff;
	border: 0;
}
.anchor-2:hover{
	background-color: #A884FF;
	color: #fff;
	border: 0;
}

/* News Page */
.news-page-heading-section {
  position: relative;
  overflow: hidden;
}
.news-page-heading-section .hero-title {
    margin-bottom: 0 !important;
}
.news-page-heading-section .hero-description {
    display: none;
}
.news-page-heading-section .hero-sec-section {
    padding-top: 0px;
    padding-bottom: 0px;
}
.news-page-heading-section .hero-container {
    padding: 100px 64px 80px;
	background-image: none !important;
    width: 100%;
}
.news-page-heading-section .hero-row {
    border: none;
}
.news-page-heading-section .hero-overlay {
    position: absolute !important;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    bottom: 0;
    max-width: 100%;
	left: 0;
}

@media only screen and (max-width: 1280px){
	.news-page-heading-section .hero-row {
		justify-content: flex-start !important;
	}
	.news-page-heading-section .hero-container .border-left {
    	display: none;
	}
	.news-page-heading-section .hero-sec-section {
		max-width: 100% !important;
		flex-basis: 100% !important;
		padding: 0 !important;
	}
}
@media only screen and (max-width: 991px){
	.hero-row{
        flex-wrap: wrap;
    }
    .hero-sec-section{
        order: 1;
        width: 100%;
    }
    .hero-col-6{
        flex-basis: 100% !important;
    }
    .hero-title{
        font-size: 40px;
    }
    
    .hero-description{
        font-size: 16px;    
    }
	.anchors{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
	.news-page-heading-section .hero-sec-section {
		padding: 0 !important;
	}
}
@media only screen and (max-width: 768px){
    
}

@media only screen and (max-width: 767px){
	.news-page-heading-section .hero-container {
		padding: 64px 20px 48px;
	}
	.news-page-heading-section .hero-overlay {
		background-position: 80% bottom;
	}
}