:root {
  --font-family: "Manrope", sans-serif;
  --color-blue-light: #E6F5FC;
  --color-blue-light2-rgb: 209, 236, 249;
  --color-blue-light2: #D1ECF9;
  --color-blue: #0A7BF4;
  --color-blue-dark: #053A73;
  --color-blue-dark2: #074D98;
  --color-blue-dark3: #062C55;
  --color-blue-dark3-rgb: 6, 44, 85;
  --color-white: #fff;
  --color-gray: #D9D9D9;
  --color-red: #D9222A;
  --color-red-light: #f6e7e7;
}

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

html,
body {
  min-height: 100%;
  height: auto;
}

input,
select,
button,
textarea {
  font-family: var(--font-family);
}

#svg_sprite {
  position: absolute;
  bottom: 110%;
  right: 110%;
  opacity: 0;
}

.wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 75px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

a {
  color: currentColor;
  text-decoration: none;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-white);
  background: var(--color-blue-dark);
  border-radius: 15px;
  height: 60px;
  width: 100%;
  transition: background 0.25s;
  cursor: pointer;
}
.button:hover {
  background: var(--color-blue-dark2);
}
.button:active {
  background: var(--color-blue-dark3);
}
.button--opacity {
  border: 1px solid var(--color-blue-dark3);
  background: transparent;
  color: var(--color-blue-dark3);
}
.button--opacity:hover, .button--opacity:active {
  border: 1px solid var(--color-blue-dark3);
  background: transparent;
  color: var(--color-blue-dark3);
}

.title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}

.accordion {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-blue-dark3);
  border-radius: 15px;
  transition: background 0.25s;
}
.accordion.show {
  background: var(--color-blue-light);
}
.accordion__title {
  position: relative;
  display: flex;
  align-items: center;
  padding: 17px 44px 17px 25px;
  cursor: pointer;
}
.accordion__title span {
  font-size: 18px;
  font-weight: 800;
}
.accordion__title:before, .accordion__title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 20px;
  width: 16px;
  height: 2px;
  border-radius: 5px;
  background: var(--color-blue-dark3);
  transform: translateY(-50%);
  transition: transform 0.25s;
}
.accordion__title:after {
  transform: translateY(-50%) rotateZ(90deg);
}
.show .accordion__title:before {
  transform: translateY(-50%) rotateZ(360deg);
}
.show .accordion__title:after {
  transform: translateY(-50%) rotateZ(360deg);
}
.accordion__body {
  padding-top: 0;
  margin: 0 25px;
  border-top: 1px solid rgba(var(--color-blue-dark3-rgb), 0);
  overflow: hidden;
  max-height: 0;
  transition: all 0.25s;
}
.show .accordion__body {
  padding-top: 25px;
  margin: 0 25px 15px;
  max-height: var(--max-height);
  border-top-color: rgba(var(--color-blue-dark3-rgb), 0.25);
}
.accordion__text {
  font-size: 16px;
  line-height: 1.5;
}

