* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: "Ubuntu", sans-serif;
}

.container {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: #f3f1f7;
    outline: none;
}

.c-padding {
    padding: 30px 20px;
}

.main {
    background: url("img/main.webp") top center/contain no-repeat;
    height: 710px;
    position: relative;
}

h1 {
    background: #ffdc23;
    display: inline-block;
    position: absolute;
    top: 40px;
    left: 0;
    font-size: 60px;
    padding: 5px 15px;
    text-transform: uppercase;
    color: #111;
}

h2 {
    max-width: 180px;
    font-size: 20px;
    position: absolute;
    font-weight: 500;
    text-align: center;
    left: 50px;
    top: 340px;
}

h2 span {
    background: #ffdc23;
    display: inline-block;
    padding: 0 3px;
}

.main-items {
    display: flex;
    justify-content: space-between;
}

.main-item {
    width: 30%;
    text-align: center;
}

.main-item p {
    margin-top: 15px;
}

.main-item img {
    width: 100%;
}

.main-timer {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1176470588);
}

.timer-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.price {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.old {
    width: 30%;
}

.old span {
    font-size: 14px;
}

.old .oldproductsum {
    font-size: 24px;
    font-weight: 500;
    text-decoration: line-through;
}

.new {
    width: 50%;
    background: #fff;
    font-size: 36px;
    color: #00b13f;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1176470588);
    padding: 15px;
    text-align: center;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

.button {
    max-width: 380px;
    margin: 0 auto;
    background: #ff7e36;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ff7e36, #ffb13b);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 10000px;
    width: 100%;
    display: block;
    padding: 25px;
    outline: none;
    border: none;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(255, 153, 57, 0.3411764706);
}

.button:after {
    content: "";
    position: absolute;
    top: 0;
    left: -200%;
    width: 100%;
    animation: glare 2s ease infinite forwards;
    height: 100%;
    transform: skewX(-20deg);
    background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.button:active {
    transform: translateY(1px);
    box-shadow: none;
}

@keyframes glare {
    100% {
        left: 200%;
    }
}

.date {
    text-align: center;
    font-size: 16px;
    color: #111;
    margin: 20px 0;
}

.date span {
    font-weight: bold;
}

.problem {
    background: #435671;
    background: linear-gradient(to right, #435671, #5f5173);
}

.expert {
    background: #435671;
    background: linear-gradient(to right, #435671, #5f5173);
    margin-top: -5px;
}

.section-title {
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-align: center;
}

.section-title .yellow-bg {
    background: #ffdc23;
    display: inline-block;
    padding: 0 2.5px;
}

.section-title .yellow {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    z-index: 11;
}

.section-title .yellow::before {
    content: "";
    position: absolute;
    background: #ffdc23;
    width: 100%;
    height: 6px;
    z-index: 10;
    bottom: -5px;
    left: 0;
    right: 0;
    border-radius: 1000px;
}

.problems {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.problem-item {
    width: 50%;
    padding: 15px;
}

.problem-item img {
    width: 100%;
    border-radius: 5px;
}

.problem-item p {
    color: #fff;
    text-align: center;
    margin-top: 15px;
}

.w-img {
    width: 100%;
}

.section-title-black {
    color: #111;
}

.hand-image {
    padding-left: 20px;
    margin: 20px 0;
}

.p-df {
    font-size: 18px;
    color: #111;
}

.p-df .yellow-bg {
    background: #ffdc23;
    padding: 0 2.5px;
    display: inline-block;
}

.tac {
    text-align: center;
}

.desc-item {
    display: flex;
    margin: 20px 0;
    border-bottom: 3px solid #00b13f;
}

.desc-item img {
    width: 30%;
    -o-object-fit: cover;
    object-fit: cover;
}

.desc-item .desc-item-text {
    width: 70%;
    padding: 15px;
    font-size: 16px;
    background: #fff;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.section-title.arrow span {
    position: relative;
    z-index: 1;
}

.section-title.arrow span::after {
    z-index: -1;
    content: "";
    position: absolute;
    background: url("img/arrow.svg") center center/contain no-repeat;
    padding: 30px;
    right: -50px;
    bottom: -35px;
}

.video-block {
    margin-top: 20px;
}

.advantage {
    background: #435671;
    background: linear-gradient(to right, #435671, #5f5173);
}

.hand-image-2 {
    padding-right: 20px;
    margin-bottom: 20px;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}

.tech-item {
    width: 50%;
    padding: 10px;
    margin: 5px 0;
}

.tech-item p {
    font-size: 16px;
}

.tech-item p:nth-child(2) {
    margin-top: 5px;
    font-size: 21px;
    font-weight: 500;
}

.expert-block {
    background: #fff;
    border-bottom: #00b13f 3px solid;
    padding: 20px;
}

.expert-block p {
    text-align: center;
    margin: 20px 0;
    font-size: 16px;
    line-height: 24px;
}

.expert-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.expert-top img {
    width: 150px;
    margin: 0 auto;
}

.expert-name {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.expert-job {
    text-align: center;
    font-size: 16px;
    width: 100%;
    font-weight: normal;
}

.qq {
    width: 20px;
    display: block;
    margin: 20px auto;
    height: 20px;
}

.complect-block {
    border-bottom: #00b13f 3px solid;
    background: #fff;
    margin-top: 20px;
    z-index: 1;
    position: relative;
}

.complect-block img {
    width: 100%;
}

.complect-list {
    padding: 20px 50px;
}

.complect-list li {
    margin: 15px 0;
}

.glasses {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px !important;
    z-index: -1;
    -o-object-fit: contain;
    object-fit: contain;
}

.reviews-slide {
    margin: 20px 0;
}

.reviews {
    margin-top: -5px;
    background: #435671;
    background: linear-gradient(to right, #435671, #5f5173);
}

.review-item {
    background: #fff;
    border-bottom: #00b13f 3px solid;
}

.review-photo {
    width: 100%;
}

.review-content {
    padding: 20px;
}

.review-ava {
    width: 50px;
    -o-object-fit: contain;
    object-fit: contain;
}

.review-top {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.review-name {
    font-weight: 500;
    width: 100%;
    text-align: center;
    margin: 15px 0;
}

.review-text {
    text-align: center;
}

.review-text p {
    margin: 20px 0;
    font-size: 16px;
    line-height: 30px;
}

.review-star {
    width: 100px;
    margin: 0 auto;
}

.splide__arrow {
    background: #ffdc23 !important;
    opacity: 1 !important;
    top: 43% !important;
    outline: none !important;
}

.splide__arrow svg {
    fill: #fff !important;
}

.splide__arrow--next {
    right: 5rem !important;
}

.splide__arrow--prev {
    left: 5rem !important;
}

.how-item {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 300px;
    margin: 40px auto;
}

.how-item img {
    width: 180px;
}

.how-title {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
}

.how-text {
    text-align: center;
}

.orderformcdn .field, .form-control {
    width: 100%;
    font-size: 16px;
    text-align: center;
    padding: 25px 20px;
    margin: 10px 0;
    border-radius: 1000px;
    border: 1px solid #e7e5f0;
    outline: none;
}

.orderformcdn .field:focus {
    border: 1px solid #ffdc23;
}

.orderformcdn .field:nth-child(2) {
    margin-bottom: 20px;
}

.container-timer {
  max-width: 400px;
  margin: 0 auto;
}
/*Таймер*/
.countbox {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.countbox-num {
  text-align: center;
}
.countbox-num-box {
    display: flex;
    justify-content: space-between;
}
.countbox-num1, .countbox-num2 {
  background: #ffcc00;
  line-height: 1;
  font-size: 24px;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
	justify-content: center;
	align-items: center;
}
.countbox-num1 {
  margin-right: 5px;
}
.countbox-text {
  font-size: 14px;
  padding-top: 5px;
}
.countbox-space {
  line-height: 1;
  font-size: 40px;
  font-weight: 700;
}






.container-timer {
    max-width: 400px;
    margin: 0 auto;
  }
  /*Таймер*/
  .countbox {
      width: 100%;
      display: flex;
      justify-content: space-between;
  }
  .countbox-num {
    text-align: center;
  }
  .countbox-num-box {
      display: flex;
      justify-content: space-between;
  }
  .countbox-num1, .countbox-num2 {
    background: #ffcc00;
    line-height: 1;
    font-size: 24px;
    font-weight: 700;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
      justify-content: center;
      align-items: center;
  }
  .countbox-num1 {
    margin-right: 5px;
  }
  .countbox-text {
    font-size: 14px;
    padding-top: 5px;
  }
  .countbox-space {
    line-height: 1;
    font-size: 40px;
    font-weight: 700;
  }


  


.cpu{
    padding: 10px 0;
    text-align: center;
    }
    .cpu img{
    display:block;
    margin: 0 auto;
    width: auto;
    }
    .cpu a{
    display: inline-block;
    margin: 5px;
    color: #333;
    font-size: 14px;
    }