.hero-component{
    height: calc(100vh - 87px);
    position: relative;

}

.live-webcam{
    position: absolute;
    bottom: 40px;
    right: 50px;
    width: 125px;
    height: 125px;
}

.hero-component .hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title{
	width:100%;
	height:100%;
	display:flex;
	justify-content:center;
/* 	align-items:center; */
	position:absolute;
	top:115px;
}

.hero-title h1{
	color: white;
    max-width: 55%;
    font-family: 'Allison',sans-serif;
    font-size: 120px;
    text-align: center;
    text-shadow: 0px 0px 14px #000000;
    line-height: 1;
}

.red-circle{
	background-color:#ff0000;
	border-radius:50%;
	position: absolute;
    top: 24px;
    height: 320px;
    width: 320px;
    left: 9%;
    color: white;
  	padding: 71px 51px;
    font-size: 23px;
    font-weight: 900;
    font-family: 'Roboto';
    line-height: 1.3;
    letter-spacing: 1.3px;
	text-decoration:none;
}

.red-circle:hover{
	color:white;
	text-decoration:none;
}

@media (max-width:1200px){
	.hero-title h1{
		max-width: 85%;
	}
}

@media (max-width: 992px) {
    .live-webcam{
        bottom: 60px;
        right: 40px;
    }
    .hero-component{
        height: calc(100vh - 61px);
    }
	
	.red-circle{
		height: 220px;
		width: 220px;
		padding: 50px 30px;
		font-size: 15px;
	}
}

@media (max-width: 768px) {
	
	.hero-title h1{
    	max-width: 95%;
    	font-size: 75px;	
	}
}

@media (max-width: 468px) {
    .live-webcam {
        bottom: 3%;
        right: 20px;
		width: 85px;
		height: 85px;
    }
	
	.hero-title h1{
		font-size:60px;
	}
	.hero-logo{
	width: 270px;
}
}