body {
  font-family: var(--font-family);
  color: var(--color-blue-dark3);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.content {
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13px;
  padding-right: 13px;
}

.header {
  position: fixed;
  padding: 26px 0;
  top: 0;
  right: 0;
  width: 100%;
  color: var(--color-blue-dark);
  z-index: 100;
}
.header:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(var(--color-blue-light2-rgb), 0.95) 80%, rgba(var(--color-blue-light2-rgb), 0) 100%);
  opacity: 0;
  transition: opacity 0.15s;
}
.header.header__bg:before {
  opacity: 1;
}
.header .content {
  position: relative;
  z-index: 2;
}
.header__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  position: relative;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--color-blue-dark);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  z-index: 2;
}
.header__logo b {
  font-weight: 800;
}
.header__burg {
  position: relative;
  z-index: 2;
  height: 40px;
  width: 40px;
  flex: 0 0 auto;
  margin: -20px -10px -20px 0;
}
.header__burg span {
  position: absolute;
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background: var(--color-blue-dark);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s;
}
.header__burg:before, .header__burg:after {
  position: absolute;
  content: "";
  width: 24px;
  height: 3px;
  border-radius: 5px;
  background: var(--color-blue-dark);
  top: 50%;
  left: 50%;
  transition: transform 0.25s;
}
.header__burg:before {
  transform: translate(-50%, -50%) translateY(-7px);
}
.header__burg:after {
  transform: translate(-50%, -50%) translateY(7px);
}
.open .header__burg span {
  transform: translate(-50%, -50%) scale(0, 1);
}
.open .header__burg:before {
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.open .header__burg:after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.header__nav {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-start;
  background: var(--color-blue-light);
  transform: translateX(-110%);
  padding: 140px 0 15px;
  z-index: 1;
  box-shadow: 0 0 15px 10px var(--color-blue-light);
  transition: transform 0.25s;
}
.open .header__nav {
  transform: translateX(0);
}
.header__nav--wrap {
  width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 13px;
  padding-right: 13px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  overflow-y: auto;
  height: 100%;
}
.header__nav--item {
  width: 100%;
}
.header__nav--item > a,
.header__nav--item > span {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  display: block;
  width: 100%;
  position: relative;
}
.header__nav--item > span {
  user-select: none;
}
.header__nav--item > span:before, .header__nav--item > span:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2px;
  width: 12px;
  height: 2px;
  border-radius: 5px;
  background: var(--color-blue-dark);
  transform: translateY(-50%) rotateZ(-45deg);
  transition: transform 0.25s;
}
.header__nav--item > span:after {
  right: 9px;
  transform: translateY(-50%) rotateZ(45deg);
}
.header__nav--item > span.show {
  -webkit-text-stroke: 0.5px var(--color-blue-dark);
}
.header__nav--item > span.show:before {
  transform: translateY(-50%) rotateZ(45deg);
}
.header__nav--item > span.show:after {
  transform: translateY(-50%) rotateZ(-45deg);
}
.header__nav--item.active > a {
  -webkit-text-stroke: 0.5px var(--color-blue-dark);
}
.header__nav--podmenu {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 0 0 0 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s, padding-top 0.25s;
}
.show ~ .header__nav--podmenu {
  padding-top: 25px;
  max-height: var(--max-height);
}
.header__nav--podmenu > a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.about {
  position: relative;
  padding: 90px 0 52px;
  background: var(--color-blue-light2);
  overflow: hidden;
  border-radius: 0 0 50px 50px;
  color: var(--color-blue-dark);
}
.about:before {
  position: absolute;
  content: "";
  top: 100%;
  left: 50%;
  width: 200%;
  height: 100%;
  transform: translateX(-250px) rotateZ(-42deg);
  transform-origin: top left;
  background: var(--color-blue-light);
  z-index: 1;
}
.about .content {
  position: relative;
  z-index: 2;
}
.about__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about__title {
  font-size: 32px;
  font-weight: 800;
}
.about__subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.about__img {
  position: relative;
  margin: 15px 0;
  height: 250px;
}
.about__img img {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.about__img--prod {
  width: 290px;
  transform: translate(-50%, -50%) rotateZ(48deg) scale(0.8);
  top: 50%;
  left: 50%;
}
.about__img--1 {
  width: 138px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-65px, -70px) rotateZ(48deg);
}
.about__img--2 {
  width: 138px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-50px, 50px) rotateZ(48deg);
}
.about__img--3 {
  width: 138px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(90px, 5px) rotateZ(48deg);
}
.about__decor {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.about__decor--1 {
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-85px, 40px) rotateZ(54.62deg);
}
.about__decor--2 {
  height: 42px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(45px, 105px) rotateZ(-74.34deg);
}
.about__decor--3 {
  height: 58px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(100px, -90px);
}
.about__decor--4 {
  display: none;
}
.about__decor--5 {
  height: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-100px, -60px) rotateZ(97.18deg);
}
.about__decor--6 {
  height: 60px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(120px, 90px);
}
.about__decor--7 {
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(210px, -80px) rotateZ(-54.01deg);
}
.about__decor--8 {
  height: 136px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translate(-70px, -70px);
}
.about__decor--9 {
  display: none;
}

.effective__box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.effective__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.effective__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  min-height: 65px;
  border: 1px solid var(--color-blue-dark3);
  border-radius: 15px;
  background: var(--color-white);
  transition: background 0.25s;
}
.effective__item:hover {
  background: var(--color-blue-light);
}
.effective__item svg {
  width: 33px;
  height: 33px;
}
.effective__item span {
  text-transform: capitalize;
  flex: 2;
  font-size: 18px;
  font-weight: 600;
}

