* {
  --font-size-title: 40px;
  --margin: 40px;
}

h1 {
  margin-bottom: 0;
  font-size: var(--font-size-title);
  line-height: 0.9;
}

figure {
  margin: 0;
}

body {
  font-family: "inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.header {
  background-color: #CA001E;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size-title);
  line-height: 40px;
  color: #fff;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 99;
}

.footer {
  background-color: #CA001E;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size-title);
  line-height: 40px;
  color: #fff;
  padding: 10px 0;
  
}
.footer .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__logo, .footer__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.header__logo-text, .footer__logo-text {
  color: #2C2434;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
}

.header__nav-item.active {
  background: #2C2434;
  padding: 4px 4px 0px 4px;
}

.main-header {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size-title);
  line-height: 0.9;
  padding: 30px;
  color: #fff;
  background-color: #2C2434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.marked-text {
  color: #CA001E!important;
}

.marked-text-2 {
  color: #2C2434!important;
}

.hero {
  position: relative;
  z-index: 4;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.background-video {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}

.overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}

.hero-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 4;
  width: 100%;
}

.hero-wrapper figure, .hero-wrapper img {
  max-width: 100%;
  width: 100%;
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.background-video img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  height: 100%;
}

img {
  width: 100%;
  height: auto;
}

.hero-descr {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--font-size-title);
  line-height: 0.9;
  padding: 30px;
  color: #fff;
  background-color: #CA001E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.time {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  line-height: 0.9;
  color: #2C2434;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 40px;
  margin-bottom: var(--margin);
}

.time-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 8px;
}

.time-item:first-child:before {
  display: none;
} 

.time-item::before {
  content: "";
  display: inline-block;
  position: relative;
  background: url("../img/decoration/ellipse.svg");
  width: 7px;
  height: 7px;
  margin-right: 8px;
  aspect-ratio: 1 / 1;
}

.content-wrapper {
  max-width: 80%;
  margin: 0 auto;
}

p .marked-text {
  text-transform: uppercase;
}

.content-wrapper p {
  margin: 20px 0;
}

.content-wrapper p:last-child {
  margin-bottom: 0;
}

.imp {
  border-left: 10px solid #CA001E;
  padding: 20px;
  color: #CA001E;
  font-style: italic;
  font-weight: bold;
}

.news-comments {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: var(--margin);
}

.news-comments__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  border-left: 10px solid #CA001E;
  background: transparent;
  padding: 20px;
  color: #2C2434;
}
.news-comments__author {
  color: #CA001E;
}

/* .custom-audio-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background-color: #222;
  padding: 10px;
}

#playPauseBtn {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 26px;
}

#currentTime, #duration {
  color: #fff;
  font-size: 16px;
}
.progress-container, .volume-container {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 8px;
  background: #6b6b6b;
  border-radius: 0px;
  overflow: hidden;
}

.volume-container {
  max-width: 50px;
}

.progress-filled, .volume-filled {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #fff;
  width: 0;
}

input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.volume-icon {
  max-width: 20px;
  width: 100%;
  height: auto;
} */

h2 {
  color: #CA001E;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: var(--margin);
}


audio {
  width: 100%;
}

.content img {
  margin: var(--margin) 0;
}

.content p:first-child {
  margin-top: 0;
}

.celeb b {
  background: #CA001E;
  padding: 4px;
  color: #fff;
}

.rep b {
  background: #007fff;
  padding: 4px;
  color: #fff;
}

img.img-capt {
  margin-bottom: 0;
}

.img-caption {
  text-transform: uppercase;
  padding: 10px;
  color: #fff;
  background: #CA001E;
  border-left: 10px solid #2C2434;
  margin-bottom: var(--margin);
}

.day {
  color: #CA001E;;
  border: 5px solid #CA001E;
  border-left: none;
  border-right: none;
  font-size: 32px;
  padding: 20px;
  text-transform: unset;
}

.day-wrapper {
  margin-bottom: var(--margin);
  border: 5px solid #CA001E;
  border-top: none;
  padding-bottom: 20px;
}

.day-wrapper img {
  padding: 0 10px;
  margin: 20px 0;
}

.reg {
  margin-top: 20px;
}

.reg__list {
  max-width: 100%;
  list-style-type: none;
  counter-reset: list;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding-left: 0;
}
.reg__item {
  background: #dddfe2;
  border-radius: 10px;
  padding: 5px 10px;
  border-left: 2px solid #e11229;
  border-right: 2px solid #e11229;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  gap: 10px;
}
.reg__item::before {
  counter-increment: list;
  content: counter(list);
  color: #e11229;
  border: 1px solid #e11229;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  aspect-ratio: 1 / 1;
}

