* {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --main-bg: #F4F2EE;
    --primary-color: #414767;
    --secondary-color: #8BFEFF;
    --accent-color: #FFB6EC;
    --text-color: #414767;
    --title-font: "Rubik", sans-serif;
    --primary-font: "Manrope", sans-serif;
}

body {
    font-family: var(--primary-font);
    background-color: #e0e0e0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.36' fill-rule='evenodd'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    font-family: var(--title-font);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: unset;
    outline: none;
}

select {
    text-align-last: center;
}

img {
    width: 100%;
    display: block;
}

p {
    color: var(--text-color);
    line-height: normal;
}

input,
button,
textarea,
select {
    font: inherit;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
}

.main-wrapper {
    margin: 0 auto;
    width: 375px;
    background: var(--main-bg);
    overflow: hidden;
}

.container {
    padding: 0 15px;
}

.center {
    text-align: center;
}

.section {
    padding: 30px 0;
}

.main-btn {
    position: relative;
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 20px;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color);
    text-align: center;
    background-color: var(--accent-color);
    border: 1px solid var(--primary-color);
    border-radius: 40px;
    font-family: var(--title-font);
    margin: 0 auto;
    cursor: pointer;
}

.inline-flex {
    display: inline-flex;
}

.h-full {
    height: 100%;
}
.w-full {
    width: 100%;
}
.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, .2, 1) infinite;
}
.rounded-full {
    border-radius: 9999px;
}
.bg-yellow-200 {
    --tw-bg-opacity: 1;
    background-color: white;
}
.opacity-75 {
    opacity: .75;
}
.absolute {
    position: absolute;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

.main-title {
    color: var(--primary-color);
    font-size: 40px;
    text-align: center;
    margin-bottom: 5px;
}

.section-title-wrap {
    margin-bottom: 30px;
}

.section-title {
    color: var(--primary-color);
    font-size: 31px;
    line-height: normal;
}

.info-title {
    color: var(--primary-color);
    font-size: 20px;
    line-height: normal;
    margin-bottom: 5px;
}

.section-title span {
    color: var(--secondary-color);
}

.section-label {
    font-size: 14px;
    border-radius: 40px;
    width: fit-content;
    padding: 10px 15px;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
}

.section-label1 {
    margin: 0 auto 20px;
}

.section-label2 {
    background-color: var(--secondary-color);
    transform: rotate(-4deg);
}

.section-label3 {
    background-color: var(--secondary-color);
    transform: rotate(-4deg);
    margin-bottom: 10px;
}

.section-label4 {
    background-color: var(--accent-color);
    transform: rotate(4deg);
    margin-bottom: 10px;
}

.no-scroll {
    overflow: hidden;
}

.burger-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    min-height: 3000vh;
    background-color: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    z-index: 95;
    transition: 0.4s;
}

.burger-bg-open {
    display: block;
    transition: 0.4s;
}


.header {
    padding: 40px 0 10px;
}

.header-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.smartphone {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
}

.smartphone img {
    width: 20px;
    height: 20px;
}

.header-wrapper .logo img {
    max-width: 157px;
}

.burger {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    z-index: 102;
}

.burger .burger-list {
    width: 20px;
    height: 20px;
    position: relative;
    transition: 0.5s;
    z-index: 4;
}

.burger .burger-list .burger-item {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    opacity: 1;
    left: 0;
    transition: 0.25s;
    border-radius: 5px;
}

.burger .burger-list .burger-item:nth-of-type(1) {
    top: 2px;
}

.burger .burger-list .burger-item:nth-of-type(2) {
    top: 9px;
}

.burger .burger-list .burger-item:nth-of-type(3) {
    top: 9px;
}

.burger .burger-list .burger-item:nth-of-type(4) {
    top: 16px;
}

.burger-open .burger-list {
    transition: 0.5s;
}

.burger-open .burger-list .burger-item:nth-of-type(1) {
    top: 16px;
    width: 0%;
    left: 50%;
}

.burger-open .burger-list .burger-item:nth-of-type(2) {
    top: 9px;
    transform: rotate(45deg);
}

.burger-open .burger-list .burger-item:nth-of-type(3) {
    top: 9px;
    transform: rotate(-45deg);
}

.burger-open .burger-list .burger-item:nth-of-type(4) {
    top: 16px;
    width: 0%;
    left: 50%;
}

