@import url(css2.css);
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.green-audio-player {
  width: 400px;
  min-width: 300px;
  height: 56px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.07);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.green-audio-player.player-accessible .controls:hover,
.green-audio-player.player-accessible .download:hover,
.green-audio-player.player-accessible .play-pause-btn:hover,
.green-audio-player.player-accessible .volume__button:hover,
.green-audio-player.player-accessible .volume__controls:hover {
  outline: 1px dotted #999;
}

.green-audio-player img,
.green-audio-player svg {
  display: block;
}

.green-audio-player .holder {
  position: relative;
}

.green-audio-player .holder .loading .loading__spinner {
  position: absolute;
  left: -3px;
  bottom: 2px;
  width: 16px;
  height: 16px;
  border: 2px solid #b0b0b0;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spin 0.4s linear infinite;
  animation: spin 0.4s linear infinite;
}

.green-audio-player .holder .play-pause-btn {
  visibility: hidden;
  cursor: pointer;
  outline: none;
}

.green-audio-player .holder .play-pause-btn:focus {
  outline: none;
}

.green-audio-player .slider {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  background-color: #d8d8d8;
  cursor: pointer;
  position: relative;
}

.green-audio-player .slider .gap-progress {
  background-color: #44bfa3;
  border-radius: inherit;
  position: absolute;
  pointer-events: none;
}

.green-audio-player .slider .gap-progress .pin {
  height: 16px;
  width: 16px;
  border-radius: 8px;
  background-color: #44bfa3;
  position: absolute;
  pointer-events: all;
  -webkit-box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.32);
}

.green-audio-player .slider .gap-progress .pin:after {
  content: "";
  display: block;
  background: transparent;
  width: 200%;
  height: 200%;
  margin-left: -50%;
  margin-top: -50%;
  border-radius: 50%;
}

.green-audio-player .controls {
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #55606e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  outline: none;
}

.green-audio-player .controls .controls__slider {
  margin-left: 16px;
  margin-right: 16px;
  border-radius: 2px;
  height: 4px;
}

.green-audio-player .controls .controls__slider .controls__progress {
  width: 0;
  height: 100%;
}

.green-audio-player
  .controls
  .controls__slider
  .controls__progress
  .progress__pin {
  right: -8px;
  top: -6px;
}

.green-audio-player .controls span {
  cursor: default;
}

.green-audio-player .controls:focus {
  outline: none;
}

.green-audio-player .volume {
  position: relative;
}

.green-audio-player .volume .volume__button {
  cursor: pointer;
  outline: none;
}

.green-audio-player .volume .volume__button:focus {
  outline: none;
}

.green-audio-player .volume .volume__button.open path {
  fill: #44bfa3;
}

.green-audio-player .volume .volume__controls {
  width: 30px;
  height: 135px;
  background-color: rgba(0, 0, 0, 0.62);
  border-radius: 7px;
  position: absolute;
  left: -3px;
  bottom: 52px;
  -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;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  outline: none;
}

.green-audio-player .volume .volume__controls .volume__slider {
  margin-top: 12px;
  margin-bottom: 12px;
  width: 6px;
  border-radius: 3px;
}

.green-audio-player
  .volume
  .volume__controls
  .volume__slider
  .volume__progress {
  bottom: 0;
  height: 100%;
  width: 6px;
}

.green-audio-player
  .volume
  .volume__controls
  .volume__slider
  .volume__progress
  .volume__pin {
  left: -5px;
  top: -8px;
}

.green-audio-player .volume .volume__controls:focus {
  outline: none;
}

.green-audio-player .volume .volume__controls.hidden {
  display: none;
}

.green-audio-player .volume .volume__controls.top {
  bottom: 52px;
  left: -3px;
}

.green-audio-player .volume .volume__controls.middle {
  bottom: -54px;
  left: 54px;
}

.green-audio-player .volume .volume__controls.bottom {
  bottom: -164px;
  left: -3px;
}

.green-audio-player .download {
  display: none;
  margin-left: 16px;
  cursor: pointer;
  outline: none;
}

.green-audio-player .download:focus,
.green-audio-player:focus {
  outline: none;
}

.message__offscreen {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.container-fluid {
  width: 100%;
}

@media (min-width: 1600px) {
  .container-fluid {
    max-width: 192rem;
    margin: 0 auto;
  }
}

.container {
  width: 100%;
  max-width: 122rem;
  margin: 0 auto;
}

.display-mobile {
  display: block;
}

@media (min-width: 768px) {
  .display-mobile {
    display: none !important;
  }
}

.display-desktop {
  display: none;
}

@media (min-width: 768px) {
  .display-desktop {
    display: block !important;
  }
}

.text-bold {
  font-weight: 700;
}

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

html {
  font-family: "Work Sans", sans-serif;
  font-family: "Inter", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #04042b;
}

@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}

section {
  padding: 0 1.5rem;
}

@media (min-width: 992px) {
  section {
    padding: 0 2rem;
  }
}