.effect__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px 16px;
}
.effect__item {
  flex: 0 0 auto;
  width: 138px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.effect__item span {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}
.effect__ico {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: var(--color-blue-light2);
}
.effect__ico svg {
  width: 100%;
  height: 100%;
}

.work__box {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.work__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.work__right {
  margin: 0 -13px;
  border-radius: 30px;
  overflow: hidden;
}
.work__right img {
  width: 100%;
  height: 255px;
  object-fit: cover;
}

.info .content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__box--rev {
  flex-direction: column-reverse;
}
.info__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info__title--left {
  text-align: left;
}
.info__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.info__button {
  max-width: 320px;
}
.info__img img {
  border-radius: 30px;
}
.info__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.info__list ul {
  margin-left: 24px;
}
.info__subtitle {
  padding: 20px 45px 20px 15px;
}
.info__subtitle:before, .info__subtitle:after {
  right: 15px !important;
}
.info__subtitle ~ .accordion__body {
  margin-left: 15px;
  margin-right: 15px;
}

.product {
  width: 320px;
  margin: 0 auto;
  padding: 0 13px;
}
.product__slider {
  margin-top: 20px;
}
.product__slider--box {
  background: var(--color-blue-light);
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.25);
  border-radius: 30px;
  padding: 25px 15px;
}
.product__slider--img {
  background: var(--color-blue-light2);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 30px 0;
}
.product__slider--img img {
  height: 228px;
  margin: 0 auto;
}
.product__slider--label {
  position: absolute;
  top: 17px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product__slider--label1 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  width: 44px;
  height: 44px;
  padding: 3px;
  border-radius: 50%;
  border: 1px dashed var(--color-blue-dark3);
}
.product__slider--label1 span {
  position: relative;
  z-index: 2;
}
.product__slider--label1:before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: var(--color-blue-dark3);
  z-index: 1;
}
.product__slider--label2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 6px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  text-transform: uppercase;
  width: 44px;
  height: 44px;
  padding: 3px;
  border-radius: 50%;
  border: 1px dashed var(--color-blue-dark3);
}
.product__slider--label2 b {
  display: block;
  font-size: 10px;
}
.product__slider--label2 span {
  position: relative;
  z-index: 2;
}
.product__slider--label2:before {
  position: absolute;
  content: "";
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 50%;
  background: var(--color-blue-dark3);
  z-index: 1;
}
.product__slider--title {
  margin-top: 30px;
  font-size: 25px;
  font-weight: 800;
  text-transform: capitalize;
}
.product__slider--subtitle {
  margin-top: 5px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.product__slider--list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product__slider--item {
  display: flex;
  gap: 9px;
}
.product__slider--item span {
  flex: 2;
}
.product__slider--ico {
  position: relative;
  width: 19px;
  height: 19px;
  color: var(--color-white);
  border-radius: 50%;
  background: var(--color-blue-dark3);
}
.product__slider--ico svg {
  width: 100%;
  height: 100%;
}
.product__slider--body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 0;
  padding-top: 0;
  border-top: 1px solid rgba(var(--color-blue-dark3-rgb), 0);
  max-height: 0;
  overflow: hidden;
  transition: all 0.25s;
}
.show .product__slider--body {
  padding-top: 30px;
  margin-top: 30px;
  max-height: var(--max-height);
  border-top-color: rgba(var(--color-blue-dark3-rgb), 0.25);
}
.product__slider--text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.5;
}
.product__slider--buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product__slider--button2 span {
  position: relative;
  padding-right: 26px;
}
.product__slider--button2 span:before, .product__slider--button2 span:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 2px;
  width: 12px;
  height: 2px;
  border-radius: 5px;
  background: var(--color-blue-dark3);
  transform: translateY(-50%) rotateZ(-45deg);
  transition: transform 0.25s;
}
.product__slider--button2 span:after {
  right: 9px;
  transform: translateY(-50%) rotateZ(45deg);
}
.show .product__slider--button2 span:before {
  transform: translateY(-50%) rotateZ(45deg);
}
.show .product__slider--button2 span:after {
  transform: translateY(-50%) rotateZ(-45deg);
}
.product__slider--nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}
.product__slider--prev, .product__slider--next {
  width: 50px;
  height: 50px;
  color: var(--color-white);
  background: var(--color-blue-dark);
  border-radius: 15px;
  transition: background 0.25s;
  cursor: pointer;
}
.product__slider--prev:hover, .product__slider--next:hover {
  background: var(--color-blue-dark2);
}
.product__slider--prev:active, .product__slider--next:active {
  background: var(--color-blue-dark3);
}
.product__slider--prev svg, .product__slider--next svg {
  width: 100%;
  height: 100%;
}
.product__slider--pagination {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__slider--pagination span {
  opacity: 1 !important;
  background: var(--color-gray);
  transition: background 0.25s;
}
.product__slider--pagination span.swiper-pagination-bullet-active {
  background: var(--color-blue-dark3) !important;
}
.product__slider--prev svg {
  transform: scale(-1, 1);
}

.comment {
  background: var(--color-blue-light2);
  border-radius: 30px;
  max-width: 1204px;
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}
.comment__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment__slider {
  width: 100%;
}
.comment__slider--item {
  background: var(--color-white);
  padding: 25px 15px;
  border-radius: 30px;
}
.comment__slider--user {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.comment__slider--ico {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--color-blue-dark3);
  color: var(--color-white);
}
.comment__slider--ico svg {
  width: 100%;
  height: 100%;
}
.comment__slider--ver {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 300;
  text-transform: capitalize;
}
.comment__slider--star {
  width: 24px;
  height: 24px;
}
.comment__slider--stars {
  margin-top: 35px;
  display: flex;
  gap: 7px;
}
.comment__slider--star svg {
  width: 100%;
  height: 100%;
}
.comment__slider--title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}
.comment__slider--text {
  margin-top: 15px;
  line-height: 1.5;
}
.comment__slider--pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 50px;
}
.comment__slider--pagination span {
  background: var(--color-white);
  opacity: 1;
  transition: background 0.25s;
}
.comment__slider--pagination span.swiper-pagination-bullet-active {
  background: var(--color-blue-dark3);
}

.find__subtitle {
  margin-top: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
.find__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
}
.find__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 15px;
  min-height: 65px;
  border: 1px solid var(--color-blue-dark3);
  border-radius: 15px;
  background: var(--color-white);
  transition: background 0.25s;
  cursor: pointer;
}
.find__item > svg {
  flex: 0 0 auto;
  width: 33px;
  height: 33px;
}
.find__item span {
  flex: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(var(--color-blue-dark3-rgb), 0.5);
  transition: color 0.25s;
}
.find__item span b {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  color: var(--color-blue-dark3);
}
.find__item span svg {
  width: 15px;
  height: 13px;
}
.find__item:hover {
  background: var(--color-blue-light);
}
.find__item:hover span {
  color: var(--color-blue-dark3);
}

.head {
  position: relative;
  padding: 110px 0 48px;
  background: var(--color-blue-light2);
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}
.head__time {
  margin-top: 15px;
  text-align: center;
}

