@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/open-sans-v40-latin-ext-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/open-sans-v40-latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/open-sans-v40-latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/open-sans-v40-latin-ext-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/open-sans-v40-latin-ext-800.woff2') format('woff2');
}

.preload {
  display: none;
}

@media screen and (min-width: 361px) {
  .preload {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    background: linear-gradient(to right, #ebeee3 0%, #cacec5 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
}

.fixed-head__logo_margin {
  margin-right: 0 !important;
  margin-top: 10px;
}

.fixed-head__logo-name_color,
.fixed-head__logo-cream_color {
  color: #b9c7c8 !important;
}

.stairway {
  width: 70px;
  height: 70px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}

.stairway__column {
  width: 10px;
  height: 50px;
  background-color: #b9c7c8;
}

.stairway__column:nth-child(2) {
  animation: 3.8s columnOne ease-in-out infinite;
}

.stairway__column:nth-child(3) {
  transform: translate(0, 10px);
  animation: 3.8s columnTwo ease-in-out infinite;
}

.stairway__column:nth-child(4) {
  transform: translate(0, 20px);
}

.stairway__column:nth-child(5) {
  transform: translate(0, 30px);
  animation: 3.8s columnFour ease-in-out infinite;
}

.stairway__column:nth-child(6) {
  transform: translate(0, 40px);
  animation: 3.8s columnFife ease-in-out infinite;
}

@keyframes columnOne {

  0%,
  40% {
    transform: translate(0, 40px);
  }

  50%,
  90% {
    transform: translate(0, 0px);
  }

  100% {
    transform: translate(0, 40px);
  }
}

@keyframes columnTwo {

  0%,
  40% {
    transform: translate(0, 30px);
  }

  50%,
  90% {
    transform: translate(0, 10px);
  }

  100% {
    transform: translate(0, 30px);
  }
}

@keyframes columnFour {

  0%,
  40% {
    transform: translate(0, 10px);
  }

  50%,
  90% {
    transform: translate(0, 30px);
  }

  100% {
    transform: translate(0, 10px);
  }
}

@keyframes columnFife {

  0%,
  40% {
    transform: translate(0, 0px);
  }

  50%,
  90% {
    transform: translate(0, 40px);
  }

  100% {
    transform: translate(0, 0px);
  }
}

.stairway__circle {
  width: 10px;
  height: 10px;
  background-color: #b9c7c8;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  bottom: 10px;
  animation: 3.8s circle ease-in-out infinite;
}

@keyframes circle {
  0% {
    transform: translate(0, 1px);
  }

  4% {
    transform: translate(8px, -13px);
  }

  11% {
    transform: translate(15px, -9px);
  }

  16% {
    transform: translate(23px, -25px);
  }

  21% {
    transform: translate(30px, -20px);
  }

  26% {
    transform: translate(38px, -31px);
  }

  31% {
    transform: translate(45px, -30px);
  }

  38% {
    transform: translate(53px, -44px);
  }

  41% {
    transform: translate(60px, -40px);
  }

  50% {
    transform: translate(60px, 1px);
  }

  58% {
    transform: translate(53px, -14px);
  }

  61% {
    transform: translate(45px, -10px);
  }

  68% {
    transform: translate(37px, -24px);
  }

  71% {
    transform: translate(30px, -20px);
  }

  78% {
    transform: translate(22px, -34px);
  }

  81% {
    transform: translate(15px, -30px);
  }

  88% {
    transform: translate(7px, -44px);
  }

  91% {
    transform: translate(0, -40px);
  }

  100% {
    transform: translate(0, 0);
  }
}

@-webkit-keyframes show-hide {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes show-hide {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes improve {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes improve {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }

  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes improveWidth {
  0% {
    width: 0;
  }
}

@keyframes improveWidth {
  0% {
    width: 0;
  }
}

@-webkit-keyframes rotateElem {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.8;
  }

  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@keyframes rotateElem {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 0.8;
  }

  to {
    -webkit-transform: rotate(720deg);
    transform: rotate(720deg);
  }
}

@-webkit-keyframes improveHeight {
  0% {
    height: 0;
  }
}

@keyframes improveHeight {
  0% {
    height: 0;
  }
}

@-webkit-keyframes fullImprove {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes fullImprove {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }

  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@-webkit-keyframes moveBottom {
  0% {
    bottom: 35px;
  }
}

@keyframes moveBottom {
  0% {
    bottom: 35px;
  }
}

@-webkit-keyframes moveTop {
  to {
    top: 35px;
  }
}

@keyframes moveTop {
  to {
    top: 35px;
  }
}

@-webkit-keyframes mouse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50%,
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes mouse {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  50%,
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

.slick-slide img,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-x: hidden;
}

body {
  line-height: 1.2;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  overflow-x: hidden;
  background: #fff;
  color: #333;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

br {
  font-size: 0;
  line-height: 0;
  opacity: 0;
}

*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.slick-dots li button:focus,
.slick-dots li button:hover,
.slick-list:focus,
button,
button:focus,
input,
input:focus {
  outline: 0;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

::-moz-focus-inner,
::-moz-focus-outer {
  border: 0;
  padding: 0;
}

a:-moz-focusring,
select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

:active,
:focus,
:hover,
:visited,
a,
a:active,
a:focus,
a:hover,
a:visited {
  outline: 0 !important;
}

::-moz-focus-inner {
  border: 0;
  outline: 0;
}

.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list,
.slick-slider,
.slick-track {
  position: relative;
  display: block;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  top: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after,
.slick-track:before {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide,
.twentytwenty-handle:hover .twentytwenty-left-arrow::after,
.twentytwenty-handle:hover .twentytwenty-left-arrow::before {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.fixed-head__link:hover a span::after,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff;
}

.slick-next,
.slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  color: transparent;
  outline: 0;
  background: 0 0;
}

.slick-dots li button:focus:before,
.slick-dots li button:hover:before,
.slick-next:focus:before,
.slick-next:hover:before,
.slick-prev:focus:before,
.slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before,
.slick-prev.slick-disabled:before {
  opacity: 0.25;
}

.slick-next:before,
.slick-prev:before {
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

.slick-next:before,
[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

.slick-dots,
.slick-dots li button:before {
  position: absolute;
  left: 0;
  text-align: center;
}

.slick-dots {
  bottom: -25px;
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: 0;
  background: 0 0;
}

.slick-dots li button:before {
  font-size: 6px;
  line-height: 20px;
  top: 0;
  width: 20px;
  height: 20px;
  content: '';
  opacity: 0.25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #000;
}

.slick-slide {
  outline: 0;
}

.color_kera {
  color: #436a33;
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  overflow: hidden;
}

.wrapper {
  width: 1220px;
  margin: 0 auto;
  padding: 0 25px;
}

@media screen and (max-width: 1219px) {
  .wrapper {
    width: 1024px;
  }
}

@media screen and (max-width: 1023px) {
  .wrapper {
    width: 768px;
    padding: 0 15px;
  }
}

@media screen and (max-width: 767px) {
  .wrapper {
    width: 640px;
  }
}

@media screen and (max-width: 639px) {
  .wrapper {
    width: 480px;
  }
}

@media screen and (max-width: 479px) {
  .wrapper {
    width: 320px;
  }
}

.title {
  font-size: 48px;
  text-align: center;
  font-weight: 800;
  color: #000;
}

@media screen and (max-width: 1219px) {
  .title {
    font-size: 42px;
    line-height: 1.2;
  }
}

@media screen and (max-width: 1023px) {
  .title {
    font-size: 36px;
  }
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 32px;
  }
}

@media screen and (max-width: 639px) {
  .title {
    font-size: 29px;
  }
}

@media screen and (max-width: 479px) {
  .title {
    font-size: 26px;
  }
}

.fw300 {
  font-weight: 300;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.text-nowrap {
  white-space: nowrap;
}

.flex-ccc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.row {
  width: 100%;
}

.dib {
  display: inline-block;
}

.tac {
  text-align: center;
}

.fsi {
  font-style: italic;
}

.fsn {
  font-style: normal;
}

.btn {
  width: 210px;
  height: 48px;
  font-family: 'Open Sans', sans-serif;
  -webkit-box-shadow: 0 4px 1px #d47422, inset 0 0 4px rgba(251, 109, 22, 0.48);
  box-shadow: 0 4px 1px #d47422, inset 0 0 4px rgba(251, 109, 22, 0.48);
  border-radius: 23px;
  background-color: #fd7532;
  background-image: linear-gradient(to right, #fb791f 0%, #f68a49 51%, #fb791f 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: #ff6519;

}

.fixed-head {
  width: 100%;
  padding: 15px 0;
  background: #35582e;
  position: relative;
  z-index: 20;
  top: 0;
}

.fixed-head .wrapper {
  justify-content: space-between;
}

.fixed-head__logo {
  display: flex;
  flex-direction: column;
  /* margin-right: 47px; */
  text-align: center;
}

.fixed-head__logo-name {
  color: #fff;
  font-size: 30px;
  line-height: 32px;
  margin-bottom: 2px;
  border-bottom: 2px solid #b63045;
}

.preload .fixed-head__logo-cream {
  text-align: center;
}

.fixed-head__logo-cream {
  opacity: 0.8;
  color: #fff;
  font-size: 11px;
  letter-spacing: 2px;
}

.fixed-head__links {
  margin-right: auto;
  margin-left: auto;
}

.fixed-head__link,
.fixed-head__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fixed-head__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 35px;
}

.fixed-head__link:nth-child(2) {
  /* margin-right: 30px; */
}

.fixed-head__link:last-child {
  margin-right: 0;
}

.fixed-head__link a,
.header .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.fixed-head__link a {
  color: #fff;
  font-size: 16px;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.fixed-head__link a span {
  position: relative;
}

.fixed-head__link a span::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #fff;
  position: absolute;
  bottom: -2px;
}

.fixed-head__link svg {
  margin-right: 10px;
}

.fixed-head__link:hover svg path {
  fill: #fff;
}

.fixed-head__timer {
  width: 260px;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 34px;
  letter-spacing: 1.82px;
  text-align: center;
  margin-right: 10px;
}

.fixed-head__timer-title {
  width: 100%;
  line-height: 1;
  margin-bottom: 5px;
}

.fixed-head__timer-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  letter-spacing: 2.4px;
  margin-right: 6px;
}

.fixed-head__timer-block span {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background-color: #ffc900;
  margin-right: 3px;
  padding-left: 2px;
}

@media screen and (min-width: 280px) {
  .header {
    padding: 55px 0 127px;
    background: url(../img/bg-m.jpg);
    background-size: contain;

    position: relative;
    margin-bottom: 120px;
  }
}

@media screen and (min-width: 480px) {
  .header {
    background: url(../img/bg.jpg) no-repeat center;
    background-size: 140% 100%;
  }
}

.header::before,
.header__title::before {
  content: '';
  display: block;
  position: absolute;
}

.header::before {
  background: url(../img/2.png) no-repeat center 5px;
  bottom: 0;
  width: 100%;
  height: 100px;
}

.header .wrapper {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__pack {
  max-width: 280px;
  position: absolute;
  bottom: -75px;
  right: 20px;
  z-index: 32;
}

.header__left {
  max-width: 780px;
  position: relative;
  z-index: 20;
}

.header__title {
  color: #000;
  font-size: 65px;
  margin-bottom: 55px;
  position: relative;
}

.header__title::before {
  width: 121px;
  height: 73px;
  background: url(../img/header-arrow.png) no-repeat center;
  top: 112px;
  right: 181px;
}

.header2 .header__title::before {
  display: none;
}

.header__items {
  display: flex;
  margin-bottom: 55px;
}

.header__item {
  color: #666;
  font-size: 22px;
  font-weight: 400;
  line-height: 26px;
  padding-top: 60px;
  position: relative;
  margin-right: 33px;
}

.header__item span {
  color: #000;
}

.header__item .fw600 {
  display: inline-block;
  line-height: 1;
  margin-bottom: 5px;
}

.header__item::after,
.header__item::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
}

.header__item::before {
  background: url(../img/header-item1.png) no-repeat center;
  width: 43px;
  height: 50px;
  left: 0;
  z-index: 1;
}

.header__item::after {
  width: 24px;
  height: 24px;
  background-color: #ffc900;
  border-radius: 50%;
  left: 27px;
  z-index: 0;
}

.header__item:last-child {
  margin-right: 0;
}

.header__item:nth-child(2)::before {
  background: url(../img/header-item2.png) no-repeat center;
  width: 50px;
  height: 58px;
}

.header__item:nth-child(3)::before {
  background: url(../img/header-item3.png) no-repeat center;
}

.header__right {
  width: 453px;
  height: 860px;
  position: absolute;
  left: calc(50% + 152px);
  top: -150px;
  z-index: 11;
  max-width: 100%;
}

.header__right.pseudo::after,
.header__right.pseudo::before {
  content: '';
  display: block;
  border-radius: 50%;
  position: absolute;
  left: 42%;
  top: 79%;
  transform: translate(-50%, -50%);
  /*transform: translateX(-50%);*/
}

.header__right.pseudo::before {
  border: 1px solid #e0e2e2;
  width: 751px;
  height: 751px;
  background-color: #fff;
  z-index: -1;

  /*top: 300px;*/
}

.header__right.pseudo::after {
  width: 579px;
  height: 579px;
  background-color: #f3f4f1;
  z-index: 0;
  /*top: 300px;*/
  /*top: 385px;*/
}

.header .hover-text,
.header .hover-text::before {
  background-color: #fff;
  opacity: 0.9;
  position: absolute;
}

.header .hover-text {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
  border-radius: 3px;
  padding: 7px 0 0;
  text-align: center;
  z-index: 99;
  width: 182px;
  height: 42px;
  left: -62.5px;
  top: 70px;
  display: none;
}

.header .hover-text::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.9);
  top: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.header-bottom {
  padding-bottom: 100px;
  position: relative;
}

.header-bottom::before {
  content: '';
  display: block;
  width: 100%;
  height: 45px;
  background: url(../img/header-bot-underline.png) no-repeat center;
  position: absolute;
  bottom: -3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header-bottom .wrapper {
  align-items: center;
  justify-content: flex-start;
}

.header-bottom__title {
  color: #000;
  font-size: 30px;
  line-height: 40px;
  margin-right: 85px;
  margin-left: auto;
}

.header-bottom .wrapper,
.header-bottom__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-bottom__items {
  margin-right: auto;
}

.header-bottom__item {
  color: #000;
  font-size: 22px;
  line-height: 55px;
  position: relative;
  padding: 35px 0 0 87px;
  margin-right: 68px;
}

.header-bottom__item:last-child {
  margin-right: 0;
}

.header-bottom__item::before {
  content: '';
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffc900;
  border-radius: 50%;
  background: url(../img/header-bot-check.png) no-repeat 16px 18px;
  position: absolute;
  left: 0;
  bottom: 11px;
}

.header-bottom__item::after {
  content: '1.';
  display: block;
  color: #e8e8e7;
  font-size: 40px;
  font-weight: 800;
  line-height: 40px;
  position: absolute;
  left: 85px;
  top: 0;
}

.effect__item:nth-child(2) .effect__img::after,
.header-bottom__item:nth-child(2)::after {
  content: '2.';
}

.effect__item:nth-child(3) .effect__img::after,
.header-bottom__item:nth-child(3)::after {
  content: '3.';
}

.form-wrap {
  position: relative;
  z-index: 10;
}

.form-wrap::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: #436a33;
  position: absolute;
  left: 0;
  top: -32px;
}

.price-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 25px;
}

.price-text {
  color: #666;
  font-size: 13px;
  line-height: 16px;
  margin-right: 10px;
}

.price-new,
.price-old {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: left;
}

.option-text,
.options~selected,
option,
select {
  display: none;
}

.price-old {
  color: #999;
  font-size: 18px;
  font-weight: 300;
  margin-right: 20px;
  max-width: 190px;
  width: 100%;
}

.price-old .price {
  font-size: 40px;
  position: relative;
}

.price-old .price::after,
.price-old .price::before {
  content: '';
  display: block;
  width: 100%;
  height: 1.5px;
  background: #b63045;
  position: absolute;
  top: 53%;
  left: 0;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.price-old .price::after {
  -webkit-transform: rotate(-15deg);
  transform: rotate(-15deg);
}

.price-old .currency {
  -ms-flex-item-align: end;
  align-self: flex-end;
  line-height: 22px;
}

.effect .price-old .currency {
  line-height: 32px;
}

.effect .price-new .currency {
  -ms-flex-item-align: end;
  align-self: flex-end;
  line-height: 34px;
}

.price-new {
  color: #000;
  font-size: 18px;
  font-weight: 400;
}

.price-new .price-text {
  color: #444;
}

.price-new .price {
  font-size: 50px;
  font-weight: 800;
}

.header__btn {
  font-size: 55px;
  font-weight: 800;
}

.price-new .currency {
  -ms-flex-item-align: end;
  align-self: flex-end;
  line-height: 27px;
}

.header__btn {
  width: 430px;
  height: 70px;
  font-size: 28px;
  line-height: 1;
  margin-top: 40px;
  letter-spacing: 0;
}

.header__btn,
.header__btn:hover {
  border-radius: 34px;
}

.form__input {
  display: inline-block;
  width: 170px;
  margin-right: 20px;
  position: relative;
}

.form__input:last-child {
  margin-right: 0;
}

.form__input input {
  width: 100%;
  padding: 0 0 15px 30px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  outline: 0;
  background: 0 0;
  box-shadow: none;
}

.form__input::before {
  content: '';
  display: block;
  width: 22px;
  height: 26px;
  background: url(../img/form-name.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.form__input:nth-child(2) {
  margin-right: 10px;
}

.form__input:nth-child(2)::before {
  background: url(../img/form-phone.png) no-repeat center;
}

.form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.custom-select {
  display: inline-block;
  margin-right: 20px;
  width: 66px;
  height: 37px;
  position: relative;
  color: #666;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background: url(../img/form-down.png) no-repeat right 9px;
}

.selected {
  width: 100%;
  height: 37px;
  opacity: 1;
  text-align: left;
  background-position: 10px 0;
  background-repeat: no-repeat;
}

.selected .countryName {
  font-size: 17px;
  padding-left: 50px;
  display: none;
}

.selected.disabled {
  opacity: 0;
}

.selected.DE {
  background-image: url(../img/form-flag.png);
}

.selected.AT {
  background-image: url(../img/AT.png);
}

.selected.ES {
  background-image: url(../img/ES.png);
}

.selected.GR {
  background-image: url(../img/GR.png);
}

.selected.HU {
  background-image: url(../img/HU.png);
}

.selected.IT {
  background-image: url(../img/IT.png);
}

.selected.PL {
  background-image: url(../img/PL.png);
}

.selected.PT {
  background-image: url(../img/PT.png);
}

.selected.RO {
  background-image: url(../img/RO.png);
}

.options {
  position: absolute;
  z-index: 10;
  display: none;
  overflow-y: scroll;
}

.options.opened {
  display: block;
  height: 150px;
  top: -9px;
}

.options ::-webkit-scrollbar-button {
  background-repeat: no-repeat;
  width: 5px;
  height: 0;
}

.options::-webkit-scrollbar-track {
  background-color: #ecedee;
}

.options::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background-color: #436a33;
}

.options::-webkit-scrollbar-thumb:hover {
  background-color: #56999f;
}

.options::-webkit-resizer {
  background-repeat: no-repeat;
  width: 4px;
  height: 0;
}

.options::-webkit-scrollbar {
  width: 4px;
}

.option {
  width: 50px;
  height: 37px;
  display: block;
}

.option.DE {
  background: rgba(255, 255, 255, 0.5) url(../img/form-flag.png) no-repeat center center;
}

.option.AT {
  background: rgba(255, 255, 255, 0.5) url(../img/AT.png) no-repeat center;
}

.option.ES {
  background: rgba(255, 255, 255, 0.5) url(../img/ES.png) no-repeat center;
}

.option.GR {
  background: rgba(255, 255, 255, 0.5) url(../img/GR.png) no-repeat center;
}

.option.HU {
  background: rgba(255, 255, 255, 0.5) url(../img/HU.png) no-repeat center;
}

.option.IT {
  background: rgba(255, 255, 255, 0.5) url(../img/IT.png) no-repeat center;
}

.option.PL {
  background: rgba(255, 255, 255, 0.5) url(../img/PL.png) no-repeat center;
}

.option.PT {
  background: rgba(255, 255, 255, 0.5) url(../img/PT.png) no-repeat center;
}

.option.RO {
  background: rgba(255, 255, 255, 0.5) url(../img/RO.png) no-repeat center;
}

.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-horizontal .twentytwenty-handle:before,
.twentytwenty-vertical .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before {
  content: ' ';
  display: block;
  background: #ffc900;
  position: absolute;
  z-index: 30;
  border-radius: 0;
}

.twentytwenty-horizontal .twentytwenty-handle:after,
.twentytwenty-horizontal .twentytwenty-handle:before {
  width: 3px;
  left: 50%;
  margin-left: -1.5px;
}

.twentytwenty-vertical .twentytwenty-handle:after,
.twentytwenty-vertical .twentytwenty-handle:before {
  height: 3px;
  top: 50%;
  margin-top: -1.5px;
}

.twentytwenty-after-label,
.twentytwenty-before-label,
.twentytwenty-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.twentytwenty-after-label,
.twentytwenty-before-label {
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.twentytwenty-after-label:before,
.twentytwenty-before-label:before {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before,
.twentytwenty-horizontal .twentytwenty-before-label:before {
  top: 50%;
  margin-top: -19px;
}

.twentytwenty-vertical .twentytwenty-after-label:before,
.twentytwenty-vertical .twentytwenty-before-label:before {
  left: 50%;
  margin-left: -45px;
  text-align: center;
  width: 90px;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  position: absolute;
}

.twentytwenty-down-arrow,
.twentytwenty-up-arrow {
  width: 0;
  height: 0;
  position: absolute;
}

.twentytwenty-left-arrow::before {
  content: 'Zobacz jak zmieni się Twoja skóra';
  color: #000;
  font-size: 13px;
  font-weight: 400;
  line-height: 14px;
  width: 182px;
  height: 42px;
  background-color: #fff;
  opacity: 0.9;
  border-radius: 3px;
  padding: 7px 0 0;
  text-align: center;
  z-index: 99;
  position: absolute;
  left: -72px;
  top: 50px;
  text-shadow: 0 0 0 #000;
  display: none;
}

.twentytwenty-left-arrow::after {
  content: '';
  width: 5px;
  height: 5px;
  border: 5px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 41px;
  left: 14px;
  -webkit-transform: translateX(-50%) rotate(180deg);
  transform: translateX(-50%) rotate(180deg);
  z-index: 31;
  display: none;
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  top: 50%;
  margin-top: -6px;
}

.twentytwenty-down-arrow,
.twentytwenty-up-arrow {
  left: 50%;
  margin-left: -6px;
}

.twentytwenty-container {
  z-index: 3;
  overflow: hidden;
  position: relative;
  user-select: none;
}

.twentytwenty-container img {
  max-width: 100%;
  position: absolute;
  top: 0;
  display: block;
}

.graph__button.active span::before,
.graph__button:hover span::before,
.twentytwenty-container.active .twentytwenty-overlay,
.twentytwenty-container.active :hover.twentytwenty-overlay {
  background: 0 0;
}

.twentytwenty-container,
.twentytwenty-container * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.twentytwenty-after-label,
.twentytwenty-before-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active .twentytwenty-overlay .twentytwenty-before-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-after-label,
.twentytwenty-container.active :hover.twentytwenty-overlay .twentytwenty-before-label {
  opacity: 0;
}

.twentytwenty-after-label:before,
.twentytwenty-before-label:before {
  content: attr(data-content);
}

.twentytwenty-horizontal .twentytwenty-before-label:before {
  left: 10px;
}

.twentytwenty-horizontal .twentytwenty-after-label:before {
  right: 10px;
}

.twentytwenty-vertical .twentytwenty-before-label:before {
  top: 10px;
}

.twentytwenty-vertical .twentytwenty-after-label:before {
  bottom: 10px;
}

.twentytwenty-overlay {
  -webkit-transition-property: background;
  transition-property: background;
  background: 0 0;
  z-index: 25;
}

.twentytwenty-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.twentytwenty-overlay:hover .twentytwenty-after-label,
.twentytwenty-overlay:hover .twentytwenty-before-label {
  opacity: 1;
}

.twentytwenty-before {
  z-index: 20;
}

.twentytwenty-after {
  z-index: 10;
}

.twentytwenty-handle {
  width: 60px;
  height: 60px;
  background-color: #436a33;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1000px;
  z-index: 40;
  cursor: pointer;
}

.twentytwenty-horizontal .twentytwenty-handle:before {
  bottom: 50%;
  margin-bottom: 30px;
  height: 490px;
}

.twentytwenty-horizontal .twentytwenty-handle:after {
  top: 50%;
  margin-top: 30px;
  height: 460px;
}

.twentytwenty-vertical .twentytwenty-handle:before {
  left: 50%;
  margin-left: 22px;
  -webkit-box-shadow: 3px 0 0 #fff, 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 3px 0 0 #fff, 0 0 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-vertical .twentytwenty-handle:after {
  right: 50%;
  margin-right: 22px;
  -webkit-box-shadow: -3px 0 0 #fff, 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: -3px 0 0 #fff, 0 0 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-left-arrow,
.twentytwenty-right-arrow {
  width: 12px;
  height: 12px;
  background: url(../img/slide-arrow.png) no-repeat center;
}

.twentytwenty-left-arrow {
  left: 50%;
  margin-left: -14px;
}

.twentytwenty-right-arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  right: 50%;
  margin-right: -14px;
}

.twentytwenty-up-arrow {
  border-bottom: 6px solid #fff;
  top: 50%;
  margin-top: -17px;
}

.twentytwenty-down-arrow {
  border-top: 6px solid #fff;
  bottom: 50%;
  margin-bottom: -17px;
}

#twenty-new {
  width: 452px;
  height: 938px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-226px);
  overflow: visible;
  z-index: 22;
}

#twenty-new img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1459px) {

  .header__right,
  .header2 .header__right {
    left: calc(50% + 120px) !important;
  }

  .header__right.pseudo::before {
    width: 651px;
    height: 651px;
  }

  .header__right.pseudo::after {
    width: 479px;
    height: 479px;
    background-color: #f3f4f1;
    z-index: 1;
  }
}

@media (max-width: 1409px) {
  .header {
    /* padding-top: 125px; */
    margin-bottom: 100px;
  }

  .header .hover-text {
    display: none !important;
  }

  .header .beer-range {
    left: 135px;
  }

  .header__title {
    font-size: 55px;
    margin-bottom: 35px;
  }

  .header__title::before {
    top: 112px;
    right: 15px;
  }

  .header2 .header__title::before {
    top: 105px;
    right: 39px;
  }

  .header .beer-handle {
    top: 49%;
  }

  .header__items {
    /* margin-bottom: 95px; */
  }

  .header__item {
    font-size: 20px;
    line-height: 1.2;
  }

  .header__pack {
    width: 300px;
    right: -30px;
  }

  .header__left {
    width: 700px;
  }

  .header__right {
    width: 480px;
    top: -130px;
  }

  .header__right.pseudo::before {
    width: 560px;
    height: 560px;
  }

  .header__right.pseudo::after {
    width: 449px;
    height: 449px;
  }

  .header .line::after {
    height: 215px;
    bottom: 5px;
  }

  .header .twentytwenty-handle:after {
    height: 440px;
  }

  .header-bottom {
    padding-bottom: 90px;
  }
}

@media (max-width: 1219px) {
  .fixed-head__links {
    margin-right: 0;
  }

  .fixed-head__link,
  .fixed-head__link:nth-child(2) {
    margin-right: 20px;
  }

  .fixed-head__timer {
    margin-right: auto;
    margin-left: auto;
    width: 220px;
  }

  .fixed-head__logo {
    /* margin-right: 20px; */
  }

  .fixed-head__timer-block {
    line-height: 28px;
    margin-right: 3px;
  }

  .fixed-head__timer-block span {
    width: 30px;
    height: 30px;
  }

  .fixed-head .btn {
    width: 148px;
  }

  .header {
    margin-bottom: 50px;
  }

  .header .twentytwenty-container {
    overflow: visible;
  }

  .header .twentytwenty-handle:before {
    height: 334px;
  }

  .header .twentytwenty-handle:after {
    height: 400px;
  }

  .header__title {
    font-size: 50px;
  }

  .header__title::before {
    top: 101px;
    right: 0;
  }

  .header2 .header__title::before {
    top: 100px;
    right: 39px;
  }

  .header__left {
    width: 600px;
  }

  .header-bottom {
    padding-bottom: 70px;
  }

  .header__pack {
    width: 220px;
    right: -50px;
  }

  .header__right {
    width: 400px;
  }

  .header__right,
  .header2 .header__right {
    left: calc(50% + 100px) !important;
  }

  .header__right.pseudo::before {
    width: 460px;
    height: 460px;
  }

  .header__right.pseudo::after {
    width: 380px;
    height: 380px;
  }

  .header .line::after {
    height: 185px;
    bottom: 35px;
  }

  .header-bottom::before {
    width: 1000px;
  }

  .header-bottom__title {
    margin-right: 33px;
    font-size: 28px;
    line-height: 35px;
  }

  .header-bottom__item {
    margin-right: 10px;
  }
}

@media (max-width: 1023px) {
  .selected {
    background-position: 5px 0 !important;
  }

  .fixed-head__links {
    margin-right: auto;
  }

  .fixed-head__timer,
  .header::before,
  .header__title::before {
    display: none;
  }

  .fixed-head .btn {
    width: 140px;
  }

  .header {
    padding: 40px 0;
    margin-bottom: 0;
  }

  .header .twentytwenty-handle:after {
    height: 141px;
  }

  .header .twentytwenty-handle:before {
    height: 232px;
  }

  .header .beer-range {
    left: 85px;
  }

  .header__title {
    margin-bottom: 20px;
    font-size: 40px;
    width: 100%;
    text-align: center;
  }

  .header__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 25px;
    width: 100%;
  }

  .header__item {
    width: 33.33%;
    font-size: 18px;
    text-align: center;
    margin-right: 10px;
  }

  .header-bottom {
    padding-bottom: 20px !important;
  }

  .header__item br {
    display: none;
  }

  .header__item .fw600 {
    display: block;
  }

  .header__item::before {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .header__item::after {
    left: 55%;
  }

  .header__left {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .header__right {
    display: none;
    /*left: calc(50% - 360px);*/
    /*width: 340px;*/
    /*top: 360px;*/
    /*height: auto;*/
    /*z-index: 30*/
  }

  .form-wrap::before,
  .header-bottom::before,
  .header-bottom__title br,
  .header__right.pseudo::after,
  .header__right.pseudo::before {
    display: none;
  }

  .header__pack {
    position: relative;
    right: -30px;
    bottom: initial;
  }

  .header__btn {
    margin-top: 20px;
    margin-bottom: 3px;
  }

  .header .line::after {
    height: 130px;
    bottom: 90px;
  }

  .header-bottom {
    padding-bottom: 50px;
  }

  .header-bottom .wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .header-bottom__title {
    text-align: center;
    width: 100%;
    margin: 0 0 20px;
    font-size: 30px;
  }

  .header-bottom__items {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header-bottom__item {
    margin-right: 0;
  }

  .price-block {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form,
  .form__inputs {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .form-wrap {
    order: 2;
    max-width: 430px;
    text-align: center;
  }

  .header-bottom__item {
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 40px 0 0;
  }

  .header-bottom__item::after {
    position: static;
    display: inline-block;
    margin-right: 5px;
    order: -1;
    line-height: 1;
  }

  .header-bottom__item::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0px;
    bottom: inherit;
    width: 44px;
    height: 44px;
    background: url('../img/header-bot-check.png') no-repeat center;
    background-size: 20px;
  }
}

@media (max-width: 767px) {
  .fixed-head__links {
    margin: 0;
  }

  .fixed-head .wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .fixed-head .btn {
    display: none;
  }

  .header {
    padding: 30px 0;
  }

  .header .twentytwenty-handle:after {
    height: 141px;
  }

  .header .twentytwenty-handle:before {
    height: 240px;
  }

  .header__title {
    font-size: 45px;
    /* margin-bottom: 30px; */
  }

  .header__item {
    font-size: 18px;
  }

  .header__right {
    width: 350px;
    top: 335px;
    left: calc(50% - 320px);
  }

  .header__pack {
    right: -50px;
  }

  .form-wrap {
    max-width: 290px;
  }

  .form__inputs {
    width: 100%;
    flex-direction: column;
  }

  .form__input {
    width: 100%;
    max-width: 100%;
  }

  .form__input,
  .form__input:nth-child(3) {
    margin: 0 0 20px;
  }

  .form__input:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .custom-select {
    width: 100%;
    margin: 0 0 20px;
  }

  .header .line::after {
    height: 135px;
    bottom: 85px;
  }

  .header-bottom__item::before {
    width: 40px;
    height: 40px;
  }

  .header-bottom__item::after {
    left: 55px;
  }

  .price-block {
    flex-direction: column;
    margin: 0 auto 15px;
  }

  .price-old {
    margin: 0 0 10px;
    justify-content: center;
  }

  .price-text {
    white-space: nowrap;
  }

  .price-text br {
    display: none;
  }
}

@media (max-width: 639px) {
  .fixed-head .wrapper {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .fixed-head__logo-cream {
    text-align: center;
  }

  .fixed-head__logo-name {
    text-align: center;
  }

  .fixed-head__logo {
    margin: 0 0 10px;
  }

  .header {
    /* padding: 120px 0 30px; */
  }

  .header .twentytwenty-handle:after {
    height: 113px;
  }

  .header .twentytwenty-handle:before {
    height: 184px;
  }

  .header__right .beer-range {
    left: 74px;
  }

  .header__title {
    font-size: 35px;
  }

  .header__item {
    font-size: 16px;
  }

  .header__right {
    width: 280px;
    left: calc(50% - 260px);
  }

  .header__items {
    margin-bottom: 30px;
  }

  .header__left {
    justify-content: center;
  }

  .header__pack {
    width: 220px;
    right: initial;
    margin-bottom: 20px;
  }

  .header .line::after {
    height: 102px;
    bottom: 118px;
  }

  .header-bottom__title {
    font-size: 29px;
  }

  .header-bottom__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .header-bottom__item {
    justify-content: center;
    width: 50%;
    padding: 0;
    margin-bottom: 10px;
  }

  .header-bottom__item:last-child {
    margin-bottom: 0;
  }

  .header-bottom__item::before {
    display: inline-block;
    position: static;
    margin-right: 5px;
    transform: none;
    flex: none;
  }

  .header-bottom__item::after {
    display: none;
  }
}

@media (max-width: 479px) {
  .fixed-head {
    /* padding: 2px 0 5px; */
  }

  .fixed-head__logo {
    margin-bottom: 0;
  }

  .fixed-head__links,
  .header__item br {
    display: none;
  }

  .header {
    padding: 25px 0;
  }

  .header__btn {
    width: 300px;
    height: 60px;
    font-size: 23px;
  }

  .header__title {
    font-size: 32px;
    /* margin-bottom: 25px; */
  }

  .header__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 0;
  }

  .header__item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
    padding: 0 0 0 70px;
    text-align: left;
  }

  .header__item:nth-child(2) {
    /* margin-bottom: 50px; */
  }

  .header__item::before {
    left: 30px;
    top: -5px;
  }

  .header__item::after {
    left: 35px;
    top: -5px;
  }

  .header__item:last-child {
    margin-bottom: 0;
  }

  .header .custom-select {
    margin-right: 0;
  }

  .header__right,
  .price-text br {
    display: none;
  }

  .header__left {
    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-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .header__form-wrap {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .header__pack {
    position: static;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 30px 0 20px;
  }

  .header .line::after {
    height: 61px;
    bottom: 159px;
  }

  .header .form__input input {
    padding-left: 56px;
  }

  .header .form__input::before {
    left: 17px;
  }

  .header .options {
    width: 90%;
  }

  .header .options.opened {
    height: 140px;
  }

  .header .option {
    width: 100%;
    background-position: 10px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    color: #666;
    padding-left: 50px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(102, 102, 102, 0.3);
    height: 46px;
  }

  .header .option:last-child {
    border: 0;
  }

  .header .option-text {
    font-size: 17px;
    display: block;
  }

  .form-wrap {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .form__inputs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .form__input {
    margin: 0 0 25px;
  }

  .form__input:nth-child(2) {
    margin-right: 0;
  }

  .form .selected .countryName {
    display: block;
  }

  .price-block {
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .price-old {
    margin-right: 0;
    width: 100%;
  }

  .price-old .price {
    font-size: 36px;
  }

  .price-text {
    margin-right: 12px;
  }

  .price-new {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .price-new .price {
    font-size: 46px;
  }

  .header-bottom__title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .header-bottom__items {
    justify-content: flex-start;
    flex-direction: column;
    max-width: 200px;
    margin: 0 auto;
  }

  .header-bottom__item {
    text-align: center;
    line-height: 1.2;
    font-size: 20px;
    margin-bottom: 20px;
    width: 100%;
    justify-content: flex-start;
  }

  .header-bottom__item::after {
    display: none;
  }
}

.color_infect {
  color: #b63045;
}

.ways {
  padding-top: 92px;
  padding-bottom: 48px;
}

.ways img {
  display: block;
}

.ways__item,
.ways__wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.ways__wrap {
  margin-top: 54px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.ways__item {
  width: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.ways__item:nth-child(even) {
  margin-top: 30px;
}

.ways__item1 svg {
  margin-top: 4px;
  margin-right: 2px;
}

.ways__item3 svg {
  margin-left: 19px;
}

.ways__item4 svg {
  margin-top: 20px;
}

.ways__item5 svg {
  margin-top: 2px;
}

.ways__item_ico {
  height: 52px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.ways__item_img {
  margin-top: 30px;
  -webkit-box-shadow: 10px -10px 0 0 #f3f4f1;
  box-shadow: 10px -10px 0 0 #f3f4f1;
}

.ways__item_text {
  text-align: center;
  font-size: 18px;
  line-height: 1.5;
  width: 100%;
  font-weight: 600;
  margin-top: 16px;
}

.ways__conclusion {
  border: 2px solid #b63045;
  border-radius: 3px;
  height: 75px;
  margin-top: 61px;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  padding-bottom: 4px;
  position: relative;
}

.ways__conclusion::before {
  content: '';
  position: absolute;
  border: 2px solid #b63045;
  border-color: #b63045 #fff #fff #b63045;
  width: 20px;
  height: 20px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -10px;
}

.svg-angle2 {
  stroke: #b63045;
  stroke-width: 2;
}

@media screen and (max-width: 1409px) {
  .ways {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 1219px) {
  .ways {
    padding-top: 40px;
    padding-bottom: 0;
  }

  .ways__conclusion {
    margin-top: 50px;
    font-size: 22px;
    line-height: 1.3;
  }

  .ways__item_ico {
    padding-left: 0;
  }

  .ways__item3 svg {
    margin-left: 0;
  }

  .ways__item {
    width: 180px;
  }

  .ways__item_text {
    font-size: 17px;
    padding-left: 0;
  }

  .ways__wrap {
    margin-top: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .ways {
    padding-top: 0 !important;
  }

  .ways__item {
    width: 240px;
  }

  .ways__wrap {
    margin-top: 30px;
    justify-content: space-around;
  }

  .ways__item:nth-child(n) {
    margin-top: 0;
    margin-bottom: 20px;
  }

  .ways__item:nth-child(n + 4) {
    margin-bottom: 0;
  }

  .ways__item_text {
    font-size: 19px;
  }

  .ways__conclusion {
    margin-top: 36px;
    height: auto;
    padding: 15px 60px;
    text-align: center;
    border-radius: 5px;
  }

  .ways__conclusion::before {
    display: none;
  }

  .ways__item_img {
    -webkit-box-shadow: 6px -6px 0 0 #f3f4f1;
    box-shadow: 6px -6px 0 0 #f3f4f1;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .ways__wrap {
    margin-top: 34px;
  }

  .ways__item:nth-child(n) {
    margin-bottom: 25px;
  }

  .ways__item:nth-child(n + 4) {
    margin-bottom: 0;
  }

  .ways__item1 svg {
    max-width: 30px;
    margin: 0;
  }

  .ways__item2 svg {
    max-width: 44px;
  }

  .ways__item3 svg {
    max-width: 40px;
  }

  .ways__item4 svg {
    max-width: 50px;
  }

  .ways__item5 svg {
    max-width: 40px;
  }

  .ways__item {
    width: 180px;
  }

  .ways__item_text {
    font-size: 17px;
  }

  .ways__conclusion {
    margin-top: 28px;
    padding: 10px 25px;
    font-size: 20px;
  }

  .ways__item_img {
    margin-top: 15px;
  }
}

@media screen and (max-width: 639px) {
  .ways__item {
    width: 200px;
  }

  .ways__conclusion {
    margin-top: 22px;
    font-size: 19px;
    padding: 10px 15px;
  }

  .ways__item_img {
    width: 176px;
    margin-top: 10px;
  }

  .ways__item:nth-child(n) {
    margin-bottom: 20px;
  }

  .ways__item:last-child {
    margin-bottom: 0;
  }

  .ways__wrap {
    margin-top: 28px;
  }
}

@media screen and (max-width: 479px) {
  .ways__item {
    width: 220px;
    margin-bottom: 20px !important;
  }

  .ways__item:last-child {
    margin-bottom: 0 !important;
  }

  .ways__wrap {
    margin-top: 20px;
  }

  .ways__conclusion {
    margin-top: 18px;
    font-size: 18px;
  }

  .ways__item_text {
    font-size: 16px;
    margin-top: 10px;
  }

  .ways__item_img {
    -webkit-box-shadow: 4px -4px 0 0 #f3f4f1;
    box-shadow: 4px -4px 0 0 #f3f4f1;
  }

  .ways__item_ico {
    height: auto;
  }
}

.sideR {
  width: 22px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  position: fixed;
  z-index: 21;
  right: 103px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.sideR__line {
  width: 2px;
  height: 40px;
  background: #ffc900;
  margin-bottom: 13px;
}

.sideR__number {
  font-size: 30px;
  color: #436a33;
  line-height: 22px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sideR__dots {
  width: 10px;
  margin-top: 32px;
  position: relative;
}

.sideR__dots_dot,
.sideR__dots_runner {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sideR__dots_runner {
  content: '';
  background: #fff;
  position: absolute;
  left: 0;
  -webkit-box-shadow: 0 0 0 6px #436a33;
  box-shadow: 0 0 0 6px #436a33;
  -webkit-transition: top 0.5s;
  transition: top 0.5s;
}

.sideR__dots_dot {
  background: #d3d3d3;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  cursor: pointer;
  margin-bottom: 20px;
}

.sideR__dots_dot:hover,
.sliderr .slick-dots li button:hover::before {
  background: #ffc900;
}

.sideR__dots_dot:last-child {
  margin-bottom: 0;
}

.b_1 .sideR__dots_runner {
  top: 0;
}

.b_2 .sideR__dots_runner {
  top: 30px;
}

.b_3 .sideR__dots_runner {
  top: 60px;
}

.b_4 .sideR__dots_runner {
  top: 90px;
}

.b_5 .sideR__dots_runner {
  top: 120px;
}

.b_6 .sideR__dots_runner {
  top: 150px;
}

.b_7 .sideR__dots_runner {
  top: 180px;
}

.b_8 .sideR__dots_runner {
  top: 210px;
}

.b_9 .sideR__dots_runner {
  top: 240px;
}

@media screen and (max-width: 1599px) {
  .sideR {
    right: 60px;
  }
}

@media screen and (max-width: 1499px) {
  .sideR {
    right: 40px;
  }
}

@media screen and (max-width: 1399px) {
  .sideR {
    right: 20px;
  }
}

@media screen and (max-width: 1329px) {
  .sideR {
    display: none;
  }
}

.how .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.how__ttext {
  color: #444;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  width: 100%;
  margin-bottom: 56px;
  position: relative;
}

.how__description span,
.how__ttext span {
  color: #000;
}

.how__ttext::before {
  content: '';
  display: block;
  width: 24px;
  height: 24px;
  background: url(../img/how-i.png) no-repeat center;
  position: absolute;
  top: -45px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.how__title {
  text-align: left;
  margin-bottom: 30px;
}

.how__description {
  color: #444;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}

.how-list {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  margin: 0 0 29px 5px;
}

.how-list li {
  display: flex;
  align-items: center;
  position: relative;
}

.how-list li+li {
  margin-top: 12px;
}

.how-list li:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  background-color: #b63045;
  margin-right: 10px;
  flex: none;
}

.how__description:last-child {
  margin-bottom: 0;
}

.how__btext {
  width: 100%;
  text-align: center;
  color: #000;
  font-size: 24px;
  line-height: 30px;
  margin-top: 47px;
  border-top: none;
  border-radius: 3px;
  padding: 21px 0 25px;
  position: relative;
}

.how__btext::before,
.how__video .poster {
  display: block;
  width: 100%;
  position: absolute;
}

.how__btext::before {
  content: '';
  background: url(../img/border-red.png) no-repeat center;
  right: 0;
  height: 112%;
  top: -10px;
}

.how__content {
  width: 575px;
  text-align: left;
}

.how__video {
  width: 560px;
  position: relative;
  margin-right: 35px;
  margin-top: 6px;
  background-size: contain;
}

.how__video .video-control {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
}

.how__video .video-control::before {
  content: 'oglądać wideo';
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  position: absolute;
  left: 60px;
  top: 5px;
}

.how__video .video-control::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 15px;
  border-color: transparent transparent transparent #ffc900;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-30%, -50%);
  transform: translate(-30%, -50%);
}

.how .video-player {
  width: 100%;
  height: 100%;
  max-width: 560px;
  max-height: 470px;
}

.youtube .play {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  z-index: 10;
  bottom: 20px;
  left: 20px;
  cursor: pointer;
}

.youtube .play::before {
  content: 'смотреть видео';
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  position: absolute;
  left: 60px;
  top: 5px;
}

.youtube .play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 0 13px 15px;
  border-color: transparent transparent transparent #ffc900;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-30%, -50%);
  transform: translate(-30%, -50%);
}

@media screen and (max-width: 1409px) {
  .how {
    padding: 200px 0 100px;
  }

  .how__ttext {
    margin-bottom: 40px;
  }
}

@media (max-width: 1219px) {
  .how {
    padding: 160px 0 90px;
  }

  .how__ttext {
    margin-bottom: 20px;
  }

  .how__ttext::before {
    top: -30px;
  }

  .how__btext {
    font-size: 20px;
    margin-top: 30px;
  }

  .how__btext::before {
    background-size: contain;
  }

  .how__video {
    width: 400px;
    margin: 0 20px 0 0;
  }

  .how__content {
    width: calc(100% - 440px);
  }

  .how__title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .how__title br {
    display: none;
  }

  .how__description br {
    display: none;
  }

  .how-list {
    margin-bottom: 20px;
  }
}

@media (max-width: 1023px) {
  .how__title {
    text-align: center;
    margin-bottom: 10px;
  }

  .how__content {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    text-align: center;
  }

  .how__description {
    margin-bottom: 10px;
  }

  .how-list {
    max-width: 400px;
    margin: 0 auto 20px;
  }

  .how-list li {
    text-align: left;
  }

  .how__ttext {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 50px;
    font-size: 18px;
  }

  .how__ttext::before {
    top: -30px;
  }

  .how__video {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    margin: 0 auto;
  }

  .how__btext {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
    margin-top: 20px;
    font-size: 16px;
    line-height: 1;
    padding-bottom: 18px;
  }

  .how__btext::before {
    height: 100%;
    top: -1px;
  }
}

@media screen and (min-width: 280px) {
  .how {
    padding: 216px 0 105px;
    background: url(../img/bg-m.jpg);
    background-size: contain;

    position: relative;
  }
}

@media screen and (min-width: 767px) {
  .how {
    background: url('../img/bacteries.png') no-repeat 143px 192px,
      url('../img/bg.jpg') no-repeat center top;
    background-size: 260px, 140% 100%;
  }
}

@media (max-width: 767px) {
  /* .how {
        background: url(../img/bg.jpg) no-repeat center top;
        background-size: cover;
    } */

  .how__btext {
    padding: 5px;
    font-size: 17px;
    line-height: 1.5;
    border: 2px solid #b63045;
  }

  .how__btext::before {
    display: none;
  }

  .how__ttext {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1;
  }

  .how__description {
    font-size: 16px;
    line-height: 1.5;
  }

  .how-list {
    line-height: 1.2;
  }
}

@media (max-width: 479px) {

  .how__description,
  .how__ttext {
    font-size: 16px;
  }

  .how__ttext {
    line-height: 1.5;
  }

  .how__video {
    height: 253px;
  }
}

.effect {
  padding: 95px 0 150px;
}

.effect .wrapper {
  padding: 0 20px;
}

.effect__title {
  max-width: 770px;
  margin: 0 auto 102px;
}

.effect__item,
.effect__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.effect__items {
  text-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 76px;
  margin-bottom: 47px;
}

.effect__items::after {
  content: '';
  display: block;
  width: 100%;
  height: 51px;
  position: absolute;
  background: url(../img/effect-border.png) no-repeat center;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.effect__item {
  width: 33%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.effect__item:nth-child(1)::before,
.effect__item:nth-child(2)::before {
  content: '';
  display: block;
  width: 123px;
  height: 55px;
  position: absolute;
  z-index: -1;
}

.effect__item:nth-child(1)::before {
  background: url(../img/effect-arr-1.png) no-repeat center;
  right: 12px;
  top: 98px;
}

.effect__item:nth-child(2) {
  position: relative;
  top: -56px;
}

.effect__item:nth-child(2)::before {
  background: url(../img/effect-arr-2.png) no-repeat center;
  right: -5px;
  top: 103px;
}

.effect__description {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  max-width: 260px;
}

.effect__img {
  width: 180px;
  height: 240px;
  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: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: 19px;
  -webkit-animation: show-hide 1s linear;
  animation: show-hide 1s linear;
}

.effect__img::before {
  content: '';
  display: block;
  width: 169px;
  height: 188px;
  border-radius: 3px;
  background-color: #f3f4f1;
  position: absolute;
  top: 42px;
  right: -9px;
  z-index: -1;
}

.effect__img::after {
  content: '1.';
  display: block;
  color: #e8e8e7;
  font-size: 80px;
  font-weight: 800;
  line-height: 40px;
  position: absolute;
  top: 114px;
  left: -95px;
}

.effect__subtitle {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  margin: 0 auto 40px;
}

.effect__subtitle span {
  color: #b63045;
}

.effect__form {
  width: 1371px;
  height: 196px;
  padding-top: 30px;
  margin-left: -100px;
  border-radius: 5px;
  background-color: #f3f4f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-left: 377px;
}

.effect__pack {
  width: 250px;
  position: absolute;
  left: 101px;
  top: -122px;
}

.effect .price-block {
  margin-bottom: 6px;
}

.effect .form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.effect .form__inputs {
  -ms-flex-item-align: center;
  align-self: center;
  margin-right: 26px;
}

.effect .form__input {
  width: 185px;
}

.effect .form__input input {
  padding-left: 32px;
}

.effect .form__input:nth-child(2) {
  margin-right: 21px;
}

.effect__btn {
  width: 400px;
  margin-top: 0;
  -ms-flex-item-align: start;
  align-self: flex-start;
  position: relative;
  top: -18px;
}

.effect .price {
  margin-bottom: 5px;
}

.effect .price-old {
  margin-right: 35px;
}

.effect .form-wrap::before {
  left: 294px;
  top: -30px;
}

.effect .effect__top-arrow {
  position: absolute;
  width: 18px;
  height: 31px;
  background: url(../img/bottom-arrow-icon.svg) bottom center no-repeat;
  background-size: 18px 31px;
  left: 0;
  right: 0;
  top: -20px;
  margin: 0 auto;
  -webkit-animation: show-hide 0.9s infinite alternate ease-in-out, moveTop 1.8s infinite linear;
  animation: show-hide 0.9s infinite alternate ease-in-out, moveTop 1.8s infinite linear;
}

.effect .effect__top-arrow:after,
.effect .effect__top-arrow:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 19px;
  background: url(../img/bottom-arrow-icon.svg) center bottom no-repeat;
  bottom: 0;
  background-size: 18px 31px;
}

.effect .effect__top-arrow:after {
  left: -30px;
}

.effect .effect__top-arrow:before {
  right: -30px;
}

.effect .effect__horizontal-arrow {
  position: absolute;
  width: 100%;
  top: 53px;
  height: 20px;
  left: 0;
  right: 0;
}

.effect .effect__horizontal-arrow:after,
.effect .effect__horizontal-arrow:before {
  content: '';
  position: absolute;
  width: 90px;
  height: 100%;
  top: 0;
  bottom: 0;
  background: url(../img/horizontal-arrow-icon.svg) left center no-repeat;
  background-size: 90px 100%;
  -webkit-animation: improveWidth 1.8s infinite linear;
  animation: improveWidth 1.8s infinite linear;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.effect .effect__horizontal-arrow:after {
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  left: 90px;
}

.effect .effect__horizontal-arrow:before {
  right: 90px;
}

.effect .effect__bottom-arrow,
.effect .effect__bottom-arrow:after,
.effect .effect__bottom-arrow:before {
  position: absolute;
  width: 45px;
  height: 20px;
  left: 0;
  background: url(../img/horizontal-arrow-icon.svg) left center no-repeat;
  background-size: 90px 100%;
}

.effect .effect__bottom-arrow {
  bottom: -20px;
  right: 0;
  margin: 0 auto;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-animation: show-hide 0.9s infinite alternate linear, moveBottom 1.8s infinite linear;
  animation: show-hide 0.9s infinite alternate linear, moveBottom 1.8s infinite linear;
}

.effect .effect__bottom-arrow:after,
.effect .effect__bottom-arrow:before {
  content: '';
}

.effect .effect__bottom-arrow:after {
  top: -30px;
}

.effect .effect__bottom-arrow:before {
  bottom: -30px;
}

@media (max-width: 1399px) {
  .effect {
    padding: 85px 0 120px;
  }

  .effect__form {
    width: 1180px;
    margin-left: 0;
    padding-left: 270px;
  }

  .effect__pack {
    left: 0;
  }

  .effect__title {
    margin: 0 auto 80px;
  }
}

@media (max-width: 1219px) {
  .effect {
    padding: 70px 0 100px;
  }

  .effect__description {
    font-size: 17px;
    line-height: 1.5;
  }

  .effect__img::after {
    left: -75px;
  }

  .effect__form {
    width: 980px;
    padding-left: 240px;
    height: 171px;
    padding-top: 20px;
  }

  .effect .form__inputs {
    margin-right: 15px;
  }

  .effect__pack {
    width: 220px;
    top: -75px;
  }

  .effect__btn {
    width: 270px;
    font-size: 21px;
    height: 58px;
  }

  .effect .form-wrap::before {
    top: -23px;
  }
}

@media (max-width: 1023px) {
  .effect__title {
    margin-bottom: 20px;
  }

  .effect__subtitle {
    line-height: 25px;
    margin-bottom: 70px;
  }

  .effect__items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-bottom: 40px;
    margin-bottom: 20px;
  }

  .effect__item {
    width: 50%;
    margin-bottom: 30px;
  }

  .effect__item:nth-child(2) {
    position: static;
  }

  .effect__item:nth-child(1)::before,
  .effect__item:nth-child(2)::before {
    display: none;
  }

  .effect__item:last-child {
    margin-bottom: 0;
  }

  .effect__form {
    width: 730px;
    padding: 20px 20px 20px 350px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: auto;
  }

  .effect__pack {
    width: 200px;
    top: -50px;
    left: 30px;
  }

  .effect .form,
  .effect__form-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .effect__form-wrap {
    width: 70%;
  }

  .effect .form,
  .effect .price-block,
  .effect__form-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .effect .form {
    margin-left: auto;
  }

  .effect__btn {
    position: static;
    margin-top: 20px;
  }

  .effect .price-block {
    margin-bottom: 10px;
    width: 100%;
  }

  .effect .form__inputs {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .effect .options {
    width: 90%;
  }

  .effect .options.opened {
    height: 140px;
  }

  .effect .option {
    width: 100%;
    background-position: 10px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    color: #666;
    padding-left: 50px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(102, 102, 102, 0.3);
    height: 46px;
  }

  .effect .option:last-child {
    border: 0;
  }

  .effect .option-text {
    font-size: 17px;
    display: block;
  }

  .effect__subtitle br {
    display: none;
  }

  .effect__item {
    margin-bottom: 20px;
  }

  .effect__description {
    font-size: 16px;
    line-height: 1.3;
  }

  .effect .form__input:nth-child(2) {
    margin-right: 0;
  }

  .effect__img::after {
    font-size: 60px;
    left: -55px;
  }

  .effect__form {
    width: auto;
    padding: 10px;
  }

  .effect .form__input input {
    padding-left: 50px;
  }

  .effect .form__input::before {
    left: 15px;
  }

  .effect__pack {
    position: static;
    width: 40%;
    margin-left: 30px;
  }

  .effect .form__inputs {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .effect .form__input {
    width: 100%;
    margin: 0 0 15px;
  }

  .effect .form__input:last-child {
    margin-right: 0;
    margin-bottom: 0;
  }

  .effect .custom-select {
    width: 100%;
    margin-right: 0;
  }

  .effect .selected .countryName {
    display: block;
  }

  .effect__form-wrap {
    width: 50%;
  }

  .effect .price-block {
    text-align: left;
  }

  .effect .price-text {
    margin-right: 5px;
  }

  .effect .price-old {
    margin-right: 0;
    font-size: 14px;
  }

  .effect .price-old .price {
    font-size: 28px;
  }

  .effect .price-new {
    font-size: 14px;
  }

  .effect .price-new .price {
    font-size: 34px;
  }
}

@media (max-width: 639px) {
  .effect__item {
    width: 100%;
  }

  .effect__description br {
    display: none;
  }

  .effect__img::after {
    font-size: 80px;
    left: -75px;
  }

  .effect__subtitle {
    margin-bottom: 10px;
  }

  .effect__form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
  }

  .effect__form-wrap {
    width: 60%;
  }

  .effect__pack {
    width: 50%;
    margin-bottom: 10px;
  }
}

@media (max-width: 479px) {
  .effect__items {
    padding-bottom: 30px;
  }

  .effect__img,
  .effect__subtitle {
    margin-bottom: 15px;
  }

  .effect .price-text br,
  .effect__img::after {
    display: none;
  }

  .effect__subtitle {
    font-size: 20px;
  }

  .effect__form {
    padding: 10px;
  }

  .effect .form,
  .effect__form-wrap {
    width: 100%;
  }

  .effect__pack {
    width: 70%;
    margin-bottom: 10px;
  }

  .effect .price-text {
    font-size: 12px;
    line-height: 13px;
    margin-right: 12px;
  }

  .effect .price-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }

  .effect .price-old .price {
    font-size: 36px;
  }

  .effect .price-new .price {
    font-size: 46px;
  }

  .effect .form__input input {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

input::-ms-clear {
  display: none;
}

@media screen and (min-width: 280px) {
  .info {
    padding-top: 165px;
    padding-bottom: 100px;
    background: url(../img/bg-m.jpg);
    background-size: contain;

    position: relative;
  }
}

@media screen and (min-width: 480px) {
  .info {
    background: url(../img/bg.jpg) no-repeat center top;
    background-size: cover;
  }
}

.info__bwave,
.info__twave {
  position: absolute;
  width: 100%;
  left: 0;
  overflow: hidden;
}

.info__bwave {
  bottom: 0;
  background: url(../img/2.png) center top;
  height: 72px;
}

.info__twave {
  top: 0;
  height: 70px;
  background: url(../img/1.png) center bottom;
}

.info__subtitle {
  font-size: 18px;
  color: #444;
  line-height: 30px;
  text-align: center;
  max-width: 950px;
  margin: 30px auto 0;
}

.info__subtitle span {
  color: #000;
  font-weight: 600;
}

.info__bottle {
  margin-top: 38px;
  position: relative;
}

.info__bottle::after,
.info__bottle::before {
  content: '';
  background-color: #d8d6d6;
  height: 1.4px;
  width: calc(50% - 40px);
  position: absolute;
  top: calc(50% + 1px);
}

.info__bottle::after {
  left: 0;
}

.info__bottle::before {
  right: 0;
}

.info__conclusion,
.info__try {
  font-size: 24px;
  line-height: 30px;
  text-align: center;
}

.info__try {
  font-style: italic;
  max-width: 575px;
  margin: 13px auto 0;
}

.info__conclusion {
  margin-top: 35px;
  font-weight: 600;
}

.graph {
  max-width: 970px;
  margin: 34px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.graph__button {
  max-width: 310px;
  height: 60px;
  border-radius: 30px;
  padding: 0 20px;
  border: 2px solid #eaf0e8;
  background: #eaf0e8;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
  text-align: center;
  color: #444;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.graph__button span {
  position: relative;
  display: inline-block;
}

.graph__button span::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 1.4px;
  left: 0;
  bottom: -2px;
  background: 0 0;
  background: repeating-linear-gradient(90deg, #444 0, #444 2px, transparent 2px, transparent 4px);
}

.graph__button:hover {
  color: #000;
}

.graph__button.active {
  position: relative;
  font-weight: 600;
  border: 2px solid #436a33;
  background: #fff;
  color: #000;
}

.graph__button.active::after {
  content: '';
  position: absolute;
  width: 15px;
  height: 15px;
  z-index: 10;
  left: 46%;
  bottom: -9px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background: #fff;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: #436a33;
}

.graph__field {
  margin-top: 40px;
  background: #fff;
  padding: 47px 30px 42px;
  border-radius: 3px;
  -webkit-box-shadow: 2px 5px 10px rgba(1, 2, 2, 0.04);
  box-shadow: 2px 5px 10px rgba(1, 2, 2, 0.04);
}

.graph__row {
  height: 30px;
  position: relative;
}

.graph__row_r {
  border-top: 1px solid #e0e0e0;
  z-index: 5;
}

.graph__column {
  width: calc(100% / 3);
  margin: auto;
  height: 100%;
  position: relative;
}

.graph__column_center {
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}

.graph__vlegend {
  width: 50px;
}

.graph__vlegend span {
  font-size: 14px;
  color: #666;
  position: absolute;
  top: -8px;
  right: 19px;
}

.graph__vlegend span.final {
  top: auto;
  bottom: -6px;
}

.graph__table {
  width: calc(100% - 50px);
  min-height: 200px;
  position: relative;
}

.graph__hlegend {
  margin-left: 50px;
  width: calc(100% - 50px);
  height: 30px;
  border-top: 1px solid #e0e0e0;
  color: #000;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.graph__canvas {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  z-index: 4;
}

.graph__tower {
  position: absolute;
  bottom: 0;
  width: 17.5%;
  height: 0;
  -webkit-transition: height 0.5s;
  transition: height 0.5s;
  max-width: 150px;
  left: calc((100% / 3) / 2);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 6;
  color: #fff;
}

.graph__tower2 {
  left: calc((100% / 3) + ((100% / 3) / 2));
}

.graph__tower3 {
  left: calc((100% / 3) * 2 + ((100% / 3) / 2));
}

.graph__tower::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  top: -4px;
  left: 0;
  border-bottom: 4px solid #fff;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

.tab1 .graph__row_r:nth-child(odd),
.tab2 .graph__row_r:nth-child(odd) {
  border-color: transparent;
}

.graph .graph__column_one {
  background: rgba(67, 105, 51, 0.1);
}

.graph .graph__column_two {
  background-color: rgba(228, 146, 29, 0.1);
}

.graph .graph__column_three {
  background-color: rgba(228, 29, 29, 0.1);
}

.tab2 .graph__column_one {
  background-color: rgba(228, 146, 29, 0.1);
}

.tab2 .graph__column_two {
  background-color: rgba(234, 211, 58, 0.1);
}

.tab2 .graph__column_three {
  background-color: rgba(67, 106, 51, 0.1);
}

.tab1 .graph__column .c1,
.tab2 .graph__column .c2,
.tab3 .graph__column .c3 {
  font-size: 14px;
  -webkit-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.tab1 .graph__column .c2,
.tab1 .graph__column .c3,
.tab2 .graph__column .c1,
.tab2 .graph__column .c3,
.tab3 .graph__column .c1,
.tab3 .graph__column .c2 {
  font-size: 0;
}

.tab1 .graph__tower .c1,
.tab2 .graph__tower .c2,
.tab3 .graph__tower .c3 {
  font-size: 32px;
  -webkit-transition: font-size 0.5s;
  transition: font-size 0.5s;
}

.tab1 .graph__tower .c2,
.tab1 .graph__tower .c3,
.tab2 .graph__tower .c1,
.tab2 .graph__tower .c3,
.tab3 .graph__tower .c1,
.tab3 .graph__tower .c2 {
  font-size: 0;
}

.tab1 .graph__tower1 {
  height: 97%;
  background: -webkit-gradient(linear, left bottom, left top, from(#436a33), to(#5b834a));
  background: linear-gradient(to top, #436a33 0%, #5b834a 100%);
}

.tab1 .graph__tower1::after {
  border-bottom: 4px solid #436a33;
}

.tab1 .graph__tower2 {
  height: 77%;
  background: -webkit-gradient(linear, left bottom, left top, from(#e4921d), to(#eaa23b));
  background: linear-gradient(to top, #e4921d 0%, #eaa23b 100%);
}

.tab1 .graph__tower2::after {
  border-bottom: 4px solid #e4921d;
}

.tab1 .graph__tower3 {
  height: 61%;
  background: -webkit-gradient(linear, left bottom, left top, from(#b63045), to(#c6495d));
  background: linear-gradient(to top, #b63045 0%, #c6495d 100%);
}

.tab1 .graph__tower3::after {
  border-bottom: 4px solid #b63045;
}

.tab2 .graph__tower1 {
  height: 21%;
  background: -webkit-gradient(linear, left bottom, left top, from(#e4921d), to(#eaa23b));
  background: linear-gradient(to top, #e4921d 0%, #eaa23b 100%);
}

.tab2 .graph__tower1::after {
  border-bottom: 4px solid #e4921d;
}

.tab2 .graph__tower2 {
  height: 63%;
  background: -webkit-gradient(linear, left bottom, left top, from(#e4b31e), to(#ead33a));
  background: linear-gradient(to top, #e4b31e 0%, #ead33a 100%);
}

.tab2 .graph__tower2::after {
  border-bottom: 4px solid #e4b31e;
}

.tab2 .graph__tower3,
.tab3 .graph__tower1 {
  height: 97%;
  background: -webkit-gradient(linear, left bottom, left top, from(#436a33), to(#5b834a));
  background: linear-gradient(to top, #436a33 0%, #5b834a 100%);
}

.tab2 .graph__tower3::after,
.tab3 .graph__tower1::after {
  border-bottom: 4px solid #436a33;
}

.tab3 .graph__tower1 {
  height: 93%;
}

.tab3 .graph__tower2 {
  height: 25%;
  background: -webkit-gradient(linear, left bottom, left top, from(#e4921d), to(#eaa23b));
  background: linear-gradient(to top, #e4921d 0%, #eaa23b 100%);
}

.tab3 .graph__tower2::after {
  border-bottom: 4px solid #e4921d;
}

.tab3 .graph__tower3 {
  height: 15%;
  background: -webkit-gradient(linear, left bottom, left top, from(#b63045), to(#c6495d));
  background: linear-gradient(to top, #b63045 0%, #c6495d 100%);
}

.tab3 .graph__tower3::after {
  border-bottom: 4px solid #b63045;
}

.detailed {
  display: none;
}

.tab3 .detailed {
  display: block;
}

@media screen and (max-width: 1219px) {
  .info {
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .info__subtitle br {
    display: none;
  }

  .graph,
  .info__bottle,
  .info__conclusion,
  .info__subtitle {
    margin-top: 25px;
  }

  .graph__field {
    margin-top: 35px;
  }
}

@media screen and (max-width: 1023px) {

  .graph,
  .info__bottle,
  .info__conclusion,
  .info__subtitle {
    margin-top: 18px;
  }

  .graph__field {
    margin-top: 25px;
    padding: 32px 20px 24px;
  }

  .info__subtitle {
    font-size: 17px;
    line-height: 1.4;
  }

  .info__conclusion,
  .info__try {
    font-size: 22px;
    line-height: 1.2;
  }

  .tab1 .graph__tower .c1,
  .tab2 .graph__tower .c2,
  .tab3 .graph__tower .c3 {
    font-size: 24px;
  }

  .graph__button {
    max-width: 240px;
    height: auto;
    padding: 10px;
  }

  .graph__button span {
    display: inline;
  }

  .graph__button span::before {
    background: 0 0;
  }

  .graph__tower {
    width: 20%;
  }

  .info__bwave,
  .info__twave {
    display: none;
  }
}

@media screen and (max-width: 767px) {

  .graph,
  .info__bottle,
  .info__conclusion,
  .info__subtitle {
    margin-top: 15px;
  }

  .graph__field {
    margin-top: 21px;
  }

  .info__try {
    margin-top: 10px;
  }

  .info__try,
  .tab1 .graph__tower .c1,
  .tab2 .graph__tower .c2,
  .tab3 .graph__tower .c3 {
    font-size: 20px;
  }

  .info__conclusion {
    font-size: 18px;
  }

  .graph__button.active::after {
    display: none;
  }

  .graph {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  .graph__button {
    margin-bottom: 15px;
    max-width: 294px;
  }

  .graph__button:nth-child(3) {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 639px) {
  .info__try br {
    display: none;
  }

  .graph__button {
    margin-bottom: 10px;
    padding: 6px 16px;
  }

  .graph__column {
    text-align: center;
    height: 40px;
    padding: 5px;
  }
}

@media screen and (max-width: 479px) {

  .graph,
  .info__bottle,
  .info__conclusion,
  .info__subtitle {
    margin-top: 12px;
  }

  .graph__field {
    margin-top: 16px;
  }

  .info__subtitle {
    font-size: 16px;
  }

  .info__try {
    font-size: 19px;
  }

  .graph__vlegend {
    width: 30px;
  }

  .graph__vlegend span {
    right: 8px;
    top: -6px;
    font-size: 12px;
  }

  .graph__vlegend span.final {
    bottom: -4px;
  }

  .graph__table {
    width: calc(100% - 30px);
  }

  .graph__column {
    height: 100%;
  }

  .graph__field {
    padding: 24px 15px 16px;
  }

  .graph__hlegend {
    margin-left: 30px;
    height: 45px;
    width: calc(100% - 30px);
  }

  .tab1 .graph__column .c1,
  .tab2 .graph__column .c2,
  .tab3 .graph__column .c3 {
    text-align: center;
    font-size: 14px;
    -webkit-transition: none;
    transition: none;
  }

  .tab1 .graph__tower .c1,
  .tab2 .graph__tower .c2,
  .tab3 .graph__tower .c3 {
    font-size: 16px;
  }

  .graph__tower {
    width: 25%;
  }
}

.review {
  padding-top: 94px;
  padding-bottom: 73px;
}

.review__slider {
  max-width: 860px;
  margin: 58px auto 0;
  position: relative;
}

.sliderr,
.sliderr__item {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.sliderr {
  margin-bottom: 37px;
}

.sliderr__item {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 30px;
  margin: 15px;
  width: 100%;
  background: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 10px rgba(1, 2, 2, 0.1);
  box-shadow: 0 0 10px rgba(1, 2, 2, 0.1);
  position: relative;
}

.sliderr__item::before {
  content: '';
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 36px;
  background: url(../img/brackets.png) no-repeat center center;
}

.sliderr .slick-dots {
  bottom: -87px;
}

.sliderr .slick-dots li {
  width: 22px;
  height: 22px;
  margin: 0 4px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
}

.sliderr .slick-dots li button {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.sliderr .slick-dots li button::before {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  background: #d3d3d3;
  -webkit-transition: background 0.25s;
  transition: background 0.25s;
  opacity: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.sliderr .slick-dots li.slick-active button {
  background: #436a33;
}

.sliderr .slick-dots li.slick-active button::before {
  width: 10px;
  height: 10px;
  background: #fff;
}

.sliderr__arrow {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  top: 151px;
}

.sliderr__arrow svg {
  fill: #436a33;
  -webkit-transition: fill 0.5s;
  transition: fill 0.5s;
}

.sliderr__arrow:hover svg {
  fill: #ffc900;
}

.sliderr__arrow-prev {
  left: -37px;
}

.sliderr__arrow-next {
  right: -37px;
}

.sliderr__thumb {
  padding: 5px;
  position: absolute;
  background-color: #f3f4f1;
  border-radius: 3px;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  z-index: 2;
  cursor: pointer;
  top: 102px;
}

.sliderr__thumb img {
  max-width: 110px;
  border-radius: 3px;
}

.sliderr__thumb:hover {
  opacity: 1;
}

.sliderr__thumb-prev {
  left: -172px;
}

.sliderr__thumb-next {
  right: -172px;
}

.sliderr__frame {
  padding: 10px;
  border-radius: 3px;
  background: #f3f4f1;
}

.sliderr__frame img {
  max-width: 220px;
  border-radius: 3px;
}

.sliderr__info {
  width: calc(100% - 270px);
  margin-left: 30px;
  min-height: 20px;
  margin-top: 11px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.sliderr__info_name {
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  position: relative;
}

.sliderr__info_name::after {
  content: '';
  width: 1px;
  height: 24px;
  position: absolute;
  background: #d3d3d3;
  top: -1px;
  right: -18px;
}

.sliderr__info_grade {
  margin-left: 33px;
  height: 22px;
}

.sliderr__info_city {
  width: 100%;
  margin-top: 8px;
  padding-left: 3px;
  font-style: italic;
  font-size: 16px;
  color: #666;
}

.sliderr__info_motto {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 44px;
  position: relative;
}

.sliderr__info_text {
  position: relative;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  margin-top: 53px;
}

.sliderr__info_text::before {
  content: '';
  width: 45px;
  height: 5px;
  position: absolute;
  background: #ffc900;
  top: -26px;
  left: 0px;
}

.star {
  margin-right: 4px;
}

.star:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1409px) {
  .review {
    padding: 70px 0 60px;
  }

  .review__slider {
    margin: 45px auto 0;
  }

  .sliderr {
    margin-bottom: 10px;
  }

  .sliderr .slick-dots {
    bottom: -60px;
  }
}

@media screen and (max-width: 1239px) {
  .sliderr__thumb {
    display: none !important;
  }
}

@media screen and (max-width: 1219px) {
  .review {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .review__slider {
    margin-top: 30px;
  }

  .sliderr__item {
    padding: 28px;
  }

  .sliderr {
    margin-bottom: 30px;
  }

  .sliderr .slick-dots {
    bottom: -30px;
  }
}

@media screen and (max-width: 1023px) {
  .sliderr__item::before {
    display: none;
  }

  .sliderr__info_text {
    white-space: normal;
  }

  .review__slider {
    margin-top: 10px;
  }

  .sliderr__item {
    padding: 25px;
  }

  .sliderr__info_text {
    line-height: 1.5;
  }

  .review__slider {
    width: 90%;
  }

  .sliderr__frame img {
    max-width: 180px;
  }

  .sliderr__info {
    width: calc(100% - 220px);
    margin-left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .sliderr__info_name::after {
    display: none;
  }
  .sliderr__item {
    padding: 22px 26px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sliderr__info_text {
    text-align: center;
  }

  .sliderr__info {
    width: 100%;
    margin: 16px 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .sliderr__info_grade {
    display: none;
  }

  .sliderr__info_city {
    width: auto;
    height: 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    margin: 0 0 0 35px;
  }

  .sliderr__info_motto {
    margin-top: 34px;
    text-align: center;
    padding: 0 10px;
  }

  .sliderr__info_text {
    margin-top: 40px;
  }

  .sliderr__info_text::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .sliderr__info_motto::before {
    top: -17px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }

  .sliderr__frame img {
    max-width: 220px;
  }

  .sliderr__arrow-prev {
    left: -30px;
  }

  .sliderr__arrow-next {
    right: -30px;
  }

  .sliderr {
    margin-bottom: 30px;
  }

  .sliderr .slick-dots {
    bottom: -30px;
  }
}

@media screen and (max-width: 639px) {
  .sliderr__arrow-prev {
    left: -24px;
  }

  .sliderr__arrow-next {
    right: -24px;
  }

  .sliderr__info_name {
    font-size: 20px;
  }

  .sliderr__info_city {
    height: 20px;
    margin-left: 20px;
  }

  .sliderr__info_motto {
    font-size: 17px;
  }

  .sliderr__info_text {
    font-size: 16px;
    line-height: 1.4;
  }

  .sliderr__info_name::after {
    right: -10px;
  }
}

@media screen and (max-width: 479px) {
  .sliderr__arrow svg {
    width: 28px;
  }

  .review__slider {
    width: 100%;
  }

  .sliderr__frame img {
    max-height: 180px;
  }

  .sliderr__arrow-prev {
    left: 0;
  }

  .sliderr__arrow-next {
    right: 0;
  }

  .sliderr__info_name::after {
    display: none;
  }

  .sliderr__info_city {
    margin: 10px 0 0;
    width: 100%;
    text-align: center;
    padding: 0;
    display: block;
    height: auto;
  }

  .sliderr__info_motto {
    margin-top: 26px;
  }

  .sliderr__info_motto::before {
    top: -14px;
  }

  .sliderr__item {
    padding: 20px 10px;
    margin: 10px;
  }

  .sliderr .slick-dots li {
    margin: 0;
  }
}

@media screen and (min-width: 280px) {
  .use {
    padding-top: 188px;
    padding-bottom: 0;
    background: url(../img/bg-m.jpg);
    background-size: contain;

    position: relative;
  }
}

@media screen and (min-width: 480px) {
  .use {
    background: url(../img/bg.jpg) center top;
    background-size: 140% 100%;
  }
}

.use__bwave {
  bottom: 0;
  height: 104px;
  overflow: hidden;
  z-index: 4;
  background: url(../img/2.png) center top;
}

.use__bwave,
.use__bwave div,
.use__twave {
  position: absolute;
  width: 100%;
  left: 0;
}

.use__bwave div {
  bottom: 0;
  background: #fff;
  height: 25px;
}

.use__twave {
  top: 0;
  height: 82px;
  overflow: hidden;
  background: url(../img/1.png) center bottom;
}

.use__item,
.use__wrap {
  position: relative;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.use__wrap {
  margin: 83px auto 0;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  max-width: 1149px;
}

.use__item {
  width: 33%;
  max-width: 370px;
  min-height: 100px;
  z-index: 6;
}

.use__item-2 {
  top: -22px;
}

.use__item_pic {
  width: 240px;
  height: 240px;
  position: relative;
  margin-bottom: 5px;
}

.use__item_text {
  text-align: center;
  margin-top: -5px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 600;
  max-width: 320px;
  padding: 0 7px;
}

.use__item_text1 {
  padding-left: 0;
}

.use__item_arrow {
  width: 240px;
  height: 240px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  -webkit-animation: mouse 2s forwards linear;
  animation: mouse 2s forwards linear;
}

.use__item_arrow-1 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.use__item_arrow-2 {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.use__item_arrow-3 {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}

.order__map img,
.use__item_arrow-bad {
  position: absolute;
  top: 0;
  left: 64px;
}

.use__item_content {
  width: 202px;
  height: 202px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  z-index: 4;
  border: 1px solid #e0e2e2;
}

.use__item_counter {
  position: absolute;
  font-size: 60px;
  font-weight: 800;
  color: #436a33;
  z-index: 8;
  top: -9px;
  left: -20px;
}

.use__item_inner {
  width: 171px;
  height: 171px;
  background: #f3f4f1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.use__item_inner_hand {
  position: absolute;
  left: 0;
  top: 44px;
  z-index: 4;
}

.use__item_inner_pack {
  position: absolute;
  width: 112px;
  right: -24px;
  bottom: -32px;
  z-index: 2;
}

.use__item_inner_back {
  position: relative;
  right: 4px;
  width: 104px;
}

.use__separator {
  position: relative;
  margin-top: 45px;
}

.use__separator::after,
.use__separator::before {
  content: '';
  width: calc(50% - 15px);
  height: 1.4px;
  background: #d8d6d6;
  position: absolute;
  top: 0;
  display: block;
}

.use__separator::before {
  left: 0;
}

.use__separator::after {
  right: 0;
}

.use__frame {
  position: absolute;
  overflow: hidden;
  width: 600px;
  height: 74px;
  left: 50%;
  top: 43px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 4;
}

.use__frame_circle {
  border: 1px dotted #e0cae5;
  border-radius: 50%;
  width: 1480px;
  height: 1740px;
  position: absolute;
  top: 0;
  left: calc(50% - 740px);
}

.use__course {
  margin-top: 23px;
}

.use__course_svg {
  display: block;
}

.use__course_text {
  font-size: 24px;
  font-weight: 600;
  margin-left: 22px;
}

.use__course_pic {
  position: relative;
}

.use__course_days {
  color: #436a33;
  font-size: 24px;
  font-weight: 600;
  position: absolute;
  bottom: 9px;
  right: 14px;
}

.use__btn {
  margin: 57px auto 4px;
  width: 430px;
  height: 70px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0;
  position: relative;
  z-index: 12;
}

.use__btn,
.use__btn:hover {
  border-radius: 35px;
}

.svg-angle {
  stroke: #d8d6d6;
  stroke-width: 1;
}

@media screen and (max-width: 1409px) {
  .use {
    padding-top: 160px;
  }

  .use__wrap {
    margin: 70px auto 0;
  }

  .use__btn {
    margin: 40px auto 4px;
  }
}

@media screen and (max-width: 1219px) {
  .use__item_text {
    padding: 0;
    font-size: 18px;
  }

  .use {
    padding-top: 140px;
  }

  .use__wrap {
    margin-top: 75px;
  }

  .use__course_text {
    font-size: 22px;
  }
}

@media screen and (max-width: 1023px) {
  .use__item_text {
    font-size: 17px;
  }

  .use__item_counter {
    font-size: 50px;
  }

  .use__frame {
    display: none;
  }

  .use__wrap {
    margin-top: 40px;
  }

  .use__item-2 {
    top: auto;
  }

  .use__separator {
    margin-top: 30px;
  }

  .use__course {
    margin-top: 20px;
  }

  .use__btn {
    margin-top: 36px;
  }

  .use__bwave,
  .use__twave {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .use__wrap {
    margin-top: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
  }

  .use__item {
    width: 50%;
    margin-bottom: 15px;
  }

  .use__item:last-child {
    margin-bottom: 0;
  }

  .use__item_text {
    margin-top: -10px;
  }

  .use__btn {
    margin-top: 30px;
  }
}

@media screen and (max-width: 639px) {
  .use__item {
    width: 100%;
    margin-bottom: 20px;
  }

  .use__item:last-child {
    margin-bottom: 0;
  }

  .use__item_arrow {
    display: none;
  }

  .use__item_pic {
    width: 210px;
    height: 210px;
  }

  .use__item_text {
    margin-top: 5px;
    padding: 0 15px;
  }

  .use__course_text {
    width: 100%;
    margin: 10px 0 0;
    text-align: center;
  }

  .use__btn,
  .use__separator {
    margin-top: 24px;
  }

  .use__btn {
    width: 380px;
  }
}

@media screen and (max-width: 479px) {
  .use__btn {
    width: 100%;
    font-size: 24px;
    margin-top: 18px;
  }

  .use__wrap {
    margin-top: 20px;
  }

  .use__course_svg {
    max-width: 48px;
    height: auto;
  }

  .use__course_days {
    font-size: 22px;
    bottom: 7px;
    right: 11px;
  }

  .use__course_text {
    font-size: 16px;
    line-height: 1.2;
  }
}

.order {
  position: relative;
  padding-top: 94px;
  padding-bottom: 0;
  background: #fff;
  z-index: 20;
}

.order .wrapper {
  position: relative;
  z-index: 6;
}

.order__map {
  top: -97px;
  left: calc(50% + 253px);
  width: calc(50% - 253px);
  z-index: 5;
  overflow: hidden;
  position: absolute;
  height: 790px;
}

.order__map img {
  width: 1027px;
  max-width: 1027px;
  left: 0;
}

.order__item,
.order__wrap {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

.order__wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 68px;
}

.order__item {
  width: 100%;
  max-width: 370px;
  min-height: 20px;
}

.order__item_pic {
  width: 140px;
  height: 140px;
  background: #f7f8f2;
  border-radius: 50%;
  position: relative;
}

.order__item_pic11 {
  position: relative;
  top: 6px;
  left: 4px;
  z-index: 5;
}

.order__item_pic12 {
  position: absolute;
  width: 28px;
  height: 8px;
  border-radius: 3px;
  background: #ffc900;
  left: 50px;
  top: 81px;
  z-index: 3;
}

.order__item_pic21 {
  position: relative;
  left: 1px;
}

.order__item_pic22 {
  position: absolute;
  left: calc(50% - 10px);
  top: 39px;
}

.order__item_pic31 {
  position: relative;
  left: 2px;
}

.order__item_pic32 {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ffc900;
  border-radius: 50%;
  left: calc(50% - 10px);
  top: 31px;
}

.order__item_string {
  margin-left: 28px;
  width: calc(100% - 140px - 28px);
}

.order__item_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  margin-top: 3px;
}

.order__item_text {
  color: #444;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 9px;
}

.order__separator {
  position: relative;
  height: 41px;
  overflow: hidden;
  margin-top: 20px;
}

.order__circle {
  width: 2000px;
  height: 410px;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1000px);
  border: 1px solid #e8e8e7;
  border-radius: 50%;
}

.order__elements {
  max-width: 1100px;
  width: 100%;
  margin: 62px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.order__elements_left {
  width: 50%;
  background: #f8f8f8;
  border-radius: 3px;
  height: 57px;
  padding-left: 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.order__elements_left2 {
  max-width: 120px;
  color: #444;
  font-size: 14px;
  line-height: 18px;
  margin-left: 14px;
}

.order__elements_left3 {
  width: 1px;
  height: 28px;
  background: #d8d6d6;
  margin-right: 20px;
  margin-left: 19px;
}

.order__elements_left5 {
  max-width: 270px;
  color: #444;
  font-size: 14px;
  line-height: 18px;
  margin-left: 14px;
}

.order__elements_right {
  width: 50%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  font-size: 12px;
  line-height: 14px;
  color: #666;
  padding-top: 36px;
}

.order__elements_right div {
  text-align: center;
  position: relative;
}

.order__elements_right img {
  position: absolute;
  -webkit-transform: translate(-50%, -100%);
  transform: translate(-50%, -100%);
  left: 50%;
  top: -6px;
}

.order__elements_right5 {
  margin-left: 44px;
}

.order__elements_right4 {
  margin-left: 57px;
}

.order__elements_right4 img {
  top: -3px;
}

.order__elements_right3 {
  width: 80px;
  margin-left: 54px;
}

.order__elements_right2 {
  margin-left: 40px;
}

.order__elements_right1 {
  font-size: 15px;
  top: -24px;
  color: #444;
}

@media screen and (max-width: 1409px) {
  .order {
    padding-top: 70px;
  }

  .order__wrap {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1219px) {
  .order {
    padding-top: 50px;
    padding-bottom: 0;
  }

  .order__wrap {
    margin-top: 40px;
  }

  .order__item {
    width: 320px;
  }

  .order__item_string {
    margin-left: 12px;
    width: calc(100% - 140px - 12px);
  }

  .order__item_title {
    font-size: 18px;
    line-height: 1.2;
  }

  .order__item_text {
    font-size: 16px;
    line-height: 1.4;
  }

  .order__elements_right {
    width: 47%;
  }

  .order__elements_left {
    width: 53%;
    padding-left: 12px;
  }

  .order__elements_right1 {
    margin-left: 0;
  }

  .order__elements_right2,
  .order__elements_right3,
  .order__elements_right4,
  .order__elements_right5 {
    margin-left: 30px;
  }

  .order__elements_left3 {
    margin-left: 5px;
    margin-right: 10px;
  }

  .order__elements_left5 {
    margin-left: 10px;
  }

  .order__elements {
    margin-top: 50px;
  }
}

@media screen and (max-width: 1023px) {
  .order__map {
    display: none;
  }

  .order__elements {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 36px;
  }

  .order__elements_left {
    max-width: 570px;
  }

  .order__elements_right {
    margin-top: 20px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    padding-top: 0;
  }

  .order__elements_right1 {
    width: 100%;
    top: auto;
    margin-bottom: 48px;
  }

  .order__elements_right2 {
    margin-left: 0;
  }

  .order__elements_left,
  .order__elements_right {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .order__elements_left3 {
    margin-left: 15px;
    margin-right: 20px;
  }

  .order__elements_left5 {
    margin-left: 20px;
  }

  .order__item_string {
    width: 100%;
    margin: 8px 0 0;
    text-align: center;
  }

  .order__item_title {
    margin-top: 0;
  }

  .order__item_text {
    margin-top: 4px;
  }

  .order__wrap {
    margin-top: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .order__item {
    max-width: 245px;
  }

  .order__separator {
    margin-top: 0;
  }
}

@media screen and (max-width: 767px) {
  .order__separator {
    height: 30px;
  }

  .order__item {
    max-width: 195px;
  }

  .order__elements {
    margin-top: 28px;
  }

  .order__elements_right {
    margin-top: 16px;
  }
}

@media screen and (max-width: 639px) {
  .order__item {
    width: 100%;
    max-width: 100%;
  }

  .order__item_string {
    width: calc(100% - 160px);
    margin: 0 0 0 20px;
  }

  .order__wrap {
    margin-top: 25px;
  }

  .order__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-bottom: 30px;
  }

  .order__item:last-child {
    margin-bottom: 0;
  }

  .order__elements_left3 {
    height: 0;
    width: 100%;
  }

  .order__elements_left {
    height: auto;
    padding: 10px 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }

  .order__elements_left2 {
    max-width: 240px;
    line-height: 28px;
    margin-left: 22px;
    margin-bottom: 8px;
  }

  .order__elements_left1 {
    margin-bottom: 8px;
  }

  .order__elements_left5 {
    margin-left: 40px;
  }
}

@media screen and (max-width: 479px) {
  .order__wrap {
    margin-top: 18px;
  }

  .order__item_string {
    width: 100%;
    margin: 10px 0 0;
  }

  .order__elements {
    margin-top: 20px;
  }

  .order__elements_left {
    padding: 10px 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .order__elements_left1,
  .order__elements_left4 {
    margin-bottom: 5px;
  }

  .order__elements_left2 {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0 0 10px;
    line-height: 1;
  }

  .order__elements_left5 {
    margin: 0;
    text-align: center;
  }

  .order__elements_right3,
  .order__elements_right4,
  .order__elements_right5 {
    margin-left: 10px;
  }
}

.header2 {
  padding-top: 179px;
  padding-bottom: 106px;
  margin-bottom: 128px;
}

.header2::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 110px;
  top: 0;
  left: 0;
  background: url('../img/1.png') center bottom;
  z-index: 11;
}

.header2 .header__right {
  top: 10px;
  left: calc(50% + 154px);
  height: 938px;
}

.header2 .header__right.pseudo::after,
.header2 .header__right.pseudo::before {
  top: 72%;
}

.header2 .header__items {
  max-width: 640px;
}

.header2 .header__item {
  max-width: 180px;
  margin-right: 20px;
}

.header2 .header__title {
  margin-bottom: 57px;
}

.header2 .header__item:nth-child(1)::before {
  background: url('../img/header-item_plus.png') no-repeat center;
}

/*@media screen and (min-width: 0\0*/
/*) and (max-width: 1459px) {*/
/*.header2 {*/
/*margin-bottom: 150px !important*/
/*}*/
/*}*/

@media screen and (max-width: 1409px) {
  .header2 .header__right {
    top: -10px;
  }

}

@media screen and (max-width: 1399px) {
  .header2 {
    padding-top: 160px;
    margin-bottom: 70px;
  }

  .header2::after {
    height: 90px;
  }

  .header2 .header__right {
    top: -30px;
  }
}

@media screen and (max-width: 1219px) {
  .header2 {
    margin-bottom: 20px;
  }

  .header2 {
    padding-top: 150px;
  }
}

@media screen and (max-width: 1023px) {
  .header2 {
    margin-bottom: 0;
  }

  .header2 .header__right {
    top: 300px;
  }

  .header2::after {
    display: none;
  }

  .header2 .header__items {
    max-width: 100%;
  }

  .header2 .header__title {
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  .header2 .header__right {
    top: 275px;
  }
}

@media screen and (max-width: 639px) {
  .header2 .header__right {
    top: 245px;
  }
}

@media screen and (max-width: 479px) {
  .header2 .header__right {
    top: 305px;
  }
}

.ev-footer__logo svg {
  width: 100%;
  height: 100%;
}

.ev-footer__link {
  font-size: 16px;
  line-height: 24px;
}

.ever-popup__close {
  top: 19px !important;
  right: 19px !important;
  width: 28px !important;
  height: 24px !important;
}

.ever-popup__close:after,
.ever-popup__close:before {
  background-color: #b63045 !important;
  width: 30px !important;
  height: 2px !important;
}

.ever-popup__inner {
  /* margin: auto !important; */
  padding-top: 0 !important;
}

.ever-popup.show {
  /* display: flex !important; */
}

.poop {
  width: 850px;
  height: 482px;
  background: #fff;
  border-radius: 3px;
}

.poop__title {
  font-size: 40px;
  line-height: 40px;
  text-align: left;
  margin-bottom: 85px;
}

.poop__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.poop__form-wrap::before {
  width: 45px;
  height: 5px;
  top: -30px;
}

.poop__left {
  padding: 34px 49px 30px 49px;
}

.poop__right {
  width: 400px;
  height: 482px;
  background: #f4f5ef;
  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;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.poop__pack {
  width: 255px;
  position: relative;
  bottom: -20px;
}

.ever-popup-build {
  position: relative;
}

@media screen and (max-width: 1023px) {
  .poop {
    width: 600px !important;
    height: auto;
  }

  .ever-popup__inner {
    padding-top: 35px !important;
    /* margin: auto !important; */
  }

  .poop__form-wrap {
    margin: 0 auto;
  }

  .poop__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .poop__title {
    text-align: center;
    margin-bottom: 20px;
  }

  .poop__left {
    width: 100%;
    padding: 30px 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .poop__right {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    height: auto;
    padding: 20px 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border-bottom-right-radius: 0;
  }

  .poop__pack {
    width: 160px;
    left: 0;
    bottom: 0;
  }

  .ever-popup__close {
    top: 8px !important;
    right: 0 !important;
  }
}

@media screen and (max-width: 639px) {
  .poop {
    width: 290px !important;
    height: auto;
  }

  .poop .custom-select {
    width: 80%;
    height: 34px;
    margin: 0 auto 15px;
  }

  .poop .option-text,
  .poop .selected .countryName {
    display: block;
  }

  .poop .options.opened {
    width: 90%;
  }

  .poop .option {
    width: 100%;
    background-position: 10px !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 17px;
    color: #666;
    padding-left: 50px;
    background-color: rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(102, 102, 102, 0.3);
    height: 43px;
  }

  .poop .form__inputs,
  .poop__wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .poop__title {
    font-size: 28px;
    line-height: 1;
  }

  .poop .form__input {
    width: 80%;
    margin: 0 auto 15px;
  }

  .poop .form__input:nth-child(2) {
    margin-bottom: 15px;
  }

  .poop .form__input input {
    padding-bottom: 5px;
    padding-left: 50px;
  }

  .poop .form__input::before {
    left: 14px;
  }

  .poop__left {
    padding: 10px 0 20px;
  }

  .poop .price-text br,
  .poop__right {
    display: none;
  }

  .poop__pack {
    width: 160px;
  }

  .poop .price-text {
    font-size: 12px;
    margin-right: 5px;
  }

  .poop .price-new,
  .poop .price-old {
    font-size: 14px;
  }

  .poop .price-old .price {
    font-size: 34px;
  }

  .poop__btn {
    width: 80%;
    height: 40px;
    font-size: 18px;
    margin: 0 auto;
  }

  .poop .price-new .price {
    font-size: 43px;
  }

  .poop .price-block {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .poop .price-new,
  .poop .price-old {
    max-width: 100%;
    width: auto;
  }

  .poop .price-old {
    margin-bottom: 5px;
  }

  .ever-popup__close {
    top: 8px !important;
    right: 0 !important;
  }
}

@media screen and (max-width: 1023px) {
  .block {
    padding: 40px 0;
  }
}

@media screen and (max-width: 767px) {
  .block {
    padding: 30px 0;
  }
}

@media screen and (max-width: 479px) {
  .block {
    padding: 25px 0;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .header2 .header__right.pseudo::before {
    left: calc(42% - 375px);
    top: calc(72% - 375px);
    transform: none;
  }

  .header2 .header__right.pseudo::after {
    left: calc(42% - 290px);
    top: calc(72% - 290px);
    transform: none;
  }

  .selected {
    background-position: 10px 3px;
  }
}

@media screen and (max-width: 767px) {
  .poop__right {
    display: none;
  }

  .price-block {
    max-width: 180px;
  }

  .how__title {
    font-size: 32px;
  }
}

@media screen and (max-width: 639px) {
  .how__title {
    font-size: 29px;
  }
}

@media screen and (max-width: 479px) {
  .ways__item4 svg {
    margin-top: 0;
  }

  .how__title {
    font-size: 26px;
  }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
  .ever-popup__body~.ever-popup__body {
    display: none;
  }
}

.footer {
  padding: 20px 0;
}

.footer-date {
  font-size: 16px;
  text-align: center;
}