@media (min-width: 1360px) {
  section {
    padding: 0;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

h1 {
  font-size: 2.2rem;
  line-height: 3.2rem;
  letter-spacing: -1.2px;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3.2rem;
    line-height: 4.5rem;
  }
}

@media (min-width: 1200px) {
  h1 {
    font-size: 4.2rem;
    line-height: 5.8rem;
  }
}

h2 {
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h2 {
    font-size: 4.2rem;
    line-height: 4.8rem;
    font-weight: 800;
  }
}

h3 {
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  h3 {
    font-size: 2.6rem;
    line-height: 3.2rem;
  }
}

h5 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  h5 {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}

p {
  font-size: 1.6rem;
  line-height: 2.2rem;
  font-weight: 400;
}

@media (min-width: 768px) {
  p {
    font-size: 1.8rem;
    line-height: 3.2rem;
  }
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

input,
textarea {
  font-size: 16px;
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA")
    format("woff");
  font-weight: 400;
  font-style: normal;
}

:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-container-3d {
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #fff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-container-horizontal.swiper-container-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-container-rtl
  .swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #fff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000;
}

.swiper-pagination-lock {
  display: none;
}

.audio__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .audio__wrap {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
}

@media (min-width: 1600px) {
  .audio__wrap {
    padding: 0 3rem;
  }
}

.audio__wrap .green-audio-player {
  width: 100%;
  min-width: 23rem;
  max-width: 40rem;
  margin: 0 auto 2rem;
  padding: 3.3rem 2rem;
  background-color: #fff;
  border-radius: 11px;
}

@media (min-width: 768px) {
  .audio__wrap .green-audio-player {
    width: 28%;
    margin: 0 5px;
    margin-bottom: 0;
  }
}

.audio__wrap .green-audio-player .play-pause-btn {
  background-color: #002054;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio__wrap .green-audio-player .play-pause-btn svg {
  width: 9px !important;
  height: 15px !important;
}

.audio__wrap .green-audio-player .play-pause-btn path {
  fill: #e8eff3;
}

.audio__wrap .green-audio-player .controls {
  color: #002054;
  margin-right: 10px !important;
  margin-left: 10px;
  font-size: 13px;
}

.audio__wrap .green-audio-player .controls .slider {
  background-color: #002054;
}

.audio__wrap .green-audio-player .controls .slider .gap-progress {
  background-color: #002054;
}

.audio__wrap
  .green-audio-player
  .controls
  .controls__slider
  .controls__progress
  .progress__pin {
  top: -4px;
}

.audio__wrap .green-audio-player .controls .progress__pin {
  height: 11px;
  width: 11px;
  border-radius: 0;
  background-color: #002054;
}

.audio__wrap .green-audio-player .volume {
  display: block !important;
}

.audio__wrap .green-audio-player .volume__button path {
  fill: #002054;
}

.audio__wrap .green-audio-player .volume .open path {
  fill: #002054;
}

.audio__wrap .green-audio-player .slider .gap-progress {
  background-color: #002054;
}

.audio__wrap .green-audio-player .slider .gap-progress .pin {
  background-color: #002054;
}

.sticky {
  display: none;
}

@media (min-width: 1780px) {
  .sticky {
    display: block;
  }
}

.sticky__content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 3;
  margin: 1rem;
  bottom: 1rem;
  right: 4rem;
  cursor: pointer;
}

.sticky__content .icon {
  width: 17.8rem;
  height: 22.4rem;
}

.delivery-wrap {
  background-color: #f5a114;
  font-family: "Nunito Sans", sans-serif;
  -webkit-box-shadow: 0px 2px 10px 2px rgba(87, 61, 28, 0.5);
  box-shadow: 0px 2px 10px 2px rgba(87, 61, 28, 0.5);
}

.delivery {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}

@media (min-width: 576px) {
  .delivery {
    padding-top: 1rem;
  }
}

.delivery__img {
  width: 3.4rem;
  padding-top: 0.5rem;
}

@media (min-width: 576px) {
  .delivery__img {
    width: 4.6rem;
    padding-top: 0;
  }
}

.delivery__desc {
  width: calc(100% - 5rem);
}

@media (min-width: 576px) {
  .delivery__desc {
    width: calc(100% - 9rem);
    text-align: center;
  }
}

.delivery__desc-title {
  display: block;
  font-size: 1.4rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  font-weight: 800;
}

@media (min-width: 576px) {
  .delivery__desc-title {
    display: inline;
  }
}

@media (min-width: 768px) {
  .delivery__desc-title {
    font-size: 1.7rem;
    line-height: 2rem;
  }
}

@media (min-width: 992px) {
  .delivery__desc-title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

.delivery__desc-content {
  font-size: 1.2rem;
  line-height: 1.6rem;
}

@media (min-width: 768px) {
  .delivery__desc-content {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

@media (min-width: 992px) {
  .delivery__desc-content {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
}

.delivery__desc-content--block {
  display: block;
}

@media (min-width: 576px) {
  .delivery__desc-content--block {
    display: inline;
  }
}

@media (min-width: 768px) {
  .delivery__desc-content--block {
    font-size: 1.7rem;
    line-height: 2rem;
  }
}

@media (min-width: 992px) {
  .delivery__desc-content--block {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}

.section-1 {
  background-image: url(../img/abd2e2bae108922cc0bc56b73a23af19.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #fff;
  padding: 1rem 0.5rem 1rem;
}

@media (min-width: 325px) {
  .section-1 {
    padding-bottom: 2rem;
  }
}

@media (min-width: 425px) {
  .section-1 {
    padding: 1rem 5.5rem 2rem;
  }
}

@media (min-width: 768px) {
  .section-1 {
    background-image: url(../img/d7d41aa060b95e7262569e21e675eff3.png);
    padding-top: 2rem;
  }
}

@media (min-width: 992px) {
  .section-1 {
    padding-top: 3rem;
  }
}

@media (min-width: 1600px) {
  .section-1 {
    padding-bottom: 5rem;
  }
}

.section-1__header {
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-1__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .section-1__header {
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .section-1__header {
    padding-bottom: 3.5rem;
  }
}

.section-1__header-img {
  width: 20rem;
  margin: 0 auto;
}

@media (min-width: 1360px) {
  .section-1__header-img {
    width: 33rem;
  }
}

@media (min-width: 768px) {
  .section-1__header-nav {
    display: flex !important;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    font-weight: 700;
  }
  .section-1__header-nav .nav-item {
    width: 9.6rem;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-align: center;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .section-1__header-nav .nav-item {
    width: 100%;
    font-size: 1.6rem;
  }
}

@media (min-width: 768px) and (min-width: 1360px) {
  .section-1__header-nav .nav-item {
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .section-1__header-nav .nav-item a {
    color: #04042b;
    transition: 0.3s;
  }
  .section-1__header-nav .nav-item a:hover {
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #04042b;
  }
}

.section-1__header-btn {
  width: 22rem;
  font-size: 1.4rem;
  padding: 1.5rem 2rem;
  border-radius: 1.1rem;
  border-bottom-right-radius: 4rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #258b46;
  transition: 0.3s;
  cursor: pointer;
}

.section-1__header-btn:hover {
  background-color: #334561;
  -webkit-box-shadow: inset 0px 0px 0px 4px #ffda10;
  box-shadow: inset 0px 0px 0px 4px #ffda10;
}

@media (min-width: 1200px) {
  .section-1__header-btn {
    font-size: 1.6rem;
    width: 23rem;
    padding: 1.7rem 1.5rem;
  }
}

@media (min-width: 1360px) {
  .section-1__header-btn {
    font-size: 2rem;
    width: 28rem;
  }
}

.section-1__title {
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-1__title {
    padding-bottom: 0;
  }
}

.section-1__product {
  padding-bottom: 2rem;
}

@media (min-width: 576px) {
  .section-1__product {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 90%;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .section-1__product {
    padding-bottom: 0;
  }
}

@media (min-width: 992px) {
  .section-1__product {
    width: 80%;
  }
}

@media (min-width: 1200px) {
  .section-1__product {
    width: 70%;
  }
}

.section-1__product-img {
  width: 100%;
  max-width: 18rem;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .section-1__product-img {
    width: 30%;
    max-width: 25rem;
  }
}

@media (min-width: 1200px) {
  .section-1__product-img {
    width: 50%;
    max-width: 31.6rem;
  }
}

.section-1__product-list {
  margin-left: 3rem;
  width: 70%;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .section-1__product-list {
    margin: 0;
    margin-left: 3rem;
  }
}

@media (min-width: 1200px) {
  .section-1__product-list {
    margin-left: 7rem;
  }
}

.section-1__product-list .list-item {
  position: relative;
  margin-bottom: 1.5rem;
  line-height: 2.2rem;
}

@media (min-width: 768px) {
  .section-1__product-list .list-item {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 992px) {
  .section-1__product-list .list-item {
    font-size: 2.2rem;
    line-height: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .section-1__product-list .list-item {
    font-size: 2.4rem;
    line-height: 2.8rem;
  }
}

.section-1__product-list .list-item:last-child {
  margin-bottom: 0;
}

.section-1__product-list .list-item::before {
  position: absolute;
  content: "";
  background-image: url(../img/01e0d247214cdf54fb6a299469bc940e.svg);
  background-size: 2.5rem 2.8rem;
  top: 0rem;
  left: -3rem;
  width: 2.5rem;
  height: 2.8rem;
}

@media (min-width: 576px) {
  .section-1__product-list .list-item::before {
    top: -0.2rem;
  }
}

@media (min-width: 1200px) {
  .section-1__product-list .list-item::before {
    background-size: 4rem 4.5rem;
    top: -0.8rem;
    left: -5.5rem;
    width: 4rem;
    height: 4.5rem;
  }
}

.section-1__sale-wrap {
  background: url(../img/976546595c415386b90c3b01e85d984b.png) no-repeat center;
  background-size: cover;
  border-radius: 1.7rem;
  padding: 2rem 1rem 1.5rem;
  width: 100%;
  max-width: 58rem;
  margin: 0 auto;
}

@media (min-width: 576px) {
  .section-1__sale-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 768px) {
  .section-1__sale-wrap {
    background: url(../img/5244d7d984cd23f61e71eb7f1568a963.png) no-repeat
      center;
    background-size: 100% 100%;
    max-width: 100%;
    padding: 2rem 1rem;
  }
}

@media (min-width: 768px) {
  .section-1__sale {
    display: flex;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .section-1__sale {
    align-items: flex-start;
  }
}

.section-1__sale .buy__timer {
  background: rgba(51, 69, 97, 0.34);
  border-radius: 1.2rem;
  padding: 1rem;
  text-align: center;
  color: #fff;
}

@media (min-width: 992px) {
  .section-1__sale .buy__timer {
    padding: 2rem 1rem;
  }
}

.section-1__sale .buy__timer .buy__timer-title {
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  line-height: 3.2rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .section-1__sale .buy__timer .buy__timer-title {
    margin-bottom: 1rem;
    font-size: 2.6rem;
  }
}

.section-1__sale .buy__timer .timer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: 0 auto;
  font-weight: 800;
}

@media (min-width: 992px) {
  .section-1__sale .buy__timer .timer {
    width: 90%;
  }
}

.section-1__sale .buy__timer .timer span {
  width: 30%;
}

@media (min-width: 992px) {
  .section-1__sale .buy__timer .timer span {
    font-size: 2.8rem;
  }
}

@media (min-width: 768px) {
  .section-1__sale-buy {
    width: 37%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .section-1__sale-buy {
    width: 35%;
  }
}

.section-1__sale-buy .buy__text {
  text-align: center;
  color: #fff;
}

.section-1__sale-buy .buy__text-title {
  margin-bottom: 1rem;
  font-size: 2.2rem;
  line-height: 2.2rem;
  text-transform: uppercase;
  font-weight: 800;
}

@media (min-width: 992px) {
  .section-1__sale-buy .buy__text-title {
    font-size: 2.9rem;
    line-height: 4.4rem;
  }
}

@media (min-width: 1360px) {
  .section-1__sale-buy .buy__text-title {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
}

.section-1__sale-buy .buy__text-subtitle {
  margin-bottom: 1.5rem;
  color: #04042b;
  font-weight: 600;
}

@media (min-width: 768px) {
  .section-1__sale-buy .buy__text-subtitle {
    font-size: 2.4rem;
    font-weight: 400;
  }
}

@media (min-width: 1360px) {
  .section-1__sale-buy .buy__text-subtitle {
    font-size: 2.8rem;
    line-height: 3.8rem;
  }
}

.section-1__sale-buy .buy__text-price {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-end;
  height: 5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .section-1__sale-buy .buy__text-price {
    margin-bottom: 3.5rem;
  }
}

.section-1__sale-buy .buy__text-price .price-old {
  font-size: 2rem;
  line-height: 3.8rem;
  font-weight: 800;
  color: #d3d3d3;
  text-decoration: line-through;
}

@media (min-width: 992px) {
  .section-1__sale-buy .buy__text-price .price-old {
    font-size: 3.2rem;
  }
}

@media (min-width: 1360px) {
  .section-1__sale-buy .buy__text-price .price-old {
    font-size: 4.2rem;
  }
}

.section-1__sale-buy .buy__text-price .price-new {
  font-size: 3.2rem;
  line-height: 4.8rem;
  font-weight: 800;
  letter-spacing: -1.2px;
  color: #ffda10;
}

@media (min-width: 992px) {
  .section-1__sale-buy .buy__text-price .price-new {
    font-size: 4.2rem;
  }
}

@media (min-width: 1360px) {
  .section-1__sale-buy .buy__text-price .price-new {
    font-size: 5.2rem;
    line-height: 4.8rem;
  }
}

@media (min-width: 768px) {
  .section-1__sale-form {
    width: 37%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .section-1__sale-form {
    width: 35%;
  }
}

.section-1__sale-partners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .section-1__sale-partners {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 87%;
    margin: 2rem auto 0;
  }
}

.section-1__sale-partners .partners-item {
  max-height: 3rem;
  margin: 0.5rem;
}

@media (min-width: 375px) {
  .section-1__sale-partners .partners-item {
    max-height: 4rem;
  }
}

@media (min-width: 768px) {
  .section-1__sale-partners .partners-item {
    width: 7rem;
    max-height: 3.9rem;
  }
}

@media (min-width: 992px) {
  .section-1__sale-partners .partners-item {
    width: 9rem;
    max-height: 5rem;
    margin: 1rem;
  }
}

@media (min-width: 1200px) {
  .section-1__sale-partners .partners-item {
    width: 11.4rem;
    max-height: 6.5rem;
  }
}

.section-2__wrap {
  background-image: url(../img/f6aa146104a9113c79cbf34b5805c2c8.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-top: 15rem;
  padding-bottom: 4rem;
  margin-bottom: -1px;
}

@media (min-width: 325px) {
  .section-2__wrap {
    padding-top: 1rem;
  }
}

@media (min-width: 768px) {
  .section-2__wrap {
    background-image: url(../img/c9dcac13885128c37083f70b3080639d.png);
    background-position: center;
    padding-top: 15rem;
    padding-bottom: 9rem;
  }
}

@media (min-width: 1600px) {
  .section-2__wrap {
    padding-top: 20rem;
  }
}

.section-2 {
  color: #fff;
  text-align: center;
}

.section-2__title {
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
}

.section-2__content {
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-2__content {
    margin-bottom: 7rem;
  }
}

.section-2__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  max-width: 58rem;
  margin: 0 auto 2.5rem;
  gap: 2.5rem 4rem;
}

@media (min-width: 768px) {
  .section-2__gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    row-gap: 7rem;
    max-width: 100%;
  }
}

@media (min-width: 1200px) {
  .section-2__gallery {
    padding-left: 10rem;
    padding-right: 10rem;
  }
}

.section-2__gallery-item .item__img {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  max-width: 17.8rem;
}

@media (min-width: 768px) {
  .section-2__gallery-item .item__img {
    margin-bottom: 3rem;
  }
}

.section-2__gallery-item .item__text {
  font-weight: 700;
  text-transform: uppercase;
}

.section-3__wrap {
  background-image: url(../img/566983c4358382189e71e04915387a20.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-top: 3rem;
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .section-3__wrap {
    background-image: url(../img/bece48dcfa6b52c9251fd67d602a3aa9.png);
    background-position: center;
    padding-top: 0;
    padding-bottom: 6rem;
  }
}

.section-3 {
  color: #fff;
  text-align: center;
}

.section-3__title {
  margin-bottom: 5.5rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-3__title {
    line-height: 5.8rem;
  }
}

.section-3__content {
  margin-bottom: 3rem;
  color: #04042b;
}

@media (min-width: 768px) {
  .section-3__content {
    margin-bottom: 7rem;
  }
}

.section-3__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  max-width: 58rem;
  margin: 0 auto 2.5rem;
  gap: 2.5rem 3rem;
}

@media (min-width: 768px) {
  .section-3__gallery {
    display: block;
    position: relative;
    max-width: 100%;
    padding: 15rem 0;
  }
  .section-3__gallery-img--center {
    max-width: 40rem;
    margin: 0 auto;
  }
}

@media (min-width: 768px) and (min-width: 992px) {
  .section-3__gallery-img--center {
    max-width: 55rem;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .section-3__gallery-img--center {
    max-width: 70rem;
  }
}

@media (min-width: 1200px) {
  .section-3__gallery {
    max-width: 120rem;
    padding: 20rem 0;
  }
}

.section-3__gallery-item .item__img {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  height: 9rem;
}

@media (min-width: 768px) {
  .section-3__gallery-item .item__img {
    margin-bottom: 1rem;
    height: 7rem;
  }
}

@media (min-width: 1200px) {
  .section-3__gallery-item .item__img {
    height: 10rem;
  }
}

.section-3__gallery-item .item__text {
  text-transform: uppercase;
  color: #04042b;
  display: inline;
}

@media (min-width: 768px) {
  .section-3__gallery-item .item__text {
    line-height: 2.4rem;
  }
}

.section-3__gallery-item .item__text--last {
  margin-left: -0.5rem;
}

@media (min-width: 768px) {
  .section-3__gallery-item {
    display: block;
    position: absolute;
    width: 19rem;
  }
  .section-3__gallery-item--1 {
    top: 0;
    left: 50%;
    transform: translate(-49%, 0);
  }
  .section-3__gallery-item--2 {
    top: 20%;
    right: 5%;
    transform: translate(0, -25%);
  }
  .section-3__gallery-item--3 {
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
  .section-3__gallery-item--4 {
    top: 70%;
    right: 5%;
    transform: translate(0, -25%);
  }
  .section-3__gallery-item--5 {
    display: flex;
    flex-direction: column-reverse;
    position: absolute;
    bottom: -3%;
    left: 50%;
    transform: translate(-49%, 0);
  }
  .section-3__gallery-item--6 {
    top: 70%;
    left: 5%;
    transform: translate(0, -25%);
  }
  .section-3__gallery-item--7 {
    top: 50%;
    left: -2%;
    transform: translate(0, -50%);
  }
  .section-3__gallery-item--8 {
    width: 23rem;
    top: 20%;
    left: 0%;
    transform: translate(0, -35%);
  }
}

@media (min-width: 1200px) {
  .section-3__gallery-item--2 {
    right: 10%;
  }
  .section-3__gallery-item--3 {
    right: 5%;
  }
  .section-3__gallery-item--4 {
    right: 10%;
  }
  .section-3__gallery-item--5 {
    bottom: -2%;
  }
  .section-3__gallery-item--6 {
    left: 10%;
  }
  .section-3__gallery-item--7 {
    left: 3%;
  }
  .section-3__gallery-item--8 {
    left: 7%;
  }
}

.section-4__wrap {
  background-image: url(../img/dcf626c1f1e027dd57060e0d211fe36e.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-4__wrap {
    background-image: url(../img/85fde383daae0fc1185585ace8685f18.png);
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1200px) {
  .section-4__wrap {
    padding-top: 12rem;
    padding-bottom: 8rem;
  }
}

.section-4 {
  text-align: center;
}

.section-4__title {
  margin-bottom: 5rem;
  text-transform: uppercase;
}

.section-4__content {
  margin-bottom: 5rem;
}

.section-4__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, auto);
  max-width: 58rem;
  margin: 0 auto 2.5rem;
  gap: 2.5rem 2rem;
}

@media (min-width: 768px) {
  .section-4__gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 1fr;
    row-gap: 7rem;
    max-width: 94rem;
    margin-bottom: 10rem;
  }
}

.section-4__gallery-item .item__img {
  margin: 0 auto;
  margin-bottom: 1.5rem;
  max-width: 12.4rem;
}

@media (min-width: 768px) {
  .section-4__gallery-item .item__img {
    max-width: 17.8rem;
  }
}

.section-4__gallery-item .item__text {
  font-weight: 700;
  text-transform: uppercase;
}

.section-5__wrap {
  background-image: url(../img/89445c03d1c87d0e6c4a90156ff4ce0e.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 3rem;
  padding-bottom: 0.1rem;
}

@media (min-width: 375px) {
  .section-5__wrap {
    padding-top: 5rem;
  }
}

@media (min-width: 768px) {
  .section-5__wrap {
    background-image: url(../img/1d8f93a4618d8b649175e4705cdf724b.png);
    padding-top: 0;
    padding-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .section-5__wrap {
    padding-top: 1rem;
  }
}

@media (min-width: 1600px) {
  .section-5__wrap {
    padding-top: 3rem;
  }
}

.section-5 {
  text-align: center;
}

.section-5__title {
  margin-bottom: 5rem;
  text-transform: uppercase;
}

.section-5__content {
  margin-bottom: 5rem;
}

.section-5__legend {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.section-5__legend-item {
  width: 10rem;
}

.section-5__steps-item {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-5__steps-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 4rem;
  }
  .section-5__steps-item--1,
  .section-5__steps-item--3 {
    flex-direction: row-reverse;
  }
}

.section-5__steps-item .step-icon {
  position: absolute;
  width: 7rem;
  height: 7rem;
  left: 47%;
  top: 4rem;
}

@media (min-width: 1200px) {
  .section-5__steps-item .step-icon {
    width: 7rem;
    height: 7rem;
    left: 58%;
    top: 7rem;
  }
}

@media (min-width: 1200px) and (min-width: 1360px) {
  .section-5__steps-item .step-icon {
    top: 10rem;
  }
}

@media (min-width: 1200px) {
  .section-5__steps-item .step-icon--2 {
    left: 0;
    top: 9rem;
  }
}

@media (min-width: 1200px) and (min-width: 1360px) {
  .section-5__steps-item .step-icon--2 {
    top: 11rem;
  }
}

@media (min-width: 1200px) {
  .section-5__steps-item .step-icon--3 {
    top: 7rem;
  }
}

@media (min-width: 1200px) and (min-width: 1360px) {
  .section-5__steps-item .step-icon--3 {
    top: 6rem;
  }
}

.section-5__steps-item .step-icon--2 {
  left: 0;
}

.section-5__steps-item .item__text {
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-5__steps-item .item__text {
    position: relative;
    width: 53%;
    margin-bottom: 0;
    padding-top: 12rem;
    text-align: left;
  }
  .section-5__steps-item .item__text::before {
    position: absolute;
    content: "";
    background: url(../img/753e0c8c78d30a58217a552f360fb270-2.svg);
    background-size: 8rem 10rem;
    width: 8rem;
    height: 10rem;
    top: 0;
    right: 12rem;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .section-5__steps-item .item__text::before {
    background-size: 12rem 14rem;
    width: 12rem;
    height: 14rem;
    right: 16rem;
  }
}

@media (min-width: 768px) {
  .section-5__steps-item .item__text::after {
    position: absolute;
    content: "";
    background: url(../img/c7b0113f43198fe45a2d6685616b8845-2.svg);
    background-size: 8rem 10rem;
    width: 8rem;
    height: 10rem;
    top: 0;
    right: 0;
  }
}

@media (min-width: 768px) and (min-width: 1200px) {
  .section-5__steps-item .item__text::after {
    background-size: 12rem 14rem;
    width: 12rem;
    height: 14rem;
  }
}

@media (min-width: 1200px) {
  .section-5__steps-item .item__text {
    width: 42%;
    padding-top: 17rem;
  }
}

.section-5__steps-item .img {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-5__steps-item .img {
    width: 45%;
    max-width: 100%;
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .section-5__steps-item .img {
    width: 55%;
  }
}

.section-5__steps-item .img::before {
  position: absolute;
  content: "";
  z-index: 2;
  display: block;
  top: 0;
  left: 0;
  width: 3.5rem;
  height: 3.5rem;
}

.section-5__steps-item .img-1::before {
  background: url(../img/772ffca32877db24a7865649d47333d1.svg);
  background-size: 3.5rem 3.5rem;
}

@media (min-width: 768px) {
  .section-5__steps-item .img-1::before {
    display: none;
  }
}

.section-5__steps-item .img-2::before {
  background: url(../img/28dc79e3d740da742f9a19bcb38049c7.svg);
  background-size: 3.5rem 3.5rem;
}

@media (min-width: 768px) {
  .section-5__steps-item .img-2::before {
    display: none;
  }
}

.section-5__steps-item .img-3 {
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.section-5__steps-item .img-3::before {
  background: url(../img/93d682f9440022c2f1a9216bdbbc0b91.svg);
  background-size: 3.5rem 3.5rem;
  top: -1rem;
}

@media (min-width: 768px) {
  .section-5__steps-item .img-3::before {
    display: none;
  }
}

.section-5__steps-item .img-3::after {
  position: absolute;
  content: "";
  background: url(../img/cf0789734e5638a1b88e3dff073f859a-2.svg);
  background-size: 9rem 5rem;
  top: 0;
  left: 50%;
  width: 9rem;
  height: 5rem;
  transform: translateX(-50%);
}

@media (min-width: 768px) {
  .section-5__steps-item .img-3::after {
    background: url(../img/cf0789734e5638a1b88e3dff073f859a-2.svg);
    background-size: 9rem 5rem;
    top: -2rem;
  }
}

@media (min-width: 1200px) {
  .section-5__steps-item .img-3::after {
    background-size: 12rem 7rem;
    top: -2rem;
    width: 12rem;
    height: 7rem;
  }
}

.section-6__wrap {
  background-image: url(../img/276d6464b4d56538da675b7a3ae315c3.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

@media (min-width: 375px) {
  .section-6__wrap {
    padding-top: 5rem;
  }
}

@media (min-width: 768px) {
  .section-6__wrap {
    background-image: url(../img/470519977cb2b05e518708e7df686e16.png);
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}

@media (min-width: 1600px) {
  .section-6__wrap {
    padding-top: 16rem;
  }
}

.section-6 {
  text-align: center;
  color: #fff;
}

.section-6__title {
  margin-bottom: 3rem;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-6__title {
    margin-bottom: 8rem;
  }
}

@media (min-width: 992px) {
  .section-6__title {
    margin-bottom: 13rem;
  }
}

.section-6__content {
  max-width: 50rem;
  margin: 0 auto;
  border: 3px solid #8aadc2;
  border-radius: 3.9rem;
  padding: 0.8rem;
  -webkit-box-shadow: 0px 0px 6px 3px rgba(0, 32, 84, 0.38);
  box-shadow: 0px 0px 6px 3px rgba(0, 32, 84, 0.38);
}

@media (min-width: 768px) {
  .section-6__content {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .section-6__content {
    padding: 1rem;
  }
}

.section-6__content-wrap {
  background: radial-gradient(
    circle,
    rgba(148, 190, 215, 0.806972) 0%,
    rgba(90, 124, 145, 0.806972) 100%
  );
  -webkit-box-shadow: 0px 0px 6px 3px rgba(0, 32, 84, 0.38);
  box-shadow: 0px 0px 6px 3px rgba(0, 32, 84, 0.38);
  border-radius: 2.8rem;
  padding: 1.5rem 0.2rem 0;
}

@media (min-width: 768px) {
  .section-6__content-wrap {
    position: relative;
    padding-bottom: 3rem;
    padding: 3rem 1rem;
  }
}

@media (min-width: 992px) {
  .section-6__content-wrap {
    padding: 5rem 1rem;
  }
}

@media (min-width: 1200px) {
  .section-6__content-wrap {
    padding: 5rem 4rem;
  }
}

.section-6__content-text {
  line-height: 2.4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-6__content-text {
    margin-left: 50%;
  }
}

@media (min-width: 992px) {
  .section-6__content-text {
    padding-bottom: 6rem;
    line-height: 3.2rem;
  }
}

@media (min-width: 1200px) {
  .section-6__content-text {
    padding-bottom: 10rem;
  }
}

.section-6__content-name {
  width: 26rem;
  margin-left: auto;
  margin-right: 0.2rem;
  margin-bottom: 2rem;
  text-align: right;
}

@media (min-width: 992px) {
  .section-6__content-name {
    margin-bottom: 0;
    width: 56rem;
  }
}

.section-6__content-name p {
  font-size: 1.7rem;
  line-height: 2.2rem;
  font-weight: 600;
}

@media (min-width: 992px) {
  .section-6__content-name p {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

.section-6__content-doctor {
  position: relative;
  width: 100%;
  max-width: 26.4rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-6__content-doctor {
    position: absolute;
    max-width: 50%;
    bottom: -0.5rem;
    left: -1rem;
  }
}

@media (min-width: 992px) {
  .section-6__content-doctor {
    max-width: 45rem;
  }
}

@media (min-width: 1200px) {
  .section-6__content-doctor {
    max-width: 62.5rem;
  }
}

@media (min-width: 1360px) {
  .section-6__content-doctor {
    left: 2rem;
    bottom: -0.7rem;
  }
}

.section-6__content-doctor--sign {
  position: absolute;
  width: 18rem;
  bottom: -3.5rem;
  left: 50%;
  transform: translateX(-45%);
}

@media (min-width: 768px) {
  .section-6__content-doctor--sign {
    left: 5%;
    transform: translateX(0%);
    bottom: 2.5rem;
  }
}

@media (min-width: 992px) {
  .section-6__content-doctor--sign {
    width: 24rem;
  }
}

@media (min-width: 1200px) {
  .section-6__content-doctor--sign {
    width: 29rem;
    left: 0;
    bottom: 5.5rem;
  }
}

.section-7 {
  padding: 0;
}

.section-7__grid-top,
.section-7__grid-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.section-7__grid-top .grid-item,
.section-7__grid-bottom .grid-item {
  object-fit: cover;
  height: 100%;
}

@media (min-width: 768px) {
  .section-7__grid-top {
    grid-template-columns: 1.27fr 1.46fr 1.27fr;
  }
  .section-7__grid-bottom {
    grid-template-columns: 1.29fr 1.34fr 1.37fr;
  }
}

.section-7__grid-middle {
  position: relative;
}

.section-7__grid-middle .grid-baner {
  object-fit: cover;
  height: 100%;
}

@media (min-width: 768px) {
  .section-7__grid-middle .grid-baner {
    background-image: url(../img/316be31775848fada20f371f035c1a55-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
  }
}

@media (min-width: 768px) {
  .section-7__grid-middle {
    display: grid;
    grid-template-columns: 1fr 2.05fr 1fr;
    gap: 0;
    margin-bottom: -1px;
  }
}

.section-7__grid-middle .grid-btn {
  width: 22rem;
  font-size: 1.4rem;
  padding: 1.5rem 2rem;
  border-radius: 1.1rem;
  border-bottom-right-radius: 4rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #258b46;
  transition: 0.3s;
  cursor: pointer;
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 14rem;
  height: 3rem;
  font-size: 1.3rem;
  line-height: 0.9rem;
  padding: 0.5rem 0;
  background-color: #d61a5b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 800;
}

.section-7__grid-middle .grid-btn:hover {
  background-color: #334561;
  -webkit-box-shadow: inset 0px 0px 0px 4px #ffda10;
  box-shadow: inset 0px 0px 0px 4px #ffda10;
}

.section-7__grid-middle .grid-btn:hover {
  background-color: #002054;
  box-shadow: none;
}

@media (min-width: 576px) {
  .section-7__grid-middle .grid-btn {
    bottom: 10%;
    width: 20rem;
    height: 4rem;
    font-size: 1.8rem;
  }
}

@media (min-width: 768px) {
  .section-7__grid-middle .grid-btn {
    bottom: 50%;
    left: 59%;
    transform: translate(0, 50%);
    width: 11rem;
    height: 3rem;
    font-size: 1rem;
    line-height: 1rem;
  }
}

@media (min-width: 992px) {
  .section-7__grid-middle .grid-btn {
    width: 14rem;
    font-size: 1.2rem;
    line-height: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .section-7__grid-middle .grid-btn {
    left: 60%;
    width: 20rem;
    height: 4rem;
    font-size: 1.6rem;
    line-height: 1.5rem;
    padding: 1.5rem 2rem;
  }
}

@media (min-width: 1600px) {
  .section-7__grid-middle .grid-btn {
    left: 59%;
    width: 22rem;
    height: 6rem;
    font-size: 2rem;
  }
}

@media (min-width: 1800px) {
  .section-7__grid-middle .grid-btn {
    width: 26rem;
    height: 6.5rem;
    font-size: 2.4rem;
  }
}

.section-8__wrap {
  background-image: url(../img/a1faf688f48a05cf7e88af17f9a99846.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .section-8__wrap {
    background-image: url(../img/3394e4c42b7f0f138768f260f6e6e426.jpg);
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

.section-8 {
  text-align: center;
}

.section-8__title {
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.section-8__subtitle {
  margin-bottom: 4rem;
  color: #000;
}

.section-8__table-wrap {
  position: relative;
  max-width: 50rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-8__table-wrap {
    max-width: 100%;
  }
}

.section-8__table-wrap .number-img {
  position: absolute;
  right: -1.5rem;
  top: 2rem;
  width: 6rem;
  height: 6rem;
}

@media (min-width: 425px) {
  .section-8__table-wrap .number-img {
    top: 3rem;
    width: 8rem;
    height: 8rem;
  }
}

@media (min-width: 768px) {
  .section-8__table-wrap .number-img {
    top: -2rem;
    right: -1.5rem;
    width: 9rem;
    height: 9rem;
  }
}

@media (min-width: 992px) {
  .section-8__table-wrap .number-img {
    top: -3rem;
    right: -1.5rem;
    width: 11rem;
    height: 11rem;
  }
}

@media (min-width: 1360px) {
  .section-8__table-wrap .number-img {
    top: -2.5rem;
    right: -4rem;
    width: 16rem;
    height: 16rem;
  }
}

@media (min-width: 1600px) {
  .section-8__table-wrap .number-img {
    top: -2rem;
    right: -10rem;
    width: 19rem;
    height: 19rem;
  }
}

.section-9__wrap {
  background-image: url(../img/a1d4bed1da053d1827878a2fe3e27ec9.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-9__wrap {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

.section-9 {
  text-align: center;
}

.section-9__title {
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.section-9__subtitle {
  margin-bottom: 4rem;
}

@media (min-width: 992px) {
  .section-9__content {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.section-9__content .content-img {
  max-width: 50rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .section-9__content .content-img {
    width: 48%;
    max-width: 60rem;
    margin: 0;
  }
}

.section-9__content .content-desc {
  text-align: left;
}

@media (min-width: 992px) {
  .section-9__content .content-desc {
    width: 48%;
    min-height: 56.3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.section-9__content .content-desc .desc__item {
  margin-bottom: 1.5rem;
}

.section-9__content .content-desc .desc__item:last-child {
  margin-bottom: 0;
}

.section-9__content .content-desc .desc__item-title {
  margin-bottom: 1.5rem;
}

.section-9__content .content-desc .desc__item-text {
  line-height: 2rem;
}

@media (min-width: 992px) {
  .section-9__content .content-desc .desc__item-text {
    line-height: 2.2rem;
  }
}

.section-10__wrap {
  background-image: url(../img/82748be5b6c188325e6ea7c7732e8fce.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .section-10__wrap {
    background-image: url(../img/29242c75689ef9596f9ae09757304974.jpg);
  }
}

.section-10 .swiper-container {
  padding-top: 6rem;
  padding-bottom: 5rem;
  width: 29rem;
}

@media (min-width: 768px) {
  .section-10 .swiper-container {
    width: 74rem;
    padding-left: 5%;
    padding-right: 5%;
  }
}

@media (min-width: 950px) {
  .section-10 .swiper-container {
    width: 92rem;
    padding-top: 10rem;
  }
}

@media (min-width: 1250px) {
  .section-10 .swiper-container {
    width: 98rem;
    margin: 0 auto;
    padding-left: 7%;
    padding-right: 7%;
  }
}

@media (min-width: 1600px) {
  .section-10 .swiper-container {
    width: 100%;
    padding-bottom: 12rem;
  }
}

.section-10 .swiper-container .swiper-wrapper {
  position: relative;
}

.section-10 .swiper-container .swiper-wrapper .swiper-slide {
  background-image: url(../img/cac76aa5b214d0649e6f7ce6d7725ae6.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .section-10 .swiper-container .swiper-wrapper .swiper-slide {
    background-image: url(../img/754f7c33f9b2992fcc9ab4b3608eb3b0.png);
  }
}

.section-10 .swiper-container .swiper-wrapper .swiper-slide__user {
  position: absolute;
  width: 9.6rem;
  height: 9.6rem;
  left: 50%;
  top: -3.5rem;
  transform: translate(-50%, 0);
}

@media (min-width: 768px) {
  .section-10 .swiper-container .swiper-wrapper .swiper-slide__user {
    width: 12rem;
    height: 12rem;
  }
}

@media (min-width: 950px) {
  .section-10 .swiper-container .swiper-wrapper .swiper-slide__user {
    width: 14rem;
    height: 14rem;
    top: -5rem;
  }
}

@media (min-width: 1600px) {
  .section-10 .swiper-container .swiper-wrapper .swiper-slide__user {
    width: 18.5rem;
    height: 18.5rem;
    top: -2rem;
  }
}

.section-10 .swiper-container .swiper-wrapper .swiper-slide__content {
  text-align: center;
}

.section-10
  .swiper-container
  .swiper-wrapper
  .swiper-slide__content
  .content-title {
  margin-top: 7rem;
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-title {
    margin: 9rem 4.5rem 1rem;
  }
}

@media (min-width: 950px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-title {
    margin: 11rem 4.5rem 3rem;
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

@media (min-width: 1250px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-title {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1600px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-title {
    margin-top: 19rem;
    margin-bottom: 4rem;
  }
}

.section-10
  .swiper-container
  .swiper-wrapper
  .swiper-slide__content
  .content-text {
  margin-bottom: 2rem;
  padding: 0 2.5rem;
  font-size: 1.6rem;
  line-height: 2rem;
}

@media (min-width: 768px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-text {
    font-size: 1.3rem;
    padding: 0 5rem;
  }
}

@media (min-width: 950px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-text {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}

@media (min-width: 1600px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-text {
    font-size: 1.8rem;
    line-height: 3rem;
    padding: 0 9rem;
    margin-bottom: 4rem;
  }
}

.section-10
  .swiper-container
  .swiper-wrapper
  .swiper-slide__content
  .content-name {
  font-weight: 700;
  padding-bottom: 6rem;
}

@media (min-width: 768px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-name {
    padding-bottom: 4rem;
  }
}

@media (min-width: 950px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-name {
    margin-bottom: 2rem;
    font-size: 2.4rem;
    line-height: 3rem;
  }
}

@media (min-width: 1600px) {
  .section-10
    .swiper-container
    .swiper-wrapper
    .swiper-slide__content
    .content-name {
    margin-bottom: 6rem;
  }
}

.section-10 .swiper-container .swiper-button-next,
.section-10 .swiper-container .swiper-button-prev {
  display: none;
}

@media (min-width: 768px) {
  .section-10 .swiper-container .swiper-button-next,
  .section-10 .swiper-container .swiper-button-prev {
    display: block;
    top: 50%;
  }
}

@media (min-width: 768px) and (min-width: 1250px) {
  .section-10 .swiper-container .swiper-button-next,
  .section-10 .swiper-container .swiper-button-prev {
    font-size: 5rem;
  }
}

.section-10 .swiper-container .swiper-button-prev::after {
  content: url(../img/ca5daffef0380b96e3a4a98db547f4e2.svg);
}

@media (min-width: 1250px) {
  .section-10 .swiper-container .swiper-button-prev::after {
    content: url(../img/4076fbd302acd953aaf64a683fe3d972.svg);
  }
}

.section-10 .swiper-container .swiper-button-next::after {
  content: url(../img/b45d2f814c37fc8d1543943dab27f6c5.svg);
}

@media (min-width: 1250px) {
  .section-10 .swiper-container .swiper-button-next::after {
    content: url(../img/916a7ea0ca94c70492d6d9ac2f1359f7.svg);
  }
}

.section-10 .swiper-container .swiper-button-prev {
  z-index: 999;
  left: 0.5rem;
}

.section-10 .swiper-container .swiper-button-next {
  right: 0.5rem;
}

@media (min-width: 1250px) {
  .section-10 .swiper-container .swiper-button-next {
    right: 3.5rem;
  }
}

.section-10 .swiper-container .swiper-pagination-bullets {
  bottom: 3rem;
  width: 15rem;
  left: 50%;
  transform: translateX(-50%);
}

@media (min-width: 1600px) {
  .section-10 .swiper-container .swiper-pagination-bullets {
    bottom: 7rem;
  }
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  background: #025230;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet:nth-child(1) {
  opacity: 1;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet:nth-child(2) {
  opacity: 0.8;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet:nth-child(3) {
  opacity: 0.6;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet:nth-child(4) {
  opacity: 0.4;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet:nth-child(5) {
  opacity: 0.3;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet-active {
  width: 2rem;
  background-color: #025230;
  border-radius: 0.8rem;
  opacity: 1;
}

.section-10
  .swiper-container
  .swiper-pagination-bullets
  .swiper-pagination-bullet-active:nth-child(n) {
  opacity: 1;
}

.section-11__wrap {
  background-image: url(../img/8d59c7b96b0eb94eb7e4fb278c86a5a6.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (min-width: 768px) {
  .section-11__wrap {
    background-image: url(../img/b545468cd8ea8d5ac410448a1283991c.jpg);
  }
}

.section-11 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  color: #fff;
  text-align: center;
}

@media (min-width: 992px) {
  .section-11 {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }
}

.section-11__title {
  text-transform: uppercase;
  margin-bottom: 6rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .section-11__title {
    line-height: 5.8rem;
  }
}

.section-11__content {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .section-11__content {
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    padding: 0 3rem;
  }
}

.section-11__content-text {
  font-size: 1.8rem;
  line-height: 2.4rem;
}

@media (min-width: 768px) {
  .section-11__content-text {
    width: 50%;
    text-align: left;
  }
}

@media (min-width: 992px) {
  .section-11__content-text {
    width: 48%;
    padding: 0 5rem;
    font-size: 2rem;
    line-height: 3.2rem;
  }
}

.section-11__content .video__wrap {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

@media (min-width: 425px) {
  .section-11__content .video__wrap {
    width: 80%;
  }
}

@media (min-width: 768px) {
  .section-11__content .video__wrap {
    width: 50%;
    padding: 0;
    justify-content: space-between;
  }
}

@media (min-width: 992px) {
  .section-11__content .video__wrap {
    width: 52%;
    margin-left: auto;
    margin-right: 0;
  }
}

.section-11__content .video__wrap .video-container {
  margin: 0 auto;
}

.section-11__content .video__wrap .video-container .video__wrapper {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}

@media (min-width: 768px) {
  .section-11__content .video__wrap .video-container .video__wrapper {
    margin-bottom: 0;
  }
}

.section-11__content .video__wrap .video-container .video__wrapper .play__btn {
  position: absolute;
  top: -4px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 80;
  width: 100%;
  max-width: 20px;
  height: auto;
  cursor: pointer;
}

@media (min-width: 576px) {
  .section-11__content
    .video__wrap
    .video-container
    .video__wrapper
    .play__btn {
    max-width: 35px;
  }
}

@media (min-width: 768px) {
  .section-11__content
    .video__wrap
    .video-container
    .video__wrapper
    .play__btn {
    max-width: 50px;
  }
}

.section-11__content .video__wrap .video-container video {
  width: 100%;
}

@media (min-width: 768px) {
  .section-11__content .video__wrap .video-container video {
    width: 90%;
  }
}

.section-11__content
  .video__wrap
  .video-container
  video::-internal-media-controls-download-button {
  display: none;
}

.section-11__content
  .video__wrap
  .video-container
  video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

.section-11__content
  .video__wrap
  .video-container
  video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

.section-12__wrap {
  background-color: #e8eff3;
}

.section-12 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-12 {
    padding-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .section-12 {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }
}

.section-12__title {
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .section-12__title {
    line-height: 5.8rem;
    margin-bottom: 4rem;
  }
}

.section-12__subtitle {
  margin-bottom: 3rem;
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #002054;
}

@media (min-width: 992px) {
  .section-12__subtitle {
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 7rem;
  }
}

.section-13__wrap {
  background-color: #fff;
}

@media (min-width: 768px) {
  .section-13__wrap {
    background-image: url(../img/5dd654f33bda4a80419dd4758837f146.png);
  }
}

.section-13 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-13 {
    padding-bottom: 5rem;
  }
}

@media (min-width: 992px) {
  .section-13 {
    padding-top: 7rem;
    padding-bottom: 9rem;
  }
}

.section-13__title {
  text-transform: uppercase;
  margin-bottom: 3rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .section-13__title {
    line-height: 5.8rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 768px) {
  .section-13__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100rem;
    margin: 0 auto;
  }
}

.section-13__content-img {
  max-width: 50rem;
  margin: 0 auto 3rem;
  transition: 0.3s;
}

@media (min-width: 768px) {
  .section-13__content-img {
    max-width: 34rem;
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  .section-13__content-img:hover {
    transform: scale(1.3);
  }
}

@media (min-width: 768px) {
  .section-13__content-text {
    max-width: 48%;
    text-align: left;
  }
}

.section-13__content-text .desc {
  margin-bottom: 2rem;
}

.section-13__content-text .images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
}

.section-13__content-text .images__item {
  width: 25%;
  max-width: 10rem;
  height: auto;
}

.section-13__content-text .images__item:nth-child(1) {
  padding: 0.5rem;
}

.section-13__content-text .images__item:nth-child(2) {
  padding: 0.7rem;
}

.section-14__wrap {
  background-image: url(../img/7bcc12ecec7cd0569d50a126d0931ccf.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-14__wrap {
    background-image: url(../img/43a3e599b329c881035f31a1bcecbd27.png);
    padding-top: 7rem;
    padding-bottom: 5rem;
  }
}

.section-14 {
  text-align: center;
}

.section-14__title {
  text-transform: uppercase;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-14__title {
    margin-bottom: 5rem;
  }
}

@media (min-width: 768px) {
  .section-14__content {
    display: flex;
    flex-wrap: wrap;
  }
}

.section-14__content .box-item {
  max-width: 30rem;
  height: 22rem;
  margin: 0 auto;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 2px solid #04042b;
  border-radius: 21px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-14__content .box-item {
    height: 23.6rem;
  }
}

.section-14__content .box-item__icon {
  width: 9rem;
  margin: 0 auto 1rem;
}

.section-14__content .box-item__text {
  color: #002054;
}

@media (min-width: 768px) {
  .section-14__content .box-item__text {
    line-height: 2.4rem;
  }
}

.section-15 {
  background-image: url(../img/6feeeb889f0a313eb62e90d3744532d0.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-color: #fff;
  padding: 10rem 0.5rem 2rem;
}

@media (min-width: 375px) {
  .section-15 {
    padding-top: 15rem;
  }
}

@media (min-width: 425px) {
  .section-15 {
    padding-top: 20rem;
  }
}

@media (min-width: 768px) {
  .section-15 {
    background-image: url(../img/6e99e40fc44b6910ccc026bfb5c7e007.png);
    background-position: center;
  }
}

@media (min-width: 1600px) {
  .section-15 {
    padding-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .section-15 .section-15__title {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

.footer__wrap {
  background: #2a7080;
}

.footer__wrap .footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: #fff;
}

.footer__wrap .footer-desc {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer__wrap .footer-desc p {
  margin: 0 7px;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 300;
  cursor: pointer;
}

@media (min-width: 768px) {
  .footer__wrap .footer-desc p {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 700;
  }
}

.footer__wrap .footer-desc__span {
  font-size: 1rem;
  line-height: 1.3rem;
}

@media (min-width: 768px) {
  .footer__wrap .footer-desc__span {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 700;
  }
}

.footer__wrap .footer-copy {
  margin: 0 5px;
  padding-bottom: 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .footer__wrap .footer-copy {
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: 400;
  }
}

.form-section {
  width: 100%;
  margin: 1rem auto 2rem;
  text-align: center;
  color: #fff;
}

@media (min-width: 992px) {
  .form-section {
    margin-top: 0;
  }
}

.form-section .form-title {
  text-transform: uppercase;
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 800;
}

@media (min-width: 992px) {
  .form-section .form-title {
    font-size: 2.9rem;
    line-height: 4.4rem;
  }
}

@media (min-width: 1360px) {
  .form-section .form-title {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }
}

.form-section .form-subtitle {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.9rem;
  font-weight: 300;
}

@media (min-width: 992px) {
  .form-section .form-subtitle {
    font-size: 1.6rem;
  }
}

.form-section label {
  background: transparent;
}

.form-section input {
  position: relative;
  width: 100%;
  padding: 1.2rem;
  padding-left: 2rem;
  margin: 0 auto 2rem;
  border: 1px solid #fff;
  border-radius: 0.8rem;
  outline: none;
  color: #000;
  background-color: #fff;
}

.form-section input::placeholder {
  color: #000;
}

.form-section button {
  width: 22rem;
  font-size: 1.4rem;
  padding: 1.5rem 2rem;
  border-radius: 1.1rem;
  border-bottom-right-radius: 4rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #258b46;
  transition: 0.3s;
  cursor: pointer;
  width: 100%;
  border: 0;
  font-size: 2rem;
  line-height: 2.8rem;
}

.form-section button:hover {
  background-color: #334561;
  -webkit-box-shadow: inset 0px 0px 0px 4px #ffda10;
  box-shadow: inset 0px 0px 0px 4px #ffda10;
}

.overlay {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 8;
}

.order-form label {
  position: relative;
}

.error-feedback {
  display: none;
  color: red;
  font-size: 12px;
  text-align: right;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-right: 15px;
}

.hidden-form .error-feedback {
  margin-top: 5px;
}

.hidden-form .discount__input {
  margin-bottom: 0;
}

.hidden-form {
  visibility: hidden;
  display: block;
  position: fixed;
  z-index: 51;
  width: 100%;
  max-width: 510px;
  margin: 0 auto;
  top: 15%;
  left: 50%;
  bottom: -10%;
  transform: translate(-50%, -10%);
  background: rgba(180, 173, 173, 0.99);
  padding: 30px;
  overflow-y: scroll;
  opacity: 0;
  transition: all 0.3s ease;
}

.hidden-form .close_form {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 10px;
  cursor: pointer;
  right: 10px;
}

.hidden-form--active {
  opacity: 1;
  visibility: visible;
  top: 10%;
}

.hidden-form .input__group {
  margin-top: 25px;
  text-align: left;
}

.hidden-form .input__group .form__email {
  margin-bottom: 20px;
}

.hidden-form .input__group .email .error-feedback {
  visibility: hidden;
  position: absolute;
  color: red;
  bottom: 36px;
  width: 250px;
  text-align: left;
}

.hidden-form .discount__text {
  font-size: 17px;
}

.hidden-form .discount__text span {
  font-size: 17px;
}

.hidden-form .discount__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-bottom: 15px;
}

.hidden-form .discount__partners-img {
  width: 22%;
  height: auto;
  margin: 5px;
  background-color: #fff;
}

.hidden-form .discount__partners + p {
  background-color: #efd751;
  border: 1px solid black;
  padding: 10px;
}

.hidden-form .discount__input {
  width: 100%;
  border: 2px solid white;
  border-radius: 40px;
  color: white;
  font-size: 20px;
  margin-top: 10px;
  padding: 15px;
  background: transparent;
  outline: none;
}

.hidden-form .discount__input::-webkit-input-placeholder {
  color: white;
}

.hidden-form .discount__input:-moz-placeholder {
  color: white;
}

.hidden-form .discount__input::-moz-placeholder {
  color: white;
}

.hidden-form .discount__input:-ms-input-placeholder {
  color: white;
}

.hidden-form .discount__input::-ms-input-placeholder {
  color: white;
}

.hidden-form .discount__button-1 {
  background-color: #334561;
  border: none;
  margin-top: 25px;
  cursor: pointer;
}

.hidden-form .discount__button-1:hover {
  text-decoration: underline;
}

.hidden-form label {
  color: #fff;
  font-size: 16px;
  margin-top: 15px;
  padding-bottom: 10px;
}

.hidden-form .input__group.required {
  position: relative;
}

.hidden-form .input__group.required::before {
  content: "*";
  position: absolute;
  color: red;
  left: -15px;
  font-size: 20px;
}

.hidden-form .input__group.required .input__wrapper {
  position: relative;
}

.popup {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 51;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
}

.popup.popup--active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.popup__header {
  font-size: 50px;
}

.popup__close {
  position: absolute;
  height: 80px;
  cursor: pointer;
  top: -80px;
  right: 13px;
}

.popup__wrapper {
  display: flex;
  position: relative;
  padding: 7%;
}

.popup__wrapper p:first-of-type {
  font-size: 17px;
}

.popup__wrapper p:nth-of-type(2) {
  font-size: 17px;
  max-width: 470px;
}

.popup__wrapper p:nth-of-type(2) span {
  font-size: 17px;
}

.popup__wrapper p:nth-of-type(3) {
  font-size: 14px;
}

.popup__img {
  width: 100%;
  height: auto;
  max-width: 250px;
  display: none;
  justify-content: center;
  align-self: center;
  margin-left: 10px;
}

.popup__button-1 {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 10px;
  text-decoration: none;
  text-transform: uppercase;
  background-color: blue;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 10px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.49);
}

.popup__button-1:hover {
  color: #fff;
}

.popup__button-2 {
  display: block;
  padding-top: 10px;
  color: #d4d4d4;
}

.popup__button-2:hover {
  text-decoration: underline;
  color: grey;
}

.popup {
  position: fixed;
  width: 100vw;
  height: 105vh;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) and (orientation: landscape) {
  .popup {
    display: none;
  }
}

.popup__content {
  padding: 4rem 1rem 1rem;
  border-radius: 0.5rem;
  max-width: 46rem;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: 100%;
  height: 100vh;
  max-height: 85rem;
  background-image: url(../img/e19e9beff3b8d2dc47bad0b39c593bbb.png);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

@media only screen and (min-width: 375px) {
  .popup__content {
    transform: translate(-50%, -49%);
  }
}

@media only screen and (min-width: 768px) {
  .popup__content {
    background-image: url(../img/cf7ee3a92cd47a8378a8dd119f8917ae.png);
    background-color: #e0d6d3;
    flex-direction: row;
    width: 90%;
    height: auto;
    max-width: 170rem;
    padding: 5rem 3rem 2rem;
  }
}

@media only screen and (min-width: 992px) {
  .popup__content {
    transform: translate(-50%, -50%);
    padding: 5rem 5rem;
  }
}

@media only screen and (min-width: 1200px) {
  .popup__content {
    padding: 7rem 5rem;
  }
}

#close {
  position: absolute;
  content: "";
  background: url(../img/e001d9209560d6e76667cefcb3c21a3e.svg) no-repeat;
  background-position: center;
  background-size: 20px 20px;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

@media only screen and (min-width: 768px) {
  #close {
    background-size: 30px 30px;
    width: 30px;
    height: 30px;
  }
}

@media only screen and (min-width: 1200px) {
  #close {
    background-size: 40px 40px;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }
}

.popup__text {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #002054;
  width: 100%;
}

@media (min-width: 768px) {
  .popup__text {
    width: 53%;
  }
}

@media (min-width: 992px) {
  .popup__text {
    width: 50%;
  }
}

.popup__text-wait {
  margin-bottom: 1.5rem;
  color: #002054;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media only screen and (min-width: 414px) {
  .popup__text-wait {
    font-size: 6rem;
    line-height: 4.2rem;
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1200px) {
  .popup__text-wait {
    font-size: 9rem;
    margin-bottom: 5rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup__text-wait {
    font-size: 9rem;
    margin-bottom: 7rem;
  }
}

.popup__text-offer {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 2rem;
}

@media only screen and (min-width: 414px) {
  .popup__text-offer {
    font-size: 2.6rem;
    line-height: 2.7rem;
  }
}

@media only screen and (min-width: 1200px) {
  .popup__text-offer {
    font-size: 3rem;
    margin-bottom: 4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup__text-offer {
    font-size: 4rem;
    margin-bottom: 5rem;
  }
}

.popup__text-discount {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 2.6rem;
}

@media only screen and (min-width: 414px) {
  .popup__text-discount {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .popup__text-discount {
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup__text-discount {
    font-size: 3.2rem;
    margin-bottom: 5rem;
  }
}

.popup__text-discount .text--bold {
  font-weight: 700;
  text-transform: uppercase;
}

.popup__text-collect {
  font-size: 1.6rem;
  line-height: 2.4rem;
}

@media (min-width: 768px) {
  .popup__text-collect {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 1200px) {
  .popup__text-collect {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup__text-collect {
    font-size: 2.4rem;
    line-height: 3.2rem;
    margin-bottom: 7rem;
  }
}

.popup__img {
  position: relative;
  display: block;
  width: 80%;
  max-width: 35rem;
  margin-left: 4rem;
}

@media only screen and (min-width: 767px) {
  .popup__img {
    width: 50%;
  }
}

@media only screen and (min-width: 1200px) {
  .popup__img {
    max-width: 45rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup__img {
    max-width: 70rem;
    margin-left: 0;
  }
}

.popup__img-product {
  width: 100%;
  height: auto;
}

.popup__button-further {
  position: relative;
  z-index: 2;
  background-color: #cf1417;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  display: block;
  width: 100%;
  padding: 1.5rem 0;
  border-radius: 1rem;
  border-bottom-right-radius: 4rem;
  text-align: center;
  text-decoration: none;
  max-width: 30rem;
  margin: 0 auto;
  text-transform: uppercase;
  transition: all 0.1s ease;
}

@media only screen and (min-width: 414px) {
  .popup__button-further {
    max-width: 36rem;
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}

@media only screen and (min-width: 768px) {
  .popup__button-further {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 1600px) {
  .popup__button-further {
    max-width: 56rem;
    margin-bottom: 4rem;
    padding: 4rem 0;
    font-size: 3.2rem;
    line-height: 2.4rem;
  }
}

.popup__button-further:hover {
  transform: translateY(-0.1rem) scale(1.01);
  background-color: #002054;
}

.popup__button-back {
  position: relative;
  z-index: 2;
  color: rgba(0, 32, 84, 0.5);
  max-width: fit-content;
  font-size: 1.4rem;
  text-decoration: none;
  margin: 1rem auto;
  display: inline;
  transition: all 0.1s ease;
  cursor: pointer;
}

.popup__button-back:hover {
  transform: translateY(0.2rem) scale(1.01);
}

@media only screen and (min-width: 1600px) {
  .popup__button-back {
    font-size: 2.4rem;
    line-height: 2.4rem;
  }
}

.display-mobile-popup {
  display: block;
}

@media (min-width: 768px) {
  .display-mobile-popup {
    display: none !important;
  }
}

.display-desktop-popup {
  display: none;
}

@media (min-width: 768px) {
  .display-desktop-popup {
    display: block !important;
  }
}
.disclaimer {
  text-align: center;
  font-size: 12px;
  margin-bottom: 30px;
  margin-top: 10px;
}
.feedback {
	width: 65px;
	height: 60px;
	position: fixed;
	right: -15px;
	top: 140px;
	display: flex;
	align-items: center;
	background-color: #d61a5b;
	padding-left: 10px;
	border-top-left-radius: 35px;
	border-bottom-left-radius: 35px;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.3);
	transition: all .5s;
}

.feedback:hover {
	right: 0;
}

.feedback img {
	width: 40px;
	height: 40px;
}

.popup-window {
	font-family: inherit;
	display: none;
	width: 300px;
	position: fixed;
	right: 0;
	top: 100px;
	padding: 35px 10px;
	background: #fff;
	border-radius: 5px;
	z-index: 2000;
}

.popup-window form {
	width: 100%;
	min-height: auto;
	padding: 0;
	background: inherit;
	box-shadow: none;
}

.popup-window label {
	display: block;
	margin-bottom: 5px;
	font-size: 14px;
	color: #333;
	text-transform: uppercase;
}

.popup-window input {
	box-sizing: border-box;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	padding: 10px;
	border: none;
	font-family: inherit;
	font-size: 16px;
	margin-bottom: 15px;
	border: 1px solid #333;
}

.popup-window button {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 5px;
	background: #d61a5b;
	color: #fff;
	cursor: pointer;
	font-family: inherit;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 15px;
	border-radius: 20px;
}

.close-popup {
	position: absolute;
	right: 10px;
	top: 5px;
	width: 27px;
	height: 27px;
	background-color: #fff;
	cursor: pointer;
}

.close-popup:before {
	content: "";
	background: #333;
	width: 20px;
	height: 1px;
	position: absolute;
	top: 13px;
	left: 4px;
	transform: rotate(-45deg);
}

.close-popup:after {
	content: "";
	background: #333;
	width: 20px;
	height: 1px;
	position: absolute;
	top: 13px;
	left: 4px;
	transform: rotate(45deg);
}