.checkout__box {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.checkout__item {
  padding: 0 15px 25px;
  background: var(--color-blue-light);
  border-radius: 30px;
  overflow: hidden;
}
.checkout__sale {
  padding: 12px;
  margin: 0 -15px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
}
.checkout__sale--1 {
  background: rgba(var(--color-blue-dark3-rgb), 0.4);
}
.checkout__sale--2 {
  background: var(--color-blue);
}
.checkout__sale--3 {
  background: var(--color-red);
}
.checkout__title {
  margin-top: 15px;
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}
.checkout__title2 {
  margin-bottom: 40px;
}
.checkout__subtitle {
  margin-top: 5px;
  font-size: 20px;
  text-align: center;
  text-transform: capitalize;
}
.checkout__img {
  position: relative;
  margin-top: 30px;
  background: var(--color-blue-light2);
  border-radius: 20px;
  padding: 20px;
  height: 235px;
  overflow: hidden;
}
.checkout__img img {
  position: absolute;
  max-height: 208px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.checkout__img--count1 img:nth-child(1) {
  display: block;
  transform: translate(-50%, -50%) scale(0.9);
}
.checkout__img--count2 img:nth-child(1) {
  display: block;
  transform: translate(-50%, -50%) translate(-30px, 0) scale(0.9);
  z-index: 2;
}
.checkout__img--count2 img:nth-child(2) {
  display: block;
  transform: translate(-50%, -50%) translate(30px, 0) scale(0.8);
  z-index: 1;
}
.checkout__img--count3 img:nth-child(1) {
  display: block;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 3;
}
.checkout__img--count3 img:nth-child(2) {
  display: block;
  transform: translate(-50%, -50%) translate(-50px, 0) scale(0.8);
  z-index: 2;
}
.checkout__img--count3 img:nth-child(3) {
  display: block;
  transform: translate(-50%, -50%) translate(50px, 0) scale(0.8);
  z-index: 1;
}
.checkout__img--count4 img:nth-child(1) {
  display: block;
  transform: translate(-50%, -50%) translate(-15px, 0) scale(0.9);
  z-index: 4;
}
.checkout__img--count4 img:nth-child(2) {
  display: block;
  transform: translate(-50%, -50%) translate(-55px, 0) scale(0.8);
  z-index: 3;
}
.checkout__img--count4 img:nth-child(3) {
  display: block;
  transform: translate(-50%, -50%) translate(25px, 0) scale(0.8);
  z-index: 2;
}
.checkout__img--count4 img:nth-child(4) {
  display: block;
  transform: translate(-50%, -50%) translate(55px, 0) scale(0.7);
  z-index: 1;
}
.checkout__img--count5 img:nth-child(1) {
  display: block;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 5;
}
.checkout__img--count5 img:nth-child(2) {
  display: block;
  transform: translate(-50%, -50%) translate(-40px, 0) scale(0.8);
  z-index: 4;
}
.checkout__img--count5 img:nth-child(3) {
  display: block;
  transform: translate(-50%, -50%) translate(40px, 0) scale(0.8);
  z-index: 3;
}
.checkout__img--count5 img:nth-child(4) {
  display: block;
  transform: translate(-50%, -50%) translate(-70px, 0) scale(0.7);
  z-index: 2;
}
.checkout__img--count5 img:nth-child(5) {
  display: block;
  transform: translate(-50%, -50%) translate(70px, 0) scale(0.7);
  z-index: 1;
}
.checkout__img--count6 img:nth-child(1) {
  display: block;
  transform: translate(-50%, -50%) translate(-10px, 0) scale(0.9);
  z-index: 6;
}
.checkout__img--count6 img:nth-child(2) {
  display: block;
  transform: translate(-50%, -50%) translate(-45px, 0) scale(0.8);
  z-index: 5;
}
.checkout__img--count6 img:nth-child(3) {
  display: block;
  transform: translate(-50%, -50%) translate(25px, 0) scale(0.8);
  z-index: 4;
}
.checkout__img--count6 img:nth-child(4) {
  display: block;
  transform: translate(-50%, -50%) translate(-75px, 0) scale(0.7);
  z-index: 3;
}
.checkout__img--count6 img:nth-child(5) {
  display: block;
  transform: translate(-50%, -50%) translate(55px, 0) scale(0.7);
  z-index: 2;
}
.checkout__img--count6 img:nth-child(6) {
  display: block;
  transform: translate(-50%, -50%) translate(80px, 0) scale(0.6);
  z-index: 1;
}
.checkout__price {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 30px;
}
.checkout__price--bottle {
  font-size: 14px;
  text-transform: capitalize;
  color: rgba(var(--color-blue-dark3-rgb), 0.5);
}
.checkout__price--bottle b {
  font-size: 30px;
  font-weight: 800;
  color: var(--color-blue-dark3);
}
.checkout__price--save {
  font-size: 20px;
  font-weight: 500;
  color: rgba(var(--color-blue-dark3-rgb), 0.5);
  line-height: 1.5;
}
.checkout__list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.checkout__list--item {
  display: flex;
  gap: 9px;
}
.checkout__list2 .checkout__list--item {
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.checkout__list--item span {
  flex: 2;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}
.checkout__list2 .checkout__list--item span {
  font-size: 20px;
}
.checkout__list--ico {
  position: relative;
  width: 19px;
  height: 19px;
  color: var(--color-white);
  border-radius: 50%;
  background: var(--color-blue-dark3);
}
.checkout__list--ico svg {
  width: 100%;
  height: 100%;
}
.checkout__button {
  margin-top: 30px;
}
.checkout__guarant {
  margin-top: 15px;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
}
.checkout__cards {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  height: 18px;
}
.checkout__cards img {
  flex: 2;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1044px;
  margin: 0 auto;
}

.policy__text {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: 16px;
  line-height: 1.5;
  max-width: 1024px;
  margin: 0 auto;
}
.policy__text h1, .policy__text h2, .policy__text .h1.h2 {
  font-size: 22px;
  font-weight: 800;
  text-transform: capitalize;
}
.policy__text h3, .policy__text h4, .policy__text h5, .policy__text h6, .policy__text .h3, .policy__text .h4, .policy__text .h5, .policy__text .h6 {
  margin-top: -10px;
  font-size: 18px;
  font-weight: 800;
  text-transform: capitalize;
}
.policy__text a {
  font-weight: 700;
  text-decoration: underline;
}
.policy__text a:hover {
  text-decoration: none;
}

.blog__box {
  display: grid;
  gap: 24px;
  margin: 0 -15px;
}
.blog__item {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding: 15px;
  gap: 15px;
  border-radius: 30px;
  background: var(--color-blue-light);
  transition: background 0.25s;
}
.blog__item:hover {
  background: var(--color-blue-light2);
}
.blog__preview {
  border-radius: 20px;
  overflow: hidden;
}
.blog__date {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.blog__subtitle {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: capitalize;
}
.blog__desc {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.blog__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -110px auto 0;
  z-index: 2;
  max-width: 1024px;
  line-height: 1.5;
}
.blog__content img {
  border-radius: 20px;
}
.blog__content img:first-child {
  margin-bottom: 30px;
}
.blog__content h2, .blog__content .h2 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
  margin-top: 10px;
  text-transform: capitalize;
}
.blog__content h3, .blog__content .h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  text-transform: capitalize;
}
.blog__content ul {
  margin-left: 25px;
}
.blog__content blockquote {
  padding: 20px;
  border-radius: 15px;
  background: var(--color-blue-light);
  font-weight: 700;
}
.blog__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  margin: 50px auto 0;
  max-width: 1024px;
}
.blog__nav--prev, .blog__nav--next {
  position: relative;
  max-width: 115px;
}
.blog__nav--prev.disabled, .blog__nav--next.disabled {
  pointer-events: none;
  opacity: 0;
}
.blog__nav--prev:before, .blog__nav--prev:after, .blog__nav--next:before, .blog__nav--next:after {
  position: absolute;
  content: "";
  top: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  margin-top: -1px;
}
.blog__nav--prev {
  padding-left: 15px;
}
.blog__nav--prev:before {
  left: 10px;
  transform-origin: bottom left;
  transform: rotateZ(-45deg);
}
.blog__nav--prev:after {
  left: 10px;
  transform-origin: top left;
  transform: rotateZ(45deg);
}
.blog__nav--next {
  padding-right: 15px;
}
.blog__nav--next:before {
  right: 10px;
  transform-origin: bottom right;
  transform: rotateZ(45deg);
}
.blog__nav--next:after {
  right: 10px;
  transform-origin: top right;
  transform: rotateZ(-45deg);
}

.footer {
  background: var(--color-blue-light);
  border-radius: 50px 50px 0 0;
  padding: 40px 0;
}
.footer__box {
  background: var(--color-blue-light2);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__logo {
  margin-bottom: 26px;
  font-size: 25px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--color-blue-dark);
}
.footer__menu, .footer__support {
  border: none;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
}
.footer__title {
  padding: 0;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-blue-dark3);
}
.footer__title:before, .footer__title:after {
  right: 0;
}
.footer__body {
  border: none;
  margin: 0;
}
.show .footer__body {
  padding-top: 15px;
  margin: 0;
}
.footer__list {
  display: flex;
  flex-direction: column;
}
.footer__item {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: var(--color-blue-dark3);
}
.footer__item[href] {
  -webkit-text-stroke: 0.5px transparent;
  transition: -webkit-text-stroke 0.25s;
}
.footer__item[href]:hover {
  -webkit-text-stroke: 0.5px var(--color-blue-dark3);
}
.footer__email {
  display: block;
  margin: 15px 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
  color: var(--color-blue-dark3);
  transition: color 0.25s;
}
.footer__email:hover {
  color: var(--color-blue-dark2);
}
.footer__copy {
  margin-top: 26px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  color: var(--color-blue-dark3);
  padding: 0 56px;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(34, 34, 34, 0.6);
  padding: 50px 13px;
  opacity: 0;
  pointer-events: none;
  z-index: 99999999;
  transition: opacity 0.25s;
}
.popup.show {
  opacity: 1;
  pointer-events: unset;
}
.popup__box {
  width: 100%;
  max-width: 560px;
  max-height: 554px;
  position: relative;
}
.popup__body {
  overflow: hidden;
  border-radius: 30px;
  background: var(--color-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
}
.error .popup__body {
  background: var(--color-red-light);
}
.thank .popup__body {
  background: var(--color-blue-light);
}
.load .popup__body {
  background: none;
}
.popup__close {
  position: absolute;
  left: 100%;
  top: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transform: translate(-35px, -40px);
}
.popup__close:before, .popup__close:after {
  position: absolute;
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 3px;
  background: var(--color-white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.popup__close:after {
  transform: translate(-50%, -50%) rotateZ(-45deg);
}
.popup__title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
  margin-top: 50px;
}
.popup__text {
  font-size: 20px;
  text-align: center;
  margin-bottom: 50px;
}
.popup__load {
  width: 70px;
  height: 70px;
  margin: auto;
  background: url("../img/loader.png") center no-repeat;
  background-size: cover;
  animation: spin 3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 35px 13px;
  border-radius: 30px;
  background: var(--color-blue-light);
  max-width: 588px;
  margin: 0 -13px;
}
.form__title {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  text-transform: capitalize;
}
.form__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form__item input,
.form__item textarea {
  display: flex;
  align-items: center;
  height: 60px;
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.5);
  box-shadow: inset 0 0 0 0.5px transparent;
  outline: none !important;
  width: 100%;
  background: none;
  border-radius: 15px;
  padding: 0 15px;
  transition: border 0.25s, box-shadow 0.25s;
  color: var(--color-blue-dark3);
}
.form__item input::-webkit-input-placeholder,
.form__item textarea::-webkit-input-placeholder {
  color: currentColor;
}
.form__item input::-moz-placeholder,
.form__item textarea::-moz-placeholder {
  color: currentColor;
}
.form__item input:-ms-input-placeholder,
.form__item textarea:-ms-input-placeholder {
  color: currentColor;
}
.form__item input::placeholder,
.form__item textarea::placeholder {
  color: currentColor;
}
.form__item input:-webkit-autofill, .form__item input:-webkit-autofill:focus,
.form__item textarea:-webkit-autofill,
.form__item textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--color-blue-dark3);
  transition: background-color 5000s ease-in-out 0s !important;
}
.form__item input:-moz-autofill, .form__item input:-moz-autofill-preview,
.form__item textarea:-moz-autofill,
.form__item textarea:-moz-autofill-preview {
  color: var(--color-blue-dark3) !important;
  background: transparent !important;
}
.form__item input:autofill,
.form__item textarea:autofill {
  color: var(--color-blue-dark3) !important;
  background: transparent !important;
}
.form__item input:hover, .form__item input:focus, .form__item input:valid:not(:placeholder-shown), .form__item input:invalid:not(:placeholder-shown), .form__item input:active,
.form__item textarea:hover,
.form__item textarea:focus,
.form__item textarea:valid:not(:placeholder-shown),
.form__item textarea:invalid:not(:placeholder-shown),
.form__item textarea:active {
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.75);
  box-shadow: inset 0 0 0 0.5px rgba(var(--color-blue-dark3-rgb), 0.75);
}
.form__item textarea {
  max-width: 100%;
  min-width: 100%;
  max-height: 246px;
  min-height: 246px;
  height: 246px;
  padding: 15px;
}
.form__item.error input,
.form__item.error textarea {
  color: var(--color-red);
  border-color: var(--color-red) !important;
  box-shadow: inset 0 0 0 0.5px var(--color-red) !important;
}
.form__error {
  font-size: 14px;
  color: var(--color-red);
  margin-top: 5px;
}
.form__error:empty {
  display: none;
}

