@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Oswald:wght@200..700&display=swap");
.fixed-header-separator {
  height: 80px;
}

@media only screen and (max-width: 530px) {
  .fixed-header-separator {
    height: 70px;
  }
}

.header {
  width: 100%;
  background: black;
  z-index: 10;
  height: 80px;
  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;
  position: fixed;
  top: 0;
  left: 0;
}

.header__wrapper {
  width: 100%;
  max-width: 1650px;
  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;
  gap: 10px;
  padding: 5px 5px;
}

@media only screen and (max-width: 530px) {
  .header__wrapper {
    padding: 5px 10px;
  }
}

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

.header__logo img {
  height: 70px;
}

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

.header__buttons {
  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;
  gap: 15px;
  margin: 0 0 0 auto;
}

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

@media only screen and (max-width: 530px) {
  .header__buttons--mobile {
    display: none;
  }
}

.header__buttons--main {
  display: none;
}

@media only screen and (max-width: 530px) {
  .header__buttons--main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px auto;
    gap: 40px;
  }
}

.header__button {
  font-size: 22px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: white;
  border-radius: 5px;
  padding: 12px 24px;
  line-height: 1em;
  outline: none;
  text-decoration: none;
  border: 2px solid black;
  letter-spacing: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.5;
}

.header__button--orange {
  background: #FF5000;
  border: 2px solid #FF5000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__button--orange:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.footer {
  width: 98%;
  max-width: 1650px;
  margin: 20px auto 40px auto;
  padding: 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;
  gap: 40px;
}

.footer__copyright {
  color: #9c9c9c;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  font-family: "DM Sans", sans-serif;
}
.footer__copyright a {
  color: #9c9c9c;
  text-decoration: none;
}
.footer__copyright a:hover {
  color: #fff;
}

.footer__wrapper {
  width: 100%;
  padding: 40px 5px;
  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;
  gap: 90px;
  border-top: 2px solid white;
  border-bottom: 2px solid white;
}

@media only screen and (max-width: 1080px) {
  .footer__wrapper {
    gap: 30px;
  }
}

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

.footer__logo {
  height: 60px;
}

.footer__navContainer {
  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: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  min-width: 80%;
  gap: 50px;
}

@media only screen and (max-width: 1080px) {
  .footer__navContainer {
    gap: 30px;
  }
}

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

.footer__nav {
  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;
  gap: 5px;
}

@media only screen and (max-width: 850px) {
  .footer__nav {
    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__navTitle {
  color: white;
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}

.footer__link {
  color: #9C9C9C;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.main {
  width: 100%;
  max-width: 1650px;
  padding: 10px 10px;
  margin: 0 auto;
  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;
  gap: 5px;
}

.main__title {
  font-size: 40px;
  color: white;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: -1.2px;
}

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

.main__title .orange {
  display: inline;
  color: #FF5000;
}

.main__title img {
  display: inline;
  height: 40px;
}

@media only screen and (max-width: 660px) {
  .main__title img {
    height: 24px;
  }
}

.main__text {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: white;
  line-height: 1.5em;
  max-width: 880px;
}

.counter {
  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: 630px) {
  .counter {
    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;
  }
}

.counter__count {
  font-size: 28px;
  font-weight: 600;
  color: white;
  margin: 0 10px;
}

@media only screen and (max-width: 630px) {
  .counter__count {
    margin: 0;
  }
}

.counter__text {
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 5px 0 0 0;
  text-align: center;
}

.counter__images {
  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 15px 0 0;
}

.counter__model {
  max-width: 40px;
}

.counter__model img {
  border: 2px solid white;
  border-radius: 100%;
  height: 50px;
  min-width: 50px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.join {
  width: 100%;
  max-width: 900px;
  margin: 50px auto 30px auto;
  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;
  gap: 30px;
  padding: 0 10px;
}

.join__title {
  font-size: 48px;
  font-weight: 500;
  color: white;
  text-align: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: -1.2px;
}

@media only screen and (max-width: 750px) {
  .join__title {
    font-size: 38px;
  }
}

.join__text {
  color: white;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}

.join__button {
  font-size: 22px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  color: white;
  border-radius: 5px;
  padding: 12px 24px;
  line-height: 1em;
  outline: none;
  text-decoration: none;
  letter-spacing: 1px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: #FF5000;
  border: 2px solid #FF5000;
  transition: 0.4s;
}

.join__button:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
}

.videos {
  margin: 30px auto;
  width: 100%;
  max-width: 1650px;
  padding: 0 10px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(calc(25% - 40px), 1fr))[4];
      grid-template-columns: repeat(4, minmax(calc(25% - 40px), 1fr));
  grid-gap: 40px;
  grid-row-gap: 30px;
  grid-auto-rows: 0fr !important;
}

@media only screen and (max-width: 1020px) {
  .videos {
    -ms-grid-columns: (minmax(calc(33% - 15px), 1fr))[3];
        grid-template-columns: repeat(3, minmax(calc(33% - 15px), 1fr));
    grid-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 650px) {
  .videos {
    -ms-grid-columns: (minmax(calc(50% - 10px), 1fr))[2];
        grid-template-columns: repeat(2, minmax(calc(50% - 10px), 1fr));
    grid-gap: 10px;
    grid-row-gap: 10px;
  }
}

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

.videos__video {
  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;
  gap: 3px;
  outline: none;
  text-decoration: none;
}

.videos__videoTitle {
  font-size: 18px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  outline: none;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.videos__videoTitle:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #FF5000;
}

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

.videos__videoStats {
  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: 15px;
  color: #a6a6a6;
  font-weight: 500;
  gap: 15px;
}

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

.videos__thumbnail {
  width: 100%;
  aspect-ratio: 10/5.6;
  position: relative;
  margin: 0 0 5px 0;
}

.videos__thumbnail .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.videos__thumbnail:hover .videos__videoOverlay {
  visibility: visible;
  opacity: 1;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.videos__videoInfo {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: white;
  font-weight: 800;
  font-size: 16px;
}

@media only screen and (max-width: 650px) {
  .videos__videoInfo {
    font-size: 14px;
    bottom: 5px;
    right: 5px;
  }
}

.videos__videoOverlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 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;
  left: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  visibility: hidden;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  opacity: 0;
}

.videos__videoOverlay i {
  color: white;
  font-size: 60px;
}

.videos__ad {
  width: 100%;
}

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

body, html {
  scroll-behavior: smooth;
  min-width: 100%;
  margin: 0;
  min-height: 100vh;
  padding: 0;
  background: black;
  font-family: "DM Sans", sans-serif !important;
  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 flex-start;
      -ms-flex-align: safe flex-start;
          align-items: safe flex-start;
  -webkit-box-pack: safe flex-start;
      -ms-flex-pack: 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 */