@media (min-width: 992px) {
    .menu-tab a {
        display: block;
        position: relative;
        font-size: 1rem;
        font-weight: 500;
        border: 1px dotted #17b0e2;
        border-radius: 5px;
        padding: 16px;
        white-space: nowrap;
        text-decoration: none !important;
        text-transform: uppercase;
    }
}
@media (min-width: 992px) {
    .menu-tab li:not(:last-child) {
        margin-right: 10px;
    }
}
.desc h3 {
    font-size: 1.25rem;
    padding-top: 10px;
}

.theme-video-shortcode-wrapper {
	text-align: center;
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
	background-color: #000;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.theme-video-shortcode-wrapper:hover {
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), 0 2px 5px rgba(0, 0, 0, 0.08);
}
.video-responsive-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
}
.video-responsive-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}
.video-native-container {
	position: relative;
	width: 100%;
	background-color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-player {
	width: 100%;
	height: auto;
	max-height: 540px;
	display: block;
	outline: none;
}

@media (max-width: 767px) {
  	.theme-video-shortcode-wrapper {
      	background-color: #ccc;
  	}
  	.video-native-container {
      	background-color: #ccc;
  	}
}