html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.big-pt {
  padding-top: 90px;
}

.big-pb {
  padding-bottom: 90px;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #020014;
  line-height: 1.3;
  padding-top: 88px;
  overflow-x: hidden;
}

a {
  color: #020014;
  text-decoration: none !important;
  transition: all 0.4s;
  display: inline-block;
}

a:hover {
  color: #13c100;
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1450px;
  }
}

header {
  position: fixed;
  z-index: 99;
  width: 100%;
  background-color: #fff;
  top: 0;
  box-shadow: 0 18px 20px -20px rgba(58, 58, 58, 0.25);
  transition: all 0.75s;
}

.fixed {
  margin-bottom: 25px;
  box-shadow: 0 30px 15px -25px rgba(100, 100, 100, 0.25);
}

.hide {
  transform: translateY(-90px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 12px 5px;
  position: relative;
}

.logo img {
  max-width: 94px;
}

.menu {
  display: flex;
  flex-flow: wrap;
  gap: 22px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  height: 100%;
}

.header-menu {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.menu>li {
  position: relative;
  display: flex;
  align-items: center;
}

.sub-menu {
  position: absolute;
  top: 100%;
  width: 200px;
  background-color: #fff;
  box-shadow: 0 0 8px 2px rgba(221, 221, 221, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all .5s;
  z-index: 9;
}

.menu>li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.sub-menu li a {
  padding: 10px 20px;
  width: 100%;
  font-size: 12px;
}

.sub-menu li a:hover {
  background-color: #efefef;
}

.header-right {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.live {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: 5px;
  background-color: #f4f4f9;
}

.live i {
  font-size: 16px;
  color: #13c100;
}

.bars {
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 12px 14px;
  border-radius: 5px;
  background-color: #020014;
  color: #fff;
  transition: all 0.4s;
  display: none;
}

.bars:hover {
  background-color: #13c100;
}

.main-slider {
  display: grid;
  grid-template-columns: 7.1fr repeat(6, 1fr);
  gap: 10px;
  height: auto;
  grid-auto-rows: min-content;
}

.slider-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.slider-card:nth-child(1) {
  grid-area: 1 / 1 / 6 / 2;
}

.slider-card:nth-child(2) {
  grid-area: 1 / 2 / 3 / 5;
}

.slider-card:nth-child(3) {
  grid-area: 1/5/3/8;
}

.slider-card:nth-child(4) {
  grid-area: 3/2/6/4;
}

.slider-card:nth-child(5) {
  grid-area: 3/4/6/6;
}

.slider-card:nth-child(6) {
  grid-area: 3/6/6/8;
}

.slider-card img {
  height: 100%;
  object-fit: cover;
}

.slider-card:hover .video-text {
  height: 100%;
}

.videos-list-content {
  background-color: #f4f4f9;
  padding: 50px 0;
}

.videos-list {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(2, 1fr);
  row-gap: 20px;
  column-gap: 10px;
}

.video-item img {
  border-radius: 4px;
  overflow: hidden;
}

.video-list-title {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  padding-bottom: 46px;
  flex-flow: column;
  color: #13c100;
}

.video-list-title:hover {
  color: #020014;
}

.video-list-title h2 {
  font-size: clamp(16px, 1.95vw, 34px);
  line-height: 1.25;
  font-weight: 600;
  text-transform: capitalize;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.video-list-title p {
  text-transform: uppercase;
}

.video-name {
  padding-top: 10px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.4s;
}

.video-item:hover .video-name {
  color: #13c100 !important;
}

.line-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 34px;
}

.line-title span {
  padding-right: 10px;
  z-index: 2;
}


.news-item img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 640 / 360;
  object-fit: cover;
}

.news-title {
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  margin: 10px 0;
}

.news-desc {
  font-size: 14px;
}

.slider {
  background-color: #f4f4f9;
}

.slider .line-title span {
  background-color: #f4f4f9;
}

.slick-track {
  display: flex;
  gap: 10px;
}

.slider-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.video-text {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(13px, 2vw, 16px);
  padding: 22px 20px 22px 20px;
  height: 100px;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff !important;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: end;
  transition: all 0.5s ease-in-out;
}

.video-text span {
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  padding-right: 10px;
  padding-top: 4px;
  margin-top: 4px;
}

.slider-item:hover .video-text {
  height: 100%;
}

.slide-arrow {
  border: 3px solid #fff;
  background-color: #020014;
  color: #fff;
  font-size: 20px;
  height: 46px;
  width: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  padding: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
  transition: all 0.4s;
}

.slide-arrow:hover {
  background-color: #13c100;
}

.prev-arrow {
  left: -16px;
}

.next-arrow {
  right: -16px;
}

.slider .slide-arrow {
  border-color: #f4f4f9;
  background-color: #020014;
  color: #f4f4f9;
}

.slider .slide-arrow:hover {
  color: #020014;
  background-color: #f4f4f9;
}

.sports .news-item {
  position: relative;
  padding: 5px;
}

.sport img {
  height: 100%;
  aspect-ratio: 1 / 1;
}

.sports .news-title {
  font-weight: 500;
  text-transform: capitalize;
  padding: 22px 20px 22px 20px;
  height: 110px;
  position: absolute;
  bottom: 5px;
  left: 5px;
  color: #fff !important;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
  width: calc(100% - 10px);
  display: flex;
  align-items: end;
  transition: all 0.5s ease-in-out;
  margin: 0;
  justify-content: center;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
}

.sports .news-item:hover .news-title {
  height: 100%;
}

.live-content {
  background-image: url(../img/live-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}

.live-icon {
  max-width: clamp(270px, 28vw, 400px);
  margin: auto;
}

.live-title {
  font-weight: 700;
  color: #fff;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.2;
  text-transform: capitalize;
}

.live-desc {
  color: #fff;
  margin-top: 15px;
}

.live-content .container {
  position: relative;
  z-index: 2;
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translate3D(0%, 51%, 0) rotate(0deg);
    transform: translate3D(0%, 51%, 0) rotate(0deg);
  }

  5% {
    -webkit-transform: translate3D(8%, 31%, 0) rotate(18deg);
    transform: translate3D(8%, 31%, 0) rotate(18deg);
  }

  10% {
    -webkit-transform: translate3D(22%, 13%, 0) rotate(36deg);
    transform: translate3D(22%, 13%, 0) rotate(36deg);
  }

  15% {
    -webkit-transform: translate3D(40%, 2%, 0) rotate(54deg);
    transform: translate3D(40%, 2%, 0) rotate(54deg);
  }

  20% {
    -webkit-transform: translate3D(46%, 21%, 0) rotate(72deg);
    transform: translate3D(46%, 21%, 0) rotate(72deg);
  }

  25% {
    -webkit-transform: translate3D(50%, 47%, 0) rotate(90deg);
    transform: translate3D(50%, 47%, 0) rotate(90deg);
  }

  30% {
    -webkit-transform: translate3D(53%, 80%, 0) rotate(108deg);
    transform: translate3D(53%, 80%, 0) rotate(108deg);
  }

  35% {
    -webkit-transform: translate3D(59%, 98%, 0) rotate(125deg);
    transform: translate3D(59%, 98%, 0) rotate(125deg);
  }

  40% {
    -webkit-transform: translate3D(84%, 89%, 0) rotate(144deg);
    transform: translate3D(84%, 89%, 0) rotate(144deg);
  }

  45% {
    -webkit-transform: translate3D(92%, 68%, 0) rotate(162deg);
    transform: translate3D(92%, 68%, 0) rotate(162deg);
  }

  50% {
    -webkit-transform: translate3D(99%, 47%, 0) rotate(180deg);
    transform: translate3D(99%, 47%, 0) rotate(180deg);
  }

  55% {
    -webkit-transform: translate3D(97%, 21%, 0) rotate(198deg);
    transform: translate3D(97%, 21%, 0) rotate(198deg);
  }

  60% {
    -webkit-transform: translate3D(80%, 7%, 0) rotate(216deg);
    transform: translate3D(80%, 7%, 0) rotate(216deg);
  }

  65% {
    -webkit-transform: translate3D(68%, 25%, 0) rotate(234deg);
    transform: translate3D(68%, 25%, 0) rotate(234deg);
  }

  70% {
    -webkit-transform: translate3D(59%, 41%, 0) rotate(251deg);
    transform: translate3D(59%, 41%, 0) rotate(251deg);
  }

  75% {
    -webkit-transform: translate3D(50%, 63%, 0) rotate(270deg);
    transform: translate3D(50%, 63%, 0) rotate(270deg);
  }

  80% {
    -webkit-transform: translate3D(38%, 78%, 0) rotate(288deg);
    transform: translate3D(38%, 78%, 0) rotate(288deg);
  }

  85% {
    -webkit-transform: translate3D(21%, 92%, 0) rotate(306deg);
    transform: translate3D(21%, 92%, 0) rotate(306deg);
  }

  90% {
    -webkit-transform: translate3D(3%, 79%, 0) rotate(324deg);
    transform: translate3D(3%, 79%, 0) rotate(324deg);
  }

  100% {
    -webkit-transform: translate3D(0%, 51%, 0) rotate(360deg);
    transform: translate3D(0%, 51%, 0) rotate(360deg);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translate3D(0%, 51%, 0) rotate(0deg);
    transform: translate3D(0%, 51%, 0) rotate(0deg);
  }

  5% {
    -webkit-transform: translate3D(8%, 31%, 0) rotate(18deg);
    transform: translate3D(8%, 31%, 0) rotate(18deg);
  }

  10% {
    -webkit-transform: translate3D(22%, 13%, 0) rotate(36deg);
    transform: translate3D(22%, 13%, 0) rotate(36deg);
  }

  15% {
    -webkit-transform: translate3D(40%, 2%, 0) rotate(54deg);
    transform: translate3D(40%, 2%, 0) rotate(54deg);
  }

  20% {
    -webkit-transform: translate3D(46%, 21%, 0) rotate(72deg);
    transform: translate3D(46%, 21%, 0) rotate(72deg);
  }

  25% {
    -webkit-transform: translate3D(50%, 47%, 0) rotate(90deg);
    transform: translate3D(50%, 47%, 0) rotate(90deg);
  }

  30% {
    -webkit-transform: translate3D(53%, 80%, 0) rotate(108deg);
    transform: translate3D(53%, 80%, 0) rotate(108deg);
  }

  35% {
    -webkit-transform: translate3D(59%, 98%, 0) rotate(125deg);
    transform: translate3D(59%, 98%, 0) rotate(125deg);
  }

  40% {
    -webkit-transform: translate3D(84%, 89%, 0) rotate(144deg);
    transform: translate3D(84%, 89%, 0) rotate(144deg);
  }

  45% {
    -webkit-transform: translate3D(92%, 68%, 0) rotate(162deg);
    transform: translate3D(92%, 68%, 0) rotate(162deg);
  }

  50% {
    -webkit-transform: translate3D(99%, 47%, 0) rotate(180deg);
    transform: translate3D(99%, 47%, 0) rotate(180deg);
  }

  55% {
    -webkit-transform: translate3D(97%, 21%, 0) rotate(198deg);
    transform: translate3D(97%, 21%, 0) rotate(198deg);
  }

  60% {
    -webkit-transform: translate3D(80%, 7%, 0) rotate(216deg);
    transform: translate3D(80%, 7%, 0) rotate(216deg);
  }

  65% {
    -webkit-transform: translate3D(68%, 25%, 0) rotate(234deg);
    transform: translate3D(68%, 25%, 0) rotate(234deg);
  }

  70% {
    -webkit-transform: translate3D(59%, 41%, 0) rotate(251deg);
    transform: translate3D(59%, 41%, 0) rotate(251deg);
  }

  75% {
    -webkit-transform: translate3D(50%, 63%, 0) rotate(270deg);
    transform: translate3D(50%, 63%, 0) rotate(270deg);
  }

  80% {
    -webkit-transform: translate3D(38%, 78%, 0) rotate(288deg);
    transform: translate3D(38%, 78%, 0) rotate(288deg);
  }

  85% {
    -webkit-transform: translate3D(21%, 92%, 0) rotate(306deg);
    transform: translate3D(21%, 92%, 0) rotate(306deg);
  }

  90% {
    -webkit-transform: translate3D(3%, 79%, 0) rotate(324deg);
    transform: translate3D(3%, 79%, 0) rotate(324deg);
  }

  100% {
    -webkit-transform: translate3D(0%, 51%, 0) rotate(360deg);
    transform: translate3D(0%, 51%, 0) rotate(360deg);
  }
}

.glow-container {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  z-index: 0;
}

.ball {
  --delay: 0s;
  --size: 0.1;
  --speed: 10s;
  aspect-ratio: 1;
  width: calc(100% * var(--size));
  background: -o-linear-gradient(190deg, #13c100 0%, #13c100 100%);
  background: linear-gradient(260deg, #13c100 0%, #13c100 100%);
  -webkit-filter: blur(10vw);
  filter: blur(10vw);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: loop var(--speed) infinite linear;
  animation: loop var(--speed) infinite linear;
  -webkit-animation-delay: var(--delay);
  animation-delay: var(--delay);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0.35;
}

footer {
  background-color: #f4f4f9;
  font-size: 14px;
}

footer .row {
  padding: 50px 0;
}

footer .logo {
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.social-item {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  border: 1px solid #020014;
  border-radius: 4px;
}

.social-item:hover {
  background-color: #020014;
  color: #fff;
}

.footer-title {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 47px;
  margin-bottom: 15px;
}

footer ul {
  display: flex;
  flex-wrap: wrap;
}

footer ul li {
  flex: 0 0 auto;
  width: 100%;
  margin-bottom: 8px;
  list-style: inside;
  padding: 0 8px;
  font-weight: 600;
}

.double-list li {
  flex: 0 0 auto;
  width: 50%;
}

.footer-bottom {
  background-color: #d9d9e0;
  padding: 20px 0;
}

.footer-bottom ul li {
  width: auto;
  font-weight: 500;
  margin: 0;
}

@media screen and (max-width: 1366px) {}

@media screen and (max-width: 1199px) {
  .videos-list {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  .forecast-container {
    display: none !important;
  }
}

@media screen and (max-width: 991px) {

  .bars {
    display: block;
  }

  .header-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    width: 100%;
    padding: 20px;
    box-shadow: 0 18px 20px -20px rgba(58, 58, 58, 0.25);
  }

  .header-menu.menu-open {
    display: block;
  }

  .header-menu a {
    width: 100%;
  }

  .menu {
    display: flex;
    flex-flow: column;
    width: 100%;
    text-align: right;
    align-items: flex-end;
    gap: 15px;
  }

  .menu>li {
    flex-flow: column;
    width: 100%;
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    align-items: flex-end;
  }

  .sub-menu {
    position: relative;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    width: auto;
    padding-top: 5px;
    width: 100%;
  }

  .sub-menu li a {
    padding: 4px 0;
    width: 100%;
    font-size: 12px;
    color: #666;
  }

  .main-slider {
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .slider-card:nth-child(1) {
    grid-area: 1 / 1 / 2 / 7;
  }

  .slider-card:nth-child(2) {
    grid-area: 2 / 1 / 3 / 4;
  }

  .slider-card:nth-child(3) {
    grid-area: 2 / 4 / 3 / 7;
  }

  .slider-card:nth-child(4) {
    grid-area: 3 / 1 / 4 / 3;
  }

  .slider-card:nth-child(5) {
    grid-area: 3 / 3 / 4 / 5;
  }

  .slider-card:nth-child(6) {
    grid-area: 3 / 5 / 4 / 7;
  }

  .logo img {
    max-width: 80px;
  }

  .line-title {
    margin-bottom: 26px;
  }

  .live-content {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .videos-list {
    display: flex;
    align-items: center;
    overflow-y: auto;
    overflow-x: auto;
    flex-flow: row;
  }

  a.video-item {
    display: inline-block;
    z-index: 2;
    position: relative;
    min-width: 36%;
  }

  .video-list-title {
    padding-bottom: 0;
  }

  .live-icon {
    margin: 0;
  }

  .line-title {
    font-size: 20px;
    font-weight: 700;
  }

  .news-desc:not(.display-important) {
    display: none;
  }

  .videos-list-content {
    padding: 30px 0;
  }
}

@media screen and (max-width: 576px) {
  .slider-card {
    aspect-ratio: 6 / 3.7;
  }

  .slider-card:nth-child(2) {
    grid-area: 2 / 1 / 2 / 7;
  }

  .slider-card:nth-child(3) {
    grid-area: 3 / 1 / 3 / 7;
  }

  .slider-card:nth-child(4) {
    grid-area: 4 / 1 / 4 / 7;
  }

  .slider-card:nth-child(5) {
    grid-area: 5 / 1 / 5 / 7;
  }

  .slider-card:nth-child(6) {
    grid-area: 6 / 1 / 6 / 7;
  }

  .slide-arrow {
    border: 2px solid #fff;
  }

  .next-arrow {
    right: 16px;
  }

  .prev-arrow {
    left: 16px;
  }

  .sports .news-item .news-title {
    height: 100%;
    line-height: 1.2;
  }
}

@media screen and (max-width: 480px) {
  .header-right {
    gap: 10px;
  }

  .live {
    padding: 12px 12px;
  }

  .sports .news-title {
    padding: 12px;
  }
}

@media screen and (max-width: 320px) {}

.video-player {
  position: relative;
  overflow-y: hidden;
  margin-top: 45px;
}

.video-player iframe {
  min-height: 190px;
  height: 32vw !important;
  position: relative;
  display: block;
  margin: auto;
  aspect-ratio: 16 / 9;
  width: auto !important;
}

.video-container,
.video-controls,
.video-timer,
.options,
#blurred {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1410px;
  margin: auto;
}

#blurred {
  position: absolute;
  align-self: center;
  filter: blur(150px);
  width: 100%;
  aspect-ratio: 16 / 9;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.75;
}

.video-container {
  width: 100%;
  user-select: none;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.video-container.fullscreen {
  max-width: 100%;
  width: 100%;
  height: 100vh;
  border-radius: 0px;
}

.video-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  bottom: -15px;
  transition: all 0.08s ease;
}

.video-container.show-controls .video-wrapper {
  opacity: 1;
  bottom: 0;
  transition: all 0.13s ease;
}

.video-wrapper::before {
  content: "";
  bottom: 0;
  width: 100%;
  z-index: -1;
  position: absolute;
  height: calc(100% + 35px);
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.video-timeline {
  height: 7px;
  width: 100%;
  cursor: pointer;
}

.video-timeline .progress-area {
  height: 4px;
  position: relative;
  background: rgba(255, 255, 255, 0.6);
}

.progress-area span {
  position: absolute;
  left: 50%;
  top: -25px;
  font-size: 13px;
  color: #fff;
  pointer-events: none;
  transform: translateX(-50%);
}

.progress-area .progress-bar {
  width: 0%;
  height: 100%;
  position: relative;
  background: #13c100;
}

.progress-bar::before {
  content: "";
  right: 0;
  top: 50%;
  height: 13px;
  width: 13px;
  position: absolute;
  border-radius: 50%;
  background: #13c100;
  transform: translateY(-50%);
}

.progress-bar::before,
.progress-area span {
  display: none;
}

.video-timeline:hover .progress-bar::before,
.video-timeline:hover .progress-area span {
  display: block;
}

.video-wrapper .video-controls {
  padding: 5px 20px 10px;
}

.video-controls .options {
  width: 100%;
}

.video-controls .options:first-child {
  justify-content: flex-start;
}

.video-controls .options:last-child {
  justify-content: flex-end;
}

.options button {
  height: 40px;
  width: 40px;
  font-size: 19px;
  border: none;
  cursor: pointer;
  background: none;
  color: #efefef;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.options button :where(i, span) {
  height: 100%;
  width: 100%;
  line-height: 40px;
}

.options button:hover :where(i, span) {
  color: #fff;
}

.options button:active :where(i, span) {
  transform: scale(0.9);
}

.options button span {
  font-size: 23px;
}

.options input {
  height: 4px;
  margin-left: 3px;
  max-width: 75px;
  accent-color: #13c100;
}

.options .video-timer {
  color: #efefef;
  margin-left: 15px;
  font-size: 14px;
}

.video-timer .separator {
  margin: 0 5px;
  font-size: 16px;
  font-family: "Open sans";
}

.playback-content {
  display: flex;
  position: relative;
}

.playback-content .speed-options {
  position: absolute;
  list-style: none;
  left: -40px;
  bottom: 40px;
  width: 95px;
  overflow: hidden;
  opacity: 0;
  border-radius: 4px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: opacity 0.13s ease;
}

.playback-content .speed-options.show {
  opacity: 1;
  pointer-events: auto;
}

.speed-options li {
  cursor: pointer;
  color: #000;
  font-size: 14px;
  margin: 2px 0;
  padding: 5px 0 5px 15px;
  transition: all 0.1s ease;
}

.speed-options li:where(:first-child, :last-child) {
  margin: 0px;
}

.speed-options li:hover {
  background: #dfdfdf;
}

.speed-options li.active {
  color: #fff;
  background: #13c100;
}

.video-container video {
  width: 100%;
}

@media screen and (max-width: 540px) {
  .video-wrapper .video-controls {
    padding: 3px 10px 7px;
  }

  .options input,
  .progress-area span {
    display: none !important;
  }

  .options button {
    height: 30px;
    width: 30px;
    font-size: 17px;
  }

  .options .video-timer {
    margin-left: 5px;
  }

  .video-timer .separator {
    font-size: 14px;
    margin: 0 2px;
  }

  .options button :where(i, span) {
    line-height: 30px;
  }

  .options button span {
    font-size: 21px;
  }

  .options .video-timer,
  .progress-area span,
  .speed-options li {
    font-size: 12px;
  }

  .playback-content .speed-options {
    width: 75px;
    left: -30px;
    bottom: 30px;
  }

  .speed-options li {
    margin: 1px 0;
    padding: 3px 0 3px 10px;
  }

  .right .pic-in-pic {
    display: none;
  }
}

.social-footer {
  background: #13c100;
  color: #fff !important;
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-header {
  font-size: 18px;
  font-weight: 700;
}

.card-title {
  margin: 22px 0;
}

.button-green a {
  background-color: #fff;
  line-height: 1;
  padding: 14px 26px;
  border-radius: 4px;
  font-weight: 600;
}

.live-item {
  background-color: transparent !important;
}

.live-item img {
  max-height: 180px;
  width: auto;
  margin: auto;
}

.live-slider-content {
  background-image: linear-gradient(284deg, #13c100, #007a05);
}

.live-slider-content .slide-arrow {
  border: none;
  background-color: #fff;
  color: #020014 !important;
}

.store-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  height: 100%;
}

.store-item:hover {
  color: #000;
}

.store-icon {
  width: 80px;
  border-radius: 10px;
  margin: auto;
}

.app-title {
  font-weight: 700;
  margin: 28px 0 14px 0;
  font-size: 18px;
}

.store-item-1 {
  background-color: #f1eef7;
}

.store-item-2 {
  background-color: #d2fbff;
}

.store-item-3 {
  background-color: #ffe5be;
  text-align: left;
}

.store-item-1 .app-title {
  color: #2c0d69;
}

.store-item-2 .app-title {
  color: #0a8591;
}

.store-item-3 .app-title {
  color: #ff8800;
}

.mobil-apps {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.mobil-apps img {
  width: 28px;
  height: auto;
}


.live-slider-content {
  background-image: url("../img/live-bg.jpg");
}

.radio-slider-content {
  background-image: linear-gradient(284deg, #13c100, #007a05);
}

.radio-item {
  background-color: #fff;
}

.radio-item img {
  max-height: 180px;
  width: auto;
  margin: auto;
}

.live-slider-content .line-title,
.radio-slider-content .line-title {
  color: #fff;
}

.content {
  line-height: 1.5;
}

.content .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.content ul {
  list-style: inside;
}

.content li {
  margin-bottom: 10px;
}

.content p,
.content ul {
  margin: 18px 0;
}

.content strong {
  font-weight: 600;
}

.content a{
  color:#13c100
}

.eqolayzer {
  position: relative;
  overflow: hidden;
  height: 450px;
  width: 100%;
  background-color: #000;
}

#cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}

#cover.loaded {
  display: block;
}

#loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 125;
}

#loading:before {
  content: "Loading App ...";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 14px;
  line-height: 14px;
  text-align: center;
  animation: blink 1.5s ease 0s infinite;
  transform: translateY(-50%);
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

#loading.loaded {
  display: none;
}

.p_img {
  position: fixed;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  opacity: 0;
}

.center {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  margin: 0 auto;
  transform: translateY(-50%) scale(.75);
}

#app {
  width: 300px;
  margin: 0 auto;
}

#main_cover {
  position: relative;
  display: block;
  width: 300px;
  height: 300px;
  border: 0;
  border-radius: 50%;
  background-image: url(../img/f1.gif);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  overflow: hidden;
  transition: 0.1s ease transform;
}

#main_cover:active {
  transform: scale(.9);
}

#main_cover.active {
  background-image: url(../img/bg.gif);
}

#main_cover.inactive {
  background-image: url(../img/f1.gif);
}

#main {
  width: 54px;
  height: 60px;
  overflow: hidden;
}

.bar {
  position: absolute;
  width: 8px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.4s ease transform, 0.4s ease top, 0.4s ease bottom;
}

#_1 {
  top: 0;
  bottom: 0;
}

