.hero-component {
    position: relative;

}

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

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

.hero-title {
    width: 100%;
    display: flex;
    justify-content: center;
    /* 	align-items:center; */
    position: absolute;
    top: 42%;
    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;
}

.scroll-down {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.hero-logo {
	width: 304px;
}
@media (max-width: 1200px) {
    .hero-title h1 {
        max-width: 85%;
    }
}

@media (max-width: 992px) {
    .live-webcam {
        bottom: 60px;
        right: 40px;
    }

    .hero-component {
        height: 100vh ;
    }

    .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;
    }
	.hero-logo {
        width: 109px;
	}
	
	.hero-component{
		max-height:550px;
	}
	.hero-image{
		max-height:550px;
	}
}

@media (max-width: 468px) {
    .live-webcam {
        bottom: 3%;
        right: 20px;
        width: 85px;
        height: 85px;
    }

    .hero-title h1 {
        font-size: 60px;
    }

 
}


.moving-dot {
    display: block;
    animation: 1.6s infinite ease modedot;
}

@keyframes modedot {
    0% {
        transform: translate(146px, 150px) scale(0.5);
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(146px, 267px) scale(0.5);
        opacity: 0.2;
    }
}