.header-wrapper .navigation {
    max-width: unset;
    overflow: hidden;
    position: absolute;
    top: 60px;
    z-index: 100;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    width: 100%;
    box-shadow: 1px 1px 5px #938f8f59;
    border-radius: 20px;
}

.header-wrapper .navigation.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}



.intro {
    padding: 30px 0 88px;
}

.intro-title-wrap {
    margin-bottom: 45px;
}

.main-subtitle {
    text-align: center;
}

.intro-image-wrap {
    position: relative;
}

.intro-image {
    border-radius: 30px;
}

.intro-price-wrap {
    position: absolute;
    top: -30px;
    right: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
}

.new-price {
    transform: rotate(-3deg);
}

.intro-price-wrap .old-price {
    position: absolute;
    bottom: -31px;
    transform: translateX(64px) rotate(3deg);
    /* right: 35px; */
}

.new-price svg {
    width: 100%;
}

.old-price svg {
    width: 100%;
}

.new-price svg .price-text {
    font-size: 63px;
    fill: var(--accent-color);
    stroke-width: 42px;
    paint-order: stroke fill;
    stroke-linejoin: round;
    text-anchor: middle;
    font-family: var(--title-font);
}

/* .new-price svg .price-highlight {
    text-anchor: start;
}  */

.new-price svg .price-text .price-value {
    font-weight: 900;
}

.new-price svg .price-text .price-currency {
    font-weight: 300;
}

.new-price svg .price-default {
    stroke: var(--primary-color);
}

.new-price svg .price-highlight {
    stroke: var(--secondary-color);
}

.old-price svg .price-text {
    font-size: 35px;
    fill: #1E2239;
    stroke: #fff;
    stroke-width: 23px;
    paint-order: stroke fill;
    stroke-linejoin: round;
    text-anchor: middle;
    font-family: var(--title-font);
}

.old-price svg .price-text .price-value {
    font-weight: 900;
}

.old-price svg .price-text .price-currency {
    font-weight: 300;
}

.strike-line {
    stroke: var(--accent-color);
    stroke-width: 2;
    stroke-linecap: round;
}

.intro-cta {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
}

.product-count {
    padding: 10px 15px;
    border-radius: 40px;
    border: 1px solid var(--primary-color);
    background-color: var(--secondary-color);
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--text-color);
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    transform: rotate(3deg) translateY(9px);
    position: relative;
    z-index: 2;
}

.product-count span {
    font-weight: 800;
}

.video-section .section-title {
    margin-bottom: 5px;
}

.video-wrapper {
    border-radius: 20px;
}

.plyr {
    border-radius: inherit;
}

.plyr__poster {
    background-size: cover;
}

.description-section .section-title-wrap {
    margin: 40px 0;
}

.description-section .section-title {
    margin-bottom: 10px;
}

.benefits-list {
    margin-bottom: 30px;
}

.benefits-item {
    padding: 15px 15px 15px 20px;
    background: white;
    border-radius: 40px;
    border: 1px dashed var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-item:not(:last-child) {
    margin-bottom: 5px;
}

.benefits-item img {
    width: 30px;
}

.benefits-item p {
    font-weight: 500;
}

.price-wrap {
    position: relative;
    margin-bottom: 20px;
}

.price-wrap .old-price {
    position: absolute;
    bottom: -31px;
    transform: translateX(90px) rotate(3deg);
    right: 0px;
}

.price-wrap::after {
    content: url(../images/arrow.svg);
    position: absolute;
    top: 20px;
    left: 80px;
}

.order-wrapper {
    padding: 40px 0px;
    border-radius: 40px;
    background: var(--primary-color);
}

.order-wrap-container {
    padding: 0 30px;
}

.order-section .section-title-wrap .section-title {
    color: white;
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 800;
}

.order-section .section-title-wrap p {
    color: white;
}

.timer {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.timer_item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 77px;
    background: var(--secondary-color);
    border-radius: 10px;
    text-align: center;
    color: var(--primary-color);
    padding: 10px;
}

.timer_item:not(:last-child)::after {
    content: ':';
    color: var(--secondary-color);
    font-size: 45px;
    font-weight: 900;
    position: absolute;
    right: -21px;
    top: 50%;
    transform: translateY(-50%);
}

.timer_item:first-child {
    background: var(--accent-color);
}

.timer_item .count {
    font-size: 34px;
    font-weight: 900;
    font-family: var(--title-font);
}

.timer_item .text {
    font-size: 12px;
    font-family: var(--primary-font);
}

.form-container {
    padding: 0 30px;
    margin-bottom: 20px;
}

.field-wrap {
    position: relative;
} 

.field-wrap:not(:last-child) {
    margin-bottom: 32px;
}

.field-wrap label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 40px;
    position: absolute;
    top: -17px;
    left: 50%;
    border: 1px dashed var(--primary-color);
    background: white;
    width: max-content;
}

