@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap");
* {
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
}

body {
  font-family: "Unbounded", sans-serif;
  color: #fff;
  background: #0a0429;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

a {
  display: block;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
  max-width: 360px;
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1368px) {
  .container {
    max-width: 1368px;
    padding: 0 84px;
  }
}

section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.title1 {
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}

@media (min-width: 1368px) {
  .title1 {
    font-size: 65px;
  }
}

.title2 {
  font-weight: 700;
  font-size: 36px;
  text-transform: uppercase;
}

@media (min-width: 1368px) {
  .title2 {
    font-size: 50px;
  }
}

.title3 {
  font-weight: 700;
  font-size: 20px;
}

.title4 {
  font-weight: 700;
  font-size: 24px;
}

.accent {
  color: #be00ed;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 700;
}

.bg-accent {
  background-image: url(/wp-content/themes/travibura/assets/img/bg-accent.webp);
  background-position: top 0 left 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-second {
  background-image: url(/wp-content/themes/travibura/assets/img/bg-second.webp);
  background-position: top 0 left 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.word-wrap {
  word-break: break-all;
}

@media (min-width: 1368px) {
  .word-wrap {
    word-break: normal;
  }
}

.logo {
  width: 100%;
  max-width: 218px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.logo:hover, .logo:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.logo:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.link {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 14px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.link:hover, .link:focus {
  color: #be00ed;
}

.link:active {
  color: #008eed;
}

.btn {
  display: block;
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  cursor: pointer;
  border: none;
  border-radius: 80px;
  padding: 18px 40px;
  margin: 0;
  -webkit-box-shadow: 0 5px 20px 0 rgba(190, 0, 237, 0.8);
          box-shadow: 0 5px 20px 0 rgba(190, 0, 237, 0.8);
  background: -webkit-gradient(linear, left top, right top, from(#008eed), to(#be00ed));
  background: linear-gradient(90deg, #008eed 0%, #be00ed 100%);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.btn.w-full {
  max-width: 100%;
}

.btn:hover, .btn:focus {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 5px 20px 0 #be00ed;
          box-shadow: 0 5px 20px 0 #be00ed;
}

.btn:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-box-shadow: 0 5px 20px 0 rgba(190, 0, 237, 0.2);
          box-shadow: 0 5px 20px 0 rgba(190, 0, 237, 0.2);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: #0a0429;
  z-index: 10;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero {
  padding-top: 150px;
}

.hero__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 0;
  justify-items: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}

@media (min-width: 1368px) {
  .hero__content {
    -ms-grid-columns: 1fr 0.8fr 1fr;
        grid-template-columns: 1fr 0.8fr 1fr;
  }
}

.hero__img {
  position: relative;
  z-index: 1;
  bottom: 30px;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

@media (min-width: 1368px) {
  .hero__img {
    bottom: -20px;
    left: -54px;
  }
}

.hero__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.hero__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 1368px) {
  .hero__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
  }
}

.hero__item {
  border-radius: 20px;
  padding: 40px 20px;
}

@media (min-width: 768px) {
  .hero__item:nth-child(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .hero__item:nth-child(2) {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  .hero__item:nth-child(3) {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

.performance__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 1368px) {
  .performance__content {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.performance__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.performance__lower {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 80px 1fr;
      grid-template-columns: 80px 1fr;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.performance__img {
  position: relative;
  right: -10%;
}

@media (min-width: 768px) {
  .performance__img {
    right: -20%;
  }
}

.products__page {
  padding-top: 150px;
  padding-bottom: 80px;
}

.products__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.products__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .products__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1368px) {
  .products__list {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.products__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.products__img {
  width: 100%;
}

.products__price {
  color: #be00ed;
  font-size: 18px;
  font-weight: 700;
}

.products__item-list {
  padding-left: 18px;
  list-style: disc;
}

.why__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media (min-width: 1368px) {
  .why__content {
    -ms-grid-columns: 330px 1fr;
        grid-template-columns: 330px 1fr;
  }
}

.why__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.why__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .why__list {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.why__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -ms-flex-item-align: start;
      align-self: flex-start;
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  max-height: 425px;
}

.why__img {
  position: relative;
  left: -10%;
  width: 100%;
  max-width: 220px;
  height: auto;
}

@media (min-width: 768px) {
  .why__img {
    max-width: 330px;
    left: -25%;
  }
}

.reviews__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

.reviews__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 1368px) {
  .reviews__list__three {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (min-width: 1368px) {
  .reviews__list__two {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

.reviews__item {
  padding: 20px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.reviews__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 2px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contacts__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-items: center;
  text-align: center;
  gap: 30px;
  max-width: 800px;
  margin: auto;
  margin-bottom: 30px;
}

.contacts__address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 330px;
}

.contacts__link {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #be00ed;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.contacts__link:hover, .contacts__link:focus {
  color: #008eed;
}

.contacts__link:active {
  color: #fff;
}

.footer__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 768px) {
  .footer__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-grid-columns: 1fr 343px;
        grid-template-columns: 1fr 343px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.footer__address {
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: 330px;
}

.footer__link {
  font-weight: 700;
  font-size: 16px;
  color: #be00ed;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.footer__link:hover, .footer__link:focus {
  color: #008eed;
}

.footer__link:active {
  color: #fff;
}

.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

.footer__social-link {
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.footer__social-link:hover, .footer__social-link:focus {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer__social-link:active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.footer__copy {
  opacity: 0.6;
}

.product-page {
  padding-top: 150px;
  padding-bottom: 80px;
}

.product-page__content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

@media (min-width: 1368px) {
  .product-page__content {
    -ms-grid-columns: 1fr 392px;
        grid-template-columns: 1fr 392px;
  }
}

.product-page__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 1368px) {
  .product-page__text-block {
    gap: 50px;
  }
}

.product-page__descr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

@media (min-width: 768px) {
  .product-page__descr {
    -ms-grid-columns: 80px 575px;
        grid-template-columns: 80px 575px;
  }
}

.product-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.product-page__list {
  padding-left: 18px;
  list-style: disc;
}

.product-page__img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.product-page__price {
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  color: #be00ed;
}

.cookie {
  display: none;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 12px;
  max-width: 1200px;
  z-index: 9;
}

.cookie__content {
  background: #fff;
  color: #121212;
  border: 4px solid #be00ed;
  border-radius: 24px;
  padding: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
}

.cookie__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.cookie__link {
  display: inline;
  text-decoration: underline;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.cookie__link:hover, .cookie__link:focus {
  color: #be00ed;
}

.cookie__btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .cookie__btn-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.privacys {
  padding-top: 150px;
}

.privacys__title {
  font-weight: 900;
  font-size: 40px;
  margin-bottom: 20px;
}

@media (min-width: 1368px) {
  .privacys__title {
    font-size: 62px;
  }
}

.privacys__subtitle {
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
}

.privacys__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

.privacys__list {
  list-style: disc;
  padding-left: 18px;
}
/*# sourceMappingURL=styles.css.map */