.ibc-video-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.ibc-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Overlay */
.ibc-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center; 
    justify-content: flex-start; 
    z-index: 2;
    padding: 0 5%;
}

/* Content box (50% width) */
.ibc-content {
    width: 50%;
    text-align: right;
    color: #fff;
}

.ibc-content h2 {
    
}

.ibc-content p {
    
}

/* Button */
.ibc-btn {
	font-size: 16px;
	font-weight: 500;
	font-family: Roboto, sans-serif;
	margin-right: 25px;
	height: 50px;
	line-height: 50px;
	padding: 0px 20px;
	background-image: none;
	background-color: #cee362;
	color: #ffffff;
	display: inline-block;
	border-top-right-radius: 20px !important;
	border-bottom-left-radius: 20px !important;
	transition: all ease 400ms !important;
	-moz-transition: all ease 400ms;
	-webkit-transition: all ease 400ms;
}

.ibc-btn:hover {
    color: #ffffff;
    border-top-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
  border-top-left-radius: 20px !important;
  border-bottom-right-radius: 20px !important;
  transition: all ease 400ms !important;
  -moz-transition: all ease 400ms;
  -webkit-transition: all ease 400ms;
}



@media screen and (max-width: 992px) {
    .ibc-content {
        width: 100%;
        text-align:center;
    }
}































