@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap");
.header-fixed-separator {
  height: 68px;
  position: relative;
  width: 100%;
}

.header {
  width: 100%;
  padding: 0 10px;
  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;
  z-index: 99999;
  background: black;
  height: 68px;
}

.header__logo {
  text-decoration: none;
  outline: none;
  margin: 0 70px 0 0;
}

.header__logo img {
  height: 48px;
}

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

@media only screen and (max-width: 600px) {
  .header__logo {
    margin: 0 10px 0 0;
  }
  .header__logo img {
    height: 36px;
  }
}

.header__search {
  margin: 0 auto 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;
  width: 100%;
  max-width: 300px;
  padding: 5px 0;
  border-bottom: 1px solid #707070;
  overflow: hidden;
}

@media only screen and (max-width: 600px) {
  .header__search {
    width: 80%;
    max-width: 200px;
  }
}

.header__searchInput {
  background: none;
  outline: none;
  font-size: 18px;
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  width: 100%;
  color: white;
  border: none;
  text-decoration: none;
}

.header__searchInput::-webkit-input-placeholder {
  color: white !important;
}

.header__searchInput:-ms-input-placeholder {
  color: white !important;
}

.header__searchInput::-ms-input-placeholder {
  color: white !important;
}

.header__searchInput::placeholder {
  color: white !important;
}

