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

}

.hero-circle {
    bottom: 8%;
    right: 2%;
    width: 150px;
    height: 150px;
    color: #FFFFFF;
    text-decoration: none;
    line-height: 1.2;
    font-size: 14px;
    transform: rotate(15deg);
    padding: 15px;
    transition: all .3s;
	border-radius: 50% !important;
    text-align: center !important;
    font-weight: 700 !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    display: flex !important;
	flex-direction:column;
}

.hero-circle:hover{
	color:white;
	transform:scale(1.05) rotate(15deg);
}

@media (min-width: 768px) {
    .hero-circle {
        width: 170px;
        height: 170px;
        font-size: 18px;
    }
}

@media (min-width: 1200px) {
    .hero-circle {
        width: 200px;
        height: 200px;
        font-size: 22px;
    }
}
@media (min-width: 1400px) {
    .hero-circle {
        width: 220px;
        height: 220px;
        font-size: 24px;
        bottom: 16%;
    }
}
@media (min-width: 1600px) {
    .hero-circle {
        width: 260px;
        height: 260px;
    }
}



.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;
	position:absolute;
    top: 50%;
    transform: translateY(-50%);
}

.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;
	}
}

@media (max-height:520px ){
	.hero-logo{
		bottom:250px;
		top:unset
	}
}