@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@font-face {
  font-family: "coluna";
  src: url("fonts/Coluna_Rounded.otf") format("embedded-opentype"), url("fonts/Coluna_Rounded.otf") format("woff2"), url("fonts/Coluna_Rounded.otf") format("woff"), url("fonts/Coluna_Rounded.otf") format("truetype"), url("fonts/Coluna_Rounded.otf") format("svg"); /* Legacy iOS */
}
.fixed-header {
  position: relative;
  width: 100%;
  height: 82px;
}
@media only screen and (max-width: 1250px) {
  .fixed-header {
    height: 60px;
  }
}

.header {
  width: 100%;
  background: #111111;
  position: fixed;
  top: 0;
  left: 0;
  height: 82px;
  z-index: 9999999;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
}
@media only screen and (max-width: 1250px) {
  .header {
    padding: 5px 10px;
    height: 60px;
  }
}
.header__logo {
  outline: none;
  text-decoration: none;
  margin: 0 10px 0 0;
  display: flex;
}
.header__logo img {
  height: 60px;
}
@media only screen and (max-width: 1340px) {
  .header__logo img {
    height: 40px;
  }
}
@media only screen and (max-width: 360px) {
  .header__logo img {
    height: 30px;
  }
}
.header__socials {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header__socials .header__socials-item {
  padding: 0 4px;
}
.header__socials .header__socials-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #ed1c24;
  font-size: 19px;
  text-decoration: none;
}
.header__socials .header__socials-item a:hover {
  opacity: 0.6;
}
.header__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-left: auto;
}
@media only screen and (max-width: 1250px) {
  .header__nav {
    gap: 10px;
  }
}
@media only screen and (max-width: 1190px) {
  .header__nav {
    position: absolute;
    top: 100%;
    height: calc(100vh - 60px);
    background: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: safe center;
    justify-content: flex-start;
    transition: 0.4s;
    transform: translateX(100vw);
    background: #111111;
    padding: 30px 0 0 0;
  }
  .header__nav.active {
    transition: 0.4s;
    transform: translateX(0);
  }
}
.header__link {
  outline: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: white;
  transition: 0.4s;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  text-transform: uppercase;
  gap: 4px;
}
.header__link:hover {
  border-bottom: 2px solid #ed1c24;
  transition: 0.4s;
}
.header__link.active {
  border-bottom: 2px solid #ed1c24;
}
.header__hamburger {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  outline: none;
  display: none;
  margin: 0 0 0 auto;
  transition: 0.4s;
}
@media only screen and (max-width: 1190px) {
  .header__hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.header__hamburger:hover {
  cursor: pointer;
  opacity: 0.6;
  transition: 0.4s;
}
.header__hamburger span {
  width: 34px;
  height: 2px;
  background: white;
  position: absolute;
  border-radius: 1px;
}
.header__hamburger .first {
  transition: 0.4s;
  transform: translateY(10px);
}
.header__hamburger .second {
  transition: 0.4s;
  opacity: 1;
}
.header__hamburger .third {
  transition: 0.4s;
  transform: translateY(-10px);
}
.header__hamburger .first--open {
  transition: 0.4s;
  transform: rotate(45deg);
}
.header__hamburger .second--open {
  transition: 0.4s;
  opacity: 0;
}
.header__hamburger .third--open {
  transition: 0.4s;
  transform: rotate(-45deg);
}
.header__search {
  position: absolute;
  top: 100%;
  background: #111111;
  width: 100%;
  padding: 6px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-top: 1px solid white;
  display: none;
}
.header__search.active {
  display: flex;
}
.header__searchSubmit {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
}
.header__searchSubmit:hover {
  opacity: 0.6;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .header__searchSubmit {
    margin: 0 20px;
  }
}
.header__searchInput {
  color: white;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  width: 100%;
  padding: 0 10px 5px 10px;
  border-bottom: 1px solid white;
  outline: none;
  width: 100%;
  max-width: 500px;
  border-radius: 0 !important;
}
.header__button {
  font-size: 20px;
  border: 2px solid #ed1c24;
  background: #ed1c24;
  outline: none;
  text-decoration: none;
  padding: 8px 10px 8px 20px;
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: white;
  border-radius: 3px;
  font-weight: 700;
  transition: 0.4s;
}
.header__button i {
  color: black;
  transition: 0.4s;
}
.header__button:hover {
  transition: 0.4s;
  cursor: pointer;
  background: transparent;
}
.header__button:hover i {
  transition: 0.4s;
  color: #ed1c24;
}
.header--indexPage {
  background: black;
}
@media only screen and (max-width: 1100px) {
  .header--indexPage .header__nav {
    background: black;
  }
}
.header--indexPage .header__logo img {
  height: 105px;
}
@media only screen and (max-width: 1560px) {
  .header--indexPage .header__logo img {
    height: 60px;
  }
}
@media only screen and (max-width: 1340px) {
  .header--indexPage .header__logo img {
    height: 40px;
  }
}
@media only screen and (max-width: 360px) {
  .header--indexPage .header__logo img {
    height: 30px;
  }
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 100px 30px 40px 30px;
}
@media only screen and (max-width: 1100px) {
  .footer {
    padding: 80px 10px 40px 10px;
  }
}
@media only screen and (max-width: 870px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
}
@media only screen and (max-width: 650px) {
  .footer {
    padding: 60px 10px 30px 10px;
  }
}
.footer__logo {
  width: 214px;
}
@media only screen and (max-width: 650px) {
  .footer__logo {
    max-width: 90%;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}
@media only screen and (max-width: 870px) {
  .footer__container {
    width: 100%;
  }
}
@media only screen and (max-width: 650px) {
  .footer__container {
    gap: 25px;
  }
}
.footer__text {
  color: #696969;
  font-size: 12px;
  line-height: 2em;
  font-weight: 500;
  margin: 10px 0 0 0;
}
@media only screen and (max-width: 650px) {
  .footer__text {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}
.footer__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media only screen and (max-width: 1100px) {
  .footer__nav {
    gap: 15px;
  }
}
@media only screen and (max-width: 650px) {
  .footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }
}
.footer__title {
  font-size: 19px;
  font-weight: 500;
  color: white;
  margin: 0 10px 0 0 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1100px) {
  .footer__title {
    font-size: 15px;
  }
}
.footer__link {
  font-size: 19px;
  font-weight: 500;
  color: #696969;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
  text-transform: uppercase;
}
.footer__link:hover {
  opacity: 0.6;
  transition: 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 1100px) {
  .footer__link {
    font-size: 15px;
  }
}
.footer__social {
  font-size: 24px;
  font-weight: 500;
  color: #696969;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
  text-transform: uppercase;
}
.footer__social:hover {
  opacity: 0.6;
  transition: 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 1100px) {
  .footer__social {
    font-size: 15px;
  }
}
.footer__social img {
  height: 21px;
}
@media only screen and (max-width: 1100px) {
  .footer__social img {
    height: 13px;
  }
}

.hero {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 0 20px 0;
}
.hero__poster {
  width: 100%;
  height: 100%;
}
.hero__text {
  position: absolute;
  right: 60px;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media only screen and (max-width: 640px) {
  .hero__text {
    right: inherit;
    top: inherit;
  }
}
.hero__h1 {
  font-size: 68px;
  line-height: 0.8em;
  font-family: "coluna";
  color: white;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: fit-content;
}
.hero__h1::before {
  content: " ";
  position: absolute;
  width: 40px;
  height: 2px;
  background: white;
  left: -5px;
  transform: translate(-100%, -100%);
}
.hero__h1::after {
  content: " ";
  position: absolute;
  width: 40px;
  height: 2px;
  background: white;
  right: -5px;
  transform: translate(100%, -100%);
}
@media only screen and (max-width: 1300px) {
  .hero__h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 640px) {
  .hero__h1 {
    font-size: 26px;
  }
}
.hero__h2 {
  color: #dee105;
  font-size: 70px;
  font-family: "coluna";
  line-height: 1em;
  width: fit-content;
}
@media only screen and (max-width: 1300px) {
  .hero__h2 {
    font-size: 50px;
  }
}
@media only screen and (max-width: 640px) {
  .hero__h2 {
    font-size: 50px;
  }
}

.bigTitle {
  width: 100%;
  text-align: center;
  color: white;
  position: relative;
  font-size: 36px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 15px;
  text-transform: uppercase;
}
.bigTitle hr {
  height: 1px;
  width: 100%;
  background: white;
}
@media only screen and (max-width: 700px) {
  .bigTitle {
    font-size: 24px;
  }
}
.bigTitle .yellow {
  color: #dee105;
}
.bigTitle .bigOne {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media only screen and (max-width: 700px) {
  .bigTitle .bigOne {
    flex-wrap: wrap;
    gap: 0;
  }
}

.subtitle {
  width: 100%;
  text-align: center;
  color: #dee105;
  position: relative;
  font-size: 30px;
  font-weight: 400;
  line-height: 1em;
  text-transform: uppercase;
}
@media only screen and (max-width: 700px) {
  .subtitle {
    font-size: 18px;
  }
}

.videos {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 25px 0 0 0;
}
.videos .notification-col {
  grid-column: 2/span 1;
}
@media only screen and (max-width: 1400px) {
  .videos {
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1150px) {
  .videos {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos .notification-col {
    grid-column: 1/span 2;
  }
}
@media only screen and (max-width: 750px) {
  .videos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.videos--2 {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 14px;
  margin: 0 0 60px 0;
}
.videos--2 .wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
}
@media only screen and (max-width: 850px) {
  .videos--2 .wrapper .bigTitle {
    font-size: 24px;
  }
}
.videos--4 {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 14px;
}
@media only screen and (max-width: 1550px) {
  .videos--4 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1150px) {
  .videos--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 750px) {
  .videos--4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.videos--4-mainPage {
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 14px;
}
@media only screen and (max-width: 1850px) {
  .videos--4-mainPage {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1150px) {
  .videos--4-mainPage {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 750px) {
  .videos--4-mainPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.videos__video {
  width: 100%;
  aspect-ratio: 10/5.6;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
}
.videos__video:hover {
  transition: 0.4s;
  opacity: 0.6;
}
.videos__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.videos__wrapper {
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 8px 7px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}
.videos__col {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.videos__info {
  background: rgba(0, 0, 0, 0.7);
  padding: 5px 12px;
  border-radius: 3px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 40px;
  color: white;
  font-size: 17px;
  line-height: 1em;
  font-weight: 500;
}
@media only screen and (max-width: 1800px) {
  .videos__info {
    font-size: 14px;
    padding: 5px 8px;
  }
}
@media only screen and (max-width: 1400px) {
  .videos__info {
    font-size: 12px;
    padding: 5px 8px;
  }
}
.videos__info img {
  height: 30px;
}
.videos__info i {
  font-size: 14px;
  margin: 0 8px 0 0;
}
@media only screen and (max-width: 1400px) {
  .videos__info i {
    font-size: 12px;
    margin: 0 5px 0 0;
  }
}
.videos__info .fa-star {
  color: #dee105 !important;
  margin: 0;
  line-height: 1em;
}
.videos__info--img {
  padding: 5px;
}

.homeVideo {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 30px 0;
}
.homeVideo__thumbnail {
  width: 100%;
  max-height: 100vh;
  object-fit: cover;
  object-position: center;
}
.homeVideo__playbtn {
  position: absolute;
  background: none;
  border: none;
  outline: none;
  font-size: 120px;
  color: white;
  transition: 0.4s;
}
.homeVideo__playbtn:hover {
  transition: 0.4s;
  opacity: 0.6;
  cursor: pointer;
}

.bigButton {
  font-size: 25px;
  color: white;
  font-weight: 500;
  padding: 16px 10px 16px 50px;
  gap: 40px;
  background: black;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 3px solid #ed1c24;
  border-radius: 5px;
  margin: 40px auto 80px auto;
  outline: none;
  text-decoration: none;
  line-height: 1em;
  transition: 0.4s;
}
.bigButton i {
  color: #ed1c24;
  transition: 0.4s;
}
.bigButton:hover {
  transition: 0.4s;
  background: #ed1c24;
  cursor: pointer;
}
.bigButton:hover i {
  color: white;
  transition: 0.4s;
}
@media only screen and (max-width: 900px) {
  .bigButton {
    font-size: 18px;
    padding: 15px 10px 15px 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .bigButton {
    font-size: 16px;
    padding: 10px 10px 10px 20px;
    gap: 20px;
  }
}

.models {
  width: 100%;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(6, 1fr);
  margin: 15px 0 0 0;
}
@media only screen and (max-width: 1400px) {
  .models {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 680px) {
  .models {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 350px) {
  .models {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.models__model {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  outline: none;
  text-decoration: none;
}
.models .videos__info {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 8px 10px;
  height: fit-content;
}
.models__modelWrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  transition: 0.4s;
}
.models__modelWrapper:hover {
  transition: 0.4s;
  cursor: pointer;
}
.models__modelWrapper:hover .models__modelBtn {
  transition: 0.4s;
  opacity: 1;
}
.models__modelBtn {
  color: #dee105;
  border: 2px solid white;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 5px;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 700;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  line-height: 1em;
  position: absolute;
  opacity: 0;
  transition: 0.4s;
}
.models__link {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  height: 0;
  padding-top: 172.0394736842%;
}
.models__link:hover .models__modelPhoto {
  opacity: 0.6;
}
.models__modelPhoto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s;
}
.models__modelInfo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
}
.models__modelFlagLink {
  outline: none;
  text-decoration: none;
}
.models__modelFlag {
  height: 30px;
}
@media only screen and (max-width: 680px) {
  .models__modelFlag {
    height: 26px;
  }
}
.models__modelName {
  outline: none;
  text-decoration: none;
  color: white;
  font-size: 17px;
  font-weight: 500;
}
@media only screen and (max-width: 680px) {
  .models__modelName {
    font-size: 15px;
  }
}

.guide {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 15px 0 0 0;
}
.guide__item {
  width: 100%;
  aspect-ratio: 10/5.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}
.guide__item img {
  width: 100%;
  height: 100%;
}
.guide__item:hover {
  opacity: 0.5;
  transition: 0.4s;
}

.muchMore {
  margin: 50px 0 0 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.muchMore__logo {
  margin: 0 0 30px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.muchMore__logo .logo {
  height: 100px;
}
@media only screen and (max-width: 680px) {
  .muchMore__logo .logo {
    height: auto;
    width: 60vw;
  }
}
.muchMore__logo hr {
  height: 1px;
  width: 100%;
  background: white;
}
.muchMore__title {
  width: 100%;
  margin: 0 0 40px 0;
  text-align: center;
  font-size: 42px;
  font-weight: 400;
  color: white;
  text-transform: uppercase;
}
.muchMore__title span {
  color: #dee105;
}
@media only screen and (max-width: 800px) {
  .muchMore__title {
    font-size: 26px;
  }
}
.muchMore__wrapper {
  width: 100%;
  padding: 0 30px;
  grid-gap: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 850px) {
  .muchMore__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
  }
}
.muchMore__item {
  width: 100%;
  height: 58px;
  color: white;
  font-size: 24px;
  font-weight: 500;
  background: #111111;
  border-radius: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 5px 15px 5px 30px;
  line-height: 1em;
}
@media only screen and (max-width: 1000px) {
  .muchMore__item {
    font-size: 18px;
    height: 56px;
  }
}
@media only screen and (max-width: 850px) {
  .muchMore__item {
    font-size: 16px;
    height: 56px;
  }
}

.accessBtn {
  font-size: 50px;
  color: white;
  font-weight: 400;
  padding: 12px 50px 12px 60px;
  gap: 40px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 3px solid #ed1c24;
  background: #ed1c24;
  border-radius: 5px;
  margin: 40px auto 80px auto;
  outline: none;
  text-decoration: none;
  line-height: 1em;
  transition: 0.4s;
}
.accessBtn i {
  color: black;
  transition: 0.4s;
  font-size: 50px;
}
.accessBtn:hover {
  transition: 0.4s;
  background: transparent;
}
.accessBtn:hover i {
  color: #ed1c24;
  transition: 0.4s;
}
@media only screen and (max-width: 850px) {
  .accessBtn {
    font-size: 30px;
    padding: 10px 30px;
    gap: 20px;
  }
  .accessBtn i {
    font-size: 30px;
  }
}
@media only screen and (max-width: 450px) {
  .accessBtn {
    font-size: 26px;
    padding: 10px 20px;
  }
  .accessBtn i {
    font-size: 24px;
  }
}

.pagination {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 80px auto 50px auto;
  padding: 0 10px;
  gap: 8px;
}
@media only screen and (max-width: 600px) {
  .pagination {
    margin: 40px auto 10px auto;
  }
}
.pagination__button {
  width: 38px;
  height: 38px;
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
}
.pagination__button:hover {
  background: white;
  color: black;
  transition: 0.4s;
}
.pagination__button.active {
  background: #ed1c24;
  border: 2px solid #ed1c24;
}
.pagination__button.active:hover {
  color: white;
  background: transparent;
}
@media only screen and (max-width: 600px) {
  .pagination__button {
    font-size: 14px;
    width: 30px;
    height: 30px;
  }
}

.alphabet {
  width: 100%;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 50px 0 0 0;
}

.sortWrapper {
  width: 100%;
  padding: 0 5px;
  margin: 50px 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.sortWrapper__h1 {
  color: white;
  font-size: 32px;
  font-weight: 500;
  white-space: nowrap;
}
@media only screen and (max-width: 650px) {
  .sortWrapper__h1 {
    font-size: 20px;
  }
}
.sortWrapper hr {
  width: 100%;
  height: 1px;
  background: white;
  border: none;
}
.sortWrapper__select {
  padding: 6px 16px;
  color: black;
  font-size: 14px;
  background: white;
  border-radius: 3px;
  font-weight: 600;
  background: white;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
}
@media only screen and (max-width: 650px) {
  .sortWrapper__select {
    font-size: 10px;
    padding: 5px 8px;
  }
}
.sortWrapper .multiselect-dropdown {
  width: fit-content !important;
  white-space: nowrap;
  border-radius: 4px;
  border: solid 1px #ced4da;
  background-color: white;
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}
.sortWrapper .multiselect-dropdown .optext, .sortWrapper .multiselect-dropdown .placeholder {
  padding: 6px 26px 6px 6px;
  color: black;
  font-size: 14px !important;
  border-radius: 3px;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
@media only screen and (max-width: 650px) {
  .sortWrapper .multiselect-dropdown .optext, .sortWrapper .multiselect-dropdown .placeholder {
    font-size: 12px !important;
    padding: 5px 22px 5px 2px;
  }
}
.sortWrapper .multiselect-dropdown-list-wrapper {
  width: fit-content !important;
  left: auto !important;
  font-size: 15px;
}
@media only screen and (max-width: 650px) {
  .sortWrapper .multiselect-dropdown-list-wrapper {
    font-size: 14px !important;
  }
}
.sortWrapper .multiselect-dropdown-list-wrapper input[type=checkbox] {
  display: none;
  accent-color: #ed1c24;
}
.sortWrapper .multiselect-dropdown span.optext .optdel {
  font-size: 0.8em !important;
}

.askjohn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  padding: 0 10px;
}
.askjohn__of {
  width: 350px;
  max-width: 90vw;
  margin: 0 0 30px 0;
}
.askjohn__h1 {
  color: white;
  font-size: 36px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding: 0 5px;
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 900px) {
  .askjohn__h1 {
    font-size: 26px;
  }
}
.askjohn__p {
  color: white;
  font-size: 17px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  padding: 0 5px;
  max-width: 1600px;
}
@media only screen and (max-width: 900px) {
  .askjohn__p {
    font-size: 14px;
  }
}
.askjohn__doubleWrapper {
  width: 100%;
  max-width: 1600px;
  padding: 0 5px;
  gap: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0 auto;
}
@media only screen and (max-width: 1200px) {
  .askjohn__doubleWrapper {
    gap: 20px;
  }
}
@media only screen and (max-width: 950px) {
  .askjohn__doubleWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0 auto;
  }
}
.askjohn__bigBtn {
  width: calc(50% - 70px);
  border: 2px solid #ed1c24;
  border-radius: 4px;
  padding: 10px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  outline: none;
  text-decoration: none;
  gap: 20px;
  transition: 0.4s;
}
.askjohn__bigBtn i {
  color: #ed1c24;
  font-size: 40px;
  transition: 0.4s;
}
.askjohn__bigBtn:hover {
  background: #ed1c24;
  transition: 0.4s;
}
.askjohn__bigBtn:hover i {
  color: white;
  transition: 0.4s;
}
@media only screen and (max-width: 1200px) {
  .askjohn__bigBtn {
    width: calc(50% - 20px);
    gap: 10px;
  }
  .askjohn__bigBtn i {
    font-size: 30px;
  }
}
@media only screen and (max-width: 950px) {
  .askjohn__bigBtn {
    width: 100%;
    max-width: 600px;
  }
}
.askjohn__wrapperText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.askjohn__bigText {
  color: #dee105;
  font-size: 50px;
  font-weight: 700;
  line-height: 1em;
  margin: 0 0 5px 0;
}
@media only screen and (max-width: 1200px) {
  .askjohn__bigText {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .askjohn__bigText {
    font-size: 22px;
  }
}
.askjohn__smallText {
  font-size: 25px;
  color: white;
  font-weight: 600;
}
@media only screen and (max-width: 1200px) {
  .askjohn__smallText {
    font-size: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .askjohn__smallText {
    font-size: 14px;
  }
}

.contact {
  width: 100%;
  margin: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__p {
  width: 100%;
  padding: 0 10px;
  max-width: 1000px;
  margin: 60px 0 50px 0;
  font-size: 17px;
  color: white;
  text-align: center;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .contact__p {
    margin: 20px 0 30px 0;
  }
}
.contact__form {
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 10px;
  max-width: 1000px;
}
.contact__input {
  padding: 12px 20px;
  border-radius: 3px;
  border: 2px solid white;
  width: 100%;
  background: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: white;
  outline: none;
}
.contact__input::placeholder {
  color: white;
}
.contact__textarea {
  padding: 12px 20px;
  border-radius: 3px;
  height: 200px;
  border: 2px solid white;
  width: 100%;
  background: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: white;
  outline: none;
}
.contact__textarea::placeholder {
  color: white;
}

.model {
  margin: 80px 0 40px 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
}
@media only screen and (max-width: 1240px) {
  .model {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
}
.model__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
}
.model__name {
  width: 100%;
  text-align: center;
  color: #dee105;
  position: relative;
  font-size: 36px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 5px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.model__name hr {
  height: 1px;
  width: 100%;
  min-width: 30px;
  background: white;
}
@media only screen and (max-width: 1340px) {
  .model__name {
    font-size: 26px;
  }
}
@media only screen and (max-width: 600px) {
  .model__name {
    font-size: 20px;
  }
}
.model__flag {
  height: 30px;
  margin: 0 0 25px 0;
}
.model__description {
  width: 100%;
  font-size: 17px;
  font-weight: 400;
  color: white;
  max-width: 590px;
  min-width: 590px;
  margin: 0 0 30px 0;
}
@media only screen and (max-width: 1600px) {
  .model__description {
    max-width: 450px;
    min-width: 450px;
  }
}
@media only screen and (max-width: 1240px) {
  .model__description {
    min-width: fit-content;
    max-width: fit-content;
  }
}
@media only screen and (max-width: 600px) {
  .model__description {
    font-size: 15px;
  }
}
.model__stars {
  color: #dee105;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.model__gallery {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-gap: 10px;
  width: 100%;
}
@media only screen and (max-width: 1600px) {
  .model__gallery {
    grid-template-columns: 5fr 3fr;
  }
}
@media only screen and (max-width: 1240px) {
  .model__gallery {
    grid-template-columns: 5fr 2fr;
  }
}
@media only screen and (max-width: 600px) {
  .model__gallery {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.model__gallery .horizontal {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .model__gallery .horizontal {
    max-width: 90%;
  }
}
.model__gallery .vertical {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .model__gallery .vertical {
    max-width: 90%;
  }
}

.exclusive {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  outline: none;
  text-decoration: none;
}
.exclusive__title {
  width: 100%;
  color: white;
  outline: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 21px;
  text-transform: uppercase;
  padding: 0 0 0 10px;
  transition: 0.4s;
}
.exclusive__title:hover {
  opacity: 0.6;
  transition: 0.4s;
}
.exclusive__wrapper {
  width: 100%;
  aspect-ratio: 10/5.6;
  position: relative;
}
.exclusive__thumbnail {
  width: 100%;
  height: 100%;
}
.exclusive__deal {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 4px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  position: absolute;
  top: 5px;
  right: 5px;
}
.exclusive__deal .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.exclusive__deal hr {
  height: 38px;
  width: 2px;
  background: white;
  border: none;
}
.exclusive__deal .white {
  font-size: 17px;
  color: white;
  font-weight: 500;
  line-height: 1em;
}
.exclusive__deal .yellow {
  color: #dee105;
  font-weight: 500;
  font-size: 17px;
  line-height: 1em;
}
.exclusive__deal .bold {
  font-weight: 700;
}
.exclusive__deal .line {
  text-decoration-line: line-through;
}

.partners {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  width: 100%;
  margin: 10px 0 60px 0;
}
@media only screen and (max-width: 1300px) {
  .partners {
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1030px) {
  .partners {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 500px) {
  .partners {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners__item {
  width: 100%;
}
.partners__logo {
  width: 100%;
  aspect-ratio: 10/8.3;
}

.liveGirls {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 20px;
  width: 100%;
  margin: 10px 0 60px 0;
}
@media only screen and (max-width: 1500px) {
  .liveGirls {
    grid-gap: 10px;
  }
}
@media only screen and (max-width: 1150px) {
  .liveGirls {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 750px) {
  .liveGirls {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 350px) {
  .liveGirls {
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.liveGirls__item {
  width: 100%;
  position: relative;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.liveGirls__item:hover {
  transition: 0.4s;
  opacity: 0.6;
}
.liveGirls__thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
}
.liveGirls__status {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  padding: 5px 10px;
  border-radius: 4px;
  gap: 5px;
  line-height: 1em;
}
.liveGirls__status .dot-live {
  width: 13px;
  height: 13px;
  background: #20995d;
  border-radius: 100%;
}
.liveGirls__info {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 9px;
  background: rgba(255, 255, 255, 0.7);
}
.liveGirls__info .text {
  color: black;
  font-weight: 600;
  font-size: 17px;
}

.memberHome {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  position: relative;
  margin: 0 0 50px 0;
}
@media only screen and (max-width: 1600px) {
  .memberHome {
    min-height: 100px;
  }
}
.memberHome__thumbnail {
  height: 100%;
  object-fit: cover;
}
.memberHome__wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: rgb(0, 0, 0);
  background: radial-gradient(circle, rgba(0, 0, 0, 0.7819328415) 0%, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.memberHome__text {
  text-shadow: 0px 0px 15px rgb(0, 0, 0);
  color: white;
  max-width: 1100px;
  width: 100%;
  padding: 10px 10px;
  font-size: 1.5em;
  font-weight: 500;
  text-align: center;
}

.calendar {
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 80px 0 80px 0;
}
@media only screen and (max-width: 1400px) {
  .calendar {
    padding: 0;
    margin: 60px 0;
  }
}
.calendar .sortWrapper {
  margin: 0 0 30px 0;
}
.calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr) !important;
  grid-gap: 10px;
  width: 100%;
  margin: 0 0 10px 0;
  max-width: 100%;
  overflow-x: auto;
}
@media only screen and (max-width: 1400px) {
  .calendar__grid {
    grid-gap: 5px;
  }
}
.calendar__day {
  padding: 16px 10px;
  background: #111111;
  color: white;
  font-size: 21px;
  font-weight: 600;
  outline: none;
  text-decoration: none;
  text-align: center;
  width: 100%;
  line-height: 1em;
  transition: 0.4s;
}
.calendar__day:hover {
  transition: 0.4s;
  opacity: 0.5;
}
@media only screen and (max-width: 1400px) {
  .calendar__day {
    font-size: 14px;
    padding: 10px 5px;
  }
}
@media only screen and (max-width: 750px) {
  .calendar__day {
    font-size: 10px;
  }
}
.calendar__element {
  background: #111111;
  width: 100%;
  height: 100%;
  gap: 10px;
  outline: none;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.calendar__element img {
  transition: opacity 0.4s;
}
.calendar__element:hover img {
  opacity: 0.6;
}
.calendar__element--disabled {
  opacity: 0.4;
  cursor: auto;
}
@media only screen and (max-width: 1000px) {
  .calendar__element {
    padding: 5px 1px;
  }
}
@media only screen and (max-width: 750px) {
  .calendar__element {
    gap: 5px;
  }
}
.calendar__number {
  color: #ed1c24;
  font-weight: 700;
  font-size: 17px;
}
@media only screen and (max-width: 1400px) {
  .calendar__number {
    font-size: 15px;
  }
}
@media only screen and (max-width: 750px) {
  .calendar__number {
    font-size: 10px;
  }
}
.calendar__thumbnail {
  width: 100%;
  aspect-ratio: 10/5.6;
}
.calendar__title {
  color: #dee105;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}
@media only screen and (max-width: 1400px) {
  .calendar__title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 750px) {
  .calendar__title {
    font-size: 10px;
  }
}

.gallery {
  width: 100%;
  padding: 60px 50px 0 50px;
  display: grid;
  grid-template-columns: repeat(8, auto) !important;
  grid-gap: 10px;
}
@media only screen and (max-width: 1350px) {
  .gallery {
    padding: 40px 10px 0 10px;
  }
}
@media only screen and (max-width: 1150px) {
  .gallery {
    grid-template-columns: repeat(6, auto) !important;
  }
}
@media only screen and (max-width: 800px) {
  .gallery {
    grid-template-columns: repeat(4, auto) !important;
  }
}
@media only screen and (max-width: 500px) {
  .gallery {
    grid-template-columns: repeat(3, auto) !important;
  }
}
@media only screen and (max-width: 360px) {
  .gallery {
    grid-template-columns: repeat(2, auto) !important;
  }
}
.gallery__photo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: fit-content;
  transition: 0.4s;
}
.gallery__photo:hover {
  opacity: 0.7;
  transition: 0.4s;
  cursor: pointer;
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comments {
  width: 100%;
  margin: 30px 0 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 10px;
}
.comments__comment {
  width: 100%;
  max-width: 1680px;
  border: 2px solid white;
  padding: 16px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}
.comments__user {
  font-size: 17px;
  font-weight: 500;
  color: #ed1c24;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
}
.comments__user:hover {
  transition: 0.4s;
  opacity: 0.6;
}
@media only screen and (max-width: 600px) {
  .comments__user {
    font-size: 15px;
  }
}
.comments__text {
  color: white;
  font-size: 17px;
  font-weight: 500;
}
@media only screen and (max-width: 600px) {
  .comments__text {
    font-size: 15px;
  }
}

.submitComm {
  margin: 30px auto 60px auto;
  width: 100%;
  padding: 0 10px;
  max-width: 1680px;
}
.submitComm__textarea {
  padding: 16px;
  border-radius: 3px;
  border: 2px solid white;
  width: 100%;
  height: 200px;
  background: none;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: white;
  outline: none;
}
.submitComm__textarea::placeholder {
  color: white;
}
.submitComm .bigButton {
  font-size: 20px;
  padding: 10px 10px 10px 20px;
  margin: 30px 0 0 auto;
  gap: 20px;
}

.video-info {
  margin: 50px auto 50px auto;
  width: 100%;
  padding: 0 10px;
  max-width: 1680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .video-info {
    margin: 15px auto 20px auto;
  }
}
.video-info__top {
  width: 100%;
  padding: 0 0 15px;
  border-bottom: 2px solid white;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 15px 0;
}
.video-info__top .videos__info {
  border: 1px solid white;
  background: transparent;
}
@media only screen and (max-width: 1200px) {
  .video-info__top .videos__info {
    height: 30px;
  }
  .video-info__top .videos__info img {
    height: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .video-info__top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
  }
}
.video-info__title {
  color: white;
  font-weight: 600;
  font-size: 36px;
  line-height: 1em;
}
@media only screen and (max-width: 1200px) {
  .video-info__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 800px) {
  .video-info__title {
    font-size: 22px;
  }
}
.video-info__row {
  gap: 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 900px) {
  .video-info__row {
    gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .video-info__row {
    flex-wrap: wrap;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.video-info__btn {
  outline: none;
  text-decoration: none;
  transition: 0.4s;
  color: white;
  font-size: 17px;
  background: none;
}
.video-info__btn:hover {
  opacity: 0.5;
  transition: 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .video-info__btn {
    font-size: 20px;
  }
}
.video-info__el {
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  outline: none;
}
@media only screen and (max-width: 800px) {
  .video-info__el {
    gap: 5px;
  }
}
.video-info__el a {
  color: #dee105;
  text-decoration: none;
  outline: none;
  transition: 0.4s;
}
.video-info__el a:hover {
  transition: 0.4s;
  opacity: 0.6;
}
.video-info__description {
  color: white;
  font-size: 17px;
  font-weight: 500;
  width: 100%;
}

.video {
  width: 100%;
  max-width: 1680px;
  padding: 0 10px;
  margin: 50px auto 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16/9;
}
.video iframe, .video video, .video img {
  width: 100%;
  height: 100%;
}

.join {
  width: 100%;
  padding: 0 10px;
  max-width: 1800px;
  margin: 50px auto 60px auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
@media only screen and (max-width: 1260px) {
  .join {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.join__img {
  border: 3px solid white;
  max-width: 40vw;
}
@media only screen and (max-width: 1260px) {
  .join__img {
    max-width: 70%;
  }
}
.join__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.join__title {
  font-size: 24px;
  color: white;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.join__title .yellow {
  color: #dee105;
}
.join__already {
  color: white;
  font-size: 17px;
  font-weight: 500;
  margin: 0 0 30px 0;
}
.join__already a {
  color: #ed1c24;
  outline: none;
  text-decoration: none;
  transition: 0.4s;
}
.join__already a:hover {
  transition: 0.4s;
  opacity: 0.6;
}
.join__row {
  width: 100%;
  gap: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0 0 50px 0;
}
@media only screen and (max-width: 480px) {
  .join__row {
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.join__inputWrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  width: calc(50% - 5px);
}
@media only screen and (max-width: 480px) {
  .join__inputWrapper {
    width: 100%;
  }
}
.join__inputWrapper label {
  font-size: 17px;
  font-weight: 500;
  color: white;
  font-family: "Open Sans", sans-serif;
  width: 100%;
}
.join__inputWrapper input {
  width: 100%;
  border: 1px solid white;
  border-radius: 3px;
  padding: 12px 16px;
  color: white;
  font-size: 17px;
  font-weight: 500;
  background: transparent;
  outline: none;
  font-family: "Open Sans", sans-serif;
}
.join__submit {
  font-family: "Open Sans", sans-serif;
  font-size: 42px;
  background: #ed1c24;
  border: 2px solid #ed1c24;
  gap: 50px;
  padding: 15px 20px 15px 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  margin: 70px auto 0 auto;
  transition: 0.4s;
}
.join__submit i {
  color: black;
  transition: 0.4s;
}
.join__submit:hover {
  transition: 0.4s;
  cursor: pointer;
  background: transparent;
}
.join__submit:hover i {
  transition: 0.4s;
  color: #ed1c24;
}
@media only screen and (max-width: 1000px) {
  .join__submit {
    font-size: 24px;
    padding: 10px 15px 10px 30px;
    gap: 30px;
  }
}
@media only screen and (max-width: 1000px) {
  .join__submit {
    font-size: 18px;
    padding: 10px 15px 10px 30px;
    gap: 20px;
  }
}
.join__payment {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  margin: 10px 0 0 0;
}
.join__paymentLabel {
  border: 1px solid white;
  border-radius: 3px;
  padding: 15px 120px 15px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: white;
  font-size: 17px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
}
@media only screen and (max-width: 580px) {
  .join__paymentLabel {
    padding: 10px 60px 10px 15px;
    font-size: 15px;
  }
}
.join__paymentLabel input {
  outline: none;
}
.join__paymentLabel input:checked + .join__paymentLabel {
  background: #ed1c24;
}
.join__trial {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 50px 0;
}
.join__trialLabel {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  gap: 15px;
  padding: 15px;
  border-radius: 3px;
}
@media only screen and (max-width: 740px) {
  .join__trialLabel {
    padding: 10px 5px;
    gap: 8px;
  }
}
.join__trialLabel .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 2px;
  margin: 0 auto 0 0;
}
.join__trialLabel .title {
  color: #dee105;
  line-height: 1em;
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 740px) {
  .join__trialLabel .title {
    font-size: 20px;
  }
}
.join__trialLabel .desc {
  font-size: 17px;
  color: white;
  font-weight: 500;
}
@media only screen and (max-width: 740px) {
  .join__trialLabel .desc {
    font-size: 14px;
  }
}
.join__trialLabel .price {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
.join__trialLabel .currency {
  font-size: 20px;
  color: white;
  line-height: 1em;
  font-weight: 800;
  margin: 10px 0 0 0;
}
.join__trialLabel .amount {
  font-size: 66px;
  color: white;
  line-height: 1em;
  font-weight: 800;
}
.join__trialLabel .double {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
}
.join__trialLabel .time {
  font-size: 12px;
  color: white;
  line-height: 1em;
  font-weight: 600;
  margin: 18px 0 0 0;
}
.join__trialLabel .best {
  background: #dee105;
  color: black;
  padding: 10px 15px;
  border-radius: 3px;
  font-size: 20px;
  font-weight: 700;
  margin: 0 40px 0 0;
}
@media only screen and (max-width: 740px) {
  .join__trialLabel .best {
    font-size: 14px;
    margin: 0 15px 0 0;
    padding: 8px 14px;
  }
}
@media only screen and (max-width: 490px) {
  .join__trialLabel .best {
    font-size: 12px;
    margin: 0 10px;
    padding: 5px 10px;
    text-align: center;
  }
}

.categories {
  width: 100%;
  padding: 40px 10px 0 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media only screen and (max-width: 490px) {
  .categories {
    padding: 40px 5px 0 5px;
  }
}
.categories__element {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  outline: none;
  text-decoration: none;
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  transition: 0.4s;
}
.categories__element img {
  width: 200px;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 3px solid white;
  transition: 0.4s;
}
@media only screen and (max-width: 490px) {
  .categories__element img {
    width: 150px;
  }
}
.categories__element:hover {
  cursor: pointer;
  color: #ed1c24;
}
.categories__element:hover img {
  transition: 0.4s;
  border: 3px solid #ed1c24;
}

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

body, html {
  scroll-behavior: smooth;
  min-width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background: black;
  font-family: "Open Sans", sans-serif !important;
  display: flex;
  flex-direction: column;
  align-items: safe flex-start;
  justify-content: safe flex-start;
  position: relative;
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  max-width: 100vw;
}

body {
  overflow-x: hidden;
}

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

/*# sourceMappingURL=style.css.map */