.header__searchSubmit {
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__searchSubmit:hover {
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.header__nav {
  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: 20px;
}

.header__nav span {
  font-size: 24px;
  color: white;
  font-weight: 300;
}

@media only screen and (max-width: 1180px) {
  .header__nav span {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1050px) {
  .header__nav span {
    display: none;
  }
}

@media only screen and (max-width: 1050px) {
  .header__nav {
    position: absolute;
    top: 100%;
    height: calc(100vh - 68px);
    background: black;
    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: 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;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(100vw);
            transform: translateX(100vw);
  }
  .header__nav.active {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__link {
  font-size: 24px;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.header__link--current {
  color: #0e84f0;
}

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

.header__button {
  font-size: 24px;
  padding: 6px 10px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  background: #0e84f0;
  border: 2px solid #0e84f0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}

.header__button:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #0e84f0;
}

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

.header__hamburger {
  width: 30px;
  min-width: 30px;
  height: 30px;
  position: relative;
  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: none;
  background: none;
  outline: none;
  display: none;
  margin: 0 5px 0 10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

.header__hamburger span {
  width: 30px;
  height: 3px;
  background: white;
  position: absolute;
  border-radius: 1px;
}

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

.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(-10px);
          transform: translateY(-10px);
}

.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);
}

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

.footer__bottom {
  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;
  padding: 20px 10px;
  gap: 20px;
}

.footer__copyright {
  font-size: 17px;
  font-weight: 500;
  color: #3f3f3f;
  text-align: center;
  width: 100%;
}

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

.footer__nav {
  font-size: 20px;
  font-weight: 500;
  color: #3f3f3f;
  gap: 10px;
  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;
}

.footer__nav a {
  text-decoration: none;
  color: inherit;
}

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

.footer__top {
  width: 100%;
  padding: 30px 10px;
  background: #141414;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}

.footer__info {
  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;
  max-width: 500px;
  width: 100%;
  gap: 10px;
}

.footer__text {
  font-size: 16px;
  color: white;
  font-weight: 400;
  line-height: 1.4em;
}

.footer__text li {
  font-size: 16px;
  color: white;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  font-weight: 400;
  line-height: 1.4em;
}

@media only screen and (max-width: 650px) {
  .footer__text {
    font-size: 14px;
  }
  .footer__text li {
    font-size: 14px;
  }
}

.footer__title {
  color: #0e84f0;
  text-transform: uppercase;
  font-size: 35px;
  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;
}

.footer__title i {
  margin: 0 10px 0 0;
  font-size: 24px;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  color: #0e84f0;
  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;
}

@media only screen and (max-width: 650px) {
  .footer__title {
    font-size: 22px;
  }
  .footer__title i {
    font-size: 18px;
    margin: 0 5px 0 0;
  }
}

.hero {
  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;
  height: 550px;
  background-image: url("images/hero.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 1400px) {
  .hero {
    height: 500px;
  }
}

@media only screen and (max-width: 500px) {
  .hero {
    height: 400px;
  }
}

.hero__text {
  padding: 20px 40px;
  margin: 0 auto 0 0;
  background: #0200009c;
  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: 10px solid #ffffff4d;
  border-radius: 10px;
}

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

.hero__title {
  font-weight: 800;
  color: white;
  font-size: 70px;
}

@media only screen and (max-width: 700px) {
  .hero__title {
    font-size: 50px;
  }
}

@media only screen and (max-width: 500px) {
  .hero__title {
    font-size: 35px;
  }
}

.hero__subtitle {
  color: white;
  font-size: 44px;
}

.hero__subtitle .yellow {
  color: #fcca00;
}

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

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

.hero .mainBtn {
  margin: 0 auto 0 90px;
  font-size: 30px;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  padding: 8px 25px;
}

@media only screen and (max-width: 700px) {
  .hero .mainBtn {
    font-size: 20px;
    margin: 0 auto 0 80px;
  }
}

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

.banner {
  width: 100%;
  height: 630px;
  background-image: url("images/banner2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10px 240px;
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.banner--left {
  padding: 10px 50px;
  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;
  background-image: url("images/banner.png");
}

@media only screen and (max-width: 1630px) {
  .banner {
    padding: 10px 150px;
  }
  .banner--left {
    padding: 10px 50px;
  }
}

@media only screen and (max-width: 1000px) {
  .banner {
    padding: 10px;
    height: 400px;
    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;
  }
  .banner--left {
    padding: 10px;
  }
}

.banner__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;
  gap: 30px;
}

@media only screen and (max-width: 1000px) {
  .banner__wrapper {
    gap: 20px;
  }
}

.banner__logo {
  height: 170px;
}

@media only screen and (max-width: 1000px) {
  .banner__logo {
    height: 80px;
  }
}

.banner__text {
  font-size: 48px;
  font-weight: 600;
  color: black;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  border-top: 1px solid #141414;
  border-bottom: 1px solid #141414;
}

.banner__text .blue {
  color: #0e84f0;
  font-size: 51px;
}

@media only screen and (max-width: 1000px) {
  .banner__text {
    font-size: 30px;
  }
  .banner__text .blue {
    font-size: 32px;
  }
}

@media only screen and (max-width: 1000px) {
  .banner .mainBtn {
    font-size: 29px;
  }
}

.banner .mainBtn {
  margin: 0;
}

.mainBtn {
  font-size: 51px;
  padding: 15px 25px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  background: #0e84f0;
  border: 2px solid #0e84f0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
  margin: 50px auto;
}

.mainBtn:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #0e84f0;
}

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

@media only screen and (max-width: 360px) {
  .mainBtn {
    font-size: 22px;
  }
}

.topBanner {
  width: 100%;
  height: 370px;
  background-image: url("images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 900px) {
  .topBanner {
    height: 270px;
  }
}

@media only screen and (max-width: 590px) {
  .topBanner {
    height: 180px;
  }
}

.pagination {
  margin: 70px auto;
  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;
  gap: 5px;
}

.pagination__page {
  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;
  text-align: center;
  color: white;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 3px;
  background: #515152;
  font-weight: 500;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 600px) {
  .pagination__page {
    font-size: 18px;
    width: 35px;
    height: 35px;
  }
}

.pagination__page.active {
  background: #0e84f0;
}

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

.pagination__page i {
  font-size: 16px;
}

@media only screen and (max-width: 600px) {
  .pagination__page i {
    font-size: 12px;
  }
}

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

.main__title {
  width: 100%;
  margin: 0 0 5px 0;
  color: white;
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
}

.main__topInfo {
  padding: 0 0 20px 0;
  width: 100%;
  border-bottom: 1px solid #515152;
  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;
}

.main__topInfo--margin {
  margin: 30px 0 0 0;
}

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

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

.main__models {
  display: block;
  font-size: 23px;
  font-weight: 400;
  color: white;
}

.main__models a {
  display: inline-block;
  color: #0e84f0;
  outline: none;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

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

.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;
  gap: 10px;
}

.main__info .separator {
  color: white;
  font-size: 22px;
}

@media only screen and (max-width: 950px) {
  .main__info .separator {
    font-size: 18px;
  }
}

.main__info .data {
  font-size: 22px;
  color: white;
  gap: 6px;
  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;
}

.main__info .data i {
  font-size: 18px;
}

@media only screen and (max-width: 950px) {
  .main__info .data {
    font-size: 18px;
  }
  .main__info .data i {
    font-size: 16px;
  }
}

.main__infoRight {
  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;
  margin: 0 0 0 auto;
}

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

.main__download {
  padding: 5px 15px;
  background: #515152;
  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;
  font-size: 33px;
  outline: none;
  text-decoration: none;
  font-weight: 400;
  color: white;
}

.main__download i {
  color: #0e84f0;
  font-size: 28px;
}

@media only screen and (max-width: 950px) {
  .main__download {
    font-size: 23px;
  }
  .main__download i {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .main__download {
    font-size: 18px;
  }
  .main__download i {
    font-size: 14px;
  }
}

.main__like {
  padding: 5px 15px;
  background: #515152;
  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;
  font-size: 33px;
  outline: none;
  text-decoration: none;
  font-weight: 400;
  color: white;
}

.main__like a {
  color: white;
}

.main__like a.active {
  color: #0e84f0;
}

@media only screen and (max-width: 950px) {
  .main__like {
    font-size: 23px;
  }
  .main__like i {
    font-size: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .main__like {
    font-size: 18px;
  }
  .main__like i {
    font-size: 14px;
  }
}

.main__description {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #515152;
  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;
}

.main__textTitle {
  color: white;
  font-size: 24px;
  font-weight: 500;
}

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

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

.main__comments {
  width: 100%;
  padding: 20px 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;
  gap: 20px;
}

.main__nameInput {
  width: 100%;
  max-width: 500px;
  border: 2px solid #515152;
  border-radius: 3px;
  font-size: 19px;
  font-weight: 400;
  color: white;
  background: none;
  outline: none;
  padding: 10px 15px;
  font-family: "Barlow Condensed", sans-serif;
}

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

.main__textArea {
  width: 100%;
  height: 250px;
  border: 2px solid #515152;
  border-radius: 3px;
  font-size: 19px;
  font-weight: 400;
  color: white;
  background: none;
  font-family: "Barlow Condensed", sans-serif;
  outline: none;
  padding: 10px 15px;
}

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

.main__submit {
  font-size: 23px;
  padding: 4px 15px;
  border-radius: 5px;
  margin: 0 0 0 auto;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  background: #0e84f0;
  border: 2px solid #0e84f0;
  font-family: "Barlow Condensed", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}

.main__submit:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #0e84f0;
}

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

.main__commentsContainer {
  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: 10px;
}

.main__comment {
  padding: 15px;
  border-radius: 5px;
  background: #141414;
  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: 10px;
  width: 100%;
}

.main__commAuthor {
  color: #0e84f0;
  font-size: 19px;
  font-weight: 400;
  outline: none;
  text-decoration: none;
}

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

.main__videoWrapper {
  width: 100%;
  margin: 0 0 10px 0;
}

.main__videoWrapper img {
  width: 100%;
}

.model {
  width: 100%;
  padding: 50px 10px;
  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: 40px;
}

@media only screen and (max-width: 700px) {
  .model {
    gap: 20px;
  }
}

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

.model__image {
  max-width: 370px;
  width: 100%;
}

.model__info {
  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: 10px;
}

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

.model__h1 {
  font-size: 36px;
  font-weight: 400;
  color: #0e84f0;
}

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

.model__h2 {
  font-size: 26px;
  font-weight: 400;
  color: #0e84f0;
}

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

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

.model__data {
  font-size: 24px;
  color: white;
  font-weight: 400;
}

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

.models {
  width: 100%;
  padding: 0 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 18px 0 0 0;
}

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

.models__topWrapper {
  margin: 0 auto 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;
}

.models__title {
  color: white;
  font-size: 27px;
  font-weight: 500;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

.models__sortBtn {
  font-size: 17px;
  background: none;
  border: 2px solid #515152;
  border-radius: 3px;
  padding: 4px 10px;
  text-align: center;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.models__sortBtn.active {
  border: 2px solid #0e84f0;
}

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

.models__container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 8px;
  -ms-grid-columns: (1fr)[6] !important;
      grid-template-columns: repeat(6, 1fr) !important;
  grid-auto-rows: 1fr;
}

@media only screen and (max-width: 1350px) {
  .models__container {
    -ms-grid-columns: (1fr)[4] !important;
        grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media only screen and (max-width: 820px) {
  .models__container {
    -ms-grid-columns: (1fr)[3] !important;
        grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media only screen and (max-width: 630px) {
  .models__container {
    -ms-grid-columns: (1fr)[2] !important;
        grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media only screen and (max-width: 350px) {
  .models__container {
    -ms-grid-columns: (1fr)[1] !important;
        grid-template-columns: repeat(1, 1fr) !important;
  }
}

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

.models__photo {
  width: 100%;
  aspect-ratio: 7.5/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.models__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: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 5px 0 0 0;
  width: 100%;
}

.models__name {
  color: #0e84f0;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 0 0;
}

.models__likes {
  color: white;
  font-size: 18px;
}

.models__likes i {
  margin: 0 5px 0 0;
  font-size: 16px;
}

.models .separator {
  font-size: 25px;
  color: #515152;
  margin: 0 10px;
}

.models .view-all {
  color: #0e84f0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: none;
  text-decoration: none;
  font-size: 22px;
  white-space: nowrap;
}

.models .view-all:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 530px) {
  .models .view-all {
    font-size: 15px;
  }
}

.videos {
  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;
  padding: 0 10px;
}

.videos__container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 8px;
  -ms-grid-columns: (minmax(calc(16%), 1fr))[3];
      grid-template-columns: repeat(3, minmax(calc(16%), 1fr));
  grid-auto-rows: 1fr;
}

@media only screen and (max-width: 1200px) {
  .videos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[2];
        grid-template-columns: repeat(2, minmax(calc(16%), 1fr));
  }
}

@media only screen and (max-width: 650px) {
  .videos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[1];
        grid-template-columns: repeat(1, minmax(calc(16%), 1fr));
  }
}

.videos__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;
  gap: 2px;
  outline: none;
  text-decoration: none;
}

.videos__photo {
  width: 100%;
  aspect-ratio: 10/5.6;
  -o-object-fit: cover;
     object-fit: cover;
}

.videos__title {
  color: white;
  font-size: 20px;
  font-weight: 400;
  outline: none;
  text-decoration: none;
  max-width: 100%;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  white-space: nowrap;
  max-width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
}

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

.videos__models {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #0e84f0;
  text-decoration: none !important;
}

.videos__models span {
  display: inline-block;
  color: #0e84f0;
  outline: none;
  text-decoration: none !important;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.videos__models a {
  display: inline-block;
  color: #0e84f0;
  outline: none;
  text-decoration: none !important;
}

.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: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px;
}

.videos__info .separator {
  color: white;
  font-size: 17px;
}

.videos__info .data {
  font-size: 17px;
  color: white;
  gap: 6px;
  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;
}

.videos__info .data i {
  font-size: 15px;
}

@media only screen and (max-width: 460px) {
  .videos__info .data {
    font-size: 13px;
  }
  .videos__info .data i {
    font-size: 13px;
  }
}

.videos .separator {
  font-size: 25px;
  color: #515152;
  margin: 0 10px;
}

.videos .view-all {
  color: #0e84f0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  outline: none;
  text-decoration: none;
  font-size: 22px;
  white-space: nowrap;
}

.videos .view-all:hover {
  opacity: 0.6;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media only screen and (max-width: 530px) {
  .videos .view-all {
    font-size: 15px;
  }
}

.container {
  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: 50px 0;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 1400px) {
  .container .videos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[2];
        grid-template-columns: repeat(2, minmax(calc(16%), 1fr));
  }
}

@media only screen and (max-width: 830px) {
  .container .videos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[1];
        grid-template-columns: repeat(1, minmax(calc(16%), 1fr));
  }
}

.container .photos__container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 8px;
  -ms-grid-columns: (minmax(calc(16%), 1fr))[5];
      grid-template-columns: repeat(5, minmax(calc(16%), 1fr));
  grid-auto-rows: 1fr;
}

@media only screen and (max-width: 1770px) {
  .container .photos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[4];
        grid-template-columns: repeat(4, minmax(calc(16%), 1fr));
  }
}

@media only screen and (max-width: 1500px) {
  .container .photos__container {
    -ms-grid-columns: (minmax(calc(13%), 1fr))[3];
        grid-template-columns: repeat(3, minmax(calc(13%), 1fr));
  }
}

@media only screen and (max-width: 1220px) {
  .container .photos__container {
    -ms-grid-columns: (minmax(calc(15%), 1fr))[2];
        grid-template-columns: repeat(2, minmax(calc(15%), 1fr));
  }
}

@media only screen and (max-width: 380px) {
  .container .photos__container {
    -ms-grid-columns: (minmax(calc(15%), 1fr))[1];
        grid-template-columns: repeat(1, minmax(calc(15%), 1fr));
  }
}

.filters {
  width: 0;
  padding: 20px 0;
  background: #141414;
  max-height: 1200px;
  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;
  margin: 0 50px 0 0;
  position: relative;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.filters.active {
  width: 280px;
  padding: 20px 10px;
  -webkit-transition: .6s;
  transition: .6s;
}

@media only screen and (max-width: 800px) {
  .filters {
    position: absolute;
    left: 0;
    top: -39px;
  }
}

.filters__list {
  margin: 30px 0 0 0;
  max-height: 100%;
  overflow-y: 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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 5px;
  width: 100%;
}

.filters__filter {
  outline: none;
  text-decoration: none;
  color: white;
  font-size: 18px;
  width: 100%;
  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-radius: 2px;
  padding: 5px 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.filters__filter .quantity {
  color: #515152;
  margin: 0 0 0 auto;
}

.filters__filter:hover {
  background: rgba(255, 255, 255, 0.048);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.filters__showBtn {
  color: black;
  font-size: 20px;
  width: 27px;
  height: 38px;
  background: #C7C7C7;
  border-radius: 0 5px 5px 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;
  text-decoration: none;
  border: none;
  outline: none;
  text-decoration: none;
  position: absolute;
  top: 0;
  right: -27px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

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

.filters__showBtn i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.filters__showBtn.active i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.photos__container {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-row-gap: 10px;
  grid-column-gap: 8px;
  -ms-grid-columns: (minmax(calc(16%), 1fr))[6];
      grid-template-columns: repeat(6, minmax(calc(16%), 1fr));
  grid-auto-rows: 1fr;
}

@media only screen and (max-width: 1760px) {
  .photos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[5];
        grid-template-columns: repeat(5, minmax(calc(16%), 1fr));
  }
}

@media only screen and (max-width: 1504px) {
  .photos__container {
    -ms-grid-columns: (minmax(calc(16%), 1fr))[4];
        grid-template-columns: repeat(4, minmax(calc(16%), 1fr));
  }
}

@media only screen and (max-width: 1210px) {
  .photos__container {
    -ms-grid-columns: (minmax(calc(13%), 1fr))[3];
        grid-template-columns: repeat(3, minmax(calc(13%), 1fr));
  }
}

@media only screen and (max-width: 850px) {
  .photos__container {
    -ms-grid-columns: (minmax(calc(15%), 1fr))[2];
        grid-template-columns: repeat(2, minmax(calc(15%), 1fr));
  }
}

@media only screen and (max-width: 380px) {
  .photos__container {
    -ms-grid-columns: (minmax(calc(15%), 1fr))[1];
        grid-template-columns: repeat(1, minmax(calc(15%), 1fr));
  }
}

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

@media only screen and (max-width: 1000px) {
  .join {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.join__payment {
  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;
  gap: 30px;
  width: 100%;
  max-width: 540px;
}

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

.join__step input[type=radio] {
  display: none;
}

.join__step input:checked + label {
  border: 2px solid #0e84f0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.join__button {
  font-size: 30px;
  padding: 10px 25px;
  border-radius: 5px;
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  background: #0e84f0;
  border: 2px solid #0e84f0;
  font-family: "Barlow Condensed", sans-serif;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}

.join__button:hover {
  background: transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  color: #0e84f0;
  cursor: pointer;
}

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

.join__title {
  color: white;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.join__title .blue {
  color: #0e84f0;
}

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

.join__input {
  padding: 10px;
  border: 2px solid #595757;
  border-radius: 3px;
  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;
  width: 100%;
}

.join__input i {
  font-size: 16px;
  color: white;
  margin: 0 10px 0 0;
}

@media only screen and (max-width: 550px) {
  .join__input i {
    font-size: 14px;
  }
}

.join__input input {
  width: 100%;
  color: white;
  font-size: 19px;
  font-weight: 400;
  border: none;
  outline: none;
  font-family: "Barlow Condensed", sans-serif;
  background: none;
}

@media only screen and (max-width: 550px) {
  .join__input input {
    font-size: 16px;
  }
}

.join__photo {
  width: 100%;
  max-width: 700px;
}

.join__row {
  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;
  gap: 10px;
}

.join__paymentInput {
  display: none;
}

.join__paymentWrapper {
  padding: 10px;
  border: 2px solid #595757;
  border-radius: 3px;
  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;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.join__paymentWrapper input[type=radio] {
  display: none;
}

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

.join__row input:checked + label {
  border: 2px solid #0e84f0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.join__trial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px;
  border: 2px solid #595757;
  border-radius: 3px;
  width: 100%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}

.join__trial .bestdeal {
  font-size: 21px;
  font-weight: 500;
  color: white;
  padding: 3px 8px;
  background: #189001;
  margin: 0 10px 0 auto;
}

@media only screen and (max-width: 550px) {
  .join__trial .bestdeal {
    font-size: 15px;
    white-space: nowrap;
  }
}

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

.join__trialPrice {
  margin: 0 0 0 auto;
  color: white;
  font-size: 48px;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

.join__trialPrice span {
  font-size: 24px;
  margin: 10px 2px 0 0;
}

@media only screen and (max-width: 550px) {
  .join__trialPrice span {
    font-size: 16px;
    margin: 6px 2px 0 0;
  }
}

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

.join__trialLeft .days {
  color: white;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 30px;
}

@media only screen and (max-width: 550px) {
  .join__trialLeft .days {
    font-size: 20px;
  }
}

.join__trialLeft .text {
  color: #969696;
  font-weight: 400;
  font-size: 14px;
}

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

* {
  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;
  padding: 0;
  background: black;
  font-family: "Barlow Condensed", 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 */