.select {
  position: relative;
  width: 100%;
  user-select: none;
  z-index: 2;
}
.select__selected {
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 15px;
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.5);
  box-shadow: inset 0 0 0 0.5px transparent;
  padding: 0 40px 0 15px;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: border-radius 0.25s, border 0.25s, box-shadow 0.25s;
}
.select__selected span {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.select__selected:before, .select__selected:after {
  position: absolute;
  content: "";
  top: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s;
}
.select__selected:before {
  right: 12px;
  transform: translateY(-50%) rotateZ(-45deg);
}
.select__selected:after {
  right: 18px;
  transform: translateY(-50%) rotateZ(45deg);
}
.select__selected.active {
  border-radius: 15px 15px 0 0;
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.75);
  box-shadow: inset 0 0 0 0.5px rgba(var(--color-blue-dark3-rgb), 0.75);
}
.select__selected.active:before {
  transform: translateY(-50%) rotateZ(45deg);
}
.select__selected.active:after {
  transform: translateY(-50%) rotateZ(-45deg);
}
.select__selected:not([data-selected=""]) {
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.75);
  box-shadow: inset 0 0 0 0.5px rgba(var(--color-blue-dark3-rgb), 0.75);
}
.error .select__selected {
  color: var(--color-red) !important;
  border-color: var(--color-red) !important;
  box-shadow: inset 0 0 0 0.5px var(--color-red) !important;
}
.select__options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 4px 10px rgba(var(--color-blue-dark3-rgb), 0.12);
  border-radius: 0 0 15px 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s;
}
.active ~ .select__options {
  max-height: var(--max-height);
}
.select__option {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  font-size: 16px;
  transition: background 0.25s;
  cursor: pointer;
}
.select__option:hover {
  background: var(--color-blue-light2);
}
.select:hover .select__selected {
  border: 1px solid rgba(var(--color-blue-dark3-rgb), 0.75);
  box-shadow: inset 0 0 0 0.5px rgba(var(--color-blue-dark3-rgb), 0.75);
}