.field-wrap .label1 {
    transform: translateX(-50%) rotate(-1deg);
}

.field-wrap .label2 {
    transform: translateX(-50%) rotate(1deg);
}

.field-wrap input,
.field-wrap select {
    width: 100%;
    padding: 15px;
    border-radius: 40px;
    background: white;
    color: var(--text-color);
    transition: 0.2s;
    border: none;
    text-align: center;
}

.suggestions {
    max-height: 150px;
    overflow-y: auto;
    width: 100%;
    position: absolute;
    background: white;
    z-index: 10;
}

.suggestions div {
    border-bottom: 1px solid #ccc;
    padding: 5px 3px;
    cursor: pointer;
}

.suggestions div:first-child {
    border-top: 1px solid #ccc;
}

.advantages-section .section-title {
    margin-bottom: 10px;
}

.advantages-item {
    position: relative;
}

.advantages-item img {
    border-radius: 20px;
}

.advantages-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: white;
    padding: 10px 15px;
    border: 1px solid var(--primary-color);
    color: var(--text-color);
    text-transform: uppercase;
    border-radius: 40px;
}

.slider-arrows {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.swiper-button {
    border: 1px solid var(--primary-color);
    border-radius: 60px;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.swiper-button img {
    /* fill: var(--primary-color);
    transition: .3s; */
    display: block;
    width: 31px;
}

.swiper-button:hover {
    background: var(--secondary-color);
    transition: .3s;
}

.prev-btn img {
    margin-left: 15px;
}

.next-btn img {
    margin-right: 15px;
}

.user-reviews-section .section-title {
    margin-bottom: 10px;
}

.user-reviews-image {
    border-radius: 30px;
    border: 1px solid var(--primary-color);
}

.bloger-avatar {
    position: relative;
    border-radius: 50%;
    background: linear-gradient(180deg,rgba(222, 0, 70, 1) 0%, rgba(247, 163, 75, 1) 100%);
    cursor: pointer;
}

.bloger-avatar img {
    border-radius: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    padding: 4px;
}

.bloger-avatar svg {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.bloger-avatar .bloger-name {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-color);
    border: 1px solid var(--primary-color);
    background: white;
    padding: 5px 10px;
    text-align: center;
    border-radius: 40px;
    width: max-content;
}

.bloger-reviews-swiper .slider-arrows {
    margin-top: 24px;
}

.how-order .section-title-wrap {
    margin-bottom: 40px;
}

.how-order-list {
    margin-bottom: 20px;
}

.how-order-item {
    background: white;
    border: 1px dashed var(--primary-color);
    padding: 15px 15px 15px 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    border-radius: 20px;
}

.how-order-item:not(:last-child) {
    margin-bottom: 5px;
}

.how-order-item img {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.how-content h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 5px;
    line-height: normal;
}

.how-content p {
    font-size: 14px;
    font-weight: 300;
}

.how-content span {
    font-weight: 700;
}

.footer {
    padding-bottom: 60px;
}

.contacts-wrap {
    background: white;
    border-radius: 30px;
    padding: 20px;
}

.contacts-wrap .logo {
    max-width: 160px;
    margin: 0 auto 40px;
}

.contacts-wrap p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 10px;
    text-align: center;
}

.contacts-wrap .tel-link {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--title-font);
    color: var(--text-color);
    margin-bottom: 40px;
}

.links-wrap {
    margin-bottom: 30px;
}

.links-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.links-item {
    width: 40px;
    height: 40px;
}

.policy {
    font-size: 14px;
    color: var(--text-color);
    text-transform: uppercase;
    text-decoration: underline;
    display: block;
    text-align: center;
    line-height: normal;
    margin-bottom: 5px;
}