.sitio-oficial {
  margin-top: 20px;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  text-align: center;
  font-size: 16px;
  color: #fff;
  border: 10px solid #CA001E;
  margin-bottom: var(--margin);
}
.frame-parent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  background-color: #2C2434;
  padding: 20px;
  gap: 16px 0;
}
@-webkit-keyframes pulsate {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
@keyframes pulsate {
    0% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-transform-origin: center center;
              transform-origin: center center;
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    10% {
      -webkit-transform: scale(0.91);
              transform: scale(0.91);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    17% {
      -webkit-transform: scale(0.98);
              transform: scale(0.98);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
    33% {
      -webkit-transform: scale(0.87);
              transform: scale(0.87);
      -webkit-animation-timing-function: ease-in;
              animation-timing-function: ease-in;
    }
    45% {
      -webkit-transform: scale(1);
              transform: scale(1);
      -webkit-animation-timing-function: ease-out;
              animation-timing-function: ease-out;
    }
  }
.button.animate {
  animation: 1s linear 0s infinite reverse forwards pulsate;
}
.button {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    border-radius: 4px;
    background-color: #fff;
    padding: 13px 0;
    opacity: 1;
    font-size: 24px;
    color: #E60706;
}
.text95{
  text-decoration: none!important;
}
.text92 {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    border-radius: 4px;
    background-color: #6b6b6b;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 10px 20px;
    font-size: 24px;
}
.text91 {
  font-size: 20px;
  margin-bottom: 10px;
}
.frame-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px 0;
}
@media(max-width: 450px) {
  .text92 {
    font-size: 20px;
  }
  .button {
    font-size: 20px;
  }
  .frame-parent {
    padding: 10px;
  }
}
.ssrcss-11r1m41-RichTextComponentWrapper {
  max-width: 100%;
}

.anim-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.anim-container__item img {
  margin: 0;
}

.anim-container__item {
  margin-bottom: var(--margin);
}

a {
  padding: 2px 4px;
  color: #fff;
  background-color: #007fff;
  text-decoration: underline;
}

a:hover {
  background-color: #e1127d;
}

/* .imp a {
  background-color: transparent;
  color: inherit;
}

.imp a:hover {
  background-color: transparent;
  text-decoration: none;
} */

a.text95 {
  background-color: #fff;
  color: #007fff;
}

a.text95:hover {
  color: #e1127d;
}

.comment {
  margin-top: 2rem;
  margin-bottom: 2rem;
  max-width: 95%;
}

.comment-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.comment-block {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  border-top: 1px solid #767d843c;
  padding-top: 0.5rem;
}
.comment-block-answer {
  margin-left: 2rem;
}
.block-avatar {
  margin-right: 1rem;
}
.block-avatar img {
  border-radius: 50%;
  width: 50px;
}
.block-info {
  width: 100%;
}
.block-info-comment {
  position: relative;
}
.block-info-comment__svg {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  font-size: 0.8rem;
}
.block-info-comment__svg svg {
  background-color: #62626237;
  border-radius: 50%;
  fill: #303030;
  width: 20px;
  padding: 5px;
}
.block-info-comment__name {
  font-weight: 700;
  color: #052962;
  padding-bottom: 1rem;
}
.block-info-comment__name span {
  font-size: 0.8rem;
  font-weight: normal;
  color: #30303093;
  padding-left: 0.5rem;
}
.block-info-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.block-info-line__like {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #626262;
  font-weight: normal;
  font-size: 0.7rem;
}

.comments__more {
  display: block;
  margin: 0 auto;
  color: #3b5998;
  text-align: center;
}

.block-info-comment__name {
  position: relative;
  margin-bottom: 10px;
  padding-right: 50px;
}

.block-info-comment__name span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-left: 0;
}

.block-info-comment__svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.block-avatar img {
  margin: 0;
}

.block-info-comment__svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}

.block-info-comment__name {
  padding-bottom: 1.5rem;
  position: relative;
  padding-right: 60px;
}

.block-info-comment__name span {
  padding-left: 0;
  position: absolute;
  bottom: 5px;
  left: 0;
  text-wrap: nowrap; width: -webkit-max-content; width: -moz-max-content; width: max-content;    bottom: 2px;
}

.block-info-comment img {
  margin: 0;
}

.burger-menu {
  display: none;
} 

#playPauseBtn::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: -webkit-image-set(url('../img/decoration/play-button.svg') 1x);
  background-repeat: no-repeat;
  background-position: center;
}

#playPauseBtn.pause::before {
  background: -webkit-image-set(url('../img/decoration/pause-button.svg') 1x);
  background-repeat: no-repeat;
  background-position: center;
}

.comm-title {
  margin-bottom: 10px;
  color: #052962;
}

.comment {
  margin-top: 0;
}

.sitio-oficial {
  margin-bottom: 60px;
}

.anim-container {
  margin-bottom: 60px;
}

@media(max-width: 991px) {
  .header__nav {
      display: none;
  }
  .burger-menu {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      max-width: 45px;
  }
}

@media(max-width: 768px) {
  body {
      font-size: 16px;
  }
  * {
      --margin: 20px;
  }
  .news-comments {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

@media(max-width: 576px) {
  * {
      --font-size-title: 30px;
  }
  .content-wrapper {
      max-width: 100%;
  }
  .day-wrapper .content-wrapper {
      padding: 0 5px;
  }

  .hero-descr {
      padding: 15px;
  }

  .hero-wrapper .container {
      padding: 0;
  }

  .background-video {
      display: none;
  }
  .day {
      font-size: 22px;
  }

  h2 {
      font-size: 22px;
  }
 
  .burger-menu {
      max-width: 35px;
  }
  
}

@media(max-width: 450px) {
  .progress-container {
    display: none;
  }

  #duration {
    display: none;
  }
  .volume-icon {
    margin-left: auto;
  }
  .volume-container {
    max-width: 160px;
  }

  #currentTime {
    margin-right: 5px;
  }
}

@media (min-width: 1400px) {
  .container {
      max-width: 960px;
  }
}

@media (min-width: 1200px) {
.container {
  max-width: 960px;
}
}