#_2 {
  top: -13px;
  left: 23px;
  height: 60px;
  transform: rotateZ(-60deg) translateY(0px);
}

#_3 {
  top: 13px;
  left: 23px;
  height: 60px;
  transform: rotateZ(60deg) translateY(0);
}

#_4,
#_5 {
  top: 27px;
  right: 0;
  bottom: 27px;
}

#main_cover.active #_2 {
  transform: rotateZ(-60deg) translateY(53px);
}

#main_cover.active #_3 {
  transform: rotateZ(60deg) translateY(-53px);
  transition-delay: 0.5s;
}

#main_cover.active #_4 {
  bottom: 0;
}

#main_cover.active #_5 {
  top: 0;
  transition-delay: 0.5s;
}

#main_cover.inactive #_2 {
  transform: rotateZ(-60deg) translateY(0);
}

#main_cover.inactive #_3 {
  transform: rotateZ(60deg) translateY(0);
  transition-delay: 0.5s;
}

#main_cover.inactive #_4 {
  bottom: 27px;
}

#main_cover.inactive #_5 {
  top: 27px;
  transition-delay: 0.5s;
}

#app_info {
  color: #fff;
  text-align: center;
}


.tabs {
  display: flex;
  gap: 6px;
  justify-content: center;
}

.tabs .tab {
  cursor: pointer;
  font-weight: 500;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 4px;
  transition: all .4s;
  background-color: #f4f4f9;
}

