@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*--------------------*/
body {
  background-color: #000;
  font-family: "Montserrat";
  font-weight: 400;
  line-height: 150%;
  font-style: normal;
  color: #fff;
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  body {
    font-size: -webkit-calc(14px + 3.4 * ((100vw - 320px) / 1440));
    font-size: calc(14px + 3.4 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  body {
    font-size: -webkit-calc(14px + 2 * (100vw / 1440));
    font-size: calc(14px + 2 * (100vw / 1440));
  }
}

.wrapper {
  width: 85%;
  margin: 0 auto;
}

/* HEADER */
.header {
  background-color: #0C131B;
  width: 100%;
  line-height: 1;
  padding: 30.5px 0 35px 0;
}

.header__wrapper {
  position: relative;
}

.header__navigation {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__burger {
  display: none;
}

.header__list {
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 48px;
     -moz-column-gap: 48px;
          column-gap: 48px;
  text-transform: uppercase;
}

.header__link a {
  display: inline-block;
  color: #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.header__link a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.header__link a:active {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}

.header__link-active {
  font-weight: 700;
}

.header__switch-list {
  cursor: pointer;
  color: #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.header__switch-list i {
  margin-left: 10px;
}

.header__switch-list:hover {
  color: rgba(255, 255, 255, 0.6);
}

.header__switch-list:hover .header__list-container {
  overflow: visible;
  width: 330px;
  opacity: 1;
}

.header__switch-list:hover .header__list-child {
  border-left: 2px solid #000;
}

.header__list-container {
  position: absolute;
  left: 0;
  top: 25px;
  width: 0;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__list-child {
  overflow: hidden;
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #0c131be6;
}

.header__link-child a {
  padding: 10px 0 10px 20px;
  width: 100%;
  line-height: 1.4;
  text-transform: capitalize;
  border-bottom: 1px solid #000;
  white-space: nowrap;
}

.header__logo {
  text-align: center;
  margin: 0 auto;
}

.header__shop-profile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
  margin-left: auto;
}

.header__shop-profile a svg path {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.header__shop-profile a svg:hover path {
  fill: rgba(255, 255, 255, 0.6) !important;
}

/* **************************************************************************       SHOP PAGES        ***************************************************************** */
/*  SHOP   */
.shop {
  background-color: #EDEFF2;
  padding: 60px 0;
}

.shop__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
}

.shop__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  width: 100%;
}

.shop__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 50px;
}

.shop__list .shop__link:first-child img {
  width: 80%;
}

.shop__list .shop__link:last-child img {
  width: 90%;
}

.shop__link {
  width: 150px;
  max-width: 150px;
  max-height: 150px;
  padding: 25px;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.shop__link:hover:not(.shop__link-active) {
  border: 1px solid #290883;
  background-color: rgba(0, 0, 0, 0.1);
}

.shop__link:active:not(.shop__link-active) {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  transition: all 0.1s;
}

.shop__link-active {
  border: 1px solid #616366;
}

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

.shop__active {
  width: 100%;
}

.shop__active .shop__image {
  width: 100%;
  max-width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  max-height: 500px;
  min-height: 500px;
}

.shop__right {
  color: #0C131B;
}

.shop__title {
  color: #0C131B;
  font-weight: 300;
  font-size: 48px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.shop__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  margin-bottom: 17px;
  position: relative;
}

.shop__name {
  width: 100px;
  font-size: 14px;
  line-height: 1;
}

.shop__models {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background-color: transparent;
  width: 250px;
  padding: 5px 0px 5px 12px;
  border: 2px solid #0C131B;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  cursor: pointer;
}

.shop__model {
  cursor: pointer;
  background-color: rgba(0, 217, 255, 0.055);
}

.shop__model:hover {
  background-color: #fff;
}

.shop__variants {
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  background-color: transparent;
  width: 250px;
  padding: 5px 0px 5px 12px;
  border: 2px solid #0C131B;
  -webkit-border-radius: 2px;
          border-radius: 2px;
  cursor: pointer;
}

.shop__variant {
  cursor: pointer;
  background-color: rgba(0, 217, 255, 0.055);
}

.shop__variant:hover {
  background-color: #fff;
}

.shop__margin {
  margin-bottom: 40px;
}

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

.shop__minus {
  padding: 12px;
  line-height: 1;
  font-size: 12px;
  background-color: #0C131B;
  color: #fff;
  -webkit-border-radius: 7px 0 0 7px;
          border-radius: 7px 0 0 7px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.shop__minus:hover {
  background-color: rgba(0, 0, 0, 0.815);
}

.shop__minus:active {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.shop__number {
  border: 1px solid #0C131B;
  width: 40px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop__plus {
  padding: 12px;
  line-height: 1;
  font-size: 12px;
  background-color: #0C131B;
  color: #fff;
  -webkit-border-radius: 0px 7px 7px 0px;
          border-radius: 0px 7px 7px 0px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.shop__plus:hover {
  background-color: rgba(0, 0, 0, 0.815);
}

.shop__plus:active {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.shop__price {
  font-size: 18px;
  line-height: 100%;
}

.shop__discount {
  font-size: 18px;
  line-height: 100%;
}

.shop__cost {
  font-size: 18px;
  line-height: 100%;
}

.shop__total {
  font-size: 18px;
  line-height: 100%;
}

.shop__cart {
  width: 100%;
  background-color: #0C131B;
  color: #ffffff;
  font-weight: 500;
  font-size: 19.62px;
  line-height: 24px;
  padding: 10px 0;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  margin-top: 37px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.shop__cart:hover {
  background-color: #000;
}

.shop__cart:active {
  -webkit-transition: all 0.05s;
  -o-transition: all 0.05s;
  transition: all 0.05s;
  -webkit-transform: scale(0.97);
      -ms-transform: scale(0.97);
          transform: scale(0.97);
}

/*  INFO  */
.info {
  padding: 60px 0 100px;
  background: #182636;
  background: -webkit-radial-gradient(circle, #182636 0%, #0c131b 70%);
  background: -o-radial-gradient(circle, #182636 0%, #0c131b 70%);
  background: radial-gradient(circle, #182636 0%, #0c131b 70%);
}

.info__wrapper {
  width: 70%;
  margin: 0 auto;
}

.info [data-block] {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  transition: all 1s;
  opacity: 0;
}

.info__block-active {
  opacity: 1 !important;
}

.info__tabs {
  background-color: #060A0E;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  line-height: 24px;
  padding: 8px 0;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  text-transform: uppercase;
}

.info__tab {
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.info__tab:hover:not(.info__tab-active) {
  color: rgba(255, 255, 255, 0.7);
}

.info__tab:active:not(.info__tab-active) {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
  -webkit-transition: all 0.05s;
  -o-transition: all 0.05s;
  transition: all 0.05s;
}

.info__tab-active {
  font-weight: 700;
}

.info__subtitle {
  font-weight: 300;
  font-size: 20px;
  line-height: 150%;
}

.info__list {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}

.info__link {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 96px 162px 1fr;
      grid-template-columns: 96px 162px 1fr;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.info__icon {
  width: 96px;
  min-width: 96px;
  height: 96px;
  background-color: #fff;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.info__icon i {
  color: #0D1E32;
}

@media screen and (max-width: 767px) {
  .info__icon i {
    font-size: -webkit-calc(28px + 13.6 * ((100vw - 320px) / 1440));
    font-size: calc(28px + 13.6 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .info__icon i {
    font-size: -webkit-calc(28px + 8 * (100vw / 1440));
    font-size: calc(28px + 8 * (100vw / 1440));
  }
}

.info__text {
  max-width: 162px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
}

.info__description {
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
}

.technical {
  margin: 0 auto;
}

.technical__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .technical__text {
    font-size: -webkit-calc(15px + 8.5 * ((100vw - 320px) / 1440));
    font-size: calc(15px + 8.5 * ((100vw - 320px) / 1440));
  }
}

@media screen and (min-width: 767px) {
  .technical__text {
    font-size: -webkit-calc(15px + 5 * (100vw / 1440));
    font-size: calc(15px + 5 * (100vw / 1440));
  }
}

/*  FOOTER  */
.footer {
  background-color: #000000;
  padding: 50px 0;
}

.footer__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-bottom: 36px;
  border-bottom: 2px solid #4C4C4C;
}

.footer__socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.footer__link {
  line-height: 26px;
  color: #ffffff;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  padding: 5px;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer__link:active {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom {
  margin-top: 45px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.footer__item a {
  color: #fff;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}

.footer__item a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer__item a:active {
  color: rgba(255, 255, 255, 0.4);
}

.footer__bold {
  font-weight: 700;
}

@media screen and (max-width: 1280px) {
  .header__navigation {
    -ms-grid-columns: 2fr 1fr 2fr;
        grid-template-columns: 2fr 1fr 2fr;
  }
  .shop__title {
    font-size: 36px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 15px;
  }
  .footer__copyright {
    text-align: right;
  }
}

@media screen and (max-width: 1000px) {
  .header {
    position: fixed;
    top: 0;
    z-index: 9998;
    padding: 10px 0;
  }
  .header__wrapper {
    position: relative;
  }
  .header__logo {
    width: 100%;
    text-align: center;
  }
  .header__navigation {
    display: block;
  }
  .header__shop-profile {
    position: absolute;
    top: 0;
    right: 0;
  }
  .header__list {
    padding-top: 20px;
    width: 40%;
    height: 100%;
    color: #ccc;
    position: fixed;
    top: 0;
    right: -40%;
    -webkit-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: rgba(2, 9, 11, 0.819);
    z-index: 9999;
  }
  .header__list-container {
    position: static;
    opacity: 1;
    width: auto;
    height: auto;
  }
  .header__switch-list {
    padding: 20px 0 0px 20px;
    width: 100%;
  }
  .header__switch-list:hover {
    color: #fff;
  }
  .header__switch-list:hover .header__list-container {
    overflow: visible;
    width: auto;
    opacity: 1;
  }
  .header__switch-list:hover .header__list-child {
    border: none;
  }
  .header__list-child {
    margin-top: 0;
    margin-left: 30px;
    overflow: visible;
    background-color: transparent;
  }
  .header__link:not(.header__switch-list) {
    width: 100%;
    border-bottom: 2px solid rgba(135, 207, 235, 0.445);
  }
  .header__link:not(.header__switch-list) a {
    width: 100%;
    padding: 20px 0 20px 20px;
    border-bottom: none;
    white-space: normal;
  }
  .header__list-child {
    margin-top: 10px;
    margin-bottom: 30px;
    margin-left: 0;
  }
  .header__list-child .header__link-child a {
    border-bottom: 1px solid gray;
  }
  .header__list.animate {
    right: 0;
  }
  .header__burger {
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .header__burger span, .header__burger span:before, .header__burger span:after {
    width: 100%;
    position: absolute;
    height: 2px;
    background: #ffffff;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 5px;
            border-radius: 5px;
  }
  .header__burger span:before {
    content: "";
    top: -7px;
    -webkit-transition: top 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: top 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: top 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__burger span {
    top: 12px;
  }
  .header__burger span:after {
    content: "";
    bottom: -7px;
    -webkit-transition: bottom 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms, -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    -o-transition: bottom 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: bottom 300ms 300ms, transform 300ms cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header__burger span.active:before {
    content: "";
    top: 0px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: top 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: top 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: top 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: top 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: top 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .header__burger span.active:after {
    content: "";
    bottom: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transition: bottom 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: bottom 300ms, -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    -o-transition: bottom 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: bottom 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: bottom 300ms, transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 300ms 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  .header__burger span.active {
    background: rgba(255, 255, 255, 0);
  }
}

@media screen and (max-width: 750px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
  .footer__socials {
    margin-left: auto;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .footer__bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 7px;
  }
}

@media screen and (max-width: 700px) {
  .header__list {
    min-width: 210px;
    right: -280px;
  }
  .header__logo svg {
    width: 120px;
  }
}

@media screen and (max-width: 500px) {
  .wrapper {
    width: 90%;
  }
  .header__wrapper {
    width: 90%;
    margin: 0 auto;
  }
  .header__shop-profile {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .shop__title {
    font-size: 28px;
  }
}

/* **************************************************************************       SHOP PAGE RESPONSIVE        ***************************************************************** */
/*  RESPONSIVE CONTENT  */
@media screen and (min-width: 1740px) {
  .shop .shop__active__image {
    margin-left: 20%;
  }
}

@media screen and (max-width: 1440px) {
  .shop__wrapper {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
  .shop__left {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
  .shop__models {
    width: 150px;
  }
  .shop__variants {
    width: 150px;
  }
}

@media screen and (max-width: 1000px) {
  .shop__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 50px;
  }
  .shop__item {
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .shop__models {
    width: 220px;
  }
  .shop__variants {
    width: 220px;
  }
  .info__wrapper {
    width: 90%;
  }
}

@media screen and (max-width: 700px) {
  .shop__left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .shop__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    margin-top: 50px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
  .shop__link {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
  .shop__image {
    margin: 0 auto;
  }
  .shop__active {
    text-align: center;
  }
  .info__link {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    row-gap: 15px;
  }
  .info__icon {
    margin: 0 auto;
  }
  .info__text {
    margin: 0 auto;
    text-align: center;
  }
  .info__description {
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 420px) {
  .info__tabs {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
