.banner-area {
	overflow: hidden;
}
.videoWrapper {
	position: relative;
	padding-bottom: 56%;
	padding-top: 5px;
	height: 0;
	margin: -7vw 0;
}

.videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: calc(100vw / 1.8);
	z-index: 10;
}

/* service area */

.ot-pad {
	padding: 1rem 2rem;
}

.notice-banner {
    position: absolute;
    bottom: 40px;
    right: 90px;
    text-align: center;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    color: #fff;
    width: 250px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.notice-banner:hover {
    color: #afacff;
}


.notice-header {
    background-color: #cc2027;
    padding: 10px;
    font-weight: bold;
    z-index: 1000;
    
}

.notice-body {
    background-color: #fff;
    color: black;
    font-weight: bold;
    padding: 10px;
}

.notice-body div {
    margin: 5px 0;
}


@media only screen and (max-width: 768px) {
    .notice-banner {
        bottom: 50%;
        right: 20px;
        width: 200px;
        font-size: 14px;
    }

    .notice-header {
        padding: 8px;
    }

    .notice-body {
        padding: 8px;
    }

    .responsive-img {
        height: 250px;
        /* Set height to 250px on medium screens and up */
    }
}

@media only screen and (max-width: 480px) {
    .notice-banner {
        bottom: 49%;
        right: 8%;
        width: 150px;
        font-size: 12px;
    }

    .notice-header {
        padding: 6px;
    }

    .notice-body {
        padding: 6px;
    }
}