.tab-content {
  display: none;
}

.tabs .current,
.tabs .tab:hover {
  background-color: #13c200;
  color: #fff;
}


.grid-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 960px;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.grid-item {
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #f4f4f9;
  cursor: default;
}

.live-time {
  font-weight: 700;
  font-size: 22px;
  color: #aaa;
  line-height: 1;
}

.live-name {
  font-size: 14px;
  margin-top: 15px;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.live-current {
  border-color: #13c100;
  box-shadow: 0 15px 10px -10px #89898961;
}

.live-current .live-time {
  color: #13c100;
}

.exchange-rates span:first-child {
  display: inline-block;
  width: 48px;
  margin-right: 10px;
  position: relative;
}

.exchange-rates span:first-child::before {
  position: absolute;
  content: ":";
  top: 0;
  bottom: 0;
  right: 0;
}

.exchange-rates li {
  margin-bottom: 2px;
  border-bottom: 1px solid rgb(255 136 0 / 25%);
  padding: 4px 0;
  font-weight: bold;
}

.exchange-rates li .app-title {
  margin: 0 0 14px 0;
}

.forecast-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.weather-icon {
    width: 34px;
    height: 34px;
}

.default-table {
    width: 100%;
    max-width: 952px;
    margin-top: 32px;
    min-width: 735px;
}

.default-table .table-head-row {
    text-align: left;
}
.default-table .table-head-row, .default-table tr:not(:last-child) {
    border-bottom: 1px solid #e1e1e1;
}

.default-table .table-head-row>* {
    font-weight: 700;
}
.default-table tr>* {
    padding: 12px;
}

.responsive-table{
  overflow: auto;
}

.direct-item {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}