body {
    font-family: 'Merriweather';
}

.slimscroll::-webkit-scrollbar-track {
    border-radius: 16px;
    background-color: #fff;
    display: none;
}

.slimscroll::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.slimscroll::-webkit-scrollbar-thumb {
    border-radius: 16px;
    background-color: rgba(255, 255, 255, 0.3);
}

.m-container {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: auto;
    max-width: 600px;
    background: white;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: #fff;
}

.footer a {
    color: #fff;
    text-decoration: underline;
}

.title {
    height: 180px;
}

.content {
    height: calc(100vh - 180px);
    padding: 40px 6px;
    padding-bottom: 55px;
    background: rgb(116, 0, 0);
    background: linear-gradient(0deg, rgba(116, 0, 0, 1)0%, rgba(220, 53, 69, 1)100%);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.content-inner {
    padding: 0 26px;
    height: 100%;
    overflow-y: auto;
}

.content iframe {
    border-radius: 20px;
    pointer-events: none;
}

.yt-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    width: 100%;
    height: 0;
}

.video-container iframe {
    border-radius: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.badge {
    border-radius: 16px;
    padding: 8px 12px;
}

.btn-lg {
    border-radius: 40px;
    padding: 10px 10px 12px;
    font-weight: bold;
}

.text-xs {
    font-size: 11px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 4px;
}

@media only screen and(max-width:600px) {
    .m-container {
        min-width: 100%;
    }
}

/*waves****************************/
.box {
	position: fixed;
	top: 0;
	transform: rotate(95deg);
	left: 0;
    z-index: -1;
}

.wave {
    position: fixed;
    top: 0;
    left: 0;
    opacity: .4;
    position: absolute;
    top: 3%;
    left: 10%;
    background: rgb(255, 6, 6);
    width: 1500px;
    height: 1300px;
    margin-left: -150px;
    margin-top: -250px;
    transform-origin: 50% 48%;
    border-radius: 43%;
    animation: drift 7000ms infinite linear;
}

.wave.-three {
  animation: drift 7500ms infinite linear;
	position: fixed;
	background-color: #ff778e;
}

.wave.-two {
  animation: drift 3000ms infinite linear;
  opacity: .1;
  background: black;
	position: fixed;
}

.box:after {
  content: '';
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  transform: translate3d(0, 0, 0);
}

@keyframes drift {
  from { transform: rotate(0deg); }
  from { transform: rotate(360deg); }
}
