@import url("https://fonts.googleapis.com/css2?family=Exo+2:wght@300;400;500;600;700;900&display=swap");

:root {
  --clr-primary-dark: #010101;
  --clr-secondary-dark: #191919;
  --clr-primary-red: #C2002E;
  --clr-brown: #422f3d;
  --clr-brown2: #421837;
  --clr-brown3: #24101f;
  --clr-pink: #C94DA8;
  --clr-pink-light: #dfb0d3;
}

* {
  border: 0;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  font-family: "Exo 2", Arial, Helvetica, sans-serif;
  line-height: 1.65;
  font-weight: 400;
  color: #fff;
  background: var(--clr-primary-dark);
}

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

  body,
  html {
    overflow-x: hidden;
  }
}

.body--open {
  overflow-y: hidden;
}


img {
  max-width: 100%;
  height: auto;
}


input,
button,
select,
textarea {
  font: inherit;
}


a {
  color: var(--clr-primary-red);
  text-decoration: none;
}

.show-mobile {
  display: none;
}

@media(max-width: 575.99px) {
  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: block;
  }
}

.site__container {
  width: 100%;
  max-width: var(--container-width, 1430px);
  padding-inline: 1rem;
  margin-inline: auto;
}

.site__container.md {
  --container-width: 1130px;
}

.site__container.sm {
  --container-width: 930px;
}

.pt-0 {
  padding-top: 0 !important;
}

.ml-auto{
  margin-left: auto;
}

.mr-auto{
  margin-right: auto;
}

section {
  padding-block: 1.5rem;
}

section:last-child {
  padding-bottom: 3rem;
}

section .site__container>*+*,
.main__container>*+* {
  margin-top: 2rem;
}

.top-info {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background: #0666d9;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  z-index: 9;
  text-decoration: none;
}


.clips_sale_video__filmButton,
.btn-solid,
.btn-outline {
  width: fit-content;
  min-height: 44px;
  color: #fff;
  background: #171717;
  font-weight: normal;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.4s;
}

.style4 {
  background: #214442;
}

.style4:hover {
  background: #1c5551;
}

.style3 {
  background: var(--clr-brown2);
}

.style3:hover {
  background: #672054;
}

.style2 {
  background: var(--clr-brown3);
}

.style2:hover {
  background: var(--clr-brown);
}

