@import url(reset.css); 
button {
  cursor: pointer; }

img {
  max-width: 100%; }

html {
  overflow-x: hidden; }

* {
  font-family: 'Montserrat', sans-serif;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box; }

.grid {
  display: -ms-grid;
  display: grid; }

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

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  padding: 15px 0;
  z-index: 999; }
  .header .container {
    -ms-grid-columns: (auto)[2];
    grid-template-columns: repeat(2, auto);
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .header.active, .header.header-single {
    background-color: #1a1a1a; }

.mob-toggle {
  width: 40px;
  height: 26px;
  position: relative;
  cursor: pointer; }
  .mob-toggle span {
    position: absolute;
    left: 50%;
    margin-left: -18px;
    width: 100%;
    height: 2px;
    background-color: #fff;
    z-index: 100;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s; }
    .mob-toggle span:nth-child(1) {
      top: 0; }
    .mob-toggle span:nth-child(2) {
      top: 50%;
      /*margin-top: -1px; */
    }
    .mob-toggle span:nth-child(3) {
      top: 100%; }
  .mob-toggle.active span {
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s; }
    .mob-toggle.active span:nth-child(1) {
      top: 11px;
      -webkit-transform: rotate(-45deg);
         -moz-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
           -o-transform: rotate(-45deg);
              transform: rotate(-45deg); }
    .mob-toggle.active span:nth-child(2) {
      opacity: 0; }
    .mob-toggle.active span:nth-child(3) {
      top: 11px;
      -webkit-transform: rotate(45deg);
         -moz-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
           -o-transform: rotate(45deg);
              transform: rotate(45deg); }

.menu {
  background-color: #161616;
  padding: 60px;
  position: fixed;
  top: 45%;
  left: 50%;
  width: 100%;
  max-width: 400px;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
  z-index: -1;
  opacity: 0;
  visibility: hidden; }
  .menu.active {
    opacity: 1;
    visibility: visible;
    z-index: 998;
    top: 50%; }
  .menu a {
    display: block;
    padding: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center; }
    .menu a:hover {
      text-decoration: underline; }

.backdrop {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: -1;
  opacity: 0;
  -webkit-transition-delay: .1s;
     -moz-transition-delay: .1s;
       -o-transition-delay: .1s;
          transition-delay: .1s;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
  visibility: hidden; }
  .backdrop.active {
    opacity: 1;
    visibility: visible;
    z-index: 997; }

.logo {
  color: #fff;
  font-size: 30px;
  font-weight: 900; }
  .logo span {
    font-size: 14px;
    font-weight: 400; }

.hero {
  height: 100vh;
  min-height: 500px;
  position: relative; }
  .hero img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover; }

.hero--name-blur {
  position: absolute;
  bottom: 4%;
  left: 50%;
  -webkit-transform: translateX(-51%);
     -moz-transform: translateX(-51%);
      -ms-transform: translateX(-51%);
       -o-transform: translateX(-51%);
          transform: translateX(-51%);
  z-index: 2;
  font-size: 14vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
  -webkit-animation: 6s 0s hero-blur infinite;
     -moz-animation: 6s 0s hero-blur infinite;
       -o-animation: 6s 0s hero-blur infinite;
          animation: 6s 0s hero-blur infinite; }

@-webkit-keyframes hero-blur {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@-moz-keyframes hero-blur {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@-o-keyframes hero-blur {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

@keyframes hero-blur {
  0% {
    opacity: 1; }
  50% {
    opacity: 0.5; }
  100% {
    opacity: 1; } }

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
     -moz-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
  gap: 30px;
  max-width: 800px;
  width: 100%; }

.hero--name {
  font-size: 64px;
  text-align: center;
  color: #fff;
  font-weight: 900;
  letter-spacing: 1px; }

.hero--text {
  color: #fff;
  font-size: 26px;
  text-align: center;
  line-height: 2;
  font-weight: 400; }

.hero-btns {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  justify-items: center;
  gap: 30px;
  padding: 0 30px; }

.input-submit,
.btn {
  background-color: transparent;
  -webkit-border-radius: 0;
     -moz-border-radius: 0;
          border-radius: 0;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  padding: 15px 50px;
  position: relative;
  text-transform: uppercase;
  line-height: 2;
  z-index: 1;
  display: inline-block;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
  -webkit-transition-delay: .4s;
     -moz-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
  letter-spacing: 1px;
  max-width: 250px;
  cursor: pointer;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  white-space: nowrap; }
  .input-submit::before,
  .btn::before {
    -webkit-animation: 0.3s linear 0s normal forwards 1 running btnHover;
       -moz-animation: 0.3s linear 0s normal forwards 1 running btnHover;
         -o-animation: 0.3s linear 0s normal forwards 1 running btnHover;
            animation: 0.3s linear 0s normal forwards 1 running btnHover;
    background-color: inherit;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 21px;
    margin-top: -1px;
    -webkit-transform: scaleY(0.02);
       -moz-transform: scaleY(0.02);
        -ms-transform: scaleY(0.02);
         -o-transform: scaleY(0.02);
            transform: scaleY(0.02);
    background-color: #fff;
    z-index: -1; }
  .input-submit:hover,
  .btn:hover {
    color: #161616; }
    .input-submit:hover::before,
    .btn:hover::before {
      -webkit-animation: 0.5s linear 0s normal forwards 1 running btnHoverActive;
         -moz-animation: 0.5s linear 0s normal forwards 1 running btnHoverActive;
           -o-animation: 0.5s linear 0s normal forwards 1 running btnHoverActive;
              animation: 0.5s linear 0s normal forwards 1 running btnHoverActive; }

.btn--white {
  -webkit-appearance: none;
-webkit-appearance: none;
  background-color: #fff;
  border: 1px solid #161616;
  color: #161616;
  font-size: 14px;
  font-weight: 600;
  overflow: hidden;
  padding: 15px 50px;
  position: relative;
  text-transform: uppercase;
  line-height: 2;
  z-index: 1;
  display: inline-block;
  -webkit-transition: .3s all;
  -o-transition: .3s all;
  -moz-transition: .3s all;
  transition: .3s all;
  -webkit-transition-delay: .4s;
     -moz-transition-delay: .4s;
       -o-transition-delay: .4s;
          transition-delay: .4s;
  letter-spacing: 1px;
  max-width: 250px;
  cursor: pointer;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  white-space: nowrap;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s; }
  .btn--white:hover {
    background-color: #161616;
    color: #fff;
    text-decoration: none; }

.input-submit {
  -ms-grid-column-align: center;
      justify-self: center;
  position: relative;
  margin-top: 25px;
  padding: 0; }
  .input-submit input {
    border: 0;
    background-color: transparent;
    color: inherit;
    padding: 15px 50px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer; }

@-webkit-keyframes btnHover {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    width: 100%; }
  50% {
    -webkit-transform: scaleY(0.02);
            transform: scaleY(0.02);
    width: 100%; }
  100% {
    -webkit-transform: scaleY(0.02);
            transform: scaleY(0.02); } }

@-moz-keyframes btnHover {
  0% {
    -moz-transform: scaleY(1);
         transform: scaleY(1);
    width: 100%; }
  50% {
    -moz-transform: scaleY(0.02);
         transform: scaleY(0.02);
    width: 100%; }
  100% {
    -moz-transform: scaleY(0.02);
         transform: scaleY(0.02); } }

@-o-keyframes btnHover {
  0% {
    -o-transform: scaleY(1);
       transform: scaleY(1);
    width: 100%; }
  50% {
    -o-transform: scaleY(0.02);
       transform: scaleY(0.02);
    width: 100%; }
  100% {
    -o-transform: scaleY(0.02);
       transform: scaleY(0.02); } }

@keyframes btnHover {
  0% {
    -webkit-transform: scaleY(1);
       -moz-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
    width: 100%; }
  50% {
    -webkit-transform: scaleY(0.02);
       -moz-transform: scaleY(0.02);
         -o-transform: scaleY(0.02);
            transform: scaleY(0.02);
    width: 100%; }
  100% {
    -webkit-transform: scaleY(0.02);
       -moz-transform: scaleY(0.02);
         -o-transform: scaleY(0.02);
            transform: scaleY(0.02); } }

@-webkit-keyframes btnHoverActive {
  0% {
    -webkit-transform: scaleY(0.02);
            transform: scaleY(0.02); }
  50% {
    -webkit-transform: scaleY(0.02);
            transform: scaleY(0.02);
    width: 100%; }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    width: 100%; } }

@-moz-keyframes btnHoverActive {
  0% {
    -moz-transform: scaleY(0.02);
         transform: scaleY(0.02); }
  50% {
    -moz-transform: scaleY(0.02);
         transform: scaleY(0.02);
    width: 100%; }
  100% {
    -moz-transform: scaleY(1);
         transform: scaleY(1);
    width: 100%; } }

@-o-keyframes btnHoverActive {
  0% {
    -o-transform: scaleY(0.02);
       transform: scaleY(0.02); }
  50% {
    -o-transform: scaleY(0.02);
       transform: scaleY(0.02);
    width: 100%; }
  100% {
    -o-transform: scaleY(1);
       transform: scaleY(1);
    width: 100%; } }

@keyframes btnHoverActive {
  0% {
    -webkit-transform: scaleY(0.02);
       -moz-transform: scaleY(0.02);
         -o-transform: scaleY(0.02);
            transform: scaleY(0.02); }
  50% {
    -webkit-transform: scaleY(0.02);
       -moz-transform: scaleY(0.02);
         -o-transform: scaleY(0.02);
            transform: scaleY(0.02);
    width: 100%; }
  100% {
    -webkit-transform: scaleY(1);
       -moz-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
    width: 100%; } }

.block-dark {
  background-color: #232323; }

.block {
  padding: 120px 0;
  position: relative; }
  .block .container {
    position: relative;
    z-index: 10; }

.block-bg {
  position: relative; }
  .block-bg::after {
    position: absolute;
    content: '';
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 1; }

.block-title {
  margin-bottom: 100px; }
  .block-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3; }

.block-title--duplicate {
  color: #2b2b2b;
  font-size: 150px;
  white-space: nowrap;
  font-weight: 800;
  line-height: 110px;
  position: absolute;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  top: 170px;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1; }

.block-title--lighter {
  color: #fff; }

.shop {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.shop-item {
  background-color: #2f2f2f;
  border: 2px solid #aeadad;
  position: relative; }
  .shop-item:hover .btn {
    color: #161616; }
    .shop-item:hover .btn::before {
      -webkit-animation: 0.5s linear 0s normal forwards 1 running btnHoverActive;
         -moz-animation: 0.5s linear 0s normal forwards 1 running btnHoverActive;
           -o-animation: 0.5s linear 0s normal forwards 1 running btnHoverActive;
              animation: 0.5s linear 0s normal forwards 1 running btnHoverActive; }

/*.shop-img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover; }*/
.shop-img {
  display: flex;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
  width: 100%;
  height: 300px; }
.shop-img p {
  font-family: 'Montserrat';
  color: #fff;
  line-height: 1.5;
}

.shop-img p:nth-child(1) {
  font-size: 48px;
    font-weight: 900;
}
.shop-img p:nth-child(2) {
  font-size: 32px;
  font-weight: 700;
}
.shop-img p:nth-child(3) {
  font-size: 40px;
  font-weight: 700;
}

.shop-content {
  padding: 55px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  justify-items: center; }

.shop--title {
  margin: 0;
  color: #aeadad;
  font-size: 18px;
  text-align: center;
  font-weight: 400; }

.shop--price {
  color: #aeadad;
  font-size: 22px;
  text-align: center;
  font-weight: 400; }

.shop--val {
  font-size: 44px;
  font-weight: 400;
  margin-left: 5px; }

.shop--currency {
  font-weight: 400; }

.block--img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover; }
.block-benefit {
  background-color: #000;
}
.benefits {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px; }

.benefit {
  color: #b8b8b8;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 75px 30px;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
              -ms-grid-row-align: stretch;
          align-self: stretch; }

.benefit--icon {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative; }
  .benefit--icon img {
    height: 55px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center; }
  .benefit--icon::before, .benefit--icon::after {
    background-color: #969696;
    bottom: 0;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    width: 30px; }
  .benefit--icon::after {
    bottom: 4px;
    margin-left: -10px;
    width: 20px; }

.benefit--title {
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 300;
  line-height: 14px;
  line-height: 1.4;
  margin-bottom: 22px;
  text-transform: uppercase;
  text-align: center; }

.benefit--text {
  color: #959595;
  font-size: 14px;
  line-height: 23px;
  text-align: center;
  margin: 0; }

.block--content {
  text-align: center; }
  .block--content p {
    color: #d7d7d7;
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
    margin: 10px 0; }
  .block--content a:not(.btn) {
    color: #fff; }
    .block--content a:not(.btn):hover {
      text-decoration: underline; }
  .block--content .btn {
    margin-top: 40px; }

.limitations {
  gap: 50px; }

.cover-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2; }

.single-price-right {
  margin-left: auto; }

.countdown-section {
  width: 70px;
  text-align: center; }

.countdown-amount {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 5px; }

.countdown-period {
  opacity: .7;
  font-size: 14px; }

.timer--title {
  width: 100%;
  font-size: 14px;
  opacity: .7;
  margin-bottom: 15px;
  text-align: center; }

.works {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 80px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.work-item {
  text-align: center; }
  .work-item p {
    font-size: 18px;
    line-height: 2; }

.work-icon {
  width: 100px;
  height: 100px;
  text-align: center;
  margin: 0 auto 30px; }
  .work-icon img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center; }

.form {
  margin: 30px 0;
  -webkit-box-pack: stretch;
  -webkit-justify-content: stretch;
     -moz-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  justify-items: center; }
  .form form {
    max-width: 400px;
    display: -ms-grid;
    display: grid;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-pack: stretch;
    -webkit-justify-content: stretch;
       -moz-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch; }

.input-item {
  position: relative;
  margin-bottom: 30px;
  width: 100%; }
  .input-item input,
  .input-item textarea {
    text-align: center;
    display: inline-block;
    padding: 20px;
    border: 1px solid #373737;
    outline: none;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    width: 100%; }
    .input-item .wpcf7-not-valid-tip {
      position: absolute;
    padding: 0;
    font-size: 14px;
    }
    .wpcf7 form .wpcf7-response-output {
      margin-left: 0;
      padding: 15px;
      font-size: 14px;
    }

.socials {
  -ms-grid-columns: auto 30px auto;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin: 30px 0; }

.social {
  width: 50px;
  height: 50px;
  cursor: pointer;
  -moz-background-size: cover;
       background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
  opacity: 0.9;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  display: inline-block; }
  .social:hover {
    opacity: 1; }

.social--tg {
  background-image: url("../images/icons/telegram.png"); }
.social--vb {
  background-image: url("../images/icons/viber.png"); }
.social--ws {
  background-image: url("../images/icons/whatsapp.png"); }

.close-modal {
  display: inline-block;
  position: absolute;
  right: 30px;
  top: 30px;
  width: 30px;
  height: 30px;
  background-image: url("../images/icons/close-icon-white.png");
  -moz-background-size: contain;
       background-size: contain;
  background-repeat: no-repeat;
  background-position: 50%;
  cursor: pointer;
  opacity: .8;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s; }
  .close-modal:hover {
    opacity: 1; }

.footer {
  background-color: #1a1a1a;
  padding: 100px 0; }
  .footer .container {
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px; }
    .footer .container * {
      color: #fff; }

.copyright {
  text-align: right; }

.developed {
  text-align: center;
  text-decoration: underline; }
  .developed:hover {
    text-decoration: none; }

p.contact-item {
  margin: 10px 0 30px 0; }

.wpcf7-response-output {
  background-color: #fff;
  padding: 10px;
  line-height: 1.4; }

.wpcf7-not-valid-tip {
  padding: 5px;
  background-color: #fff;
  margin-top: 4px; }

.single-conteiner {
  padding: 50px 15px
   }

   .single-conteiner * {
    font-family: 'Open Sans';
   }

 .single-conteiner li {
  margin-bottom: 15px;
 }

.single-top {
  background-color: #161616;
  padding: 100px 0;
  text-align: center; }
  .single-top h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700; }

.single-content {
  -ms-grid-columns: 40% 20px 59%;
  grid-template-columns: 40% 59%;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 50px 0 0; }
  .single-content a {
    text-decoration: underline;
  }

.single-text {
  grid-column: 1 / 3;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.4; }
  .single-text p {
    margin-bottom: 10px; }

.single-details-btns {
  margin: 20px 0;
  text-align: center; }
  .single-details-btns p {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 20px; }

.single-price {
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.single-price-left {
  display: flex;
}
.single-price--old {
  opacity: 0.4;
  text-decoration: line-through;
  margin: 0 15px 0 0;
  font-size: 18px;
  align-self: center;
  width: 100%; }

.single-price--current {
  font-size: 32px; }

.checkbox-wrap {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 20px; }
  .checkbox-wrap label {
    font-size: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex; 
    cursor: pointer; }
  .checkbox-wrap input {
    width: 30px;
    flex: 1 0 30px;
    height: 30px;
    margin-right: 20px; }

.form-item-info--btn {
  width: 100%;
  word-break: break-word;
  cursor: pointer;
  margin: 5px 0 0 50px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
              -ms-grid-row-align: center;
          align-self: center;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s; }
  .form-item-info--btn.active {
    text-decoration: underline; }
.form-item-info img {
  margin: 10px 0;
}
.form-item-info {
  line-height: 1.5;
  margin: 20px 0;
  display: none;
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
     -moz-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%; }


.form-item-info a  {
  text-decoration: underline;
}

  .form-item-info p {
    margin-bottom: 20px; }

    .limitations--text {
      width: 100%;
      text-align: center;
      line-height: 1.2;
      color: #fff;
      font-size: 18px;
      margin-bottom: 50px;
      text-decoration: underline;
    }

.additionals {
  padding: 0 20px;
  border: 1px solid #373737;
  margin-bottom: 30px;
}

.single-page {
  padding: 50px 0;
}
.single-page h1 {
  text-align: center;
}

.faq-wrapper {
  padding: 30px 15px 0
}
.faq-item {
  border: 1px solid #000;
  padding: 15px;
  margin-bottom: 20px;
  cursor: pointer;
}
.faq--title {
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}
.faq--content {
  display: none;
  margin-top: 15px;
}
.faq--content * {
  line-height: 1.4;
}

.faq--content p {
  margin-bottom: 15px;
}
.faq--content p:last-child {
  margin: 0;
}
@media screen and (max-width: 1800px) {
  .block-title--duplicate {
    font-size: 100px; }
  .d {
    display: block; } }

@media screen and (max-width: 1200px) {
  .single-details {
    text-align: center;
  }
  .single-text {
    grid-column:  initial;
  }
  .single-content {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%; }
  .d {
    display: block; } }

@media screen and (min-width: 992px) {
  .mob-toggle {
    margin-right: 15px
  }
  .limit {
    width: 100%;
    justify-content: start;
    -ms-grid-columns: 100px auto auto;
    grid-template-columns: 100px auto auto;
    max-width: 800px;
    -ms-grid-row-align: center;
        align-self: center;
    -ms-grid-column-align: center;
        justify-self: center; }
    .limit .benefit--icon {
      width: 100px;
      align-self: center;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      grid-row: 1 / 3;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-column: 1 / 3;
      padding: 0 30px 0 0;
      margin: 0 30px 0 0; }
      .limit .benefit--icon::after, .limit .benefit--icon::before {
        width: 1px;
        height: 30px;
        left: auto;
        right: 0;
        top: 50%;
        -webkit-transform: translate(0, -50%);
           -moz-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
             -o-transform: translate(0, -50%);
                transform: translate(0, -50%); }
      .limit .benefit--icon::after {
        height: 20px;
        right: 4px; }
    .limit .benefit--title {
      -ms-grid-column: 3;
      grid-column: 3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 1;
      grid-row: 1 /2;
      text-align: left; }
    .limit .benefit--text {
      -ms-grid-column: 3;
      grid-column: 3;
      text-align: left;
      -ms-grid-row: 2;
      -ms-grid-row-span: 1;
      grid-row: 2 / 3; } }

@media screen and (max-width: 992px) {
  .hero {
    height: calc(100vh - 20px);
  }
.checkbox-wrap input {
    width: 20px;
    flex: 1 0 20px;
    height: 20px;
    margin-right: 15px;
}
.form-item-info--btn {
  margin-left: 35px
}
.checkbox-wrap label {
  font-size: 18px
}
.checkbox-wrap p {
  line-height: 1.2;
}
.limitations {
  gap:  30px;
}
p.contact-item {
  margin: 0 0 16px 0;
}
.socials {
  margin-bottom: 0
}
.menu a {
  padding: 25px 0
}
p.contact-item {
  margin: 0
}
.single-content {
  padding: 0
}
  .single-text {
    font-size: 16px
  }
  .single-details img {
    height: 300px;
    display: block;
    margin: 0 auto;
    width: auto; }
  .single-price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .single-price-right {
    margin: 20px auto 0; }
  .wpcf7 {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    position: relative; }
  .wpcf7-spinner {
    position: absolute;
    right: 0; }
  .block-title--duplicate {
    font-size: 7vw;
    top: 80px; }
  .block-title h2 {
    font-size: 6vw; }
  .hero--name {
    font-size: 11vw; }
  .hero--text {
    margin: 6px 0 13px;
    font-size: 19px;
    line-height: 1.5; }
  .block {
    padding: 23px 0 50px; }
  .block-title {
    margin-bottom: 23px; }
  .shop-content {
    padding: 40px 20px; }
  .benefit {
    padding: 30px 20px; }
  .footer {
    padding: 50px 0; }
  .developed,
  .copyright {
    text-align: left; }
  .d {
    display: block; } }

@media screen and (max-width: 768px) {

.shop-img p:nth-child(1) {
  font-size: 40px; 
}
.shop-img p:nth-child(2) {
  font-size: 28px; 
}
.shop-img p:nth-child(3) {
  font-size: 30px; 
}
  .work-icon {
    opacity: 0.8; }
  .work-item {
    margin-bottom: 20px; }
  .block-title--duplicate {
    top: 60px; }
  .d {
    display: block; } }

@media screen and (max-width: 576px) {
  .work-icon {
    width: 50px;
    height: 50px; }
/*  .shop-img img {
    height: 200px; }*/
  .shop-img {
    height: 200px; }
  .block-title--duplicate {
    top: 33px; }
  .shop {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
  .d {
    display: block; } }

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