@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Montserrat";
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

* {
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

/* Colors */

/* General */

body {
  font-family: "Montserrat", sans-serif;
}

.app-wrapper {
  width: 100%;
  overflow: hidden;
}

.title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.button {
  padding: 16px 93px;
  border: 1px solid #DD1A1A;
  background: #DD1A1A;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px 5px rgba(221, 26, 26, 0.22);
  box-shadow: 0 0 10px 5px rgba(221, 26, 26, 0.22);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  cursor: pointer;
  display: block;
}

.button:hover {
  background: #fff;
  color: #DD1A1A;
}

.button_dark {
  padding: 14px 20px;
  border-radius: 3px;
  text-align: center;
  text-transform: uppercase;
  background: #000;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  border: 1px solid #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  display: block;
}

.button_dark:hover {
  background: #fff;
  color: #000;
}

.button_gray {
  padding: 16px 56px;
  border-radius: 4px;
  text-align: center;
  text-transform: uppercase;
  background: #313131;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  border: 1px solid #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  display: block;
  -webkit-box-shadow: 0 0 10px 5px #B8B8B8;
  box-shadow: 0 0 10px 5px #B8B8B8;
}

.button_gray:hover {
  background: #fff;
  color: #313131;
}

.slider__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(49, 49, 49, 0.6);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  overflow: hidden;
}

.slider__arrow:hover {
  background: #DD1A1A;
}

.slider__arrow svg path {
  stroke: #fff;
}

.slider__arrow_left svg {
  margin: 0 5px 0 0;
}

.slider__arrow_right svg {
  margin: 0 0 0 5px;
}

.slider__arrow svg {
  max-width: 21px;
  stroke-width: 3px;
  stroke: #FFF;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

input[type=text] {
  width: 100%;
  padding: 10px 17px;
  border-radius: 4px;
  background: #F4F4F4;
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.36px;
  font-weight: 400;
  color: #000;
  border: 1px solid transparent;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

input[type=text]::-webkit-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.36px;
  font-weight: 400;
  color: #000;
}

input[type=text]::-moz-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.36px;
  font-weight: 400;
  color: #000;
}

input[type=text]:-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.36px;
  font-weight: 400;
  color: #000;
}

input[type=text]::-ms-input-placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.36px;
  font-weight: 400;
  color: #000;
}

input[type=text]::placeholder {
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: -0.36px;
  font-weight: 400;
  color: #000;
}

input[type=text]:focus {
  border: 1px solid #000;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  overflow-y: auto;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  z-index: -1;
}

.modal.open {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  z-index: 100;
}

.modal__wrap {
  width: 100%;
  max-width: 1200px;
  margin: auto 26px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  position: relative;
  padding: 80px 40px 40px 40px;
}

.modal__close {
  position: absolute;
  top: 40px;
  left: 40px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.modal__close:hover svg path,
.modal__close:hover svg rect {
  stroke: #DD1A1A;
}

.modal__close img,
.modal__close svg {
  width: 100%;
  height: 100%;
  display: block;
}

.modal__close img path,
.modal__close img rect,
.modal__close svg path,
.modal__close svg rect {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

/* Modal Popup Review */

.modal-review__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 13% 3% 21% 3%;
}

.modal-review__title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 20px 0;
}