.contacts-wrap span {
    display: block;
    font-size: 14px;
    color: var(--text-color);
    text-align: center;
    text-transform: uppercase;
    line-height: normal;
}


.wtsp_item {
    max-width: 410px;
    min-height: 600px;
    margin: 0 auto;
    background: url(../images/ADhTyuE4T3ar.jpg) 50% 0% repeat;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 20px 20px;
    border: 1px solid #a2a2a2;
    box-shadow: 1px 0px 2px #909090;
}

.wtsp_item .info {
    background: #ffffff url(../images/XS6fbttaUIgm.png) 3px 50% no-repeat;
    padding: 16px 110px 13px 45px;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.35);
    position: relative;
    z-index: 2;
    border-radius: 20px 20px 0px 0px;
    text-align: left;
    background-size: contain;
}

.wtsp_item .info>img {
    float: left;
    border-radius: 50%;
    width: 34px;
    border: 1px solid #0f3a33;

}

.wtsp_item .info .text {
    overflow: hidden;
    padding-left: 8px;
    color: #333;
}

.wtsp_item .info .text>p {
    font-size: 13px;
    line-height: 16px;
    font-weight: 700;
}

.wtsp_item .info .text>small {
    font-size: 11px;
    line-height: 18px;
    display: block;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.wtsp_item .date {
    text-align: center;
    margin-top: 10px;
}

.wtsp_item .date>span {
    display: inline-block;
    vertical-align: top;
    background: #d4ebf3;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 28px;
    color: #3f5250;
    padding: 0 8px;
    border-radius: 7px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.wtsp_item .message_container {
    margin-top: 10px;
    padding: 0 12px;
}

.wtsp_item .message {
    display: inline-block;
    max-width: 295px;
    min-width: 70px;
    padding: 6px 10px;
    position: relative;
    font-size: 18px;
    line-height: 22px;
    color: #212121;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    margin-bottom: 10px;
}

.wtsp_item .message.client {
    background: #fff;
    border-radius: 0 6px 6px 6px;
}

.wtsp_item .message.client:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    top: 0;
    left: -6px;
}

.wtsp_item .message>p {
    margin-bottom: 5px;
    text-align: left;
    font-size: 14px;
    line-height: 1.2;
}

.wtsp_item .message>img {
    display: block;
    margin: 6px auto;
    border-radius: 4px;
}

.wtsp_item .message .time {
    text-align: right;
    font-size: 12px;
    line-height: 15px;
    color: #989898;
    padding: 0 5px;
}

.wtsp_item .message:last-child {
    margin-bottom: 0;
}

.wtsp_item .message.author {
    background: #c8e2fd;
    border-radius: 10px 0 10px 10px;
    padding: 6px 10px;
    float: right;
}

.wtsp_item .message.author:before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #c8e2fd transparent transparent transparent;
    position: absolute;
    top: 0;
    right: -6px;
}

.wtsp_item .message.author .time {
    padding: 0;
}

.wtsp_item .message.author .time:after {
    content: "";
    width: 18px;
    height: 12px;
    display: inline-block;
    vertical-align: middle;
    margin: -2px 0 0 4px;
}

.wtsp_item:after {
    content: "";
    width: 98%;
    height: 57px;
    background: url(../images/LKvurt5AgpH6.png) 50% 50% no-repeat;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 7px;
    background-size: contain;
}

.table-wrapper {
    border-radius: 12px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    border-radius: 15px;
    border: 1px solid #ccc;
    margin-top: 20px;
  }

  .benefits-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: var(--primary-color);
  }

  .benefits-table th, .benefits-table td {
    padding: 10px 14px;
    text-align: left;
  }

  .benefits-table th {
    background-color: #f5f5f5;
    font-weight: bold;
  }

  .benefits-table tr:nth-child(even) {
    background-color: #fafafa;
  }

  .benefits-table td em {
    font-style: italic;
    color: #555;
    font-size: 14px;
  }

  .benefits-table tr td:first-child {
      border-right: 1px solid #ccc;
  }

  .benefits-table tr th:first-child {
      border-right: 1px solid #ccc;
  }

  .benefits-table tr:not(:last-child) {
      border-bottom: 1px solid #ccc;
  }

  .benefits-table th {
      background-color: #e0f2ff; 
      font-weight: bold;
      color: #1e40af; 
      font-size: 17px;
  }