.text-center {
  text-align: center;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.col {
  flex: 1;
}

.header {
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 10px 0;
  background: black;
  background: -webkit-gradient(linear, left top, left bottom, from(black), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-transition: background 1s;
  transition: background 1s;
}

/* body:has(.hero__swiper) .header{
  position: fixed;
} */

.header .site__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: relative;
}


.header__logo img {
  width: auto;
  height: 80px;
}

@media only screen and (max-width: 1200px) {
  .header__logo img {
    height: 60px;
  }
}

@media only screen and (max-width: 800px) {
  .header__logo img {
    height: 50px;
  }
}

@media only screen and (max-width: 1000px) {
  .header__logo {
    margin: 0 auto 0 0;
  }
}


.header__buttons {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
}


.header__nav {
  flex: 1;
}

.header__nav .menu {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 1rem;
  list-style: none;
}


@media only screen and (max-width: 1000px) {
  .header__nav {
    position: absolute;
    padding: 30px 0 0 0;
    background: #000000;
    top: 100%;
    right: 0;
    width: 100%;
    height: calc(100vh - 120px);
    overflow: auto;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(100vw);
    transform: translateX(100vw);
  }


  .header__nav .menu {
    flex-direction: column;
    justify-content: flex-start;
  }

  .header__nav--open {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}


.header__nav .menu a {
  color: white;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__nav .menu a:hover {
  color: var(--clr-primary-red);
}

@media only screen and (max-width: 1400px) {
  .header__nav .menu a {
    font-size: 15px;
  }
}


.header__searchBtn {
  color: white;
  padding: 15px;
  font-size: 20px;
  border: none;
  background: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 1400px) {
  .header__searchBtn {
    font-size: 17px;
  }
}

.header__searchBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  opacity: 0.6;
}


.header__button {
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  text-decoration: none;
  border: none;
  background: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 1400px) {
  .header__button {
    font-size: 15px;
  }
}

.header__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}


.header__button--ghost,
.header__button--red {
  padding: 8px 16px;
  border-radius: 0.5rem;
  color: white;
  border: 2px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__button--ghost {
  border-color: var(--clr-secondary-dark);
}

.header__button--red {
  background: var(--clr-primary-red);
  border-color: var(--clr-primary-red);

}

.header__button--ghost:hover {
  color: #fff;
  background: color-mix(in srgb, var(--clr-secondary-dark) 90%, transparent);
  border-color: var(--clr-secondary-dark);
}

.header__button--red:hover {
  background: color-mix(in srgb, var(--clr-primary-red) 95%, transparent);
  border-color: color-mix(in srgb, var(--clr-primary-red) 95%, transparent);
}

.header__mobilenav {
  display: none;
}

@media only screen and (max-width: 1000px) {
  .header__mobilenav {
    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;
  }
}

.header__mobilenav .header__button {
  margin: 0 0 0 10px;
}

@media only screen and (max-width: 600px) {
  .header__mobilenav .header__button {
    display: none;
  }
}

.header__hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: none;
  background: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__hamburger:hover {
  cursor: pointer;
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  position: absolute;
}

.header__hamburger .first {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}

.header__hamburger .second {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.header__hamburger .third {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.header__hamburger .first--open {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__hamburger .second--open {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.header__hamburger .third--open {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


@media(max-width: 1000px) {
  .header__hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}


.btn-join {
  display: none;
  position: relative;
  background: transparent;
  padding: 12px 15px;
}

.btn-join .fa-regular {
  font-size: 18px;
}

.btn-join .btn-join-submenu {
  position: absolute;
  right: 0;
  top: 100%;
  background: var(--clr-primary-dark);
  padding: 10px;
  min-width: max-content;
  border-radius: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.btn-join .btn-join-submenu a {
  text-decoration: none;
  text-align: center;
}


.btn-join .btn-join-submenu a i {
  font-size: 0.85em;
  opacity: 0.5;
  margin-right: 5px;
}

.btn-join:hover .btn-join-submenu {
  display: flex;
}



@media only screen and (max-width: 767px) {
  .header__buttons {
    gap: 0;
  }

  .header__button--insidenav {
    display: none;
  }

  .btn-join {
    display: block;
  }
}

footer {
  background: var(--clr-secondary-dark);
}

.footer__payments_outer {
  background: #000000;
}

.footer__payments {
  width: 100%;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-block: 1rem;
}


@media only screen and (max-width: 780px) {
  .footer__payments {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
  }
}

@media only screen and (max-width: 580px) {
  .footer__payments {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media only screen and (max-width: 420px) {
  .footer__payments {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer__payment-item {
  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;
  margin: 10px;
}

.footer__payment-item svg {
  height: 26px;
}

.footer__container {
  padding-block: 2.5rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 0.9fr 0.9fr;
  grid-template-columns: 1fr 0.9fr 0.9fr;
  gap: 2.5rem;
}


.footer__column {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer__logoLink a {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__logoLink img {
  width: auto;
  height: 90px;
}

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

  .footer__logoLink img {
    height: 60px;
  }
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.footer__menu {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media(max-width: 1000px) {
  .footer__container {
    grid-template-columns: 1fr;
  }
}

.footer__nav .menu li {
  list-style: none;
  margin: 10px 0;
}


.footer__nav .menu li a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 0 20px 0;
}

.footer__nav .menu li a:hover,
.footer__nav .menu li a.current-menu-item {
  color: var(--clr-primary-red);
}


.footer__h3 {
  color: white;
  font-size: 18px;
  font-weight: 1000;
  text-transform: uppercase;
  margin-bottom: 1rem;
}


/* .main {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  top: -120px;
  position: relative;
} */

.hero-banner {
  display: grid;
  justify-items: center;
  align-items: center;
}

.hero-banner>* {
  grid-column: 1;
  grid-row: 1;
}

.hero-banner__content {
  width: 40%;
  z-index: 1;
  container-type: inline-size;
}

.hero-banner__inner_content {
  font-size: 10cqi;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.25;
  text-align: center;
  text-wrap: balance;
  padding: 5cqi;
  color: #fff;
}

.hero-banner__inner_content strong {
  color: var(--clr-primary-red);
  display: block;
  font-weight: 800;
}

.hero-banner__inner_content>*+* {
  margin-top: 6cqi;
}

.hero-banner__inner_content figure {
  width: 65cqi;
  display: inline-block;
}

.hero-banner__inner_content figure img {
  width: 100% !important;
  height: auto !important;
}

.hero-banner__inner_content .hero-banner__btn {
  display: inline-block;
  font-size: 3.35cqi;
  font-family: inherit;
  font-weight: 500;
  line-height: 1;
  padding: 0.75em 1.5em;
  background: var(--clr-primary-red);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
}


.hero-banner__inner_content .hero-banner__btn:hover {
  background: #dd0134;
}

@media (max-width: 575.99px) {
  .hero-banner {
    align-items: start;
  }

  .hero-banner__content {
    width: 100%;
  }

  .hero-banner__inner_content {
    font-size: 8cqi;
  }

  .hero-banner__inner_content .hero-banner__btn {
    font-size: 4cqi;
  }
}

.main__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.main__h1.main__h1e {
  font-size: 30px;
  font-weight: 700;
}


.main__hr {
  display: block;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.main__hr.main__hr {
  margin-top: 1rem;
}

.main__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 0 auto 3rem auto;
  border: 2px solid var(--clr-primary-red);
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.main__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.main__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .main__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .main__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .main__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .main__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.main__filters {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.main__viewAll {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border: 1.5px solid var(--clr-primary-red);
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 8px;
  color: white;
  outline: none;
  text-decoration: none;
}

.main__viewAll:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}

.main__dropDownBtn {
  font-size: 18px;
  color: white;
  font-weight: 400;
  outline: none;
  background: none;
  border: none;
  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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 4px 15px 4px 5px;
  border-radius: 8px;
  margin: 0 30px 0 0;
}

.main__dropDownBtn i {
  font-size: 15px;
  color: var(--clr-primary-red);
  margin: 5px 0 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.main__dropDownBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--clr-primary-red);
  cursor: pointer;
}

.main__dropDownBtn:hover i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: white;
}

.main__dropDown {
  position: relative;
  z-index: 11;
  isolation: isolate;
}

.main__dropList {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #000000;
  left: 0;
  top: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 6px 0px var(--clr-primary-red);
  box-shadow: 0px 0px 6px 0px var(--clr-primary-red);
  padding: 5px 0;
  border-radius: 6px;
  display: none;
}

.main__dropList--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main__dropListLink {
  text-decoration: none;
  outline: none;
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 12px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.main__dropListLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--clr-primary-red);
}

.main__videoList {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

@media only screen and (max-width: 1000px) {
  .main__videoList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 500px) {
  .main__videoList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.main__videoElement {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  gap: 0.5rem;
}

.main__videoElement:nth-child(even) .main__videoTitle {
  color: #C94DA8 !important;
}

.main__videoWrapper {
  width: 100%;
  outline: none;
  text-decoration: none;
}

.main__video {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/2;
}

.main__videoTitle {
  margin: 8px 0;
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  outline: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 680px) {
  .main__videoTitle {
    max-width: 90%;
  }
}

.main__info {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.main__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.main__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main__models {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px 0;
}

.main__models .title {
  font-size: 16px;
  color: white;
  font-size: 400;
  display: inline-block;
}

.main__models .model {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-size: 400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}

.main__models .model:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.main__timedate {
  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;
}

.main__timedate .date {
  margin: 0 20px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.main__timedate .time {
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.main__seeMoreBtn {
  display: block;
  width: fit-content;
  text-decoration: none;
  outline: none;
  padding: 11px 25px;
  color: white;
  font-size: 18px;
  font-weight: 400;
  border-radius: 10px;
  /* border: 2px solid var(--clr-primary-red); */
  margin-inline: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.main__seeMoreBtn.main__seeMoreBtn {
  margin-top: 2rem;
}

.main__seeMoreBtn:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

.main__categoryContainer {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

@media only screen and (max-width: 1600px) {
  .main__categoryContainer {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 1100px) {
  .main__categoryContainer {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 850px) {
  .main__categoryContainer {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 550px) {
  .main__categoryContainer {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width: 330px) {
  .main__categoryContainer {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.main__category {
  width: 100%;
  aspect-ratio: 1;
  background: black;
  border-radius: 20px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  outline: none;
}

.main__category:hover .main__categoryTitle {
  cursor: pointer;
  border-radius: 20px;
}

.main__category:nth-child(even) .main__categoryTitle {
  background: #752b61;
  background: -webkit-gradient(linear, left bottom, left top, from(#752b61), color-stop(44%, rgba(161, 229, 255, 0)));
  background: linear-gradient(0deg, #752b61 0%, rgba(161, 229, 255, 0) 44%);
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.main__category:nth-child(even):hover .main__categoryTitle {
  background: rgba(117, 43, 97, 0.74);
  max-height: 600px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  font-size: 32px;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .main__category:nth-child(even):hover .main__categoryTitle {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .main__category:nth-child(even):hover .main__categoryTitle {
    font-size: 22px;
  }
}

@media only screen and (max-width: 700px) {
  .main__category:nth-child(even):hover .main__categoryTitle {
    font-size: 20px;
  }
}

.main__category:nth-child(odd) .main__categoryTitle {
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr-primary-red)), to(rgba(194, 0, 46, 0)));
  background: linear-gradient(0deg, var(--clr-primary-red) 0%, rgba(194, 0, 46, 0) 100%);
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.main__category:nth-child(odd):hover .main__categoryTitle {
  background: rgba(194, 0, 45, 0.74);
  max-height: 600px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  font-size: 32px;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .main__category:nth-child(odd):hover .main__categoryTitle {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .main__category:nth-child(odd):hover .main__categoryTitle {
    font-size: 22px;
  }
}

@media only screen and (max-width: 700px) {
  .main__category:nth-child(odd):hover .main__categoryTitle {
    font-size: 20px;
  }
}

.main__categoryTitle {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0 8px 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr-primary-red)), color-stop(44%, rgba(161, 229, 255, 0)));
  background: linear-gradient(0deg, var(--clr-primary-red) 0%, rgba(161, 229, 255, 0) 44%);
  border-radius: 0 0 20px 20px;
  max-height: 80px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  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;
}

.main__h4 {
  font-size: 44px;
  font-weight: 600;
  color: var(--clr-primary-red);
  text-align: center;
}

.main__h4 .white {
  color: white;
  text-align: center;
}

@media only screen and (max-width: 880px) {
  .main__h4 {
    margin: 30px 0 5px 0;
    font-size: 34px;
  }
}

@media only screen and (max-width: 400px) {
  .main__h4 {
    font-size: 24px;
  }
}

.main__h5 {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 3px;
  color: white;
}

@media only screen and (max-width: 400px) {
  .main__h5 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 300px) {
  .main__h5 {
    font-size: 12px;
  }
}

.main__rowList {
  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;
}


.main__rowList+.main__rowList {
  margin-top: 0.5rem;
}

.main__rowList .text {
  font-size: 22px;
  font-weight: 300;
  color: white;
  display: block;
}

.main__rowList .dot {
  display: block;
  font-size: 30px;
  color: var(--clr-primary-red);
  margin: 0 15px;
}

@media only screen and (max-width: 880px) {
  .main__rowList {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }

  .main__rowList .text {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
  }

  .main__rowList .dot {
    display: none;
  }
}

.main__performersList {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 15px;
  width: 100%;
}

@media only screen and (max-width: 1180px) {
  .main__performersList {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 991px) {
  .main__performersList {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .main__performersList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 575.99px) {
  .main__performersList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


.main__performersElement {
  border-radius: 20px;
  overflow: clip;
}

.main__performersElement:nth-child(even) .main__performersTitle {
  background: var(--clr-primary-red);
}

.main__performersImg {
  display: block;
  aspect-ratio: 414 / 622;
}

.main__performersTitle {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: white;
  font-weight: 400;
  background: #752B61;
}

.main__flipClockContainer {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main__clockTitle {
  color: white;
  font-size: 44px;
  font-weight: 600;
  margin: 0 0 10px 0;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .main__clockTitle {
    font-size: 30px;
  }
}

@media only screen and (max-width: 390px) {
  .main__clockTitle {
    font-size: 25px;
  }
}

.main__flipClockWrapper {
  width: 100%;
  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;
}

.main__latestContainer {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.main__latestInfo {
  width: 100%;
}

.main__latestInfoLink {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  grid-gap: 16px;
}

.main__latestInfoLink::after {
  display: none;
}

@media only screen and (max-width: 600px) {
  .main__latestInfoLink {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
  }
}

.main__latestBigImage {
  width: 100%;
  height: 100%;
  max-height: auto;
  border-radius: 10px;
}

.main__latestImage {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.main__latestWrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 16px;
}


.hero__swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  --swiper-navigation-color: #fff;
}

.hero__swiper .swiper-pagination-bullet {
  --swiper-pagination-bullet-size: 19px;
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-color: transparent;
  --swiper-pagination-bullet-inactive-opacity: 1;
  border: 1px solid #343434;
  position: relative;
}

.hero__swiper .swiper-pagination-bullet-active:after {
  content: '';
  width: 10px;
  height: 10px;
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: inherit;
  background: var(--clr-primary-red);
}

.hero__swiper .swiper-button-next:hover,
.hero__swiper .swiper-button-prev:hover {
  --swiper-navigation-color: var(--clr-primary-red);
}

.hero .swiper-pagination {
  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;
}

.hero__swiper img {
  width: 100%;
}

.hero__h1 {
  position: relative;
  color: white;
  font-size: 44px;
  line-height: 44px;
  font-weight: 500;
  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;
}

.hero__h1::before {
  position: absolute;
  content: ' ';
  width: 166px;
  height: 3px;
  background: var(--clr-primary-red);
  right: calc(100% + 30px);
}

.hero__h1::after {
  position: absolute;
  content: ' ';
  width: 166px;
  height: 3px;
  background: var(--clr-primary-red);
  left: calc(100% + 30px);
}

@media only screen and (max-width: 1100px) {
  .hero__h1 {
    font-size: 30px;
    line-height: 30px;
  }

  .hero__h1::before {
    width: 100px;
  }

  .hero__h1::after {
    width: 100px;
  }
}

@media only screen and (max-width: 800px) {
  .hero__h1 {
    font-size: 20px;
    line-height: 20px;
  }

  .hero__h1::before {
    width: 70px;
  }

  .hero__h1::after {
    width: 70px;
  }
}

@media only screen and (max-width: 400px) {
  .hero__h1 {
    font-size: 16px;
    line-height: 16px;
  }

  .hero__h1::before {
    width: 50px;
  }

  .hero__h1::after {
    width: 50px;
  }
}

.hero__h2 {
  color: white;
  font-size: 128px;
  line-height: 128px;
  font-weight: 500;
}

@media only screen and (max-width: 1300px) {
  .hero__h2 {
    font-size: 100px;
    line-height: 100px;
  }
}

@media only screen and (max-width: 1100px) {
  .hero__h2 {
    font-size: 70px;
    line-height: 70px;
  }
}

@media only screen and (max-width: 800px) {
  .hero__h2 {
    font-size: 40px;
    line-height: 40px;
  }
}

@media only screen and (max-width: 400px) {
  .hero__h2 {
    font-size: 26px;
    line-height: 26px;
  }
}

.flip-clock {
  text-align: center;
  -webkit-perspective: 400px;
  perspective: 400px;
  margin: 20px auto;
}

.flip-clock *,
.flip-clock *:before,
.flip-clock *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flip-clock__piece {
  display: inline-block;
  margin: 0 10px;
  -webkit-box-shadow: 0px 0px 16px 0px #752b61;
  box-shadow: 0px 0px 16px 0px #752b61;
  border-radius: 20px;
  overflow: visible;
  position: relative;
}

@media only screen and (max-width: 600px) {
  .flip-clock__piece {
    border-radius: 10px;
  }
}

@media only screen and (max-width: 390px) {
  .flip-clock__piece {
    border-radius: 5px;
  }
}

.flip-clock__slot {
  font-size: 14px;
  color: white;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 999 !important;
  -webkit-transform: transitionY(-1px);
  transform: transitionY(-1px);
}

@media only screen and (max-width: 600px) {
  .flip-clock__slot {
    font-size: 12px;
    bottom: 3px;
  }
}

@media only screen and (max-width: 390px) {
  .flip-clock__slot {
    font-size: 10px;
    bottom: 0px;
  }
}

.card {
  display: block;
  position: relative;
  padding-bottom: 0.91em;
  font-size: 68px;
  line-height: 0.95;
}

@media only screen and (max-width: 600px) {
  .card {
    font-size: 40px;
  }
}

@media only screen and (max-width: 390px) {
  .card {
    font-size: 30px;
  }
}

.card__top,
.card__bottom,
.card__back::before,
.card__back::after {
  display: block;
  height: 0.91em;
  color: #ffffff;
  background: #7f426e;
  padding: 0.31em 0.25em 0.3em 0.25em;
  border-radius: 20px 20px 0 0;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  width: 1.8em;
  font-weight: 700;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

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

  .card__top,
  .card__bottom,
  .card__back::before,
  .card__back::after {
    border-radius: 10px 10px 0 0;
  }
}

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

  .card__top,
  .card__bottom,
  .card__back::before,
  .card__back::after {
    border-radius: 5px 5px 0 0;
  }
}

.card__bottom {
  color: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  border-top: solid 1px #752B61;
  background: #3B1631;
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .card__bottom {
    border-radius: 0 0 10px 10px;
  }
}

@media only screen and (max-width: 390px) {
  .card__bottom {
    border-radius: 0 0 5px 5px;
  }
}

.card__bottom::after {
  display: block;
  margin-top: -0.91em;
}

.card__back::before,
.card__bottom::after {
  content: attr(data-value);
}

.card__back {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0%;
  pointer-events: none;
}

.card__back::before {
  position: relative;
  z-index: -1;
  overflow: hidden;
}

.flip .card__back::before {
  -webkit-animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  animation: flipTop 0.3s cubic-bezier(0.37, 0.01, 0.94, 0.35);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

.flip .card__back .card__bottom {
  -webkit-transform-origin: center top;
  transform-origin: center top;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
  animation: flipBottom 0.6s cubic-bezier(0.15, 0.45, 0.28, 1);
}

@-webkit-keyframes flipTop {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 2;
  }

  0%,
  99% {
    opacity: 0.99;
  }

  100% {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

@keyframes flipTop {
  0% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 2;
  }

  0%,
  99% {
    opacity: 0.99;
  }

  100% {
    -webkit-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    opacity: 0;
  }
}

@-webkit-keyframes flipBottom {

  0%,
  50% {
    z-index: -1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
  }

  51% {
    opacity: 0.99;
  }

  100% {
    opacity: 0.99;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 5;
  }
}

@keyframes flipBottom {

  0%,
  50% {
    z-index: -1;
    -webkit-transform: rotateX(90deg);
    transform: rotateX(90deg);
    opacity: 0;
  }

  51% {
    opacity: 0.99;
  }

  100% {
    opacity: 0.99;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    z-index: 5;
  }
}

.join-now {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .join-now {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .join-now {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .join-now {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .join-now {
    padding: 0 10px;
  }
}

.join-now__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .join-now__h1 {
    margin: 15px 0 0 0;
  }
}

.join-now__hr {
  margin: 3px 0 30px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.join-now__plans {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 40px 0;
}

.join-now__card {
  width: 320px;
  height: 535px;
  margin: 10px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 400px) {
  .join-now__card {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: 10px 0;
    width: 100%;
    max-width: 320px;
  }
}

.join-now__cardImg {
  border-radius: 20px 20px 0 0;
  height: 155px;
  width: 100%;
}

@media only screen and (max-width: 400px) {
  .join-now__cardImg {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.join-now__cardWrapper {
  width: 100%;
  height: 100%;
  border-left: 3px solid var(--clr-primary-red);
  border-right: 3px solid var(--clr-primary-red);
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(194, 0, 46, 0.893978)), color-stop(6%, black));
  background: linear-gradient(180deg, rgba(194, 0, 46, 0.893978) 0%, black 6%);
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media only screen and (max-width: 400px) {
  .join-now__cardWrapper {
    padding: 0 0 20px 0;
  }
}

.join-now__cardTrial {
  color: white;
  font-size: 28px;
  margin: 20px 0 5px 0;
  font-weight: 800;
}

.join-now__cardTrial .red {
  color: var(--clr-primary-red);
  font-weight: 700;
}

@media only screen and (max-width: 400px) {
  .join-now__cardTrial {
    font-size: 22px;
  }
}

.join-now__access {
  font-size: 18px;
  font-weight: 400;
  color: white;
  margin: 0 0 20px 0;
}

@media only screen and (max-width: 400px) {
  .join-now__access {
    font-size: 16px;
  }
}

.join-now__cardDescription {
  width: 96%;
  text-align: center;
  color: white;
  font-size: 16px;
  line-height: 22px;
}

@media only screen and (max-width: 400px) {
  .join-now__cardDescription {
    font-size: 14px;
    line-height: 18px;
  }
}

.join-now__cardLink {
  margin: auto 0 0 0;
  outline: none;
  text-decoration: none;
  width: 100%;
  border-radius: 0 0 20px 20px;
  background: var(--clr-primary-red);
  color: white;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid var(--clr-primary-red);
  padding: 10px 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.join-now__cardLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  background: white;
  color: var(--clr-primary-red);
}

.join-now__priceWrapper {
  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;
  margin: 20px 0 0 0;
}

.join-now__bigPrice {
  position: relative;
  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;
}

.join-now__bigPrice .big {
  color: var(--clr-primary-red);
  font-size: 55px;
  font-weight: 700;
}

.join-now__bigPrice .currency {
  position: absolute;
  color: white;
  font-weight: 400;
  font-size: 30px;
  top: 5px;
  left: -19px;
}

.join-now__smallPrice {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.join-now__smallPrice .cents {
  color: var(--clr-primary-red);
  font-weight: 700;
  font-size: 30px;
  line-height: 30px;
}

.join-now__smallPrice .time {
  font-size: 16px;
  font-weight: 400;
  color: white;
}

.join-now__save {
  font-size: 18px;
  line-height: 18px;
  margin: 10px 0 0 0;
  font-weight: 600;
  color: var(--clr-primary-red);
  background: white;
  border-radius: 10px;
  padding: 6px 30px;
}

.join-now__h4 {
  font-size: 44px;
  font-weight: 600;
  color: var(--clr-primary-red);
  margin: 0 0 15px 0;
}

.join-now__h4 .white {
  color: white;
}

@media only screen and (max-width: 880px) {
  .join-now__h4 {
    margin: 0 0 5px 0;
  }
}

@media only screen and (max-width: 400px) {
  .join-now__h4 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 300px) {
  .join-now__h4 {
    font-size: 24px;
  }
}

.join-now__h5 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0 0 15px 0;
  color: white;
}

@media only screen and (max-width: 400px) {
  .join-now__h5 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 300px) {
  .join-now__h5 {
    font-size: 12px;
  }
}

.join-now__rowList {
  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;
  margin: 0 0 8px 0;
}

.join-now__rowList .text {
  font-size: 22px;
  font-weight: 300;
  color: white;
  display: block;
}

.join-now__rowList .dot {
  display: block;
  font-size: 30px;
  color: var(--clr-primary-red);
  margin: 0 15px;
}

@media only screen and (max-width: 880px) {
  .join-now__rowList {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }

  .join-now__rowList .text {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
  }

  .join-now__rowList .dot {
    display: none;
  }
}

.join-now__bigInfo {
  outline: none;
  text-decoration: none;
  width: 100%;
  height: 66px;
  border-radius: 26px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 40px 0;
  cursor: default;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

@media only screen and (max-width: 1350px) {
  .join-now__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .join-now__bigInfo {
    font-size: 20px;
  }
}

@media only screen and (max-width: 900px) {
  .join-now__bigInfo {
    font-size: 16px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .join-now__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px;
    text-align: center;
  }
}

.join-now__legacyInfo {
  max-width: 1060px;
  font-size: 22px;
  font-weight: 300;
  line-height: 44px;
  margin: 0 0 40px 0;
  color: white;
  text-align: center;
}

@media only screen and (max-width: 900px) {
  .join-now__legacyInfo {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
  }
}

.join-now__awards {
  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;
  margin: 0 0 40px 0;
}

.join-now__premiumIcon {
  width: 76px;
  margin: 0 20px;
}

@media only screen and (max-width: 500px) {
  .join-now__premiumIcon {
    width: 50px;
  }
}

.login {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .login {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .login {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .login {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .login {
    padding: 0 10px;
  }
}

.login__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.login__h1 .bold {
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  .login__h1 {
    margin: 15px 0 0 0;
  }
}

.login__hr {
  margin: 3px 0 30px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.login__form {
  max-width: 430px;
  margin-inline: auto;
}

.login__h4 {
  font-size: 44px;
  font-weight: 600;
  color: var(--clr-primary-red);
  margin: 0 0 15px 0;
}

.login__h4 .white {
  color: white;
}

@media only screen and (max-width: 880px) {
  .login__h4 {
    margin: 0 0 5px 0;
  }
}

@media only screen and (max-width: 400px) {
  .login__h4 {
    font-size: 34px;
  }
}

@media only screen and (max-width: 300px) {
  .login__h4 {
    font-size: 24px;
  }
}

.login__h5 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 3px;
  margin: 0 0 15px 0;
  color: white;
}

@media only screen and (max-width: 400px) {
  .login__h5 {
    font-size: 16px;
  }
}

@media only screen and (max-width: 300px) {
  .login__h5 {
    font-size: 12px;
  }
}

.login__rowList {
  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;
  margin: 0 0 8px 0;
}

.login__rowList .text {
  font-size: 22px;
  font-weight: 300;
  color: white;
  display: block;
}

.login__rowList .dot {
  display: block;
  font-size: 30px;
  color: var(--clr-primary-red);
  margin: 0 15px;
}

@media only screen and (max-width: 880px) {
  .login__rowList {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
  }

  .login__rowList .text {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
  }

  .login__rowList .dot {
    display: none;
  }
}

.login__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  border: 2px solid var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 40px 0;
  cursor: pointer;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.login__bigInfo:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.login__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .login__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .login__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .login__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .login__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.login__legacyInfo {
  max-width: 1060px;
  font-size: 22px;
  font-weight: 300;
  line-height: 44px;
  margin-inline: auto;
  color: white;
  text-align: center;
  text-wrap: balance;
}

@media only screen and (max-width: 900px) {
  .login__legacyInfo {
    font-size: 16px;
    line-height: 22px;
    width: 100%;
  }
}

.login__awards {
  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;
  margin: 0 0 40px 0;
}

.login__premiumIcon {
  width: 76px;
  margin: 0 20px;
}

@media only screen and (max-width: 500px) {
  .login__premiumIcon {
    width: 50px;
  }
}

.categories {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .categories {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .categories {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .categories {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .categories {
    padding: 0 10px;
  }
}

.categories__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.categories__h1 .bold {
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  .categories__h1 {
    margin: 15px 0 0 0;
  }
}

.categories__hr {
  margin: 3px 0 30px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.categories__container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}

@media only screen and (max-width: 1600px) {
  .categories__container {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .categories__container {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 850px) {
  .categories__container {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 550px) {
  .categories__container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 330px) {
  .categories__container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.categories__category {
  width: 100%;
  aspect-ratio: 1;
  background: black;
  border-radius: 20px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  outline: none;
}

.categories__category:hover .categories__title {
  cursor: pointer;
  border-radius: 20px;
}

.categories__category:nth-child(even) .categories__title {
  background: #752b61;
  background: -webkit-gradient(linear, left bottom, left top, from(#752b61), color-stop(44%, rgba(161, 229, 255, 0)));
  background: linear-gradient(0deg, #752b61 0%, rgba(161, 229, 255, 0) 44%);
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.categories__category:nth-child(even):hover .categories__title {
  background: rgba(117, 43, 97, 0.74);
  max-height: 600px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  font-size: 32px;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .categories__category:nth-child(even):hover .categories__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .categories__category:nth-child(even):hover .categories__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 700px) {
  .categories__category:nth-child(even):hover .categories__title {
    font-size: 20px;
  }
}

.categories__category:nth-child(odd) .categories__title {
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr-primary-red)), to(rgba(194, 0, 46, 0)));
  background: linear-gradient(0deg, var(--clr-primary-red) 0%, rgba(194, 0, 46, 0) 100%);
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.categories__category:nth-child(odd):hover .categories__title {
  background: rgba(194, 0, 45, 0.74);
  max-height: 600px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  font-size: 32px;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .categories__category:nth-child(odd):hover .categories__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .categories__category:nth-child(odd):hover .categories__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 700px) {
  .categories__category:nth-child(odd):hover .categories__title {
    font-size: 20px;
  }
}

.categories__title {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0 8px 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr-primary-red)), color-stop(44%, rgba(161, 229, 255, 0)));
  background: linear-gradient(0deg, var(--clr-primary-red) 0%, rgba(161, 229, 255, 0) 44%);
  border-radius: 0 0 20px 20px;
  max-height: 80px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  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;
}

.categories__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 40px 0;
  border: 2px solid var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

.categories__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.categories__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .categories__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .categories__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .categories__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .categories__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.tags {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .tags {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .tags {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .tags {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .tags {
    padding: 0 10px;
  }
}

.tags__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .tags__h1 {
    margin: 15px 0 0 0;
  }
}

.tags__hr {
  margin: 3px 0 30px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.tags__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 60px 0 40px 0;
  border: 2px solid var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

.tags__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.tags__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .tags__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .tags__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .tags__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .tags__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.tags__container {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tags__pages {
  width: 100%;
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  margin: 10px 0 40px 0;
}

.tags__page {
  text-decoration: none;
  color: white;
  outline: none;
  font-size: 18px;
  line-height: 18px;
  font-weight: 400;
  text-align: center;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255, 255, 255, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.tags__page:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 1px solid var(--clr-primary-red);
}

.tags__page--active {
  background: var(--clr-primary-red);
  border: 1px solid var(--clr-primary-red);
}

.tags__list {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 24px;
}

@media only screen and (max-width: 1300px) {
  .tags__list {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media only screen and (max-width: 900px) {
  .tags__list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }
}

@media only screen and (max-width: 420px) {
  .tags__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.tags__tagLink {
  color: white;
  font-size: 18px;
  font-weight: 400;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: center;
  outline: none;
  text-decoration: none;
}

.tags__tagLink .dot {
  display: block;
  width: 12px;
  height: 12px;
  background: var(--clr-primary-red);
  border-radius: 100%;
  margin: 0 15px 0 0;
}

.tags__tagLink .quantity {
  color: #959595;
  display: block;
  margin: 0 0 0 4px;
}

.videos {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .videos {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .videos {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .videos {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .videos {
    padding: 0 10px;
  }
}

.videos__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .videos__h1 {
    margin: 15px 0 0 0;
  }
}

.videos__hr {
  margin: 3px 0 30px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.videos__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 60px 0 40px 0;
  border: 2px solid var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

.videos__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.videos__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .videos__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .videos__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .videos__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .videos__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.videos__container {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.videos__filters {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.videos__viewAll {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border: 1.5px solid var(--clr-primary-red);
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 8px;
  color: white;
  outline: none;
  text-decoration: none;
}

.videos__viewAll:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}

.videos__dropDownBtn {
  font-size: 18px;
  color: white;
  font-weight: 400;
  outline: none;
  background: none;
  border: none;
  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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 4px 15px 4px 5px;
  border-radius: 8px;
  margin: 0 30px 0 0;
}

.videos__dropDownBtn i {
  font-size: 15px;
  color: var(--clr-primary-red);
  margin: 5px 0 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.videos__dropDownBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--clr-primary-red);
  cursor: pointer;
}

.videos__dropDownBtn:hover i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: white;
}

.videos__dropDown {
  position: relative;
}

.videos__dropList {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #000000;
  left: 0;
  top: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 6px 0px var(--clr-primary-red);
  box-shadow: 0px 0px 6px 0px var(--clr-primary-red);
  padding: 5px 0;
  border-radius: 6px;
  display: none;
}

.videos__dropList--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.videos__dropListLink {
  text-decoration: none;
  outline: none;
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 12px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.videos__dropListLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--clr-primary-red);
}

.videos__videoList {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  margin: 20px 0;
}

@media only screen and (max-width: 1000px) {
  .videos__videoList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 500px) {
  .videos__videoList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.videos__videoElement {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}

.videos__videoElement:nth-child(even) .videos__videoTitle {
  color: #C94DA8 !important;
}

.videos__videoWrapper {
  width: 100%;
  outline: none;
  text-decoration: none;
}

.videos__video {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/2;
}

.videos__videoTitle {
  margin: 8px 0;
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  outline: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 680px) {
  .videos__videoTitle {
    max-width: 90%;
  }
}

.videos__info {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.videos__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.videos__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.videos__models {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px 0;
}

.videos__models .title {
  font-size: 16px;
  color: white;
  font-size: 400;
  display: inline-block;
}

.videos__models .model {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-size: 400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}

.videos__models .model:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.videos__timedate {
  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;
}

.videos__timedate .date {
  margin: 0 20px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.videos__timedate .time {
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.clips_sale {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .clips_sale {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .clips_sale {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .clips_sale {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .clips_sale {
    padding: 0 10px;
  }
}

.clips_sale__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
}

@media only screen and (max-width: 500px) {
  .clips_sale__h1 {
    margin: 15px 0 0 0;
  }
}

.clips_sale__hr {
  margin: 3px 0 20px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.clips_sale__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 60px 0 40px 0;
  border: 2px solid var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

.clips_sale__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.clips_sale__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .clips_sale__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .clips_sale__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .clips_sale__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .clips_sale__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.clips_sale__studiosWrapper {
  width: 100%;
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-gap: 15px;
  margin: 0 0 50px 0;
}

@media only screen and (max-width: 1200px) {
  .clips_sale__studiosWrapper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 850px) {
  .clips_sale__studiosWrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 520px) {
  .clips_sale__studiosWrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.clips_sale__studio {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.clips_sale__studio:nth-child(even) .clips_sale__studioTitle {
  color: #FE0000 !important;
}

.clips_sale__studio:nth-child(even) .clips_sale__studioCategory {
  color: #FE0000 !important;
}

.clips_sale__studioImage {
  height: 206px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top;
  object-position: top;
  border-radius: 20px;
  margin: 0 0 5px 0;
}

.clips_sale__studioTitle {
  font-size: 18px;
  font-weight: 400;
  color: #C94DA8;
  width: 100%;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  outline: none;
  text-decoration: none;
}

.clips_sale__studioCategory {
  font-size: 18px;
  font-weight: 300;
  color: #C94DA8;
  outline: none;
  text-decoration: none;
}

.clips_sale__videoList {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  margin: 0 0 70px 0;
}

@media only screen and (max-width: 1400px) {
  .clips_sale__videoList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 600px) {
  .clips_sale__videoList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.clips_sale__videoElement {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}

.clips_sale__videoElement:nth-child(even) .clips_sale__videoTitle {
  color: #C94DA8 !important;
}

.clips_sale__videoWrapper {
  width: 100%;
  outline: none;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__videoWrapper i {
  font-size: 16px;
  position: absolute;
  color: white;
  left: 17px;
  bottom: 17px;
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__videoWrapper:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__videoWrapper:hover i {
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__video {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/2;
}

.clips_sale__videoTitle {
  margin: 8px 0;
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  outline: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 680px) {
  .clips_sale__videoTitle {
    max-width: 90%;
  }
}

.clips_sale__info {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.clips_sale__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  min-height: 39px;
  min-width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.clips_sale__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.clips_sale__models {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px 0;
}

.clips_sale__models .title {
  font-size: 16px;
  color: white;
  font-size: 400;
  display: inline-block;
}

.clips_sale__models .model {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-size: 400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}

.clips_sale__models .model:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__timedate {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.clips_sale__timedate .date {
  margin: 0 20px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.clips_sale__timedate .time {
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.clips_sale__timedate .price {
  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;
  font-size: 12px;
  color: white;
  font-weight: 400;
}

.clips_sale__timedate .price .dollar {
  margin: 0 10px 0 0;
  color: black;
  display: block;
  text-align: center;
  font-size: 11px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: #d9ba3b;
  background: -webkit-gradient(linear, left top, left bottom, from(#d9ba3b), to(#704700));
  background: linear-gradient(180deg, #d9ba3b 0%, #704700 100%);
}

.clips_sale__categoriesContainer {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
  margin: 0 0 70px 0;
}

@media only screen and (max-width: 1600px) {
  .clips_sale__categoriesContainer {
    -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .clips_sale__categoriesContainer {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 850px) {
  .clips_sale__categoriesContainer {
    -ms-grid-columns: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 550px) {
  .clips_sale__categoriesContainer {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
  }
}

@media only screen and (max-width: 330px) {
  .clips_sale__categoriesContainer {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

.clips_sale__category {
  width: 100%;
  aspect-ratio: 1;
  background: black;
  border-radius: 20px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-decoration: none;
  outline: none;
}

.clips_sale__category:hover .categories__title {
  cursor: pointer;
  border-radius: 20px;
}

.clips_sale__category:nth-child(even) .categories__title {
  background: #752b61;
  background: -webkit-gradient(linear, left bottom, left top, from(#752b61), color-stop(44%, rgba(161, 229, 255, 0)));
  background: linear-gradient(0deg, #752b61 0%, rgba(161, 229, 255, 0) 44%);
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.clips_sale__category:nth-child(even):hover .categories__title {
  background: rgba(117, 43, 97, 0.74);
  max-height: 600px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  font-size: 32px;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .clips_sale__category:nth-child(even):hover .categories__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .clips_sale__category:nth-child(even):hover .categories__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 700px) {
  .clips_sale__category:nth-child(even):hover .categories__title {
    font-size: 20px;
  }
}

.clips_sale__category:nth-child(odd) .categories__title {
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr-primary-red)), to(rgba(194, 0, 46, 0)));
  background: linear-gradient(0deg, var(--clr-primary-red) 0%, rgba(194, 0, 46, 0) 100%);
  -webkit-transition: 1s linear;
  transition: 1s linear;
}

.clips_sale__category:nth-child(odd):hover .categories__title {
  background: rgba(194, 0, 45, 0.74);
  max-height: 600px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  font-size: 32px;
  padding: 0;
}

@media only screen and (max-width: 1600px) {
  .clips_sale__category:nth-child(odd):hover .categories__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 1200px) {
  .clips_sale__category:nth-child(odd):hover .categories__title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 700px) {
  .clips_sale__category:nth-child(odd):hover .categories__title {
    font-size: 20px;
  }
}

.clips_sale__title {
  color: white;
  font-size: 16px;
  font-weight: 500;
  padding: 30px 0 8px 0;
  text-align: center;
  width: 100%;
  height: 100%;
  background: var(--clr-primary-red);
  background: -webkit-gradient(linear, left bottom, left top, from(var(--clr-primary-red)), color-stop(44%, rgba(161, 229, 255, 0)));
  background: linear-gradient(0deg, var(--clr-primary-red) 0%, rgba(161, 229, 255, 0) 44%);
  border-radius: 0 0 20px 20px;
  max-height: 80px;
  -webkit-transition: 1s linear;
  transition: 1s linear;
  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;
}

.clips_sale__bilboard {
  outline: none;
  text-decoration: none;
  width: 100%;
  margin: 20px 0 70px 0;
}

.clips_sale__bilboard img {
  width: 100%;
  border-radius: 25px;
  height: auto;
}

.clips_sale__performers {
  width: 100%;
  margin: 20px 0 70px 0;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.clips_sale__filters {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.clips_sale__viewAll {
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border: 1.5px solid var(--clr-primary-red);
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 8px;
  color: white;
  outline: none;
  text-decoration: none;
}

.clips_sale__viewAll:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}

.clips_sale__dropDownBtn {
  font-size: 18px;
  color: white;
  font-weight: 400;
  outline: none;
  background: none;
  border: none;
  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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 4px 15px 4px 5px;
  border-radius: 8px;
  margin: 0 30px 0 0;
}

.clips_sale__dropDownBtn i {
  font-size: 15px;
  color: var(--clr-primary-red);
  margin: 5px 0 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__dropDownBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--clr-primary-red);
  cursor: pointer;
}

.clips_sale__dropDownBtn:hover i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: white;
}

.clips_sale__dropDown {
  position: relative;
}

.clips_sale__dropList {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #000000;
  left: 0;
  top: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 6px 0px var(--clr-primary-red);
  box-shadow: 0px 0px 6px 0px var(--clr-primary-red);
  padding: 5px 0;
  border-radius: 6px;
  display: none;
}

.clips_sale__dropList--active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.clips_sale__dropListLink {
  text-decoration: none;
  outline: none;
  color: white;
  font-size: 16px;
  font-weight: 400;
  padding: 6px 12px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__dropListLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: var(--clr-primary-red);
}

.clips_sale__performersList {
  display: -ms-grid;
  display: grid;
  margin: 30px 0 30px 0;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 15px;
  width: 100%;
}

@media only screen and (max-width: 1180px) {
  .clips_sale__performersList {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 550px) {
  .clips_sale__performersList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 550px) {
  .clips_sale__performersList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.clips_sale__performersElement {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  outline: none;
  text-decoration: none;
}

.clips_sale__performersElement:nth-child(even) .clips_sale__performersTitle {
  background: var(--clr-primary-red);
}

.clips_sale__performersImg {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
}

.clips_sale__performersTitle {
  padding: 15px 0;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: white;
  font-weight: 400;
  border-radius: 0 0 20px 20px;
  background: #752B61;
}

.clips_sale__seeMoreBtn {
  text-decoration: none;
  outline: none;
  padding: 11px 25px;
  color: white;
  font-size: 14px;
  font-weight: 400;
  border-radius: 10px;
  border: 2px solid var(--clr-primary-red);
  margin: 20px 0 0 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale__seeMoreBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
}

.studio_videos {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .studio_videos {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .studio_videos {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .studio_videos {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .studio_videos {
    padding: 0 10px;
  }
}

.studio_videos__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .studio_videos__h1 {
    margin: 15px 0 0 0;
  }
}

.studio_videos__hr {
  margin: 3px 0 20px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.studio_videos__videoList {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-gap: 16px;
  margin: 0 0 70px 0;
}

@media only screen and (max-width: 1400px) {
  .studio_videos__videoList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 600px) {
  .studio_videos__videoList {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.studio_videos__videoElement {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}

.studio_videos__videoElement:nth-child(even) .studio_videos__videoTitle {
  color: #C94DA8 !important;
}

.studio_videos__videoWrapper {
  width: 100%;
  outline: none;
  text-decoration: none;
}

.studio_videos__video {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/2;
}

.studio_videos__videoTitle {
  margin: 8px 0;
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  outline: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 680px) {
  .studio_videos__videoTitle {
    max-width: 90%;
  }
}

.studio_videos__info {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.studio_videos__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  min-height: 39px;
  min-width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.studio_videos__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.studio_videos__models {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px 0;
}

.studio_videos__models .title {
  font-size: 16px;
  color: white;
  font-size: 400;
  display: inline-block;
}

.studio_videos__models .model {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-size: 400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}

.studio_videos__models .model:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.studio_videos__timedate {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.studio_videos__timedate .date {
  margin: 0 20px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.studio_videos__timedate .time {
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.studio_videos__timedate .price {
  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;
  font-size: 12px;
  color: white;
  font-weight: 400;
}

.studio_videos__timedate .price .dollar {
  margin: 0 10px 0 0;
  color: black;
  display: block;
  text-align: center;
  font-size: 11px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background: #d9ba3b;
  background: -webkit-gradient(linear, left top, left bottom, from(#d9ba3b), to(#704700));
  background: linear-gradient(180deg, #d9ba3b 0%, #704700 100%);
}

.blog__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.blog__h1 .bold {
  font-weight: 600;
}

@media only screen and (max-width: 500px) {
  .blog__h1 {
    margin: 15px 0 0 0;
  }
}

.blog__hr {
  margin: 3px 0 30px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.blog__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 60px 0 40px 0;
  border: 2px solid var(--clr-primary-red);
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.blog__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .blog__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .blog__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .blog__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .blog__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.blog__container {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 10px 0 40px 0;
}

@media only screen and (max-width: 900px) {
  .blog__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


@media only screen and (max-width: 640px) {
  .blog__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.blog__post>a {
  display: block;
  margin-bottom: 0.5rem;
}


.blog__post:nth-child(even) .blog__link {
  color: #C94DA8 !important;
}

.blog__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  overflow: clip;
  ;
}

.blog__link {
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;

  width: 100%;
}

.blog__link>* {
  outline: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.blog__text {
  color: white;
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  width: 100%;
}

.single_post__h1 {
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

.single_post__h1 .bold {
  font-weight: 600;
}

.single_post__bigInfo {
  outline: none;
  text-decoration: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 25px;
  height: 66px;
  border-radius: 20px;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 28px;
  font-weight: 300;
  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;
  margin: 60px 0 40px 0;
  border: 2px solid var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

.single_post__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.single_post__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .single_post__bigInfo {
    font-size: 24px;
  }
}

@media only screen and (max-width: 1200px) {
  .single_post__bigInfo {
    font-size: 20px;
    height: 50px;
  }
}

@media only screen and (max-width: 900px) {
  .single_post__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .single_post__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.single_post__post:nth-child(even) .blog__link {
  color: #C94DA8 !important;
}

.single_post__img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  margin: 0 0 8px 0;
}

.single_post__link {
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 10px 0;
  text-decoration: none;
  outline: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}

.single_post__poster {
  border-radius: 20px;
  overflow: clip;
}

.single_post__poster img {
  display: block;
}


.single_post__container {
  width: 100%;
  max-width: 1100px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-gap: 15px;
  margin: 10px 0 40px 0;
}

@media only screen and (max-width: 740px) {
  .single_post__container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.clips_sale_video {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 140px;
}

@media only screen and (max-width: 1600px) {
  .clips_sale_video {
    padding: 0 100px;
  }
}

@media only screen and (max-width: 1200px) {
  .clips_sale_video {
    padding: 0 50px;
  }
}

@media only screen and (max-width: 900px) {
  .clips_sale_video {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 700px) {
  .clips_sale_video {
    padding: 0 10px;
  }
}

.clips_sale_video__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .clips_sale_video__h1 {
    margin: 15px 0 0 0;
  }
}

.clips_sale_video__hr {
  margin: 3px 0 10px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.clips_sale_video__container {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.clips_sale_video__videoList {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  margin: 20px 0;
}

@media only screen and (max-width: 1000px) {
  .clips_sale_video__videoList {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 500px) {
  .clips_sale_video__videoList {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.clips_sale_video__videoElement {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}

.clips_sale_video__videoElement:nth-child(even) .videos__videoTitle {
  color: #C94DA8 !important;
}

.clips_sale_video__videoWrapper {
  width: 100%;
  outline: none;
  text-decoration: none;
}

.clips_sale_video__video {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/2;
}

.clips_sale_video__videoTitle {
  margin: 8px 0;
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  outline: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 680px) {
  .clips_sale_video__videoTitle {
    max-width: 90%;
  }
}

.clips_sale_video__info {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.clips_sale_video__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.clips_sale_video__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.clips_sale_video__models {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px 0;
}

.clips_sale_video__models .title {
  font-size: 16px;
  color: white;
  font-size: 400;
  display: inline-block;
}

.clips_sale_video__models .model {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-size: 400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}

.clips_sale_video__models .model:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale_video__timedate {
  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;
}

.clips_sale_video__timedate .date {
  margin: 0 20px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.clips_sale_video__timedate .time {
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.clips_sale_video__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 10px;
  width: 100%;
  margin: 30px 0 70px 0;
}

@media only screen and (max-width: 1050px) {
  .clips_sale_video__wrapper {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.clips_sale_video__aboutWrapper {
  width: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.clips_sale_video__infoWrapper {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 8px 0;
}

.clips_sale_video__infoWrapper--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media only screen and (max-width: 440px) {
  .clips_sale_video__infoWrapper--grid {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.clips_sale_video__redTitle {
  color: var(--clr-primary-red);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin: 0 5px 0 0;
}

.clips_sale_video__link {
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.clips_sale_video__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: var(--clr-primary-red);
}

.clips_sale_video__tagList {
  width: 100%;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.clips_sale_video__infoData {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.clips_sale_video__p {
  color: white;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

.clips_sale_video__filmWrapper {
  width: 100%;
  height: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.clips_sale_video__film {
  width: 100%;
  aspect-ratio: 4/2;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 20px;
  overflow: hidden;
}

.clips_sale_video__film iframe {
  width: 100%;
  height: 100%;
}

.clips_sale_video__filmTitle {
  margin: 20px 0;
  color: #FE0000;
  font-size: 22px;
  font-weight: 500;
}

.clips_sale_video__filmButtons {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.clips_sale_video__filmButton--saveForLaterBtn {
  background: #4D6E50;
}

.clips_sale_video__filmButton--addToCartBtn {
  background: #0A73A2;
}

.clips_sale_video__filmButton--buyNowBtn {
  background: var(--clr-primary-red);
}


.video {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}


.video__h1 {
  color: white;
  font-size: 22px;
  font-weight: 400;
  text-align: center;
}

@media only screen and (max-width: 500px) {
  .video__h1 {
    margin: 15px 0 0 0;
  }
}

.video__hr {
  margin: 3px 0 10px 0;
  background: var(--clr-primary-red);
  width: 80px;
  height: 3px;
  border-radius: 10px;
}

.video__container {
  width: 100%;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video__videoList {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 16px;
  margin: 20px 0;
}

@media only screen and (max-width: 1000px) {
  .video__videoList {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 500px) {
  .video__videoList {
    -ms-grid-columns: (minmax(0, 1fr))[1];
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.video__videoElement {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 10px 0;
}

.video__videoElement:nth-child(even) .video__videoTitle {
  color: #C94DA8 !important;
}

.video__videoWrapper {
  width: 100%;
  outline: none;
  text-decoration: none;
}

.video__video {
  border-radius: 20px 20px 0 0;
  width: 100%;
  aspect-ratio: 3/2;
}

.video__videoTitle {
  margin: 8px 0;
  color: #FE0000;
  font-size: 18px;
  font-weight: 400;
  max-width: 100%;
  outline: none;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  display: block;
}

@media only screen and (max-width: 680px) {
  .video__videoTitle {
    max-width: 90%;
  }
}

.video__info {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

.video__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.video__data {
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.video__models {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 5px 0;
}

.video__models .title {
  font-size: 16px;
  color: white;
  font-size: 400;
  display: inline-block;
}

.video__models .model {
  text-decoration: none;
  outline: none;
  font-size: 16px;
  color: white;
  font-size: 400;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  display: inline-block;
}

.video__models .model:hover {
  color: #FE0000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__timedate {
  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;
}

.video__timedate .date {
  margin: 0 20px 0 0;
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.video__timedate .time {
  color: white;
  font-size: 12px;
  font-weight: 400;
}

.video__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

@media only screen and (max-width: 1050px) {
  .video__wrapper {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.video__filmWrapper {
  width: 100%;
  height: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  gap: 1rem;
}

.video__film {
  width: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 0.5rem;
  overflow: clip;
}

.video__film iframe {
  width: 100%;
  height: 100%;
}

.video__aboutWrapper {
  width: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.video__movieTitle {
  color: #FE0000;
  font-size: 33px;
  font-weight: 400;
  line-height: 44px;
  text-transform: uppercase;
}

.video__specInfo {
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 10px 0;
}

.video__quality {
  margin: 0 30px 0 0;
  height: 39px;
  width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.video__data {
  font-size: 19px;
  font-weight: 400;
  color: white;
}

.video__data--time {
  margin: 0 0 0 30px;
}

.video__list {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  margin: 0 0 10px 0;
}

.video__listTitle {
  color: var(--clr-primary-red);
  font-size: 16px;
  font-weight: 600;
  margin: 0 5px 0 0;
}

.video__listLinks {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: white;
  line-height: 30px;
}

.video__listModel {
  outline: none;
  text-decoration: none;
  color: white;
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: -5px 5px 0 0;
}

.video__listModel:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: var(--clr-primary-red);
}

.video__downloadWrapper {
  width: 100%;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 10px 0;
}

.video__buyDvdLink {
  border-radius: 8px;
  border: 2px solid var(--clr-primary-red);
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 140px;
  height: 170px;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__buyDvdLink span {
  color: white;
  font-size: 24px;
  text-align: center;
  text-shadow: 0px 0px 6px var(--clr-primary-red);
}

.video__buyDvdLink .big {
  font-weight: 700;
}

.video__buyDvdLink .small {
  font-weight: 500;
  margin: 0 0 10px 0;
}

.video__buyDvdLink:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__downloadLinks {
  width: 100%;
  margin: 0 10px 0 0;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.video__downloadButton {
  width: 100%;
  margin: 0 0 20px 0;
  outline: none;
  text-decoration: none;
  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;
  border: 2px solid var(--clr-primary-red);
  border-radius: 10px;
  padding: 10px 18px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__downloadButton--last {
  margin: 0;
}

.video__downloadButton .small {
  font-size: 16px;
  color: white;
  font-weight: 300;
  display: block;
  margin: 0 5px 0 0;
}

.video__downloadButton .big {
  font-size: 16px;
  color: white;
  font-weight: 600;
  display: block;
  margin: 0 auto 0 0;
}

.video__downloadButton i {
  color: var(--clr-primary-red);
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__downloadButton:hover {
  background: var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__downloadButton:hover i {
  color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__bigInfo {
  outline: none;
  text-decoration: none;
  width: 100%;
  padding: 10px 20px;
  border-radius: 0.5rem;
  text-align: center;
  color: white;
  background: var(--clr-primary-red);
  font-size: 20px;
  font-weight: 400;
  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;
  border: 2px solid var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 0px 0px 8px 0px #752b61;
  box-shadow: 0px 0px 8px 0px #752b61;
}

.video__bigInfo:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: transparent;
}

.video__bigInfo .bold {
  font-weight: 600;
}

@media only screen and (max-width: 1350px) {
  .video__bigInfo {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .video__bigInfo {
    font-size: 18px;
  }
}

@media only screen and (max-width: 900px) {
  .video__bigInfo {
    font-size: 16px;
  }
}

@media only screen and (max-width: 900px) {
  .video__bigInfo {
    font-size: 16px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding: 10px 20px;
    text-align: center;
  }
}

.video__sliderWrapper {
  margin: 10px 0 20px 0;
  width: 100%;
  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;
}

.video__navBtn {
  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;
  text-align: center;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__navBtn i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: white;
  font-size: 40px;
}

.video__navBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.video__navBtn:hover i {
  color: var(--clr-primary-red);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__navBtn--prev {
  margin: 0 20px 0 0;
}

.video__navBtn--next {
  margin: 0 0 0 20px;
}

.video__slider {
  width: 100%;
  max-width: 420px;
  display: none;
  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;
}

@media only screen and (max-width: 1700px) {
  .video__slider {
    max-width: 400px;
  }
}

@media only screen and (max-width: 1600px) {
  .video__slider {
    max-width: 390px;
  }
}

@media only screen and (max-width: 1500px) {
  .video__slider {
    max-width: 370px;
  }
}

@media only screen and (max-width: 1400px) {
  .video__slider {
    max-width: 340px;
  }
}

@media only screen and (max-width: 1050px) {
  .video__slider {
    max-width: calc(100vw - 180px);
  }
}

@media only screen and (max-width: 900px) {
  .video__slider {
    max-width: calc(100vw - 160px);
  }
}

@media only screen and (max-width: 700px) {
  .video__slider {
    max-width: calc(100vw - 120px);
  }
}

.video__slider .swiper {
  width: 100%;
  height: 100%;
  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;
}

.video__slider .swiper-wrapper {
  width: 100%;
  max-width: 100%;
}

.video__slider .swiper-slide {
  width: 95px;
  height: auto;
  text-decoration: none;
  outline: none;
}

.video__slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
  border: 3px solid rgba(255, 0, 0, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.video__slider .swiper-slide img:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 3px solid var(--clr-primary-red);
  cursor: pointer;
}

.video__gallery {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[6];
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-gap: 16px;
  margin: 20px 0 80px 0;
}

@media only screen and (max-width: 1030px) {
  .video__gallery {
    -ms-grid-columns: (minmax(0, 1fr))[4];
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-gap: 8px;
  }
}

@media only screen and (max-width: 600px) {
  .video__gallery {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media only screen and (max-width: 450px) {
  .video__gallery {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.video__galleryElement {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  outline: none;
  text-decoration: none;
}

.video__galleryElement img {
  width: 100%;
  aspect-ratio: 1;
  -o-object-position: center;
  object-position: center;
  border-radius: 15px;
  border: 3px solid rgba(0, 0, 0, 0);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -o-object-fit: cover;
  object-fit: cover;
}

.video__galleryElement img:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 3px solid var(--clr-primary-red);
  cursor: pointer;
}

.fslightbox-source {
  border: 2px solid var(--clr-primary-red);
  border-radius: 4px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: rgba(0, 0, 0, 0.77);
  width: 100%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -ms-grid-rows: auto auto auto;
  grid-template-rows: auto auto auto;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  display: none;
}

@media only screen and (max-width: 1050px) {
  .popup {
    padding: 24px 0 24px 0;
    overflow-y: hidden;
    max-height: 100vh;
  }
}

.popup__container {
  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-align: safe center;
  -ms-flex-align: safe center;
  align-items: safe center;
  -webkit-box-pack: safe center;
  -ms-flex-pack: safe center;
  justify-content: safe center;
  width: 100%;
  max-width: 1340px;
  padding: 30px;
  background: #000000;
  border: 1px solid #4B4B4B;
  border-radius: 20px;
  position: relative;
}

@media only screen and (max-width: 1050px) {
  .popup__container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    padding: 30px 10px 20px 10px;
    border-radius: 10px;
    height: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
  }
}

.popup__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
  grid-template-columns: 2fr 1fr;
  grid-gap: 10px;
  width: 100%;
}

@media only screen and (max-width: 1050px) {
  .popup__wrapper {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.popup__aboutWrapper {
  width: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.popup__infoWrapper {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  margin: 0 0 8px 0;
}

.popup__infoWrapper--4k {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.popup__infoWrapper--grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[2];
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media only screen and (max-width: 440px) {
  .popup__infoWrapper--grid {
    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-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.popup__redTitle {
  color: var(--clr-primary-red);
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin: 0 5px 0 0;
}

.popup__link {
  color: white;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.popup__link:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: var(--clr-primary-red);
}

.popup__tagList {
  width: 100%;
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.popup__infoData {
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.popup__p {
  color: white;
  width: 100%;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
}

.popup__filmWrapper {
  width: 100%;
  height: 100%;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.popup__film {
  width: 100%;
  height: auto;
  aspect-ratio: 4/2;
  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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 20px;
  overflow: hidden;
}

.popup__film iframe {
  width: 100%;
  height: 100%;
}

.popup__filmTitle {
  margin: 20px 0;
  color: #FE0000;
  font-size: 22px;
  font-weight: 500;
}

.popup__filmButtons {
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
}

@media only screen and (max-width: 550px) {
  .popup__filmButtons {
    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;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.popup__filmButton {
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  background: none;
  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;
  outline: none;
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.popup__filmButton i {
  font-size: 16px;
  margin: 0 20px 0 0;
}

.popup__filmButton:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  background: transparent;
}

.popup__filmButton--saveForLaterBtn {
  border: 2px solid #4D6E50;
  background: #4D6E50;
  margin: 0 auto 0 0;
}

.popup__filmButton--addToCartBtn {
  background: #0A73A2;
  border: 2px solid #0A73A2;
  margin: 0 30px 0 0;
}

.popup__filmButton--buyNowBtn {
  background: var(--clr-primary-red);
  border: 2px solid var(--clr-primary-red);
}

@media only screen and (max-width: 620px) {
  .popup__filmButton {
    font-size: 14px;
  }

  .popup__filmButton i {
    font-size: 14px;
  }
}

@media only screen and (max-width: 550px) {
  .popup__filmButton {
    margin: 8px 0;
  }
}

.popup__seeMoreBtn {
  width: 100%;
  margin: 30px 0 0 0;
  border: none;
  background: none;
  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;
  outline: none;
  color: white;
  font-size: 14px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.popup__seeMoreBtn hr {
  width: 100%;
  height: 1px;
  background: #707070;
}

.popup__seeMoreBtn span {
  margin: 0 34px;
  white-space: nowrap;
  display: block;
}

.popup__seeMoreBtn:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}

.popup__seeMoreWrapper {
  padding: 30px 0 0 0;
  width: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition-property: max-height;
  transition-property: max-height;
  -webkit-transition-duration: 0.6s;
  transition-duration: 0.6s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.popup__seeMoreWrapper--active {
  max-height: 500px;
}

@media only screen and (max-width: 1050px) {
  .popup__seeMoreWrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    padding: 20px 0 0 0;
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
  }

  .popup__seeMoreWrapper--active {
    max-height: 1000px;
  }
}

.popup__seeMoreLink {
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid rgba(255, 0, 0, 0);
  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;
  border-radius: 20px;
}

.popup__seeMoreLink:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border: 2px solid var(--clr-primary-red);
}

.popup__seeMoreLink img {
  width: 212px;
  height: 141px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 20px;
}

@media only screen and (max-width: 530px) {
  .popup__seeMoreLink {
    width: 100%;
  }

  .popup__seeMoreLink img {
    width: 100%;
    height: auto;
    aspect-ratio: 3/2;
  }
}

.popup__closeBtn {
  position: absolute;
  right: 20px;
  top: 15px;
  background: none;
  outline: none;
}

@media only screen and (max-width: 1050px) {
  .popup__closeBtn {
    right: 10px;
    top: 10px;
  }
}

.popup__closeBtn i {
  color: white;
  font-size: 13px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.popup__closeBtn:hover {
  cursor: pointer;
}

.popup__closeBtn:hover i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: var(--clr-primary-red);
}

.popup__prev {
  margin: 0 10px 0 0;
  border: none;
  background: none;
  padding: 10px;
}

.popup__prev:hover {
  opacity: 0.5;
  cursor: pointer;
}

.popup__prev img {
  height: 90px;
}

@media only screen and (max-width: 1050px) {
  .popup__prev {
    margin: 0 8px 0 0;
    padding: 0 0 0 10px;
  }

  .popup__prev img {
    height: 60px;
  }
}

.popup__next {
  border: none;
  background: none;
  padding: 10px;
  margin: 0 0 0 10px;
}

.popup__next:hover {
  opacity: 0.5;
  cursor: pointer;
}

.popup__next img {
  height: 90px;
}

@media only screen and (max-width: 1050px) {
  .popup__next {
    margin: 0 0 0 8px;
    padding: 0 10px 0 0;
  }

  .popup__next img {
    height: 60px;
  }
}

.popup__quality {
  margin: 0 10px 0 0;
  height: 39px;
  width: 39px;
  min-height: 39px;
  min-width: 39px;
  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;
  text-align: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 1000;
  color: white;
  border: 2px solid #3B3B3B;
  background: #4a4a4a;
  background: linear-gradient(135deg, #4a4a4a 50%, #5a5a5a 50%);
}

.categories-section {
  width: 100%;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.categories-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #FFFFFF;
  text-transform: uppercase;
}

.categories-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.category-column {
  list-style: none;
  padding: 0;
  margin: 0;
  width: calc(20% - 20px);
  /* Adjust width for spacing */
  text-align: left;
}

.category-column li {
  margin-bottom: 10px;
  font-size: 16px;
}

.category-column a {
  text-decoration: none;
  color: #FFFFFF;
  /* Default link color */
  text-transform: uppercase;
  /* All letters uppercase */
  font-weight: bold;
}

.category-column a:hover {
  color: #007BFF;
  /* Change color on hover */
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .category-column {
    width: calc(25% - 20px);
  }
}

@media (max-width: 768px) {
  .category-column {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .category-column {
    width: 100%;
  }
}


#thisPlayer {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

#fluid_video_wrapper_thisPlayer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.fluid_timeline_preview_container {
  border: none !important;
}

.forum-search {
  flex: 1 0 100%;
  max-width: 100%;
  margin-bottom: 15px
}

@media (min-width: 1294px) {
  .forum-search {
    max-width: 50%
  }
}

.forum-search-wrap {
  display: flex;
  align-items: center;
  border-radius: 20em;
  height: 45px;
  border: 1px solid #dedede;
  background-color: #ffffff
}

.forum-search-wrap .bootstrap-select {
  flex: 0 0 105px;
  position: relative
}

.forum-search-wrap .bootstrap-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 23px;
  background-color: #dedede
}

.forum-search-wrap button.btn-selectpicker {
  border: 0;
  background-color: transparent
}

.forum-search-wrap input[type="text"] {
  border: 0;
  background-color: transparent
}

.forum-actions {
  flex: 1 0 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center
}

@media (min-width: 1294px) {
  .forum-actions {
    max-width: 50%;
    padding-left: 40px
  }
}

@media (max-width: 1293px) {
  .forum-actions {
    margin-left: -6px;
    margin-right: -6px
  }
}

.forum-actions .forum-action {
  flex: 1 0 33.333334%;
  margin-bottom: 15px
}

@media (min-width: 1294px) {
  .forum-actions .forum-action {
    padding-left: 20px
  }
}

@media (max-width: 1293px) {
  .forum-actions .forum-action {
    padding: 0 6px
  }
}

.forum-actions .btn.btn-darkblue {
  display: block;
  font-size: 18px;
  font-weight: 500;
  padding: 0 10px
}

.new-thread-col {
  display: none
}

.new-thread-col.active {
  display: block
}

.new-thread-col form {
  margin-bottom: 45px;
  display: flex;
  flex-wrap: wrap
}

.new-poll {
  display: none;
  flex: 1 0 100%;
  flex-wrap: wrap
}

.new-poll.active {
  display: flex
}

.threads-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px
}

.threads-label {
  font-size: 24px;
  font-weight: 500
}

.threads-label.-title {
  flex: 1
}

.threads-label.-rating {
  display: none
}

@media (min-width: 768px) {
  .threads-label.-rating {
    flex: 0 0 100px;
    display: block
  }
}

@media (min-width: 1040px) {
  .threads-label.-rating {
    flex-basis: 120px
  }
}

.threads-label.-views {
  display: none
}

@media (min-width: 768px) {
  .threads-label.-views {
    flex: 0 0 170px;
    display: block
  }
}

@media (min-width: 1040px) {
  .threads-label.-views {
    flex-basis: 180px
  }
}

.threads-label.-last {
  display: none
}

@media (min-width: 768px) {
  .threads-label.-last {
    flex: 0 0 200px;
    display: block
  }
}

@media (min-width: 1040px) {
  .threads-label.-last {
    flex-basis: 250px
  }
}

.threads-label:not(.-title) {
  padding: 0 10px
}

@media (min-width: 1040px) {
  .threads-label:not(.-title) {
    padding: 0 15px
  }
}

.thread-item {
  display: flex;
  margin-bottom: 20px;
  font-size: 16px
}

.thread-item a {
  font-size: 18px;
  font-weight: 600;
  color: #005a9b
}

.thread-item a:hover {
  color: #00aeef
}

.thread-item .sub-label a {
  font-size: 16px;
  font-weight: 400;
  color: #000000
}

.thread-item .sub-label a:hover {
  color: #00aeef
}

.thread-item+.thread-item {
  padding-top: 20px;
  border-top: 1px solid #dedede
}

.thread-title {
  flex: 1;
  overflow: hidden
}

.thread-title>a {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%
}

.thread-rating {
  display: none
}

@media (min-width: 768px) {
  .thread-rating {
    flex: 0 0 100px;
    display: block;
    padding: 0 15px
  }
}

@media (min-width: 1040px) {
  .thread-rating {
    flex-basis: 120px
  }
}

.thread-views {
  display: none
}

@media (min-width: 768px) {
  .thread-views {
    flex: 0 0 170px;
    display: block;
    padding: 0 15px
  }
}

@media (min-width: 1040px) {
  .thread-views {
    flex-basis: 180px
  }
}

.thread-last {
  display: none
}

@media (min-width: 768px) {
  .thread-last {
    padding: 0 15px;
    overflow: hidden;
    flex: 0 0 200px;
    display: block
  }
}

@media (min-width: 1040px) {
  .thread-last {
    flex-basis: 250px
  }
}

.thread-last>a {
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%
}

.thread-rating-col,
.thread-poll-col {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  margin-bottom: 10px
}

@media (min-width: 768px) {

  .thread-rating-col,
  .thread-poll-col {
    align-items: center;
    flex-direction: row
  }
}

.thread-rating-col .label,
.thread-poll-col .label {
  flex: 1 0 100%;
  font-size: 16px;
  font-weight: 600;
  color: #005a9b;
  margin-bottom: 10px
}

.thread-rating-col .checkbox,
.thread-poll-col .checkbox {
  margin-bottom: 5px
}

@media (min-width: 768px) {

  .thread-rating-col .checkbox+.checkbox,
  .thread-poll-col .checkbox+.checkbox {
    margin-left: 30px
  }
}

.thread-poll-col {
  margin-bottom: 20px
}

.thread-col {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px
}

.thread-user {
  flex: 0 0 70px;
  padding-right: 10px;
  margin-bottom: 20px
}

@media (min-width: 768px) {
  .thread-user {
    flex-basis: 120px
  }
}

.thread-user .avatar {
  display: block;
  margin-bottom: 2px
}

.thread-user .avatar a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 11px;
  width: 50px;
  height: 50px
}

@media (min-width: 768px) {
  .thread-user .avatar a {
    width: 100px;
    height: 100px;
    border-radius: 21px
  }
}

.thread-user .avatar img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

.thread-user .name a {
  font-size: 12px;
  font-weight: 700;
  color: #005a9b
}

.thread-user .name a:hover {
  color: #0078ce
}

.thread-user .info {
  font-size: 12px
}

.thread-content {
  flex: 1
}

.thread-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px
}

.thread-header .thread-inner-header {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline
}

.thread-header h1,
.thread-header h2,
.thread-header h3,
.thread-header h4,
.thread-header h5,
.thread-header h6 {
  font-size: 18px;
  font-weight: 700;
  margin-right: 30px
}

.thread-header .thread-date {
  margin-right: 20px;
  font-size: 12px
}

.thread-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center
}

.thread-vote {
  display: inline-flex;
  align-items: center;
  margin-right: 8px
}

.thread-vote .rate {
  border: 0 none;
  padding: 0 7px 0 6px;
  width: 29px;
  color: #005a9b
}

.thread-vote .rate:hover {
  color: #0078ce
}

.thread-vote .rate.down {
  margin-left: 0
}

.thread-vote .rate.down svg {
  transform: rotate(180deg)
}

.thread-vote .current-rating {
  color: #005a9b;
  margin-left: 2px;
  font-size: 16px
}

.thread-edit,
.thread-delete,
.thread-report {
  margin-left: 22px
}

.thread-edit a,
.thread-delete a,
.thread-report a {
  display: block;
  color: #005a9b;
  font-size: 16px
}

.thread-edit a:hover,
.thread-delete a:hover,
.thread-report a:hover {
  color: #0078ce
}

.thread-text {
  font-size: 16px
}

.thread-reply-col {
  padding-bottom: 28px
}


.join-sec .title-col h1,
.join-sec .title-col h2,
.join-sec .title-col h3,
.join-sec .title-col h4,
.join-sec .title-col h5,
.join-sec .title-col h6 {
  font-size: 22px;
  font-weight: 500
}

.join-sec-2 {
  padding-top: 36px
}

.join-sec-2 .wrapper {
  max-width: 1140px;
  margin-inline: auto;
}

.plan-item-col .price,
.plan-info {
  padding: 1rem;
}


@media (max-width: 767px) {
  .plans-col:not(.-selected)>.inner-col {
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.13)
  }
}

@media (max-width: 640px) {
  .plans-col:not(.-selected)>.inner-col {
    box-shadow: 0px 0px 3.594vw 0px rgba(0, 0, 0, 0.13)
  }
}


.plans-col.-selected .row {
  justify-content: center
}

.plan-item-col {
  max-width: 100%
}

@media (min-width: 768px) {
  .plan-item-col {
    max-width: 33.333334%
  }

  .plan-item-col:not(.-selected)>.inner-col:hover {
    box-shadow: 0px 0px 29px 0px rgba(87, 2, 40, 0.44)
  }
}



.plan-item-col>.inner-col {
  height: 100%
}

@media (min-width: 768px) {
  .plan-item-col>.inner-col {
    text-align: center;
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
  }

  .plan-info {
    flex: 1;
  }
}

@media (max-width: 767px) {
  .plan-item-col>.inner-col {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
}


@media (max-width: 767px) {
  .plan-item-col.-selected {
    margin-bottom: 20px
  }

  .plan-item-col.-selected>.inner-col {
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.13);
    padding: 15px 20px
  }
}

@media (max-width: 640px) {
  .plan-item-col.-selected {
    margin-bottom: 3.125vw
  }

  .plan-item-col.-selected>.inner-col {
    box-shadow: 0px 0px 3.594vw 0px rgba(0, 0, 0, 0.13);
    padding: 2.344vw 3.125vw
  }
}

.plan-item-col .image {
  display: none
}

@media (min-width: 768px) {
  .plan-item-col .image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 344/155;
    margin-bottom: 25px
  }

  .plan-item-col .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
  }
}

.plan-item-col .name {
  margin-bottom: 2rem
}

.plan-item-col .name .label {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
}

.plan-item-col .name .sub-label {
  font-size: 24px
}


.plan-item-col .features li {
  color: #ffffffa3;
  list-style: none;
  line-height: 1.5;
  margin-block: 0.5em;
}

.plan-item-col .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.plan-item-col .price .label {
  font-size: 57px;
  font-weight: 700
}



.plan-item-col .price .label .super {
  vertical-align: super
}

.plan-item-col .price .label .super:first-child {
  font-size: 30px;
  font-weight: 400
}


.plan-item-col .price .label .super:last-child {
  font-size: 26px
}


.plan-item-col .price .desc {
  font-size: 18px;
}



.plan-item-col .btn.btn-green-solid {
  display: block;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px;
}


.access-item-col {
  max-width: 100%
}

@media (min-width: 768px) {
  .access-item-col {
    max-width: 33.333334%
  }
}

.access-item-col>.inner-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  height: 100%;
  box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.13)
}

@media (max-width: 640px) {
  .access-item-col>.inner-col {
    box-shadow: 0px 0px 3.594vw 0px rgba(0, 0, 0, 0.13)
  }
}

.access-item-col>.inner-col>.label {
  font-size: 22px;
  font-weight: 700;
  padding: 0 20px;
  margin-bottom: 15px;
  text-align: center
}

@media (max-width: 767px) {
  .access-item-col>.inner-col>.label {
    margin-top: 30px
  }
}

@media (max-width: 640px) {
  .access-item-col>.inner-col>.label {
    font-size: 3.438vw;
    padding: 0 3.125vw;
    margin-top: 4.688vw;
    margin-bottom: 2.344vw
  }
}

.access-item-col .payment-icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 0
}

@media (max-width: 767px) {
  .access-item-col .payment-icons {
    order: 2;
    padding: 40px 20px 30px;
    justify-content: space-evenly
  }
}

@media (max-width: 640px) {
  .access-item-col .payment-icons {
    padding: 6.250vw 3.125vw 4.688vw
  }
}

.access-item-col .payment-item:nth-child(1) {
  width: 64px
}

.access-item-col .payment-item:nth-child(2) {
  width: 24px
}

.access-item-col .payment-item:nth-child(3) {
  width: 36px
}

.access-item-col .payment-item:nth-child(4) {
  width: 63px
}

.access-item-col .payment-item:nth-child(5) {
  width: 62px
}

.access-item-col .payment-item:nth-child(6) {
  width: 88px
}

.access-item-col .payment-item:nth-child(7) {
  width: 24px
}

.access-item-col .payment-item:nth-child(8) {
  width: 47px
}

.access-item-col .payment-item:nth-child(9) {
  width: 83px
}

@media (max-width: 640px) {
  .access-item-col .payment-item {
    height: 4.219vw;
    margin-bottom: 1.563vw;
    padding: 0 0.781vw
  }

  .access-item-col .payment-item:nth-child(1) {
    width: 17.500vw
  }

  .access-item-col .payment-item:nth-child(2) {
    width: 6.563vw
  }

  .access-item-col .payment-item:nth-child(3) {
    width: 9.844vw
  }

  .access-item-col .payment-item:nth-child(4) {
    width: 17.344vw
  }

  .access-item-col .payment-item:nth-child(5) {
    width: 16.719vw
  }

  .access-item-col .payment-item:nth-child(6) {
    width: 24.219vw
  }

  .access-item-col .payment-item:nth-child(7) {
    width: 6.250vw
  }

  .access-item-col .payment-item:nth-child(8) {
    width: 12.969vw
  }

  .access-item-col .payment-item:nth-child(9) {
    width: 28.438vw
  }
}

.access-item-col form {
  flex: 1;
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column
}

@media (max-width: 640px) {
  .access-item-col form {
    padding: 0 3.125vw 3.125vw
  }
}

.access-item-col form .form-item:last-child {
  margin-top: auto;
  margin-bottom: 0
}

@media (max-width: 640px) {
  .access-item-col form .form-item {
    margin-bottom: 2.344vw
  }
}

.access-item-col form .form-item>label,
.access-item-col form .form-item>.label {
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px
}

@media (max-width: 640px) {

  .access-item-col form .form-item>label,
  .access-item-col form .form-item>.label {
    font-size: 2.500vw;
    margin-bottom: 1.563vw
  }
}

.access-item-col input[type="text"],
.access-item-col input[type="email"],
.access-item-col input[type="password"] {
  border-radius: 0;
  border-width: 2px;
  border-color: #ececec;
  height: 52px;
  line-height: 48px;
  text-align: center
}

.access-item-col input[type="text"]:-moz-placeholder,
.access-item-col input[type="email"]:-moz-placeholder,
.access-item-col input[type="password"]:-moz-placeholder {
  opacity: 1;
  color: #000000
}

.access-item-col input[type="text"]::-moz-placeholder,
.access-item-col input[type="email"]::-moz-placeholder,
.access-item-col input[type="password"]::-moz-placeholder {
  opacity: 1;
  color: #000000
}

.access-item-col input[type="text"]:-ms-input-placeholder,
.access-item-col input[type="email"]:-ms-input-placeholder,
.access-item-col input[type="password"]:-ms-input-placeholder {
  opacity: 1;
  color: #000000
}

.access-item-col input[type="text"]::-webkit-input-placeholder,
.access-item-col input[type="email"]::-webkit-input-placeholder,
.access-item-col input[type="password"]::-webkit-input-placeholder {
  opacity: 1;
  color: #000000
}

@media (max-width: 640px) {

  .access-item-col input[type="text"],
  .access-item-col input[type="email"],
  .access-item-col input[type="password"] {
    border-width: 0.313vw;
    height: 8.125vw;
    line-height: 7.500vw;
    padding: 0 3.125vw;
    font-size: 2.813vw
  }
}

.access-item-col .checkbox label .sub-label {
  line-height: 1;
  padding-left: 30px
}

.access-item-col .checkbox label .sub-label::before {
  width: 17px;
  height: 17px;
  top: 0;
  transform: none;
  border-width: 2px
}

.access-item-col .checkbox label .sub-label::after {
  width: 9px;
  height: 9px;
  top: 4px;
  left: 4px;
  transform: none
}

@media (max-width: 640px) {
  .access-item-col .checkbox label .sub-label {
    padding-left: 4.688vw;
    font-size: 2.500vw
  }

  .access-item-col .checkbox label .sub-label::before {
    width: 2.656vw;
    height: 2.656vw;
    border-width: 0.313vw
  }

  .access-item-col .checkbox label .sub-label::after {
    width: 1.406vw;
    height: 1.406vw;
    top: 0.625vw;
    left: 0.625vw
  }
}

.access-item-col small,
.access-item-col .small {
  font-size: 11px;
  line-height: 1.1
}

@media (max-width: 640px) {

  .access-item-col small,
  .access-item-col .small {
    font-size: 1.719vw
  }
}

.access-item-col .btn.btn-blue-g {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  text-transform: uppercase;
  font-size: 33px;
  font-weight: 700;
  padding: 0 10px;
  width: 100%;
  white-space: normal
}

@media (max-width: 767px) {
  .access-item-col .btn.btn-blue-g {
    max-width: 310px;
    margin: 0 auto
  }
}

@media (max-width: 640px) {
  .access-item-col .btn.btn-blue-g {
    min-height: 12.500vw;
    font-size: 5.156vw;
    padding: 0 1.563vw;
    max-width: 48.438vw
  }
}

.access-item-col .radios-inline {
  display: flex;
  align-items: center;
  margin-left: -7px;
  margin-right: -7px
}

@media (max-width: 640x) {
  .access-item-col .radios-inline {
    margin-left: -1.094vw;
    margin-right: -1.094vw
  }
}

.access-item-col .radios-inline .radio {
  flex: 1 0 50%;
  padding: 0 7px
}

@media (max-width: 640px) {
  .access-item-col .radios-inline .radio {
    padding: 0 1.094vw
  }
}

.access-item-col .radios-inline .radio label {
  display: block
}

.access-item-col .radios-inline .radio label .sub-label {
  padding: 0 10px;
  text-align: center;
  border: 2px solid #efefef;
  border-radius: 20em;
  color: #b4b4b4;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 17px;
  height: 33px;
  line-height: 29px
}

.access-item-col .radios-inline .radio label .sub-label::before,
.access-item-col .radios-inline .radio label .sub-label::after {
  display: none
}

@media (max-width: 640px) {
  .access-item-col .radios-inline .radio label .sub-label {
    padding: 0 1.563vw;
    border-width: 0.313vw;
    font-size: 2.656vw;
    height: 5.156vw;
    line-height: 4.531vw
  }
}

.access-item-col .radios-inline .radio label input[type="radio"]:checked+.sub-label {
  background-color: #00aeef;
  border-color: #00aeef;
  color: #ffffff
}

.join-info-col {
  text-align: center;
}

.join-info-col h1,
.join-info-col h2,
.join-info-col h3,
.join-info-col h4,
.join-info-col h5,
.join-info-col h6 {
  font-size: 66px;
  font-weight: 900;
  margin-bottom: 15px
}

@media (max-width: 640px) {

  .join-info-col h1,
  .join-info-col h2,
  .join-info-col h3,
  .join-info-col h4,
  .join-info-col h5,
  .join-info-col h6 {
    font-size: 10.313vw;
    margin-bottom: 2.344vw;
    white-space: nowrap
  }
}

.join-info-col>.label {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 20px
}


.join-info-col .access-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row
}

.join-info-col .access-list li+li::before {
  content: "|";
  margin: 0 15px;
  color: #ef6aa6
}

@media (max-width: 640px) {
  .join-info-col .access-list li+li::before {
    margin: 0 2.344vw
  }
}

@media (max-width: 640px) {
  .join-info-col .access-list li {
    font-size: 3.125vw;
    line-height: 5.625vw
  }
}

.join-info-col .security {
  max-width: 778px;
  margin: 25px auto 30px;
  background: #ef6aa6;
  background: -moz-linear-gradient(top, #ef6aa6 0%, #e95ca5 100%);
  background: -webkit-linear-gradient(top, #ef6aa6 0%, #e95ca5 100%);
  background: linear-gradient(to bottom, #ef6aa6 0%, #e95ca5 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  padding: 10px 5px
}

@media (min-width: 641px) {
  .join-info-col .security {
    padding: 10px 25px
  }
}

@media (max-width: 640px) {
  .join-info-col .security {
    padding: 1.563vw 3.906vw;
    margin: 3.906vw auto 4.688vw
  }
}

.join-info-col .security .img-holder {
  margin: 0 10px
}

@media (min-width: 641px) {
  .join-info-col .security .img-holder {
    margin: 0 30px
  }
}

@media (max-width: 640px) {
  .join-info-col .security .img-holder {
    margin: 0 4.688vw
  }
}

.join-info-col .security .label {
  flex: 1;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase
}

@media (max-width: 640px) {
  .join-info-col .security .label {
    font-size: 3.438vw
  }
}

.join-info-col .disclaimer {
  margin: 0 auto 35px;
  max-width: 970px;
  font-size: 20px;
  line-height: 1.2
}

@media (max-width: 640px) {
  .join-info-col .disclaimer {
    margin: 0 auto 5.469vw;
    font-size: 3.125vw
  }
}

.join-info-col .ribbons {
  display: flex;
  align-items: center;
  justify-content: center
}

.join-info-col .ribbon-item {
  padding: 0 15px;
  margin-bottom: 15px;
  display: inline-flex;
  flex-direction: column;
  align-items: center
}

@media (max-width: 640px) {
  .join-info-col .ribbon-item {
    padding: 0 2.344vw;
    margin-bottom: 2.344vw
  }
}

.join-info-col .ribbon-item .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00477a;
  margin-bottom: 5px
}

@media (max-width: 640px) {
  .join-info-col .ribbon-item .label {
    font-size: 1.875vw;
    margin-bottom: 0.781vw
  }
}

.join-info-col .ribbon-item .img2svg {
  display: block;
  width: 75px
}

@media (max-width: 640px) {
  .join-info-col .ribbon-item .img2svg {
    width: 11.719vw
  }
}

@media (max-width: 640px) {

  .join-sec .title-col h1,
  .join-sec .title-col h2,
  .join-sec .title-col h3,
  .join-sec .title-col h4,
  .join-sec .title-col h5,
  .join-sec .title-col h6 {
    font-weight: 700;
    font-size: 3.438vw
  }

  .plans-col:not(.-selected)>.inner-col {
    box-shadow: 0px 0px 3.594vw 0px rgba(0, 0, 0, 0.13)
  }
}




@media (max-width: 640px) {
  .plan-item-col .features {
    font-size: 2.188vw
  }

  .plan-item-col .price .label {
    font-size: 8.906vw
  }
}

body:has(#mb_age_warning) :is(header, main, section, footer) {
  visibility: hidden;
}

.cms__content ul,
.cms__content ol {
  padding-left: 1.25rem;
}

.login__form > *+*,
.cms__content>*+* {
  margin-top: 1rem;
}


.accordion>*+* {
  margin-top: 1.5rem;
}

details>* {
  padding: 1rem 1.5rem;
}

details {
  background: var(--clr-primary-dark);
  border: 1px solid var(--clr-secondary-dark);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s ease;
}


summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  background: var(--clr-secondary-dark);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

.video__actions {
  width: 100%;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}



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

  .main__videoList .video__actions>*,
  .main__videoList .video__actions .btn-solid {
    width: 100%;
  }
}

.price-highlight {
  display: inline-block;
  padding: 0.1em 0.5em;
  border-radius: 0.2em;
  line-height: 1.5;
  color: var(--clr-pink-light);
  background: var(--clr-brown3);
}




.select2-search--dropdown .select2-search__field,
.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option[data-selected=true] {
  background-color: var(--dark);
  color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background: #145954;
}

.select2-container--default .select2-selection--single .select2-selection__rendered,
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered {
  color: #fff;
}

.select2-dropdown,
.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #343434;
}


#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text,
.select2-dropdown,
.select2-container--default .select2-selection--single,
.woocommerce form .form-row .input-text,
.woocommerce form .form-row select,
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__rendered,
.login__input {
  width: 100%;
  color: #fff;
  outline: none;
  font-size: 1rem;
  font-weight: normal;
  background: #262626;
  border: none !important;
  line-height: inherit;
  padding: 0.75em 1em;
  line-height: inherit;
  height: auto;
}


.select2-search--dropdown .select2-search__field {
  padding: 0.25em 1em;
  line-height: inherit;
}


.woocommerce-page table.cart td.actions .coupon .button,
#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  width: auto;
}

.login__input::placeholder {
  color: #fff !important;
  opacity: 1;
}


.login__submit,
.form-btn {
  text-decoration: none;
  text-transform: lowercase;
  color: white;
  background: var(--clr-primary-red);
  outline: none;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.login__submit:hover,
.form-btn:hover {
  background: var(--clr-brown3);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.login__unlimited {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 30px 0;
  gap: 30px;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  font-size: 14px;
}

.woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 100%;
}

@media only screen and (max-width: 780px) {
  .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}


.my-profile .woocommerce {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}


.user-aside {
  background: #145954;
  padding-bottom: 10px;
}

.user-avatar {
  display: flex;
  align-items: center;
  padding: 20px;
}

.user-name {
  color: #fff;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: normal;
  font-style: normal;
  text-align: left;
}

.user-avatar .image {
  display: block;
  position: relative;
  width: 90px;
  height: 90px;
  overflow: hidden;
  margin-right: 30px;
  background: #fff;
}

.user-avatar .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 10px;
}


.woocommerce-MyAccount-navigation a,
.user-actions a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 12px 48px;
  text-decoration: none;
  color: #fff;
  font-weight: normal;
  transition: all 0.3s ease-in-out;
}

.woocommerce-MyAccount-navigation-link.is-active a,
.woocommerce-MyAccount-navigation a:hover,
.user-actions a:hover {
  background: var(--clr-primary-red);
}

.woocommerce-MyAccount-navigation ul {
  max-width: 350px;
  list-style: none;
  background: var(--clr-secondary-dark);
}

.woocommerce-MyAccount-content.woocommerce-MyAccount-content>*+* {
  margin-top: 2rem;
}

.woocommerce-Address.woocommerce-Address {
  padding: 1.25rem;
  background: var(--clr-secondary-dark);
  border-radius: 0.25rem;
  overflow: clip;
}

.user-info {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  flex: 1 1 auto;
  flex-direction: column;
}

.user-menu {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
  gap: 20px;
}

.user-menu .form-btn {
  text-align: center;
  background: var(--clr-secondary-dark);
  filter: none;
}

.user-menu .form-btn:hover {
  background: var(--clr-primary-red);
}


@media (max-width: 920px) {
  .my-profile .woocommerce {
    display: flex;
    flex-direction: column;
  }

  .user-menu .form-btn {
    font-size: 14px;
  }

  .user-avatar {
    flex-direction: column;
  }

  .user-avatar .image {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .btn-icon {
    width: 15px;
    height: 15px;
    margin-right: 4px;
  }

  .woocommerce-MyAccount-navigation ul {
    max-width: none;
  }

  .woocommerce-MyAccount-navigation a {
    padding: 12px 24px;
  }
}


.woocommerce-error.woocommerce-error,
.woocommerce-info.woocommerce-info,
.woocommerce-message.woocommerce-message {
  border-top-color: var(--clr-pink);
  background-color: var(--clr-brown3);
  color: #fff;
}

.woocommerce-error.woocommerce-error::before,
.woocommerce-info.woocommerce-info::before,
.woocommerce-message.woocommerce-message::before {
  color: var(--clr-pink);
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  padding: 1em;
  color: #fff;
  background-color: var(--clr-primary-red);
  border-radius: 0.5rem;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:hover {
  background-color: #dcd7e2;
  color: #515151;
}


.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled[disabled] {
  padding: 1em;
}

.woocommerce form .form-row.notes,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last,
.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first,
.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
  display: block;
}


.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  width: 100%;
  float: none;
  margin-bottom: 1rem;
}


.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  flex-shrink: 0;
}

.shop_table thead {
  background-color: var(--dark);
}

.payment_method_epoch_dynamic p {
  margin-top: 0;
}

li[data-id="billing_state"] {
  padding-left: 25px !important;
}


.woocommerce form .form-row {
  margin-bottom: 1rem;
}

.woocommerce table.shop_table,
.woocommerce table.shop_table td,
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-color: #141414;
}

.woocommerce table.shop_table th {
  font-weight: 400;
}


.woocommerce table.shop_table th,
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot th {
  font-weight: 400;
  color: #8b8b8b;
}

.woocommerce-checkout h3 {
  color: var(--clr-primary-red);
}

@media(max-width: 768px) {
  .woocommerce form .form-row {
    flex-wrap: wrap;
  }

  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    float: none;
    display: block;
    text-align: left !important;
    font-size: 14px;
    color: #5f5f5f;
    font-weight: normal;
  }

  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    text-align: left !important;
  }
}


.woocommerce.woocommerce form .show-password-input::before,
.woocommerce-page.woocommerce-page form .show-password-input::before {
  filter: invert(1);
}



.coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}


.woocommerce #content table.cart td.actions .coupon::after,
.woocommerce #content table.cart td.actions .coupon::before,
.woocommerce table.cart td.actions .coupon::after,
.woocommerce table.cart td.actions .coupon::before,
.woocommerce-page #content table.cart td.actions .coupon::after,
.woocommerce-page #content table.cart td.actions .coupon::before,
.woocommerce-page table.cart td.actions .coupon::after,
.woocommerce-page table.cart td.actions .coupon::before {
  display: none;
}

.woocommerce.woocommerce a.remove {
  line-height: 0.85;
}