.modal-review__stars {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.modal-review__stars img,
.modal-review__stars svg {
  width: 100px;
  height: 100px;
  min-width: 100px;
  display: block;
  cursor: pointer;
}

.modal-review__stars img.hover path,
.modal-review__stars svg.hover path {
  fill: #DD1A1A;
}

.modal-review__subtitle {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 11% 0 20px 0;
}

.modal-review__form {
  width: 100%;
}

.modal-review__form input[type=text] {
  width: 100%;
  padding: 20px 21px;
  -webkit-box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  border-radius: 2px;
  border: 2px solid #EEE;
}

.paginator {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.paginator ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
  list-style-position: inside;
}

.paginator ul li {
  margin: 0 20px 0 0;
}

.paginator ul li:nth-last-of-type(1) {
  margin: 0;
}

.paginator ul li.active a,
.paginator ul li.active span {
  background: #DD1A1A;
  border: 2px solid #DD1A1A;
  color: #fff;
}

.paginator ul li.dots a,
.paginator ul li.dots span {
  background: #fff;
  border: 2px solid #fff;
  color: #000;
}

.paginator ul li a,
.paginator ul li span {
  border-radius: 2px;
  border: 2px solid #000;
  background: #fff;
  width: 50px;
  min-width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5625rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.paginator ul li a:hover {
  border: 2px solid #DD1A1A;
  background: #DD1A1A;
  color: #fff;
}

/* Header */

.header {
  width: 100%;
  background: #fff;
  padding: max(59px, 3%) 0;
  position: relative;
  z-index: 50;
}

.header__open .header__burger span:nth-of-type(1) {
  top: 8.5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__open .header__burger span:nth-of-type(2) {
  opacity: 0;
}

.header__open .header__burger span:nth-of-type(3) {
  top: 8.5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__open .header__menu {
  top: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header__container {
  width: 100%;
  max-width: 1332px;
  margin-inline: auto;
  padding: 0 26px;
}

.header__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__logo {
  max-width: 193px;
}

.header__logo img,
.header__logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header__nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__burger {
  width: 28px;
  height: 17px;
  position: relative;
  cursor: pointer;
  margin: 0 15px 0 0;
  display: none;
}

.header__burger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__burger span:nth-of-type(1) {
  top: 0;
}

.header__burger span:nth-of-type(2) {
  top: 8px;
}

.header__burger span:nth-of-type(3) {
  top: 16px;
}

.header__menu {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu li {
  margin: 0 50px 0 0;
  position: relative;
}

.header__menu li.menu-item-has-children:hover ul.sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__menu li.menu-item-has-children>a {
  font-weight: 700;
}

.header__menu li.menu-item-has-children>a::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 0 4px;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  content: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='black' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.header__menu li.menu-item-has-children>a:hover::after {
  content: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23DD1A1A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.header__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__menu li a:hover {
  color: #DD1A1A;
}

.header__menu li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-position: inside;
  list-style-type: none;
  width: 190px;
  padding: 12px 0 0 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.header__menu li ul.sub-menu li {
  width: 100%;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 9px 13px;
}

.header__menu li ul.sub-menu li:nth-last-of-type(1) {
  margin: 0;
}

.header__menu li ul.sub-menu li a {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__menu li ul.sub-menu li a:hover {
  color: #DD1A1A;
}

.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__join {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  padding: 8px 17px;
  border: 1.4px solid #AAA;
  border-radius: 4px;
  margin: 0 50px 0 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.header__join:hover {
  border: 1.4px solid #DD1A1A;
  color: #DD1A1A;
}

.header__language {
  position: relative;
}

.header__language_head {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__language_head_title {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

.header__language_head_icon {
  max-width: 8px;
  margin: 0 0 0 4px;
}

.header__language_head_icon img,
.header__language_head_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Header */

.footer {
  width: 100%;
  padding: max(59px, 4%) 0 max(94px, 5%) 0;
  position: relative;
  z-index: 50;
}

.footer__open .footer__burger span:nth-of-type(1) {
  top: 8.5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.footer__open .footer__burger span:nth-of-type(2) {
  opacity: 0;
}

.footer__open .footer__burger span:nth-of-type(3) {
  top: 8.5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.footer__open .footer__menu {
  bottom: 100%;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer__container {
  width: 100%;
  max-width: 1332px;
  margin-inline: auto;
  padding: 0 26px;
}

.footer__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__logo {
  max-width: 193px;
}

.footer__logo img,
.footer__logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.footer__nav {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__burger {
  width: 28px;
  height: 17px;
  position: relative;
  cursor: pointer;
  margin: 0 15px 0 0;
  display: none;
}

.footer__burger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer__burger span:nth-of-type(1) {
  top: 0;
}

.footer__burger span:nth-of-type(2) {
  top: 8px;
}

.footer__burger span:nth-of-type(3) {
  top: 16px;
}

.footer__menu {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__menu li {
  margin: 0 40px 0 0;
}

.footer__menu li.menu-item-has-children:hover ul.sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__menu li.menu-item-has-children>a {
  font-weight: 700;
}

.footer__menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer__menu li a:hover {
  color: #DD1A1A;
}

.footer__menu li ul.sub-menu {
  position: absolute;
  bottom: 100%;
  left: 0;
  list-style-position: inside;
  list-style-type: none;
  width: 190px;
  padding: 0 0 12px 0;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.footer__menu li ul.sub-menu li {
  width: 100%;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
  padding: 9px 13px;
}

.footer__menu li ul.sub-menu li:nth-last-of-type(1) {
  margin: 0;
}

.footer__menu li ul.sub-menu li a {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer__menu li ul.sub-menu li a:hover {
  color: #DD1A1A;
}

.footer__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__join {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  padding: 8px 17px;
  border: 1.4px solid #AAA;
  border-radius: 4px;
  margin: 0 40px 0 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.footer__join:hover {
  border: 1.4px solid #DD1A1A;
  color: #DD1A1A;
}

.footer__language {
  position: relative;
}

.footer__language_head {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__language_head_title {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

.footer__language_head_icon {
  max-width: 8px;
  margin: 0 0 0 4px;
}

.footer__language_head_icon img,
.footer__language_head_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Partner */

.partner {
  width: 100%;
  background: #fff;
}

.partner__day {
  padding: 2% 0 4% 0;
}

.partner__home {
  padding: 4.4% 0 4% 0;
}

.partner__container {
  width: 100%;
  max-width: 1332px;
  padding: 0 26px;
  margin-inline: auto;
}

.partner__title {
  text-align: center;
  margin: 0 0 3.9% 0;
}

.partner__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.partner__item {
  max-width: 193px;
  margin: 0 4% 20px 0;
}

.partner__item:nth-last-of-type(1) {
  margin: 0 0 12px 0;
}

/* Review */

.review {
  width: 100%;
  background: #fff;
  position: relative;
  padding: 0 0 4% 0;
}

.review::after {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  padding-bottom: 17.5%;
  pointer-events: none;
  z-index: 0;
  display: block;
  content: "";
}

.review__pay::after {
  display: none;
}

.review__comment {
  padding: 4% 0 0 0;
}

.review__comment::after {
  display: none;
}

.review__comment .review__title {
  display: none;
}

.review__container {
  width: 100%;
  padding: 0 6%;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.review__title {
  margin: 0 0 4% 0;
  text-align: center;
}

.review__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 4% 0;
}

.review__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review__stars {
  max-height: 40px;
  margin: 0 20px 0 0;
}

.review__stars img,
.review__stars svg {
  width: 100%;
  max-height: 40px;
  display: block;
}

.review__count {
  position: relative;
  z-index: 10;
}

.review__count_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.review__count_head_title {
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  margin: 0 4px 0 0;
}

.review__count_head_icon {
  max-width: 16px;
  min-width: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 4px 0 0 0;
}

.review__count_head_icon img,
.review__count_head_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.review__count_dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  background: #fff;
  width: 620px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 20px;
}

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

.review__count_dropdown_title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 20px 0;
}

.review__count_dropdown_title_icon {
  max-width: 80px;
  max-height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 10px 0 0;
}

.review__count_dropdown_title_icon img,
.review__count_dropdown_title_icon svg {
  display: block;
  max-height: 80px;
  max-width: 80px;
}

.review__count_dropdown_title_text {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

.review__count_dropdown_rows {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.review__count_dropdown_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 10px 0;
}

.review__count_dropdown_row:nth-last-of-type(1) {
  margin: 0;
}

.review__count_dropdown_row_icon {
  max-height: 40px;
  margin: 0 20px 0 0;
  width: 32%;
}

.review__count_dropdown_row_icon img,
.review__count_dropdown_row_icon svg {
  max-width: 100%;
  width: 100%;
  height: 100%;
  display: block;
  max-height: 40px;
}

.review__count_dropdown_row_line {
  border: 1px solid #DD1A1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  height: 20px;
}

.review__count_dropdown_row_line span {
  display: inline-block;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  background: #DD1A1A;
}

.review__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review__button {
  margin: 0 40px 0 0;
}

.review__filter {
  position: relative;
}

.review__filter_head {
  padding: 11px 17px;
  border: 1px solid #000;
  background: #000;
  border-radius: 3px;
  cursor: pointer;
}

.review__filter_head:hover {
  background: #fff;
}

.review__filter_head:hover svg path {
  fill: #000;
  stroke: #000;
}

.review__filter_head:hover svg circle {
  stroke: #000;
}

.review__filter_head img,
.review__filter_head svg {
  max-width: 56px;
  width: 100%;
  height: 100%;
  display: block;
}

.review__filter_head img path,
.review__filter_head svg path {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.review__filter_head img circle,
.review__filter_head svg circle {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.review__wrapper {
  width: 100%;
  max-width: 1920px;
  position: relative;
  z-index: 1;
}

.review__arrow {
  position: absolute;
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  top: 50%;
  margin: -40px 0 0 0;
  z-index: 4;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.review__arrow_left {
  left: 70px;
}

.review__arrow_right {
  right: 70px;
}

.review__arrow.swiper-button-disabled {
  opacity: 0;
}

.review__slider {
  width: 100%;
  padding: 0 6%;
  position: relative;
  z-index: 3;
}

.review__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  background: #fff;
  border: 2px solid #AAA;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  border-radius: 6px;
  padding: 3% 1.5% 2% 1.5%;
  height: auto;
}

.review__slide_head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 18px 0;
}

.review__slide_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 0 5px 0 0;
}

.review__slide_title {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.review__slide_stars {
  max-height: 20px;
}

.review__slide_stars img,
.review__slide_stars svg {
  width: 100%;
  max-height: 20px;
  display: block;
}

.review__slide_accept {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.review__slide_accept_icon {
  width: 26px;
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 10px 0 0;
}

.review__slide_accept_icon img,
.review__slide_accept_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.review__slide_accept_text {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.review__slide_text {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
}

.review__slide_text span {
  font-weight: 700;
  color: #DD1A1A;
}

.review__footer {
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5% 26px;
  display: none;
}

/* Day Head */

.day-head {
  width: 100%;
  padding: 4% 0 6% 0;
  position: relative;
}

.day-head::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  padding-bottom: 6%;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

.day-head__image {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.day-head__image img,
.day-head__image svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.day-head__image_left {
  width: 29%;
  padding-bottom: 29%;
  bottom: 0;
  left: 0;
}

.day-head__image_right {
  width: 31%;
  padding-bottom: 31%;
  bottom: 0;
  right: 0;
}

.day-head__container {
  width: 100%;
  max-width: 957px;
  margin-inline: auto;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.day-head__title {
  font-size: 3.125rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  margin: 0 0 3.5% 0;
  text-align: center;
}

.day-head__title span {
  font-weight: 700;
}

.day-head__subtitle {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 6.6% 0;
  text-align: center;
}

.day-head__items {
  width: 100%;
  border: 2px solid #AAA;
  border-radius: 6px;
  padding: 20px;
  margin: 0 0 6.6% 0;
  max-width: 853px;
}

.day-head__item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 16px 0;
}

.day-head__item:nth-last-of-type(1) {
  margin: 0;
}

.day-head__item_count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: #000;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  margin: 5px 15px 0 0;
  padding: 2px;
}

.day-head__item_text {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}

.day-head__button {
  width: auto !important;
  margin: 0 0 32px 0;
}

.day-head__text {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #DD1A1A;
  margin: 0 0 6.6% 0;
}

.day-head__subtext {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
}

/* Day Can */

.day-can {
  width: 100%;
  padding: 0 0 3% 0;
  background: #fff;
  position: relative;
}

.day-can__container {
  width: 100%;
  max-width: 1684px;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.day-can__title {
  margin: 0 0 4% 0;
}

.day-can__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.day-can__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22%;
  margin: 0 4% 20px 0;
}

.day-can__item:nth-of-type(4n+4) {
  margin: 0 0 20px 0;
}

.day-can__item_icon {
  width: 64px;
  min-width: 64px;
  height: 64px;
  margin: 0 0 32px 0;
}

.day-can__item_icon img,
.day-can__item_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.day-can__item_icon img path,
.day-can__item_icon svg path {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.day-can__item_title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #000;
  letter-spacing: -0.48px;
  margin: 0 0 32px 0;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.day-can__item_list {
  width: 100%;
  list-style-position: inside;
  list-style-type: none;
}

.day-can__item_list li {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.36px;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 10px 0;
}

.day-can__item_list li:nth-last-of-type(1) {
  margin: 0;
}

.day-can__item_list li::before {
  display: inline-block;
  content: "";
  width: 4px;
  min-width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 10px 10px 0 10px;
  background: #000;
}

/* Day Result */

.day-result {
  width: 100%;
  background: #fff;
  padding: 0 0 3% 0;
}

.day-result__container {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.day-result__title {
  width: 100%;
  text-align: center;
  margin: 0 0 6% 0;
}

.day-result__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.day-result__item {
  width: 32%;
  margin: 0 2% 64px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.day-result__item:nth-of-type(1) {
  width: 26.66%;
  margin: 0 10% 64px 0;
}

.day-result__item:nth-of-type(2) {
  width: 26.66%;
  margin: 0 10% 64px 0;
}

.day-result__item:nth-of-type(3) {
  width: 26.66%;
}

.day-result__item:nth-of-type(4) {
  width: 36%;
  margin: 0 10% 64px 0;
}

.day-result__item:nth-of-type(5) {
  width: 36%;
  margin: 0 10% 64px 0;
}

.day-result__item:nth-of-type(3n+3) {
  margin: 0 0 64px 0;
}

.day-result__item:nth-last-of-type(1) {
  margin: 0 0 64px 0;
}

.day-result__item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 19px 0;
}

.day-result__item_icon {
  max-width: 60px;
  min-width: 60px;
  margin: 0 10px 0 0;
}

.day-result__item_icon img,
.day-result__item_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.day-result__item_icon img path,
.day-result__item_icon svg path {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.day-result__item_title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #DD1A1A;
}

.day-result__item_text {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
}

/* Day Wait */

.day-wait {
  width: 100%;
  background: #fff;
  position: relative;
  padding: 4% 0 6% 0;
}

.day-wait::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10%;
  background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(top, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(180deg, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  display: block;
  content: "";
  z-index: 1;
  pointer-events: none;
}

.day-wait__container {
  width: 100%;
  max-width: 1370px;
  padding: 0 26px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.day-wait__title {
  margin: 0 0 5% 0;
}

.day-wait__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.day-wait__item {
  width: 32%;
  padding-bottom: 39%;
  margin: 0 2% 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.day-wait__item:nth-of-type(3n+3) {
  margin: 0 0 20px 0;
}

.day-wait__item_background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.day-wait__item_background img,
.day-wait__item_background svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.day-wait__item_content {
  position: absolute;
  left: 0;
  top: 50%;
  margin: -75px 0 0 0;
  z-index: 2;
  background: #fff;
  width: 148px;
  height: 148px;
  min-width: 148px;
  border-radius: 50%;
  padding: 2px;
  border: 2px solid #000;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Day Who */

.day-who {
  width: 100%;
  padding: 0 0 3% 0;
  background: #fff;
}

.day-who__container {
  width: 100%;
  max-width: 1522px;
  padding: 0 26px;
  margin-inline: auto;
}

.day-who__title {
  margin: 0 0 20px 0;
}

.day-who__subtitle {
  margin: 0 0 4% 0;
}

.day-who__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.day-who__item {
  width: 48%;
  margin: 0 4% 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.day-who__item:nth-of-type(2n+2) {
  margin: 0 0 20px 0;
}

.day-who__item_center .day-who__item_content .day-who__item_list {
  width: 64%;
}

.day-who__item_icon {
  width: 103px;
  min-width: 103px;
  height: 103px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
  pointer-events: none;
}

.day-who__item_icon img,
.day-who__item_icon svg {
  margin: auto 0 0 0;
  max-width: 103px;
  width: 103px;
  max-height: 103px;
  display: block;
}

.day-who__item_content {
  width: 100%;
  border: 2px solid #AAA;
  border-radius: 5px;
  padding: 5% 8% 8% 8%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.day-who__item_title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 30px 0;
}

.day-who__item_list {
  list-style-type: none;
  list-style-position: inside;
  width: 100%;
}

.day-who__item_list li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 20px 0;
}

.day-who__item_list li:nth-last-of-type(1) {
  margin: 0;
}

.day-who__item_list li span {
  width: 20px;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  background: #DD1A1A;
  margin: 3px 10px 0 0;
}

.day-who__item_list li p {
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
}

/* Day Team */

.day-team {
  width: 100%;
  padding: 3% 0 0 0;
  background: #fff;
  position: relative;
}

.day-team::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 9%;
  display: block;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(top, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(180deg, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.day-team__container {
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
  padding: 0 26px;
  z-index: 2;
  position: relative;
}

.day-team__title {
  margin: 0 0 3.5% 0;
}

.day-team__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.day-team__item {
  width: 25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 64px 0;
}

.day-team__item_image {
  max-width: 100%;
  margin: 0 0 12px 0;
}

.day-team__item_image img,
.day-team__item_image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.day-team__item_content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 91px;
}

.day-team__item_title {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #000;
  margin: 0 0 12px 0;
  text-align: center;
  max-width: 265px;
  padding: 0 5px;
}

.day-team__item_text {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: #000;
  text-align: center;
  max-width: 270px;
  padding: 0 5px;
}

/* Day Recommend */

.day-rec {
  width: 100%;
  background: #fff;
  padding: 0 0 3% 0;
}

.day-rec__container {
  width: 100%;
  max-width: 1844px;
  padding: 0 26px;
  margin-inline: auto;
}

.day-rec__title {
  text-align: center;
  margin: 0 0 2% 0;
}

.day-rec__subtitle {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  margin: 0 0 4% 0;
}

.day-rec__subtitle span {
  text-decoration: underline;
}

.day-rec__wrapper {
  position: relative;
  padding: 0 130px;
  width: 100%;
}

.day-rec__arrow {
  width: 80px;
  height: 80px;
  min-width: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin: -40px 0 0 0;
  z-index: 3;
}

.day-rec__arrow_left {
  left: 0;
}

.day-rec__arrow_right {
  right: 0;
}

.day-rec__slider {
  width: 100%;
  position: relative;
  z-index: 2;
}

.day-rec__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.day-rec__slide_image {
  width: 100%;
  padding-bottom: 176%;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.day-rec__slide_background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.day-rec__slide_background img,
.day-rec__slide_background svg {
  width: 100%;
  height: 100%;
  display: block;
}

.day-rec__slide_icon {
  width: 74px;
  height: 57px;
  min-width: 74px;
  position: absolute;
  top: 50%;
  margin: -28.5px 0 0 0;
  z-index: 2;
}

.day-rec__slide_icon img,
.day-rec__slide_icon svg {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.day-rec__slide_title {
  margin: 20px 0 0 0;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

/* Day Contact */

.day-contact {
  width: 100%;
  padding: 3% 0 0 0;
  background: #fff;
  position: relative;
}

.day-contact__background {
  position: absolute;
  width: 30%;
  padding-bottom: 32%;
  bottom: -15%;
  left: 0;
  z-index: 1;
}

.day-contact__background img,
.day-contact__background svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.day-contact__container {
  width: 100%;
  max-width: 900px;
  padding: 0 26px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.day-contact__title {
  margin: 0 0 7% 0;
  text-align: center;
}

.day-contact__subtitle {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 500;
  text-align: center;
  color: #000;
  margin: 0 0 4% 0;
}

.day-contact__text {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
  margin: 0 0 8% 0;
  text-align: center;
}

.day-contact__image {
  display: none;
}

.day-contact__image img,
.day-contact__image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.day-contact__form,
.day-contact form {
  width: 100%;
  max-width: 386px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.day-contact__form label,
.day-contact form label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 24px 0;
}

.day-contact__form label:nth-last-of-type(1),
.day-contact form label:nth-last-of-type(1) {
  margin: 0;
}

.day-contact__form label span,
.day-contact form label span {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.36px;
  color: #000;
  margin: 0 0 24px 0;
}

.day-contact__form button,
.day-contact form button {
  font-family: "Montserrat", sans-serif;
  margin: 32px 0 0 0;
  padding: 16px 93px;
  border: 1px solid #DD1A1A;
  background: #DD1A1A;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 10px 5px rgba(221, 26, 26, 0.22);
  box-shadow: 0 0 10px 5px rgba(221, 26, 26, 0.22);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  text-align: center;
  cursor: pointer;
  display: block;
}

.day-contact__form button:hover,
.day-contact form button:hover {
  background: #fff;
  color: #DD1A1A;
}

/* Pay Head */

.pay-head {
  width: 100%;
  padding: max(26px, 1.3%) 0 3% 0;
  background: #fff;
}

.pay-head__container {
  width: 100%;
  max-width: 1330px;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pay-head__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
  margin: 0 0 2% 0;
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
}

.pay-head__subtitle {
  max-width: 680px;
  margin-inline: auto;
  width: 100%;
  text-align: center;
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  margin: 0 0 4% 0;
}

.pay-head__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pay-head__item {
  display: block;
  width: 30%;
  margin: 0 5% 20px 0;
  position: relative;
}

.pay-head__item:nth-of-type(3n+3) {
  margin: 0 0 20px 0;
}

.pay-head__item::before {
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  display: block;
  content: "";
  border-radius: 15px;
  -webkit-filter: blur(15px);
  filter: blur(15px);
  background: #B8B8B8;
  z-index: 1;
}

.pay-head__item_gray .pay-head__item_wrap {
  background: #3E3E3E;
}

.pay-head__item_gray .pay-head__item_icon svg path {
  stroke: #fff;
}

.pay-head__item_gray .pay-head__item_title {
  color: #fff;
}

.pay-head__item_gray .pay-head__item_price_current {
  color: #fff;
}

.pay-head__item_gray .pay-head__item_list .pay-head__item_row_icon svg path {
  stroke: #fff;
}

.pay-head__item_gray .pay-head__item_list .pay-head__item_row_text {
  color: #fff;
}

.pay-head__item_black .pay-head__item_wrap {
  background: #000;
}

.pay-head__item_black .pay-head__item_icon svg path {
  stroke: #fff;
}

.pay-head__item_black .pay-head__item_title {
  color: #fff;
}

.pay-head__item_black .pay-head__item_price_current {
  color: #fff;
}

.pay-head__item_black .pay-head__item_list .pay-head__item_row_icon svg path {
  stroke: #fff;
}

.pay-head__item_black .pay-head__item_list .pay-head__item_row_text {
  color: #fff;
}

.pay-head__item_object {
  width: 44%;
  padding-bottom: 44%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -35px;
  right: -52px;
  z-index: 5;
}

.pay-head__item_object img,
.pay-head__item_object svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.pay-head__item_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 4px solid #000;
  background: #fff;
  border-radius: 15px;
  padding: 9%;
  position: relative;
  z-index: 3;
}

.pay-head__item_icon {
  width: 68px;
  height: 68px;
  min-width: 68px;
  margin: 0 0 3px 0;
}

.pay-head__item_icon img,
.pay-head__item_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pay-head__item_title {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 13px 0;
}

.pay-head__item_price {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 23px 0;
}

.pay-head__item_price_current {
  font-size: 1.875rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #000;
}

.pay-head__item_price_old {
  padding: 0 0 0 10px;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  color: #B8B8B8;
  text-decoration: line-through;
}

.pay-head__item_button {
  width: 100%;
  padding: 16px 5px;
  text-transform: initial;
  margin: 0 0 29px 0;
}

.pay-head__item_list {
  width: 100%;
  list-style-position: inside;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.pay-head__item_row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 13px 0;
}

.pay-head__item_row:nth-last-of-type(1) {
  margin: 0;
}

.pay-head__item_row_icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 20px 0 0;
}

.pay-head__item_row_icon img,
.pay-head__item_row_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pay-head__item_row_text {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 500;
  color: #000;
}

.pay-head__text {
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #000;
  margin: 3% 0 0 0;
}

/* Pay Patrons */

.pay-patron {
  width: 100%;
  background: #fff;
}

.pay-patron__container {
  width: 100%;
  max-width: 1332px;
  padding: 0 26px;
  margin-inline: auto;
}

.pay-patron__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 4% 0;
}

.pay-patron__subtitle {
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #000;
  margin: 0 auto 8% auto;
  max-width: 500px;
}

.pay-patron__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.pay-patron__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 22%;
  margin: 0 4% 40px 0;
}

.pay-patron__item:nth-of-type(4n+4) {
  margin: 0 0 40px 0;
}

.pay-patron__item:nth-last-of-type(1) {
  margin: 0 0 40px 0;
}

.pay-patron__item_image {
  width: 100%;
  padding-bottom: 66%;
  position: relative;
  margin: 0 0 24px 0;
  overflow: hidden;
}

.pay-patron__item_image img,
.pay-patron__item_image svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.pay-patron__item_title {
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.36px;
  color: #000;
}

.pay-patron__item_subtitle {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.36px;
  color: #000;
}

/* Success */

.suc {
  width: 100%;
  background: #fff;
  padding: max(20px, 1%) 0 8% 0;
  position: relative;
}

.suc::after {
  position: absolute;
  width: 100%;
  padding-bottom: 6%;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.suc__background {
  width: 30%;
  padding-bottom: 32%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.suc__background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.suc__human {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32%;
  padding-bottom: 25%;
  z-index: 1;
  pointer-events: none;
}

.suc__human img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.suc__container {
  width: 100%;
  max-width: 848px;
  margin-inline: auto;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.suc__title {
  font-size: 1.75rem;
  line-height: 1.5;
  font-weight: 700;
  color: #DD1A1A;
  margin: 0 0 3% 0;
  text-align: center;
}

.suc__subtitle {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 7% 0;
}

.suc__text {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 3% 0;
}

.suc__button {
  text-transform: initial;
  margin: 0 0 7% 0;
}

.suc__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  max-width: 590px;
  margin-inline: auto;
}

.suc__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 7% 0;
}

.suc__row:nth-last-of-type(1) {
  margin: 0;
}

.suc__row_icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #000;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.suc__row_text {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
}

.suc__row_text a {
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: underline;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.suc__row_text a:hover {
  color: #DD1A1A;
}

/* Home Head */

.home-head {
  width: 100%;
  background: #fff;
  padding: max(20px, 1%) 0 4.5% 0;
  position: relative;
}

.home-head::after {
  position: absolute;
  width: 100%;
  padding-bottom: 6%;
  bottom: 0;
  display: block;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  border-radius: 4px;
  z-index: 2;
}

.home-head__human {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33%;
  padding-bottom: 25%;
  pointer-events: none;
  z-index: 1;
}

.home-head__human img,
.home-head__human svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.home-head__background {
  position: absolute;
  width: 20%;
  padding-bottom: 21%;
  right: 10%;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.home-head__background img,
.home-head__background svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.home-head__container {
  width: 100%;
  max-width: 1112px;
  margin-inline: auto;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 3;
}

.home-head__title {
  font-size: 2.1875rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 7% 0;
}

.home-head__content {
  width: 100%;
  max-width: 667px;
  padding: 3.5% 3%;
  background: #fff;
  border: 2px solid #A4A4A4;
  border-radius: 6px;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  margin: 0 0 6% 0;
}

.home-head__content p {
  font-size: 1.125rem;
  line-height: 1.39;
  font-weight: 500;
  text-align: justify;
  color: #000;
  margin: 0 0 25px 0;
}

.home-head__content p:nth-last-of-type(1) {
  margin: 0;
}

.home-head__button {
  padding: 16px 56px;
}

/* Home Offer */

.home-offer {
  width: 100%;
  background: #fff;
  padding: 3% 0 4% 0;
  position: relative;
}

.home-offer::after {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  content: "";
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(239, 239, 239, 0.35)), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(top, rgba(239, 239, 239, 0.35) 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(180deg, rgba(239, 239, 239, 0.35) 0%, rgba(239, 239, 239, 0) 100%);
  padding-bottom: 11.5%;
}

.home-offer__container {
  width: 100%;
  max-width: 882px;
  padding: 0 26px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.home-offer__title {
  margin: 0 0 7.25% 0;
}

.home-offer__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.home-offer__item {
  width: 47%;
  margin: 0 6% 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-offer__item:nth-of-type(2n+2) {
  margin: 0 0 20px 0;
}

.home-offer__item_content {
  width: 100%;
  padding: 13% 16%;
  border-radius: 15px;
  border: 2px solid #DD1A1A;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 323px;
  margin: 0 0 40px 0;
}

.home-offer__item_content_black {
  background: #000;
  border: 2px solid #000;
}

.home-offer__item_content_black .home-offer__item_title {
  color: #fff;
}

.home-offer__item_icon {
  position: relative;
  margin: 0 0 32px 0;
}

.home-offer__item_icon img,
.home-offer__item_icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-offer__item_icon_count {
  position: absolute;
  top: -13px;
  right: -37px;
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: #DD1A1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.home-offer__item_title {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #DD1A1A;
}

.home-offer__item_subtitle {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  color: #000;
}

.home-offer__item_button {
  margin: auto 0 0 0;
  padding: 16px 5px;
  width: 100%;
}

/* Home Story */

.home-story {
  width: 100%;
  background: #fff;
  padding: 0 0 2% 0;
  position: relative;
}

.home-story__container {
  width: 100%;
  max-width: 1692px;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-story__title {
  margin: 0 0 6% 0;
  text-align: center;
}

.home-story__wrapper {
  width: 100%;
  position: relative;
}

.home-story__arrow {
  position: absolute;
  top: 50%;
  margin: -40px 0 0 0;
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  display: none;
}

.home-story__arrow_left {
  left: 0;
}

.home-story__arrow_right {
  right: 0;
}

.home-story__slider {
  width: 100%;
}

.home-story__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.home-story__slide_image {
  width: 100%;
  padding-bottom: 75%;
  position: relative;
  border-radius: 10px;
  border: 2px solid #B8B8B8;
  overflow: hidden;
  margin: 0 0 22px 0;
}

.home-story__slide_image img,
.home-story__slide_image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-story__slide_title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
}

.home-story__slide_title span {
  color: #DD1A1A;
}

.home-story__button {
  margin: 6% 0 0 0;
}

/* Podcast Head */

.podcast-head {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 5.2% 0 4.375% 0;
}

.podcast-head::after {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  padding-bottom: 6%;
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  border-radius: 4px;
  display: block;
  content: "";
  z-index: 52;
  pointer-events: none;
}

.podcast-head__container {
  width: 100%;
  max-width: 1332px;
  padding: 0 26px;
  margin-inline: auto;
  position: relative;
  z-index: 53;
}

.podcast-head__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.podcast-head__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 47.5%;
}

.podcast-head__title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 9% 0;
}

.podcast-head__text {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  margin: 0 0 20% 0;
}

.podcast-head__logos {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.podcast-head__logos img,
.podcast-head__logos svg {
  max-width: 130px;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 51px 20px 0;
}

.podcast-head__logos img:nth-last-of-type(1),
.podcast-head__logos svg:nth-last-of-type(1) {
  margin: 0 0 20px 0;
}

.podcast-head__image {
  position: absolute;
  width: 32%;
  padding-bottom: 32%;
  right: 13%;
  bottom: 0;
  z-index: 51;
}

.podcast-head__image img,
.podcast-head__image svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

/* Podcast Relaase */

.podcast-rel {
  width: 100%;
  padding: 3% 0;
  position: relative;
  background: #fff;
}

.podcast-rel__container {
  width: 100%;
  max-width: 1242px;
  margin-inline: auto;
  padding: 0 26px;
}

.podcast-rel__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 3.5% 0;
}

.podcast-rel__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.podcast-rel__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  width: 30%;
  margin: 0 5% 42px 0;
}

.podcast-rel__item:nth-of-type(3n+3) {
  margin: 0 0 42px 0;
}

.podcast-rel__item:nth-last-of-type(1) {
  margin: 0 0 42px 0;
}

.podcast-rel__item_image {
  width: 100%;
  padding-bottom: 71%;
  position: relative;
  margin: 0 0 18px 0;
}

.podcast-rel__item_image img,
.podcast-rel__item_image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.podcast-rel__item_title {
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.4px;
  font-weight: 700;
  color: #000;
}

/* Review Head */

.review-head {
  width: 100%;
  padding: 4% 0 2.6% 0;
  position: relative;
  background: #fff;
}

.review-head::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-bottom: 5%;
  border-radius: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  display: block;
  content: "";
  z-index: 2;
}

.review-head__background {
  position: absolute;
  bottom: 0;
  right: 6%;
  width: 27%;
  padding-bottom: 35%;
  z-index: 1;
  pointer-events: none;
}

.review-head__background img,
.review-head__background svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.review-head__container {
  width: 100%;
  max-width: 1332px;
  padding: 0 26px;
  margin-inline: auto;
  position: relative;
  z-index: 3;
}

.review-head__content {
  width: 79%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.review-head__title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 22px 0;
}

.review-head__text {
  width: 100%;
  margin: 0 0 6% 0;
}

.review-head__text p {
  font-size: 1.625rem;
  line-height: 1.4;
  font-weight: 500;
  color: #000;
  margin: 0 0 24px 0;
}

.review-head__text p:nth-last-of-type(1) {
  margin: 0;
}

.review-head__block {
  width: 100%;
  max-width: 600px;
  padding: 3% 10.5%;
  border-radius: 5px;
  border: 2px solid #A4A4A4;
}

.review-head__block_title {
  font-size: 1.75rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 10px 0;
}

.review-head__block_button {
  width: 100%;
  padding: 16px 5px;
  font-size: 1.125rem;
  margin: 0 0 20px 0;
}

.review-head__block_date {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 400;
  text-align: center;
  color: #000;
}

/* Review Comment */

.review-com {
  width: 100%;
  padding: 6% 0 0 0;
  background: #fff;
  position: relative;
}

.review-com::after {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  display: none;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  border-radius: 4px;
  z-index: 1;
  padding-bottom: 31.25%;
}

.review-com__container {
  width: 100%;
  max-width: 1442px;
  margin-inline: auto;
  padding: 0 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.review-com__columns {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 40px 0;
}

.review-com__column {
  width: 28%;
  margin: 0 8% 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.review-com__column:nth-of-type(3n+3) {
  margin: 0;
}

.review-com__item {
  width: 100%;
  margin: 0 0 56px 0;
}

.review-com__item:nth-last-of-type(1) {
  margin: 0;
}

.review-com__item img,
.review-com__item svg {
  width: 100%;
  height: 100%;
  display: block;
}

.review-com__button {
  margin: 52px auto 0 auto;
  max-width: 501px;
  width: 100%;
}

/* Denied Content */

.den-content {
  width: 100%;
  position: relative;
  background: #fff;
  padding: 2% 0 0 0;
}

.den-content::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 6%;
  display: block;
  content: "";
  z-index: 1;
  border-radius: 4px;
  background: -webkit-gradient(linear, left bottom, left top, from(#EFEFEF), to(rgba(239, 239, 239, 0)));
  background: -o-linear-gradient(bottom, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
  background: linear-gradient(0, #EFEFEF 0%, rgba(239, 239, 239, 0) 100%);
}

.den-content__container {
  width: 100%;
  max-width: 796px;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.den-content__title {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 600;
  color: #000;
  margin: 0 0 4% 0;
  text-align: center;
}

.den-content__subtitle {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #000;
  margin: 0 0 5% 0;
}

.den-content__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 0 7% 0;
}

.den-content__text p {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 500;
  text-align: center;
  color: #000;
  margin: 0 0 18px 0;
}

.den-content__text p:nth-last-of-type(1) {
  margin: 0;
}

.den-content__text p a {
  font-weight: 700;
  text-decoration: underline;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.den-content__text p a:hover {
  color: #DD1A1A;
}

.den-content__image {
  width: 60%;
  padding-bottom: 53%;
  position: relative;
}

.den-content__image img,
.den-content__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Blog Head */

.blog-head {
  width: 100%;
  background: #fff;
  padding: max(15px, 1%) 0 0 0;
}

.blog-head__container {
  width: 100%;
  max-width: 1606px;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-head__title {
  font-size: 2.9375rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  padding: 0 5px 0 0;
}

.blog-head__nav {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-head__nav_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-head__nav_item::after {
  width: 2px;
  height: 20px;
  border-radius: 8px;
  background: #DD1A1A;
  margin: 0 10px;
  display: block;
  content: "";
}

.blog-head__nav_item:nth-last-of-type(1)::after {
  display: none;
}

.blog-head__nav_item_wrap {
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  display: block;
}

.blog-head__nav_item_wrap:hover {
  color: #DD1A1A;
}

.blog-head__nav_item_wrap.active {
  padding: 8px 20px;
  border: 2px solid #000;
  border-radius: 4px;
}

.blog-head__nav_item_wrap.active:hover {
  border: 2px solid #DD1A1A;
}

/* Blog Content */

.blog-content {
  width: 100%;
  padding: 6% 0 1% 0;
  background: #fff;
}

.blog-content__container {
  width: 100%;
  max-width: 1606px;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-content__items {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.blog-content__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 31%;
  margin: 0 3.5% 64px 0;
}

.blog-content__item:nth-of-type(3n+3) {
  margin: 0 0 64px 0;
}

.blog-content__item_image {
  width: 100%;
  padding-bottom: 76%;
  position: relative;
  border: 4px solid #B8B8B8;
  border-radius: 20px;
  background: #fff;
  margin: 0 0 30px 0;
  overflow: hidden;
}

.blog-content__item_image img,
.blog-content__item_image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.blog-content__item_head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin: 0 0 20px 0;
}

.blog-content__item_title {
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
}

.blog-content__item_subtitle {
  width: 100%;
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.blog-content__item_subtitle span {
  color: #DD1A1A;
}

.blog-content__item_desc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto 0 0 0;
}

.blog-content__item_name,
.blog-content__item_date {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #B8B8B8;
}

.blog-content__item_name {
  margin: 0 8% 0 0;
}

.blog-content__button {
  margin: 4% 0 0 0;
}

/* Post */

.post {
  width: 100%;
  padding: 9% 0 3% 0;
  background: #fff;
}

.post__content-wrap {
  display: flex;
  flex-wrap: wrap;
}

.post__sidebar {
  width: 20rem;
}

.post__right {
  flex: 1;
}

.post__container {
  width: 100%;
  max-width: 62.375rem;
  padding: 0 26px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.post__image {
  width: 100%;
  padding-bottom: 48%;
  position: relative;
  border-radius: 20px;
  background: #fff;
  overflow: hidden;
  margin: 0 0 5% 0;
}

.post__author-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: .625rem;
}

.post__author-name {
  display: flex;
  align-items: center;
  gap: .3125rem;
}

.post__avatar {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
}

.post__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post__author {
  display: flex;
  align-items: flex-start;
  gap: .9375rem;
  margin-bottom: .9375rem;
}

.post__image img,
.post__image svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.post__title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 5% 0;
}

.post__content {
  width: 100%;
  margin: 0 0 5% 0;
  font-size: 1.125rem;
  line-height: 1.2;
}

.post__content p {
  font-size: 1rem;
  line-height: 170%;
  color: #505050;
  margin: 0 0 18px 0;
}

.post__content h2,
.post__content h3,
.post__content h4,
.post__content h5,
.post__content h6 {
  line-height: 1.2;
  margin: 0 0 18px 0;
}

.post__content h2 {
  font-size: 1.8rem;
}

.post__content h3 {
  font-size: 1.75rem;
}

.post__content h4 {
  font-size: 1.5rem;
}

.post__content h5 {
  font-size: 1.25rem;
}

.post__content h6 {
  font-size: 1.125rem;
}

.post__content ul,
.post__content ol {
  list-style-position: inside;
  font-size: 1.125rem;
  margin: 0 0 18px 0;
}

.post__desc {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

.post__name,
.post__date-time {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000
}

.post__name {
  text-decoration: underline;
}

.post__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post__social {
  width: 30px;
  min-width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 5px 0 0;
}

.post__social:nth-last-of-type(1) {
  margin: 0;
}

.post__social img,
.post__social svg {
  max-width: 100%;
}

/* Post Related */

.post-rel {
  width: 100%;
  background: #fff;
  padding: 0 0 6.25% 0;
}

.post-rel__container {
  width: 100%;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.post-rel__title {
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  width: 100%;
  max-width: 1463px;
  padding: 0 26px;
  margin: 0 auto 3% auto;
}

.post-rel__wrapper {
  width: 100%;
  position: relative;
}

.post-rel__nav {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 19%;
}

.post-rel__arrow {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
  margin: -40px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(49, 49, 49, 0.6);
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.post-rel__arrow.swiper-button-disabled {
  display: none;
}

.post-rel__arrow:hover {
  background: #DD1A1A;
}

.post-rel__arrow:hover svg path {
  stroke: #fff;
}

.post-rel__arrow svg {
  max-width: 21px;
  stroke-width: 3px;
  stroke: #FFF;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.post-rel__arrow_left {
  left: 5%;
}

.post-rel__arrow_left svg {
  margin: 0 5px 0 0;
}

.post-rel__arrow_right {
  right: 5%;
}

.post-rel__arrow_right svg {
  margin: 0 0 0 5px;
}

.post-rel__slider {
  width: 100%;
  padding: 0 10%;
  position: relative;
  z-index: 1;
}

.post-rel__slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.post-rel__slide_image {
  width: 100%;
  padding-bottom: 76%;
  border-radius: 20px;
  border: 4px solid #B8B8B8;
  background: #fff;
  overflow: hidden;
  margin: 0 0 30px 0;
  position: relative;
}

.post-rel__slide_image img,
.post-rel__slide_image svg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.post-rel__slide_title {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
  margin: 0 0 20px 0;
}

.post-rel__slide_text {
  font-size: 1.125rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.post-rel__slide_text span {
  color: #DD1A1A;
}

.post-rel__button {
  margin: 6.25% auto 0 auto;
}

@media (max-width: 1650px) {
  .suc__human {
    right: -7%;
  }
}

@media (max-width: 1400px) {
  .pay-head__item_object {
    right: -26px;
  }
}

@media (max-width: 1280px) {
  .header__menu li {
    margin: 0 25px 0 0;
  }

  .header__join {
    margin: 0 25px 0 0;
  }

  .footer__menu li {
    margin: 0 25px 0 0;
  }

  .footer__join {
    margin: 0 25px 0 0;
  }

  .review__container {
    padding: 0 26px;
  }

  .review__slider {
    padding: 0 26px;
  }

  .day-head__image_left {
    left: -8%;
  }

  .day-head__image_right {
    right: -8%;
  }

  .day-team__item_content {
    min-height: 115px;
  }

  .day-contact__background {
    bottom: 0;
  }

  .suc__human {
    right: -9%;
  }

  .home-head__human {
    left: -7%;
  }

  .home-head__background {
    right: 0;
  }

  .review-head__background {
    right: 0;
  }

  .blog-content__item_title {
    font-size: 1.25rem;
  }

  .post-rel__nav {
    padding-bottom: 23%;
  }

  .post-rel__slider {
    padding: 0 26px;
  }

  .post-rel__slide_title {
    font-size: 1.25rem;
  }
}

@media (max-width: 1024px) {
  .header__logo {
    max-width: 150px;
  }

  .header__menu li {
    margin: 0 12px 0 0;
  }

  .header__join {
    margin: 0 12px 0 0;
  }

  .footer__logo {
    max-width: 150px;
  }

  .footer__menu li {
    margin: 0 12px 0 0;
  }

  .footer__join {
    margin: 0 12px 0 0;
  }

  .review__head {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .review__nav {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 0 15px 0;
  }

  .review__count_dropdown {
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .review__buttons {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .day-head__text {
    max-width: 350px;
  }

  .day-head__subtext {
    max-width: 350px;
  }

  .day-can__item:nth-of-type(1n+1) {
    width: 47%;
    margin: 0 6% 40px 0;
  }

  .day-can__item:nth-of-type(2n+2) {
    margin: 0 0 40px 0;
  }

  .day-result__item:nth-of-type(1) {
    width: 32%;
    margin: 0 2% 64px 0;
  }

  .day-result__item:nth-of-type(2) {
    width: 32%;
    margin: 0 2% 64px 0;
  }

  .day-result__item:nth-of-type(3) {
    width: 32%;
  }

  .day-result__item:nth-of-type(4) {
    margin: 0 3% 64px 0;
  }

  .day-wait__item:nth-of-type(1n+1) {
    margin: 0 2% 55px 0;
  }

  .day-wait__item:nth-of-type(3n+3) {
    margin: 0 0 55px 0;
  }

  .day-wait__item_content {
    top: auto;
    bottom: 0;
    margin: 0 0 -45px 0;
  }

  .day-team__item {
    width: 33.33%;
  }

  .day-team__item_content {
    min-height: 91px;
  }

  .day-rec__wrapper {
    padding: 0 90px;
  }

  .pay-head__item_wrap {
    padding: 6%;
  }

  .pay-head__item_icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
  }

  .pay-head__item_title {
    font-size: 1.5rem;
  }

  .pay-head__item_price_current {
    font-size: 1.5rem;
  }

  .pay-head__item_price_current {
    font-size: 1.25rem;
  }

  .pay-head__item_price_old {
    font-size: 1.125rem;
  }

  .pay-head__item_row_icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .pay-head__text {
    font-size: 1.25rem;
  }

  .suc__background {
    display: none;
  }

  .suc__human {
    width: 45%;
    padding-bottom: 35%;
    right: 0;
  }

  .suc__container {
    margin: 0 auto 0 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    max-width: none;
    width: 55%;
    padding: 0 0 0 26px;
  }

  .suc__title {
    text-align: left;
  }

  .suc__subtitle {
    text-align: left;
  }

  .suc__text {
    text-align: left;
  }

  .home-head__content {
    max-width: 500px;
  }

  .podcast-head__image {
    right: 0;
    width: 45%;
    padding-bottom: 45%;
  }

  .review-head__content {
    width: 65%;
  }
}

@media (max-width: 800px) {
  .header__logo {
    max-width: 130px;
  }

  .footer__logo {
    max-width: 130px;
  }
}

@media (max-width: 786px) {
  .home-head__button {
    padding: 14px 40px;
  }
}

@media (max-width: 768px) {
  .title {
    font-size: 1.25rem;
  }

  .button_dark {
    font-size: 1rem;
  }

  .button_gray {
    font-size: 1rem;
  }

  .slider__arrow svg {
    max-width: 17px;
  }

  .modal-review__title {
    font-size: 1.25rem;
  }

  .modal-review__stars img,
  .modal-review__stars svg {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .modal-review__subtitle {
    font-size: 1.25rem;
  }

  .paginator ul li a,
  .paginator ul li span {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 1.125rem;
  }

  .header {
    padding: max(25px, 3%) 0;
  }

  .header__logo {
    max-width: 193px;
  }

  .header__burger {
    display: block;
  }

  .header__menu {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    border-bottom: 1px solid #AAA;
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background: #fff;
    z-index: 1;
  }

  .header__menu li.menu-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__menu li {
    margin: 0 0 15px 0;
  }

  .header__menu li ul.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: auto;
  }

  .header__menu li ul.sub-menu li {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 0 0 15px 0;
    padding: 0;
    text-align: center;
  }

  .header__menu li ul.sub-menu li a {
    font-size: 0.75rem;
  }

  .footer {
    padding: 10% 0;
    background: #fff;
  }

  .footer__logo {
    max-width: 94px;
  }

  .footer__burger {
    display: block;
  }

  .footer__menu {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    border-top: 1px solid #AAA;
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    background: #fff;
    z-index: 1;
  }

  .footer__menu li.menu-item-has-children {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__menu li {
    margin: 0 0 15px 0;
  }

  .footer__menu li ul.sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    width: auto;
    padding: 0;
  }

  .footer__menu li ul.sub-menu li {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin: 15px 0 0 0;
    padding: 0;
    text-align: center;
  }

  .footer__menu li ul.sub-menu li:nth-last-of-type(1) {
    margin: 0;
  }

  .footer__menu li ul.sub-menu li:nth-of-type(1) {
    margin: 15px 0;
  }

  .footer__menu li ul.sub-menu li a {
    font-size: 0.75rem;
  }

  .footer__join {
    display: none;
  }

  .partner__day {
    padding: 9% 0;
  }

  .partner__home {
    padding: 8% 0 9% 0;
  }

  .partner__title {
    margin: 0 0 8% 0;
  }

  .partner__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .partner__item {
    max-width: none;
    width: 30%;
    margin: 0 5% 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .partner__item:nth-last-of-type(1) {
    margin: 0 0 20px 0;
  }

  .partner__item:nth-of-type(3n+3) {
    margin: 0 0 20px 0;
  }

  .review {
    padding: 0;
  }

  .review::after {
    padding-bottom: 44%;
  }

  .review__pay::after {
    display: block;
  }

  .review__comment {
    padding: 8% 0 0 0;
  }

  .review__comment::after {
    display: block;
  }

  .review__comment .review__title {
    display: block;
  }

  .review__title {
    margin: 0 0 7% 0;
  }

  .review__head {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    margin: 0 0 7.5% 0;
  }

  .review__nav {
    width: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    margin: 0;
  }

  .review__stars {
    max-height: 20px;
  }

  .review__stars img,
  .review__stars svg {
    max-height: 20px;
  }

  .review__count_head_title {
    font-size: 1.25rem;
  }

  .review__count_head_icon {
    margin: 2px 0 0 0;
  }

  .review__count_dropdown {
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%);
    max-width: 450px;
  }

  .review__count_dropdown_title {
    margin: 0 0 12px 0;
  }

  .review__count_dropdown_title_icon {
    max-width: 40px;
    max-height: 40px;
  }

  .review__count_dropdown_title_icon img,
  .review__count_dropdown_title_icon svg {
    max-width: 40px;
    max-height: 40px;
  }

  .review__count_dropdown_title_text {
    font-size: 1.875rem;
  }

  .review__count_dropdown_row_icon {
    max-height: 20px;
    width: auto;
  }

  .review__count_dropdown_row_icon img,
  .review__count_dropdown_row_icon svg {
    max-height: 20px;
  }

  .review__count_dropdown_row_line {
    height: 12px;
  }

  .review__buttons {
    width: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .review__button {
    display: none;
  }

  .review__arrow {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: -30px 0 0 0;
  }

  .review__arrow_left {
    left: 20px;
  }

  .review__arrow_right {
    right: 20px;
  }

  .review__slide {
    padding: 7% 4%;
  }

  .review__slide_text {
    font-size: 1rem;
  }

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

  .day-head {
    padding: 1.5% 0;
  }

  .day-head::after {
    padding-bottom: 80px;
  }

  .day-head__image_left {
    width: 31%;
    padding-bottom: 31%;
  }

  .day-head__image_right {
    width: 34%;
    padding-bottom: 34%;
  }

  .day-head__container {
    max-width: 557px;
  }

  .day-head__title {
    font-size: 1.875rem;
    margin: 0 0 13px 0;
  }

  .day-head__subtitle {
    font-size: 1.25rem;
    margin: 0 0 5% 0;
  }

  .day-head__items {
    margin: 0 0 5% 0;
    max-width: 459px;
  }

  .day-head__item_count {
    margin: 2px 15px 0 0;
  }

  .day-head__item_text {
    font-size: 1rem;
  }

  .day-head__button {
    margin: 0 0 20px 0;
    padding: 16px;
  }

  .day-head__text {
    margin: 0 0 20px 0;
    font-size: 1.25rem;
  }

  .day-head__subtext {
    font-size: 1.25rem;
  }

  .day-can__title {
    margin: 0 0 5% 0;
  }

  .day-can__item_title {
    font-size: 1.125rem;
    margin: 0 0 23px 0;
  }

  .day-can__item_list li {
    font-size: 1rem;
  }

  .day-result {
    padding: 0 0 8% 0;
  }

  .day-result__item:nth-of-type(1) {
    width: 36%;
    margin: 0 6% 64px 0;
  }

  .day-result__item:nth-of-type(2) {
    width: 24%;
    margin: 0 6% 64px 0;
  }

  .day-result__item:nth-of-type(3) {
    width: 28%;
  }

  .day-result__item:nth-of-type(4) {
    width: 38%;
    margin: 0 6% 64px 0;
  }

  .day-result__item:nth-of-type(5) {
    width: 40%;
  }

  .day-result__item_icon {
    max-width: 40px;
    min-width: 40px;
  }

  .day-result__item_title {
    font-size: 3rem;
  }

  .day-result__item_text {
    font-size: 1rem;
  }

  .day-wait {
    padding: 5% 0 8% 0;
  }

  .day-wait::after {
    padding-bottom: 26%;
  }

  .day-wait__item_content {
    width: 120px;
    height: 120px;
    min-width: 120px;
    font-size: 0.75rem;
  }

  .day-who {
    padding: 0 0 8% 0;
  }

  .day-who__subtitle {
    margin: 0 0 40px 0;
  }

  .day-who__items {
    max-width: 450px;
    margin-inline: auto;
  }

  .day-who__item_center .day-who__item_content .day-who__item_list {
    width: 100%;
  }

  .day-who__item {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .day-who__item:nth-last-of-type(1) {
    margin: 0;
  }

  .day-who__item_icon {
    margin: 0 0 -27px 0;
    position: relative;
    z-index: 2;
  }

  .day-who__item_content {
    min-height: 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 6% 10%;
  }

  .day-who__item_title {
    font-size: 1.25rem;
    margin: 0 0 40px 0;
  }

  .day-who__item_list li span {
    width: 15px;
    min-width: 15px;
    height: 15px;
  }

  .day-who__item_list li p {
    font-size: 1rem;
  }

  .day-team::after {
    padding-bottom: 21%;
  }

  .day-team__item {
    width: 50%;
    margin: 0 0 24px 0;
  }

  .day-team__item_text {
    font-size: 1rem;
  }

  .day-rec {
    padding: 0 0 8% 0;
  }

  .day-rec__container {
    padding: 0;
  }

  .day-rec__title {
    margin: 0 0 3% 0;
    padding: 0 26px;
  }

  .day-rec__subtitle {
    margin: 0 0 5% 0;
    font-size: 1rem;
    padding: 0 26px;
  }

  .day-rec__wrapper {
    padding: 0;
  }

  .day-rec__arrow {
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin: -30px 0 0 0;
  }

  .day-rec__arrow_left {
    left: 20px;
  }

  .day-rec__arrow_right {
    right: 20px;
  }

  .day-rec__slider {
    padding: 0 41px;
  }

  .day-rec__slide_icon {
    width: 42px;
    height: 32px;
    min-width: 42px;
    margin: -16px 0 0 0;
  }

  .day-rec__slide_title {
    font-size: 1rem;
  }

  .day-contact {
    padding: 8% 0 0 0;
  }

  .day-contact__background {
    width: 33%;
    padding-bottom: 33%;
  }

  .day-contact__title {
    margin: 0 0 6% 0;
  }

  .day-contact__subtitle {
    font-size: 1rem;
    margin: 0 0 5% 0;
  }

  .day-contact__text {
    font-size: 1rem;
    margin: 0 0 6% 0;
  }

  .pay-head {
    padding: max(34px, 4%) 0 8% 0;
  }

  .pay-head__title {
    font-size: 1.25rem;
    margin: 0 0 3% 0;
  }

  .pay-head__subtitle {
    font-size: 1.125rem;
    margin: 0 0 11% 0;
    max-width: 468px;
  }

  .pay-head__item_object {
    width: 48%;
    padding-bottom: 48%;
  }

  .pay-head__item_wrap {
    padding: 8%;
  }

  .pay-head__item_icon {
    width: 38px;
    min-width: 38px;
    height: 38px;
  }

  .pay-head__item_title {
    font-size: 1.25rem;
  }

  .pay-head__item_price_old {
    font-size: 0.9375rem;
  }

  .pay-head__item_button {
    font-size: 0.75rem;
    margin: 0 0 16px 0;
    padding: 8px 5px;
  }

  .pay-head__item_row {
    margin: 0 0 7px 0;
  }

  .pay-head__item_row_icon {
    width: 13px;
    min-width: 13px;
    height: 13px;
  }

  .pay-head__item_row_text {
    font-size: 0.875rem;
  }

  .pay-head__text {
    margin: 6% 0 0 0;
    font-size: 1.125rem;
  }

  .pay-patron {
    padding: 8% 0 0 0;
  }

  .pay-patron__title {
    font-size: 1.25rem;
    margin: 0 0 3% 0;
  }

  .pay-patron__subtitle {
    font-size: 1.125rem;
    max-width: 328px;
    margin: 0 auto 6% auto;
  }

  .pay-patron__items {
    max-width: 608px;
    margin-inline: auto;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .pay-patron__item {
    width: 46%;
    margin: 0 8% 40px 0;
  }

  .pay-patron__item:nth-of-type(2n+2) {
    margin: 0 0 40px 0;
  }

  .suc {
    padding: max(40px, 5%) 0 7% 0;
  }

  .suc::after {
    padding-bottom: 13%;
  }

  .suc__human {
    width: 54%;
    padding-bottom: 40%;
    right: -14%;
  }

  .suc__container {
    width: 62%;
  }

  .suc__title {
    font-size: 1.25rem;
    line-height: 2.1;
    margin: 0 0 8% 0;
  }

  .suc__subtitle {
    font-size: 1.875rem;
    margin: 0 0 8% 0;
  }

  .suc__text {
    font-size: 1.25rem;
    margin: 0 0 4% 0;
  }

  .suc__button {
    margin: 0 0 8% 0;
    width: 100%;
    padding: 16px 5px;
    max-width: 363px;
  }

  .suc__row_icon {
    margin: 0 8px 0 0;
  }

  .home-head::after {
    padding-bottom: 10%;
  }

  .home-head__human {
    left: auto;
    right: -8%;
    width: 44%;
    padding-bottom: 35%;
  }

  .home-head__background {
    display: none;
  }

  .home-head__container {
    margin: 0 0 0 10%;
    max-width: 438px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    padding: 0;
  }

  .home-head__title {
    font-size: 1.5rem;
    text-align: left;
    margin: 0 0 4% 0;
  }

  .home-head__content {
    max-width: none;
    width: 100%;
    padding: 10px;
    margin: 0 0 9% 0;
  }

  .home-head__content p {
    font-size: 0.875rem;
    line-height: 1.785;
  }

  .home-offer {
    padding: 5% 0;
  }

  .home-offer::after {
    padding-bottom: 29%;
  }

  .home-offer__container {
    padding: 0 14px;
  }

  .home-offer__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -ms-flex-line-pack: center;
    align-content: center;
  }

  .home-offer__item {
    width: 49%;
    margin: 0 2% 20px 0;
  }

  .home-offer__item_content {
    padding: 11% 1%;
    min-height: 252px;
    margin: 0 11% 40px 11%;
    width: 78%;
  }

  .home-offer__item_icon img,
  .home-offer__item_icon svg {
    max-width: 52px;
  }

  .home-offer__item_icon_count {
    width: 36px;
    height: 36px;
    min-width: 36px;
    top: -8px;
    right: -25px;
    font-size: 1rem;
    margin: 0 0 20px 0;
  }

  .home-offer__item_title {
    font-size: 1.25rem;
  }

  .home-offer__item_subtitle {
    font-size: 1.25rem;
  }

  .home-story {
    padding: 0 0 5% 0;
  }

  .home-story__container {
    padding: 0 40px;
  }

  .home-story__wrapper {
    padding: 0 109px;
  }

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

  .home-story__slide_title {
    font-size: 1.25rem;
  }

  .home-story__button {
    margin: 8% 0 0 0;
  }

  .podcast-head {
    padding: 6.5% 0 5.5% 0;
  }

  .podcast-head::after {
    z-index: 2;
    padding-bottom: 10.4%;
  }

  .podcast-head__container {
    z-index: 3;
  }

  .podcast-head__content {
    width: 80%;
  }

  .podcast-head__title {
    font-size: 1.875rem;
    margin: 0 0 5% 0;
  }

  .podcast-head__text {
    font-size: 1.25rem;
    margin: 0 0 35% 0;
  }

  .podcast-head__logos {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    width: 65%;
  }

  .podcast-head__logos img,
  .podcast-head__logos svg {
    width: 30%;
    margin: 0 5% 20px 0;
    max-width: none;
  }

  .podcast-head__image {
    z-index: 1;
    width: 47%;
    padding-bottom: 47%;
  }

  .podcast-rel {
    padding: 8% 0 0 0;
  }

  .podcast-rel__container {
    padding: 0 52px;
  }

  .podcast-rel__title {
    margin: 0 0 8.7% 0;
    font-size: 1.25rem;
  }

  .podcast-rel__item_title {
    font-size: 1rem;
  }

  .review-head {
    padding: 5% 0 4% 0;
  }

  .review-head__background {
    width: 43%;
    padding-bottom: 53%;
  }

  .review-head__content {
    width: 67%;
  }

  .review-head__title {
    font-size: 1.875rem;
    margin: 0 0 40px 0;
    text-align: left;
  }

  .review-head__text {
    margin: 0 0 35px 0;
    text-align: left;
  }

  .review-head__text p {
    font-size: 1.125rem;
    text-align: left;
  }

  .review-head__block {
    padding: 3%;
    max-width: 368px;
  }

  .review-head__block_title {
    font-size: 1rem;
  }

  .review-head__block_title:nth-of-type(2) {
    margin: 0 0 17px 0;
  }

  .review-head__block_button {
    font-size: 1rem;
    margin: 0 0 12px 0;
  }

  .review-head__block_date {
    font-size: 1rem;
  }

  .review-com {
    padding: 8% 0 0 0;
  }

  .review-com__item {
    margin: 0 0 29px 0;
  }

  .review-com__button {
    margin: 60px auto 0 auto;
  }

  .den-content {
    padding: 5% 0 0 0;
  }

  .den-content::after {
    padding-bottom: 13%;
  }

  .den-content__container {
    max-width: 448px;
  }

  .den-content__title {
    margin: 0 0 5% 0;
  }

  .den-content__subtitle {
    font-size: 1.875rem;
  }

  .den-content__text p {
    margin: 0 0 12px 0;
  }

  .den-content__image {
    width: 81%;
    padding-bottom: 73%;
    margin: -25px 0 0 0;
  }

  .blog-head {
    padding: 5% 0 8% 0;
  }

  .blog-head__title {
    font-size: 1.875rem;
  }

  .blog-head__nav_item_wrap {
    font-size: 0.875rem;
  }

  .blog-content__container {
    max-width: 638px;
  }

  .blog-content__item:nth-of-type(1n+1) {
    width: 47%;
    margin: 0 6% 40px 0;
  }

  .blog-content__item:nth-of-type(2n+2) {
    margin: 0 0 40px 0;
  }

  .blog-content__item_image {
    margin: 0 0 17px 0;
  }

  .blog-content__item_title {
    font-size: 1.125rem;
    margin: 0 0 10px 0;
  }

  .blog-content__item_subtitle {
    font-size: 1rem;
  }

  .blog-content__item_name,
  .blog-content__item_date {
    font-size: 0.625rem;
  }

  .blog-content__item_name {
    margin: 0 7% 0 0;
  }

  .blog-content__button {
    margin: 10% 0 0 0;
  }

  .post {
    padding: 5% 0 8% 0;
  }

  .post__image {
    padding-bottom: 40%;
    margin: 0 0 9% 0;
  }

  .post__title {
    font-size: 1.25rem;
    margin: 0 0 6% 0;
  }

  .post__content {
    margin: 0 0 9% 0;
  }

  .post-rel__title {
    font-size: 1.125rem;
    margin: 0 0 20px 0;
  }

  .post-rel__nav {
    padding-bottom: 28%;
  }

  .post-rel__arrow {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: -30px 0 0 0;
  }

  .post-rel__arrow svg {
    max-width: 17px;
  }

  .post-rel__slider {
    padding: 0 26px;
  }

  .post-rel__slide_title {
    font-size: 1.125rem;
    margin: 0 0 12px 0;
  }

  .post-rel__slide_text {
    font-size: 1rem;
  }

  .post-rel__button {
    margin: 15% auto 0 auto;
  }
}

@media (max-width: 700px) {
  .day-result__item:nth-of-type(1n+1) {
    width: 39%;
    margin: 0 4% 40px 0;
  }

  .day-result__item:nth-of-type(2n+2) {
    margin: 0 0 40px 0;
  }

  .day-result__item:nth-last-of-type(1) {
    margin: 0 0 40px 0;
  }
}

@media (max-width: 670px) {
  .home-head__container {
    margin: 0 0 0 26px;
    max-width: 350px;
  }
}

@media (max-width: 650px) {
  .podcast-rel__item:nth-of-type(1n+1) {
    width: 48%;
    margin: 0 4% 42px 0;
  }

  .podcast-rel__item:nth-of-type(2n+2) {
    margin: 0 0 42px 0;
  }

  .review-head__background {
    right: -7%;
  }
}

@media (max-width: 625px) {
  .pay-head__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .pay-head__item {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 40px auto;
  }

  .pay-head__item:nth-last-of-type(1) {
    margin: 0;
  }

  .pay-head__item_object {
    top: -23px;
    right: -27px;
    width: 27%;
    padding-bottom: 27%;
  }
}

@media (max-width: 600px) {
  .day-wait__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .day-wait__item:nth-of-type(1n+1) {
    width: 70%;
    padding-bottom: 85%;
    margin: 0 0 55px 0;
  }

  .home-story__arrow {
    width: 60px;
    height: 60px;
    min-width: 60px;
    margin: -30px 0 0 0;
  }
}

@media (max-width: 500px) {
  .title {
    font-size: 1.125rem;
  }

  .button {
    width: 100%;
    padding: 11px 0;
    font-size: 0.875rem;
  }

  .slider__arrow svg {
    max-width: 13px;
  }

  input[type=text] {
    padding: 12px 15px;
    font-size: 1rem;
  }

  input[type=text]::-webkit-input-placeholder {
    font-size: 1rem;
  }

  input[type=text]::-moz-placeholder {
    font-size: 1rem;
  }

  input[type=text]:-ms-input-placeholder {
    font-size: 1rem;
  }

  input[type=text]::-ms-input-placeholder {
    font-size: 1rem;
  }

  input[type=text]::placeholder {
    font-size: 1rem;
  }

  .modal__wrap {
    padding: 52px 20px 20px 20px;
  }

  .modal__close {
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
  }

  .modal-review__content {
    padding: 7% 0;
  }

  .modal-review__title {
    font-size: 0.875rem;
  }

  .modal-review__stars img,
  .modal-review__stars svg {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .modal-review__subtitle {
    font-size: 0.875rem;
  }

  .modal-review__form input[type=text] {
    padding: 14px;
  }

  .paginator ul li {
    margin: 0 7px 0 0;
  }

  .header__open .header__burger span:nth-of-type(1) {
    top: 6px;
  }

  .header__open .header__burger span:nth-of-type(3) {
    top: 6px;
  }

  .header__logo {
    max-width: 94px;
  }

  .header__burger {
    width: 20px;
    height: 12px;
  }

  .header__burger span:nth-of-type(1) {
    top: 0;
  }

  .header__burger span:nth-of-type(2) {
    top: 5.5px;
  }

  .header__burger span:nth-of-type(3) {
    top: 11px;
  }

  .header__join {
    display: none;
  }

  .footer {
    padding: 12.5% 0 8% 0;
  }

  .footer__open .footer__burger span:nth-of-type(1) {
    top: 6px;
  }

  .footer__open .footer__burger span:nth-of-type(3) {
    top: 6px;
  }

  .footer__burger {
    width: 20px;
    height: 12px;
  }

  .footer__burger span:nth-of-type(1) {
    top: 0;
  }

  .footer__burger span:nth-of-type(2) {
    top: 5.5px;
  }

  .footer__burger span:nth-of-type(3) {
    top: 11px;
  }

  .partner__day {
    padding: 12.5% 0;
  }

  .partner__home {
    padding: 11% 0;
  }

  .partner__title {
    margin: 0 0 10px 0;
  }

  .partner__items {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .review::after {
    padding-bottom: 105%;
  }

  .review__comment {
    padding: 12.5% 0 0 0;
  }

  .review__title {
    margin: 0 0 12.5% 0;
  }

  .review__head {
    margin: 0 0 5% 0;
  }

  .review__stars {
    max-height: 10px;
    margin: 0 10px 0 0;
  }

  .review__stars img,
  .review__stars svg {
    max-height: 10px;
  }

  .review__count_head_title {
    font-size: 0.75rem;
    margin: 0 10px 0 0;
  }

  .review__count_head_icon {
    max-width: 10px;
    min-width: 10px;
    margin: 0;
  }

  .review__count_dropdown {
    max-width: 300px;
    padding: 8px 12px;
  }

  .review__count_dropdown_title_icon {
    max-width: 20px;
    max-height: 20px;
  }

  .review__count_dropdown_title_icon img,
  .review__count_dropdown_title_icon svg {
    max-width: 20px;
    max-height: 20px;
  }

  .review__count_dropdown_title_text {
    font-size: 1rem;
  }

  .review__filter_head {
    padding: 5px 10px;
  }

  .review__filter_head img,
  .review__filter_head svg {
    max-width: 30px;
  }

  .review__wrapper {
    padding: 0 26px;
  }

  .review__arrow {
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin: -23px 0 0 0;
  }

  .review__arrow_left {
    left: 31px;
  }

  .review__arrow_right {
    right: 31px;
  }

  .review__slider {
    padding: 0;
  }

  .review__slide {
    padding: 6% 4%;
  }

  .review__slide_head {
    margin: 0 0 10px 0;
  }

  .review__slide_title {
    font-size: 0.75rem;
    margin: 0 0 5px 0;
  }

  .review__slide_stars {
    max-height: 10px;
  }

  .review__slide_stars img,
  .review__slide_stars svg {
    max-height: 10px;
  }

  .review__slide_accept_icon {
    width: 14px;
    height: 14px;
    min-width: 14px;
    margin: 0 4px 0 0;
  }

  .review__slide_accept_text {
    font-size: 0.625rem;
  }

  .review__slide_text {
    font-size: 0.625rem;
  }

  .review__footer {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 12.5% 0 7% 0;
  }

  .day-head {
    padding: 1.5% 0 53% 0;
  }

  .day-head__image_left {
    width: 54%;
    padding-bottom: 54%;
  }

  .day-head__image_right {
    width: 57%;
    padding-bottom: 57%;
  }

  .day-head__title {
    font-size: 1.25rem;
    margin: 0 0 20px 0;
  }

  .day-head__subtitle {
    font-size: 1.125rem;
    margin: 0 0 20px 0;
  }

  .day-head__items {
    margin: 0 0 20px 0;
    padding: 22px;
  }

  .day-head__item_count {
    font-size: 0.625rem;
    min-width: 18px;
    height: 18px;
    margin: 0 10px 0 0;
  }

  .day-head__item_text {
    font-size: 0.875rem;
  }

  .day-head__button {
    width: 100% !important;
  }

  .day-head__text {
    font-size: 0.875rem;
    margin: 0 0 10px 0;
  }

  .day-head__subtext {
    font-size: 0.875rem;
    max-width: none;
  }

  .day-can {
    padding: 5% 0 12.5% 0;
  }

  .day-can::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-bottom: 69%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(239, 239, 239, 0.35)), to(rgba(239, 239, 239, 0)));
    background: -o-linear-gradient(top, rgba(239, 239, 239, 0.35) 0%, rgba(239, 239, 239, 0) 100%);
    background: linear-gradient(180deg, rgba(239, 239, 239, 0.35) 0%, rgba(239, 239, 239, 0) 100%);
    display: block;
    content: "";
    z-index: 1;
  }

  .day-can__title {
    margin: 0 0 12.5% 0;
  }

  .day-can__item:nth-of-type(1n+1) {
    width: 100%;
    margin: 0 0 22px 0;
  }

  .day-can__item:nth-last-of-type(1) {
    margin: 0;
  }

  .day-can__item_list li::before {
    margin: 10px 10px 0 0;
  }

  .day-result {
    padding: 0 0 12.5% 0;
  }

  .day-result__items {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .day-result__item:nth-of-type(1n+1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    width: 50%;
    margin: 0 0 20px 0;
  }

  .day-wait {
    padding: 5% 0 12.5% 0;
  }

  .day-wait::after {
    display: none;
  }

  .day-wait__title {
    margin: 0 0 12.5% 0;
  }

  .day-who {
    padding: 0 0 12.5% 0;
  }

  .day-who__subtitle {
    margin: 0 0 20px 0;
  }

  .day-who__item_icon {
    width: 66px;
    min-width: 66px;
    height: 66px;
    margin: 0 0 -19px 0;
  }

  .day-who__item_icon img,
  .day-who__item_icon svg {
    max-width: 66px;
    width: 66px;
    max-height: 66px;
  }

  .day-who__item_content {
    min-height: 224px;
    padding: 12%;
  }

  .day-who__item_title {
    font-size: 0.75rem;
    margin: 0 0 20px 0;
  }

  .day-who__item_list li {
    margin: 0 0 10px 0;
  }

  .day-who__item_list li span {
    width: 10px;
    height: 10px;
    min-width: 10px;
    margin: 1px 6px 0 0;
  }

  .day-who__item_list li p {
    font-size: 0.875rem;
  }

  .day-team {
    padding: 5% 0 12.5% 0;
  }

  .day-team::after {
    padding-bottom: 52%;
  }

  .day-team__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }

  .day-team__item {
    width: 76%;
    margin: 0 auto 24px auto;
  }

  .day-team__item:nth-last-of-type(1) {
    margin: 0 auto;
  }

  .day-team__item_content {
    min-height: 0;
  }

  .day-team__item_title {
    font-size: 0.75rem;
    margin: 0 0 10px 0;
  }

  .day-team__item_text {
    font-size: 0.625rem;
  }

  .day-rec {
    padding: 0 0 12.5% 0;
  }

  .day-rec__title {
    margin: 0 0 6% 0;
  }

  .day-rec__subtitle {
    margin: 0 0 12.5% 0;
  }

  .day-rec__wrapper {
    padding: 0 61px;
  }

  .day-rec__arrow {
    width: 46px;
    min-width: 46px;
    height: 46px;
    margin: -23px 0 0 0;
  }

  .day-rec__arrow_left {
    left: 0;
  }

  .day-rec__arrow_right {
    right: 0;
  }

  .day-rec__slider {
    padding: 0;
  }

  .day-rec__slide_title {
    display: none;
  }

  .day-contact {
    padding: 6% 0 0 0;
  }

  .day-contact__background {
    display: none;
  }

  .day-contact__title {
    margin: 0 0 8% 0;
  }

  .day-contact__subtitle {
    font-size: 0.875rem;
    margin: 0 0 8% 0;
  }

  .day-contact__text {
    font-size: 0.875rem;
    margin: 0 0 2% 0;
  }

  .day-contact__image {
    margin: 0 0 0 -26px;
    width: auto;
    display: block;
  }

  .day-contact__form,
  .day-contact form {
    margin: 2% auto 0 auto;
  }

  .day-contact__form label,
  .day-contact form label {
    margin: 0 0 16px 0;
  }

  .day-contact__form label span,
  .day-contact form label span {
    font-size: 1rem;
    margin: 0 0 16px 0;
  }

  .day-contact__form button,
  .day-contact form button {
    width: 100%;
    padding: 11px 0;
    font-size: 0.875rem;
  }

  .day-contact__form button,
  .day-contact form button {
    margin: 24px 0 0 0;
  }

  .pay-head {
    padding: max(20px, 7%) 0 12.5% 0;
  }

  .pay-head__title {
    margin: 0 0 14.5% 0;
  }

  .pay-head__subtitle {
    margin: 0 0 14.5% 0;
  }

  .pay-head__item {
    max-width: none;
  }

  .pay-head__item_object {
    width: 44%;
    padding-bottom: 44%;
  }

  .pay-head__text {
    margin: 14.5% 0 0 0;
  }

  .pay-patron {
    padding: 12.5% 0 0 0;
  }

  .pay-patron__title {
    margin: 0 0 7% 0;
  }

  .pay-patron__subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0 auto 15% auto;
  }

  .pay-patron__item:nth-of-type(1n+1) {
    width: 100%;
    max-width: 204px;
    margin: 0 auto 20px auto;
  }

  .pay-patron__item:nth-last-of-type(1) {
    margin: 0 auto;
  }

  .pay-patron__item_image {
    margin: 0 0 18px 0;
  }

  .pay-patron__item_title {
    font-size: 0.875rem;
  }

  .pay-patron__item_subtitle {
    font-size: 0.75rem;
  }

  .suc {
    padding: max(20px, 6%) 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .suc::after {
    padding-bottom: 26%;
  }

  .suc__human {
    width: 80%;
    position: relative;
    padding-bottom: 59%;
    right: 0;
    margin: 6% auto 0 auto;
  }

  .suc__container {
    width: 100%;
    padding: 0;
    margin-inline: auto;
  }

  .suc__title {
    font-size: 1rem;
    margin: 0 0 6% 0;
    padding: 0 5px;
    text-align: center;
    width: 100%;
  }

  .suc__subtitle {
    padding: 0 10px;
    font-size: 1.25rem;
    margin: 0 0 6% 0;
    text-align: center;
    width: 100%;
  }

  .suc__text {
    padding: 0 16px;
    font-size: 1rem;
    margin: 0 0 12.5% 0;
    width: 100%;
    text-align: center;
  }

  .suc__button {
    max-width: 224px;
    margin: 0 auto 12.5% auto;
  }

  .suc__list {
    padding: 0 16px;
  }

  .suc__row_icon {
    width: 16px;
    min-width: 16px;
    height: 16px;
    font-size: 0.625rem;
    margin: 2px 6px 0 0;
  }

  .suc__row_text {
    font-size: 0.75rem;
  }

  .suc__row_text a {
    font-size: 0.75rem;
  }

  .home-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: max(20px, 1%) 0 0 0;
  }

  .home-head::after {
    padding-bottom: 26%;
  }

  .home-head__human {
    width: calc(100% - 52px);
    padding-bottom: 70%;
    right: auto;
    left: auto;
    position: relative;
    margin: 9.375% 26px 0 26px;
  }

  .home-head__container {
    padding: 0 16px;
    margin: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: none;
  }

  .home-head__title {
    font-size: 1.125rem;
    margin: 0 0 6.25% 0;
    text-align: center;
  }

  .home-head__content {
    padding: 10px 5px;
    margin: 0 0 6.25% 0;
    max-width: none;
    width: 100%;
  }

  .home-head__content p {
    font-size: 0.875rem;
    line-height: 2.5;
    letter-spacing: -0.4px;
    margin: 0 0 30px 0;
  }

  .home-head__button {
    width: auto;
    padding: 14px 40px;
  }

  .home-offer {
    padding: 6.25% 0 12.5% 0;
  }

  .home-offer::after {
    padding-bottom: 69%;
  }

  .home-offer__container {
    padding: 0 20px;
  }

  .home-offer__title {
    margin: 0 0 6.25% 0;
  }

  .home-offer__item:nth-of-type(1n+1) {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .home-offer__item:nth-last-of-type(1) {
    margin: 0;
  }

  .home-offer__item_content {
    margin: 0 6.25% 20px 6.25%;
    padding: 11%;
    width: 87%;
    min-height: 190px;
  }

  .home-offer__item_icon {
    margin: 0 0 15px 0;
  }

  .home-offer__item_icon img,
  .home-offer__item_icon svg {
    max-width: 40px;
  }

  .home-offer__item_icon_count {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 0.75rem;
    top: -6px;
    right: -19px;
  }

  .home-offer__item_title {
    font-size: 1rem;
  }

  .home-offer__item_subtitle {
    font-size: 1rem;
  }

  .home-story {
    padding: 0;
  }

  .home-story__container {
    padding: 0 14px;
  }

  .home-story__title {
    margin: 0 0 6.25% 0;
  }

  .home-story__wrapper {
    padding: 0 48px;
  }

  .home-story__arrow {
    width: 34px;
    min-width: 34px;
    height: 34px;
    margin: -17px 0 0 0;
  }

  .home-story__slide_image {
    margin: 0 0 8px 0;
  }

  .home-story__slide_title {
    font-size: 0.625rem;
  }

  .home-story__button {
    display: none;
  }

  .podcast-head {
    padding: 6.25% 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .podcast-head::after {
    padding-bottom: 25.625%;
  }

  .podcast-head__container {
    padding: 0 14px;
  }

  .podcast-head__content {
    width: 100%;
  }

  .podcast-head__title {
    font-size: 1.25rem;
    text-align: center;
    margin: 0 0 7% 0;
  }

  .podcast-head__text {
    font-size: 1.125rem;
    margin: 0 0 14% 0;
  }

  .podcast-head__logos {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .podcast-head__logos img,
  .podcast-head__logos svg {
    width: auto;
    max-width: 85px;
    margin: 0 5px 20px 0;
  }

  .podcast-head__image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
  }

  .podcast-rel {
    padding: 12.5% 0 0 0;
  }

  .podcast-rel__container {
    padding: 0 14px;
  }

  .podcast-rel__item:nth-of-type(1n+1) {
    width: 100%;
    margin: 0 0 10px 0;
  }

  .podcast-rel__item_image {
    margin: 0 0 13px 0;
  }

  .review-head {
    padding: 6.25% 0 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .review-head::after {
    padding-bottom: 21%;
  }

  .review-head__background {
    position: relative;
    right: auto;
    width: 60%;
    padding-bottom: 70%;
    margin: 20px auto 0 auto;
  }

  .review-head__container {
    padding: 0 7px;
  }

  .review-head__content {
    width: 100%;
  }

  .review-head__title {
    max-width: 222px;
    margin-inline: auto;
    font-size: 1.25rem;
    margin: 0 auto 20px auto;
    text-align: center;
  }

  .review-head__text {
    padding: 0 10px;
    margin: 0 0 20px 0;
  }

  .review-head__text p {
    font-size: 0.75rem;
  }

  .review-head__block {
    width: 100%;
    max-width: none;
    padding: 4% 15%;
  }

  .review-head__block_title {
    font-size: 0.875rem;
    margin: 0 0 6px 0;
  }

  .review-head__block_title:nth-of-type(2) {
    margin: 0 0 9px 0;
  }

  .review-head__block_button {
    font-size: 0.625rem;
    padding: 8px 5px;
  }

  .review-head__block_date {
    font-size: 0.625rem;
  }

  .review-com {
    padding: 11% 0;
  }

  .review-com::after {
    display: block;
  }

  .review-com__container {
    padding: 0 26px;
  }

  .review-com__columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    padding: 0 16px;
  }

  .review-com__column {
    width: 100%;
    margin: 0 0 35px 0;
  }

  .review-com__item {
    margin: 0 0 35px 0;
  }

  .review-com__button {
    display: none;
  }

  .den-content {
    padding: 6.25% 0 0 0;
  }

  .den-content::after {
    padding-bottom: 25.625%;
  }

  .den-content__container {
    padding: 0 11px;
  }

  .den-content__title {
    margin: 0 0 6.7% 0;
  }

  .den-content__subtitle {
    font-size: 1.25rem;
    margin: 0 0 13.3% 0;
  }

  .den-content__text p {
    margin: 0 0 18px 0;
  }

  .den-content__image {
    width: 100%;
    padding-bottom: 91%;
    margin: 0;
  }

  .blog-head {
    padding: 6.25% 0 12.5% 0;
  }

  .blog-head__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .blog-head__title {
    font-size: 1.125rem;
    margin: 0 0 9% 0;
  }

  .blog-content__item:nth-of-type(1n+1) {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .blog-content__button {
    display: none;
  }

  .post {
    padding: 6.25% 0 7% 0;
  }

  .post__container {
    padding: 0 15px;
  }

  .post__image {
    padding-bottom: 98%;
    margin: 0 0 14% 0;
  }

  .post__title {
    font-size: 1.125rem;
    margin: 0 0 8% 0;
  }

  .post__content {
    margin: 0 0 7% 0;
  }

  .post__content p {
    font-size: 0.875rem;
    margin: 0 0 15px 0;
  }

  .post__content h2,
  .post__content h3,
  .post__content h4,
  .post__content h5,
  .post__content h6 {
    margin: 0 0 15px 0;
  }

  .post__content h2 {
    font-size: 1.6rem;
  }

  .post__content h3 {
    font-size: 1.4rem;
  }

  .post__content h4 {
    font-size: 1.2rem;
  }

  .post__content h5 {
    font-size: 1rem;
  }

  .post__content h6 {
    font-size: 0.875rem;
  }

  .post__content ul,
  .post__content ol {
    font-size: 0.875rem;
    margin: 0 0 15px 0;
  }

  .post-rel__title {
    padding: 0 11px;
  }

  .post-rel__wrapper {
    padding: 0 11px;
  }

  .post-rel__nav {
    padding-bottom: 68%;
  }

  .post-rel__arrow {
    width: 46px;
    height: 46px;
    min-width: 46px;
    margin: -23px 0 0 0;
  }

  .post-rel__arrow svg {
    max-width: 13px;
  }

  .post-rel__arrow_left {
    left: 11px;
  }

  .post-rel__arrow_right {
    right: 11px;
  }

  .post-rel__slider {
    padding: 0;
  }

  .post-rel__slide_image {
    margin: 0 0 20px 0;
  }

  .post-rel__button {
    margin: 12.5% 26px 0 26px;
    padding: 14px 5px;
    width: calc(100% - 52px);
    font-size: 0.875rem;
  }
}

@media (max-width: 400px) {
  .day-wait__item:nth-of-type(1n+1) {
    width: 85%;
    padding-bottom: 100%;
  }

  .review-head__background {
    width: 80%;
    padding-bottom: 90%;
  }
}

@media (max-width: 350px) {
  .day-head {
    padding: 1.5% 0 49% 0;
  }
}