@media (min-width: 768px) {
  .content {
    width: 740px;
  }
  .title {
    font-size: 40px;
  }
  .header__nav--item {
    text-align: center;
  }
  .header__nav--item span {
    width: fit-content;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
  }
  .about:before {
    transform: translateX(-110px) rotateZ(-42deg);
  }
  .about__box {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1.2fr;
    gap: 20px;
  }
  .about__text {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .about__img {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .about__button {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  .effective__list {
    flex-direction: row;
  }
  .effective__item {
    flex: 2;
  }
  .effect__list {
    justify-content: space-evenly;
    gap: 40px 55px;
  }
  .info .content {
    gap: 40px;
  }
  .info__box {
    flex-direction: row;
  }
  .info__box--rev {
    flex-direction: row-reverse;
  }
  .info__img {
    flex: 2;
  }
  .info__body {
    flex: 2;
  }
  .info__text {
    flex: 2;
  }
  .work__box {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    margin-top: 40px;
  }
  .work__left {
    flex: 2;
  }
  .work__right {
    flex: 2;
    margin: 0;
  }
  .work__right img {
    height: 460px;
  }
  .product {
    width: 740px;
  }
  .product__slider {
    width: 510px;
    margin-left: auto;
    margin-right: auto;
    overflow: visible !important;
    margin-top: 40px;
    position: relative;
  }
  .product__slider--box {
    padding: 25px;
  }
  .product__slider--img img {
    height: 301px;
  }
  .product__slider--label {
    top: 36px;
    right: 36px;
  }
  .product__slider--label1 {
    width: 70px;
    height: 70px;
    padding: 4px;
    font-size: 14px;
  }
  .product__slider--label1:before {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
  }
  .product__slider--label2 {
    width: 70px;
    height: 70px;
    padding: 4px;
    font-size: 10px;
  }
  .product__slider--label2 b {
    font-size: 15px;
  }
  .product__slider--label2:before {
    top: 4px;
    left: 4px;
    right: 4px;
    bottom: 4px;
  }
  .product__slider--nav {
    position: absolute;
    top: 430px;
    left: -90px;
    right: -90px;
  }
  .product__slider--pagination {
    display: none;
  }
  .find__list {
    flex-direction: row;
    gap: 24px;
  }
  .find__item {
    flex: 2;
  }
  .comment__box {
    gap: 40px;
  }
  .comment__slider {
    overflow: visible !important;
  }
  .comment__slider--item {
    padding: 25px;
  }
  .checkout__box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .checkout__item {
    width: calc(50% - 12px);
  }
  .checkout__cards {
    height: 23px;
  }
  .faq__list {
    gap: 25px;
  }
  .blog__box {
    grid-template-columns: repeat(2, 1fr);
    margin: 0;
  }
  .blog__item {
    padding: 25px;
  }
  .blog__subtitle {
    font-size: 25px;
    flex: 2;
  }
  .blog__content {
    font-size: 18px;
  }
  .blog__content img:first-child {
    margin-bottom: 40px;
  }
  .blog__content h2, .blog__content .h2 {
    font-size: 30px;
    line-height: 1.5;
  }
  .blog__content h3, .blog__content .h3 {
    font-size: 22px;
  }
  .blog__nav {
    font-size: 18px;
    margin-top: 85px;
  }
  .blog__nav--prev, .blog__nav--next {
    max-width: 200px;
  }
  .blog__nav--prev:before, .blog__nav--prev:after {
    left: 30px;
  }
  .blog__nav--next:before, .blog__nav--next:after {
    right: 30px;
  }
  .policy__text {
    font-size: 18px;
  }
  .policy__text h1, .policy__text h2, .policy__text .h1.h2 {
    font-size: 30px;
  }
  .policy__text h3, .policy__text h4, .policy__text h5, .policy__text h6, .policy__text .h3, .policy__text .h4, .policy__text .h5, .policy__text .h6 {
    font-size: 25px;
  }
  .policy__text ul {
      margin-block-start: 0;
      margin-block-end: 0;
      padding-inline-start: 40px;
  }
  .form {
    margin: 0 auto;
    padding: 50px 25px;
  }
  .footer {
    padding: 60px 0 40px;
  }
  .footer__box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .footer__logo {
    width: 100%;
  }
  .footer__title:before, .footer__title:after {
    display: none;
  }
  .footer__body {
    max-height: none;
    padding-top: 15px;
  }
  .popup__close {
    transform: translateY(-8px);
  }
}
@media (min-width: 991px) {
  .content {
    width: 960px;
  }
  .header {
    padding: 44px 0;
  }
  .header__burg {
    display: none;
  }
  .header__nav {
    position: static;
    transform: none;
    background: none;
    box-shadow: none;
    padding: 0;
  }
  .header__nav--wrap {
    width: auto;
    overflow: visible;
    flex-direction: row;
    padding: 0;
  }
  .header__nav--item {
    flex: 2;
    position: relative;
  }
  .header__nav--item > a,
  .header__nav--item > span {
    font-size: 18px;
    cursor: pointer;
    -webkit-text-stroke: 0.5px transparent;
    transition: -webkit-text-stroke 0.25s;
  }
  .header__nav--item > a:hover,
  .header__nav--item > span:hover {
    -webkit-text-stroke: 0.5px var(--color-blue-dark);
  }
  .header__nav--podmenu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 200px;
    padding: 20px !important;
    align-items: flex-start;
    max-height: none !important;
    background: var(--color-white);
    transform: translate(-50%, 15px) scale(1, 0);
    border-radius: 10px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.25s;
    transform-origin: top center;
    overflow: visible;
  }
  .header__nav--podmenu:before {
    position: absolute;
    content: "";
    background: var(--color-white);
    width: 20px;
    height: 17px;
    transform: translate(-50%, -3px) rotateZ(60deg) skew(30deg);
    top: 0;
    left: 50%;
  }
  .show ~ .header__nav--podmenu {
    transform: translate(-50%, 15px) scale(1, 1);
  }
  .header__nav--podmenu > a {
    font-size: 18px;
    -webkit-text-stroke: 0.5px transparent;
    transition: -webkit-text-stroke 0.25s;
  }
  .header__nav--podmenu > a:hover {
    -webkit-text-stroke: 0.5px var(--color-blue-dark);
  }
  .accordion__title:before, .accordion__title:after {
    right: 25px;
  }
  .show .accordion__body {
    margin-bottom: 20px;
  }
  .about {
    padding: 190px 0 110px;
  }
  .about__box {
    grid-template-columns: 1fr 1fr;
    gap: 55px 0;
  }
  .about__text {
    gap: 22px;
  }
  .about__title {
    font-size: 45px;
  }
  .about__subtitle {
    font-size: 22px;
  }
  .about__button {
    max-width: 320px;
  }
  .about__img--prod {
    width: 400px;
    transform: translate(-50%, -50%) translate(10px, 70px) rotateZ(48deg);
  }
  .about__img--1 {
    width: 300px;
    transform: translate(-50%, -50%) translate(-100px, -100px) rotateZ(48deg);
  }
  .about__img--2 {
    width: 300px;
    transform: translate(-50%, -50%) translate(-50px, 130px) rotateZ(48deg);
  }
  .about__img--3 {
    width: 300px;
    transform: translate(-50%, -50%) translate(210px, -40px) rotateZ(48deg);
  }
  .about__decor--1 {
    height: 123px;
    transform: translate(-50%, -50%) translate(-130px, 100px) rotateZ(54.62deg);
  }
  .about__decor--2 {
    height: 184px;
    transform: translate(-50%, -50%) translate(140px, 370px) rotateZ(35.81deg);
  }
  .about__decor--3 {
    height: 123px;
    transform: translate(-50%, -50%) translate(190px, -170px);
  }
  .about__decor--5 {
    height: 166px;
    transform: translate(-50%, -50%) translate(-140px, -70px) rotateZ(97.18deg);
  }
  .about__decor--6 {
    height: 123px;
    transform: translate(-50%, -50%) translate(200px, 250px);
  }
  .about__decor--7 {
    height: 160px;
    transform: translate(-50%, -50%) translate(450px, -70px) rotateZ(-54.01deg);
  }
  .about__decor--8 {
    height: 260px;
    transform: translate(-50%, -50%) translate(-110px, -60px);
  }
  .about__decor--9 {
    display: none;
  }
  .effective__item span {
    font-size: 20px;
  }
  .effect__list {
    gap: 40px 130px;
  }
  .effect__item span {
    font-size: 20px;
  }
  .work__box {
    margin-top: 45px;
  }
  .work__title {
    padding: 20px 44px 20px 25px;
  }
  .work__title span {
    z-index: 20;
  }
  .work__right img {
    height: 550px;
  }
  .product__slider--title {
    font-size: 30px;
  }
  .find__item span b {
    font-size: 20px;
  }
  .head {
    padding: 156px 0 56px;
  }
  .comment__slider--pagination {
    margin: 20px 0 30px;
  }
  .checkout__box {
    flex-wrap: nowrap;
  }
  .checkout__sale {
    margin: 0 -25px;
  }
  .checkout__item {
    width: calc(33.333% - 12px);
    padding: 0 25px 25px;
  }
  .checkout__cards {
    gap: 13px;
    height: 18px;
  }
  .checkout__list2 {
    margin-top: 40px;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }
  .checkout__list2 .checkout__list--item {
    align-items: center;
    flex-direction: row;
    gap: 9px;
  }
  .blog__box {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__box {
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 60px 40px;
  }
  .footer__logo {
    width: auto;
  }
  .footer__copy {
    margin-top: 40px;
  }
}
@media (min-width: 1260px) {
  .content {
    width: 1230px;
  }
  .header__nav--wrap {
    gap: 100px;
  }
  .about:before {
    transform: translateX(-50px) rotateZ(-42deg);
  }
  .about__box {
    grid-template-columns: 1fr 1.2fr;
    gap: 55px 70px;
  }
  .about__img--1 {
    transform: translate(-50%, -50%) translate(-190px, -110px) rotateZ(48deg);
  }
  .about__img--2 {
    transform: translate(-50%, -50%) translate(-120px, 140px) rotateZ(48deg);
  }
  .about__img--3 {
    transform: translate(-50%, -50%) translate(200px, 40px) rotateZ(48deg);
  }
  .about__decor--1 {
    transform: translate(-50%, -50%) translate(-210px, 130px) rotateZ(54.62deg);
  }
  .about__decor--2 {
    transform: translate(-50%, -50%) translate(140px, 380px) rotateZ(35.81deg);
  }
  .about__decor--3 {
    transform: translate(-50%, -50%) translate(190px, -160px);
  }
  .about__decor--4 {
    display: block;
    top: 50%;
    left: 50%;
    height: 189px;
    transform: translate(-50%, -50%) translate(550px, -250px) rotate(-73.34deg);
  }
  .about__decor--8 {
    height: 260px;
    transform: translate(-50%, -50%) translate(-150px, -60px);
  }
  .about__decor--9 {
    display: block;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(310px, 460px) rotateZ(-62.24deg);
  }
  .effect__list {
    gap: 24px;
    justify-content: space-around;
  }
  .info__box {
    gap: 46px;
  }
  .comment {
    padding: 56px 40px 0;
  }
  .comment .content {
    width: 100%;
    padding: 0;
  }
  .comment__slider {
    overflow: hidden !important;
  }
  .checkout__cards {
    gap: 16px;
    height: 33px;
    padding: 4px 0;
  }
  .checkout__img {
    height: 280px;
  }
  .checkout__img img {
    max-height: 230px;
  }
  .footer__box {
    gap: 100px;
  }
  .footer__logo {
    flex: 2;
  }
}
