@import url('normalize.css');
@import url('plyr.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
:root {
  --font-family: 'Inter', sans-serif;
  --font-size: 16px;
  --line-height: 1.4;
  --line-height-title: 1.1;
  --font-weight: 400;
  --font-weigh-regular: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 800;
  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;
  --font-weight-900: 900;

  --container-margin: -40px;
  --container-padding: 40px;
  --container-width: 1200px;

  --color-default: #111;
  --color-gray: #777;
  --color-red: #f7396d;
  --color-blue: #60c1d7;

  --border-color-10: rgba(23,26,30,.1);
  --border-color-20: rgba(23,26,30,.2);
  --border-color-30: rgba(23,26,30,.3);
  --border-color-40: rgba(23,26,30,.4);
  --border-color-50: rgba(23,26,30,.5);
  --border-color-90: rgba(23,26,30,.9);
  --border-error: #e54141;

  --border-radius: 6px;

  --section-padding: 100px;
  --section-head-title: 40px;
  --section-head-subtitle: 24px;
  --section-head-margin: 100px;
  --section-foot-margin: 100px;
}
@media(max-width: 992px) {
  :root {
    --container-margin: -25px;
    --container-padding: 25px;

    --section-padding: 75px;
    --section-head-title: 28px;
    --section-head-subtitle: 21px;
    --section-head-margin: 75px;
    --section-foot-margin: 75px;
  }
}
@media(max-width: 768px) {
  :root {
    --container-margin: -15px;
    --container-padding: 15px;

    --section-padding: 50px;
    --section-head-title: 24px;
    --section-head-subtitle: 18px;
    --section-head-margin: 50px;
    --section-foot-margin: 50px;
  }
}
/**
 * BASE
 */
html,
body {
  overflow-x: hidden;
  overflow-y: auto;
}
body {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 var(--container-padding);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  color: var(--color-default);
  font-weight: var(--font-weight);
  background: #fff;
}

a {
  color: #2279f3;
}
b,
strong {
  font-weight: var(--font-weight-700);
}
i {
  font-style: italic;
}
.uppercase {
  text-transform: uppercase;
}
.bold {
  font-weight: var(--font-weight-700);
}

.container {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: var(--container-width);
}
.container::before,
.container::after {
  content: '';
  display: table;
  clear: both;
}
@media(max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/*
 * ELEMENTS
 */
/* Buttons */
.btn {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 15px 40px;
  font: var(--font-weight-700) 14px/20px var(--font-family);
  text-align: center;
  color: #000;
  background: linear-gradient(180deg, #b0b0b1 0%, #fff 80%);
  border: 0;
  border-radius: 10px 0 10px 0;
  box-shadow: 0 0 30px 0 rgba(255, 16, 80, .3);
  transition: all .2s ease;
  cursor: pointer;
}
.btn::after {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 12px 0 12px 0;
  box-shadow: 3px 3px 0 0 rgba(0,0,0,.3);
  transition: all .2s ease;
}
.btn-red {
  background: linear-gradient(180deg, #fe6890 0%, #fef9fa 100%);
}

.btn-close {
  display: block;
  margin: 0;
  padding: 5px;
  opacity: .5;
  transition: all .2s ease;
  cursor: pointer;
}
.btn-close::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: no-repeat center url("data:image/svg+xml,%3Csvg style='enable-background:new 0 0 24 24;' version='1.1' viewBox='0 0 24 24' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath fill='%23000' d='M5.3,18.7C5.5,18.9,5.7,19,6,19s0.5-0.1,0.7-0.3l5.3-5.3l5.3,5.3c0.2,0.2,0.5,0.3,0.7,0.3s0.5-0.1,0.7-0.3 c0.4-0.4,0.4-1,0-1.4L13.4,12l5.3-5.3c0.4-0.4,0.4-1,0-1.4s-1-0.4-1.4,0L12,10.6L6.7,5.3c-0.4-0.4-1-0.4-1.4,0s-0.4,1,0,1.4 l5.3,5.3l-5.3,5.3C4.9,17.7,4.9,18.3,5.3,18.7z'/%3E%3C/svg%3E");
  background-size: contain;
}
.btn-close:hover {
  opacity: 1;
}


/* Form control */
.form-control,
.form-control:hover,
.form-control:focus {
  display: block;
  position: relative;
  width: auto;
  padding: 10px 0;
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: var(--line-height);
  font-weight: var(--font-weight);
  color: var(--color-default);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--border-color-30);
  border-radius: 0;
  outline: 0;
  transition: all .2s ease;
}
.form-control::placeholder {
  font-size: 14px;
  color: #aaa;
}
.form-control:focus {
  border-color: var(--border-color-50);
}
.form-control.error {
  border-color: var(--border-error);
}
.form-control.bordered {
  padding: 10px;
  border: 1px solid var(--border-color-20);
}
.form-control.w100 {
  width: 100%;
}

/* Form control floating*/
.form-floating {
  position: relative;
}
.form-floating .form-control {
  z-index: 1;
  width: 100%;
  padding: 18px 0 8px 0;
}
.form-floating .form-control::placeholder {
  opacity: 0;
}
.form-floating label {
  display: block;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  margin: 0 -4px;
  padding: 0 4px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-default);
  font-weight: var(--font-weight);
  background: inherit;
  pointer-events: none;
  opacity: .7;
  transition: all .3s ease;
  -webkit-transform: translate(0,-50%);
          transform: translate(0,-50%);
}
.form-floating .form-control-plaintext~label, 
.form-floating .form-control:focus~label, 
.form-floating .form-control:not(:placeholder-shown)~label, 
.form-floating .form-select~label {
  top: 10px;
  font-size: 10px;
  line-height: 1;
  font-weight: var(--font-weight-400);
  text-transform: uppercase;
  opacity: 1;
}

.form-floating.white .form-control {
  color: #fff;
  border-color: #fff;
}
.form-floating.white label {
  color: #fff;
}

/* Checkbox */
.checkbox-control {
  display: block;
  position: relative;
  gap: 10px;
}
.checkbox-control input {
  display: none;
  position: absolute;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
}
.checkbox-control label {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 25px;
  font-size: 14px;
  color: var(--color-default);
  font-weight: var(--font-weight);
  text-align: left;
  transition: all .2s ease;
}
.checkbox-control label .check {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-transform: translate(0,-50%);
          transform: translate(0,-50%);
}
.checkbox-control label .check::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  background: no-repeat center url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z'/%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0;
  transition: all .2s ease;
}
.checkbox-control input:checked + .check {
  background: #10C44C;
  border-color: #10C44C;
}
.checkbox-control input:checked + .check::before {
  opacity: 1;
}
.checkbox-control.radio .check {
  border-radius: 50%;
}

.checkbox-control-price label {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  font-size: 14px;
  line-height: 1.4;
}
.checkbox-control-price label::before {
  content: '';
  order: 2;
  flex: 1 1 auto;
  min-width: 20px;
  margin-top: 14px;
  border-bottom: 1px dotted var(--border-color-20);
}
.checkbox-control-price label .title {
  order: 1;
  flex: 0 1 auto;
}
.checkbox-control-price label .price {
  order: 3;
  flex: 0 1 auto;
  font-size: 14px;
  font-weight: var(--font-weight-500);
}

.checkbtn-group {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.checkbtn-control {
  display: block;
  position: relative;
}
.checkbtn-control input {
  display: none;
  position: absolute;
  visibility: hidden;
  opacity: 0;
}
.checkbtn-control label {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 10px 5px;
  font-size: 12px;
  color: var(--color-default);
  font-weight: var(--font-weight);
  text-align: center;
  transition: all .2s ease;
}
.checkbtn-control label .check {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #eee;
}
.checkbtn-control:first-child label .check {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
.checkbtn-control:last-child label .check {
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.checkbtn-control input:checked + .check {
  background: #F1DE0B;
}

/* VIDEO */
.youtube {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 65%;
  background: rgba(0,0,0,.4);
  cursor: pointer;
  -webkit-transition: all .5s ease-in-out;
          transition: all .5s ease-in-out;
}
.youtube::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  background: no-repeat center url("data:image/svg+xml,%3Csvg style='fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;' version='1.1' viewBox='0 0 512 512' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:serif='http://www.serif.com/' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg%3E%3Cpath d='M501.299,132.766c-5.888,-22.03 -23.234,-39.377 -45.264,-45.264c-39.932,-10.701 -200.037,-10.701 -200.037,-10.701c0,0 -160.105,0 -200.038,10.701c-22.025,5.887 -39.376,23.234 -45.264,45.264c-10.696,39.928 -10.696,123.236 -10.696,123.236c0,0 0,83.308 10.696,123.232c5.888,22.03 23.239,39.381 45.264,45.268c39.933,10.697 200.038,10.697 200.038,10.697c0,0 160.105,0 200.037,-10.697c22.03,-5.887 39.376,-23.238 45.264,-45.268c10.701,-39.924 10.701,-123.232 10.701,-123.232c0,0 0,-83.308 -10.701,-123.236Z' style='fill:%23ed1f24;fill-rule:nonzero;'/%3E%3Cpath d='M204.796,332.803l133.018,-76.801l-133.018,-76.801l0,153.602Z' style='fill:%23fff;fill-rule:nonzero;'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  -webkit-transition: all .2s linear;
          transition: all .2s linear;
}
/*.youtube::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0, rgba(0,0,0,1) 0, rgba(0,0,0,0) 90%);
  opacity: 1;
}*/
.youtube .cover {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.youtube .title {
  display: block;
  position: absolute;
  overflow: hidden;
  z-index: 9;
  bottom: 15px;
  left: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  text-shadow: 1px 1px 3px #000;
  text-align: left;
  white-space: nowrap;
  -webkit-mask-image: -webkit-gradient(linear, 50% top, 80% bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
}
.youtube:hover::before {
  width: 70px;
  height: 70px;
}



.el-social-link {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  color: #fff;
  transition: all .2s ease;
}
.el-social-link::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  border-radius: 50%;
  opacity: 0;
  transition: all .2s ease;
}
.el-social-link svg {
  display: block;
  position: relative;
  z-index: 2;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
}
.el-social-link.wp svg {
  width: 26px;
  height: 26px;
}
.el-social-link.tg svg {
  margin-right: 2px;
}
.el-social-link:hover {
  color: #fff !important;
  opacity: 1;
}
.el-social-link:hover::before {
  width: 50px;
  height: 50px;
  opacity: 1 !important;
}
.el-social-link.vk:hover::before {
  background: #4d76a1;
}
.el-social-link.yt:hover::before {
  background: #c12025;
}
.el-social-link.tg:hover::before {
  background: #64a9dc;
}
.el-social-link.wp:hover::before {
  background: #67c15e;
}

.el-social-link--footer {
  opacity: .6;
}
.el-social-link--footer:hover::before {
  width: 40px;
  height: 40px;
}
.el-social-link--footer svg {
  width: 24px;
  height: 24px;
}
.el-social-link--footer.wp svg {
  width: 20px;
  height: 20px;
}



.linkStyle {
  position: relative;
  overflow: hidden;
  color: var(--color-link);
  transition: all .3s ease-in-out;
}
.linkStyle:hover {
  color: var(--color-link-hover);
}
.linkStyle .default {
  display: block;
  opacity: 0;
}
.linkStyle .text-1,
.linkStyle .text-2 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.linkStyle .text-2 {
  opacity: 0;
}
.linkStyle:hover .text-1 {
  animation: linkStyle-text-1 .2s linear forwards;  
}
.linkStyle:hover .text-2 {
  animation: linkStyle-text-2 .2s linear forwards;
}
.linkStyle::after {
  content: '';
  display: none;
  position: absolute;
  z-index: -1;
  bottom: 0;
  height: 1px;
  background: var(--color-link-hover);
  animation: linkStyle-line-out .3s linear;
}
.linkStyle:hover::after {
  animation: linkStyle-line-in .3s linear forwards;
}
@keyframes linkStyle-text-1 {
  from {
    top: 0;
    opacity: 1;
  }
  to {
    top: 10px;
    opacity: 0;
  }
}
@keyframes linkStyle-text-2 {
  from {
    top: -10px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
@keyframes linkStyle-line-in {
  from {
    left: 0;
    right: 100%;
    opacity: .5;
  }
  to {
    left: 0;
    right: 0;
    opacity: 1;
  }
}
@keyframes linkStyle-line-out {
  from {
    left: 0;
    right: 0;
    opacity: 1;
  }
  to {
    left: 100%;
    right: 0;
    opacity: .5;
  }
}



.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  z-index: 2;
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
.no-js .owl-carousel {
  display: block;
}
.owl-carousel .animated {
  animation-duration: 2000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;}
  100% {
    opacity: 0;}
}
.owl-height {
  transition: height 500ms ease-in-out;
}
.owl-carousel .owl-nav {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin: 20px 0 0 0;
  padding: 0;
}
.owl-carousel .owl-nav .disabled {
   opacity: .25;
   cursor: default;
 }
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30px;
  height: 50px;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  transition: all .2s ease;
}
.owl-carousel .owl-nav .owl-prev span,
.owl-carousel .owl-nav .owl-next span {
  display: none;
}
.owl-carousel .owl-nav .owl-prev {
  float: left;
}
.owl-carousel .owl-nav .owl-next {
  float: right;
}
.owl-carousel .owl-nav .owl-prev::before,
.owl-carousel .owl-nav .owl-next::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  background: no-repeat center url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAACXBIWXMAAAsTAAALEwEAmpwYAAAA50lEQVR4nO3ayw6CQBBE0fKTdeFWV4qvxMcHK0MkIVEHFzIdp+5Jet9VTAIiEgAAAAD83qKdY/QSUVL4+3NOwbsUNwzfj81JmOs1vFUJKeSnAtJs41YrZ6N8CRYnIV3pXAmHuNXKoQRRQocSWo3yJezjViuHEkQJmrVzESWMlrAL264QShAldFIJV1HCaAlN2HaF2JeQCrgpX8AqbLuJfXP111HLTc366BNeprc/6wcgwss4/FnGP4OtX4QQPjNVh7d+HU74zFQd3v7vcfsPJJJ3JdiE7w2/E7IL31uq4md7AAAAAP/rAfFUIcx2ckExAAAAAElFTkSuQmCC');
  background-size: contain;
}
.owl-carousel .owl-nav .owl-prev::before {
  transform: rotate(180deg);
}




.header-section {
  display: block;
  position: relative;
  z-index: 10;
  margin: 0 var(--container-margin);
  padding: 15px var(--container-padding);
  background: #ff5985;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  font-weight: var(--font-weight-400);
}

.header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}
.header a {
  color: #fff;
  text-decoration: none;
}
.header-brand {
  display: block;
}
.header-brand img {
  display: block;
  width: auto;
  height: 60px;
}
.header-burger {
  display: none;
  flex-flow: column;
  align-items: stretch;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  padding: 10px 8px;
  cursor: pointer;
}
.header-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

.header-content {
  display: flex;
  flex-flow: column;
  align-items: flex-end;
  gap: 0;
}

.header-menu {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 20px;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: var(--font-weight-300);
  border-top: 1px solid rgba(255,255,255,.2)
}

.header-menu-title {
  font-size: 11px;
  font-weight: var(--font-weigh-regular);
  text-align: right;
  opacity: .75;
}

.header-contact {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px 30px;
  font-weight: var(--font-weight-300);
}
.header-contact .phone {
  font-size: 20px;
  font-weight: var(--font-weight-600);
}
.header-contact .call {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  border: 1px dashed rgba(255,255,255,.5);
  border-radius: 4px;
  transition: all .2s ease;
}
.header-contact .call:hover {
  border-style: solid;
  background: rgba(255,255,255,.1);
}



.mobile-section {
  display: block;
  position: fixed;
  z-index: 11;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
}
.mobile-bg {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: .7;
}
.mobile-container {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: -200px;
  width: 300px;
  padding: 30px;
  background: #fff;
  transition: all .2s ease;
  visibility: hidden;
  opacity: 0;
}
.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
}
.mobile-brand {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 50px;
}
.mobile-brand img {
  display: block;
  width: auto;
  height: 60px;
}

.mobile-menu {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1 1 auto;
  gap: 10px;
  font-size: 16px;
  line-height: 1.2;
  font-weight: var(--font-weight-300);
}

.mobile-menu-title {
  font-size: 12px;
  opacity: .75;
  font-weight: var(--font-weigh-regular);
}

.mobile-menu a {
  display: block;
  font-size: 16px;
  color: var(--color-default);
  text-decoration: none;
}

.mobile-contact {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  flex: 0 0 auto;
  padding: 20px 0;
  border-top: 1px solid #eee;
}
.mobile-contact a {
  color: var(--color-gray);
  text-decoration: none;
}
.mobile-contact a.phone {
  font-size: 24px;
  font-weight: var(--font-weight-700);
  color: var(--color-red);
}
.mobile-contact a.call {
  padding: 5px 0;
  font-size: 12px;
}
.mobile-social {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}
.mobile-social a {
  color: var(--color-gray);
}
.mobile-social a:hover {
  color: var(--color-red);
}
@media(max-width: 992px) {
  .header-content {
    display: none;
  }
  .header-burger {
    display: flex;
  }
  .mobile-section.opened {
    visibility: visible;
    opacity: 1;
  }
  .mobile-section.opened .mobile-container {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
}



.footer-section {
  display: block;
  margin: 0 var(--container-margin);
  padding: 70px var(--container-padding);
  background: #ebecec;
}
.footer-section a {
  color: inherit !important;
  text-decoration: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 50px 30px;
}

.footer-brand {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
}
.footer-brand .logo {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
}
.footer-brand .logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-menu {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
  line-height: 1.2;
}
.footer-menu-title {
  font-size: 12px;
}

.footer-contact {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.footer-contact .mail {
  font-size: 14px;
}
.footer-contact .phone {
  font-size: 20px;
}

.footer-social {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  text-align: center;
}
.footer-social-grid {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  gap: 10px;
}
.footer-social-links {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  gap: 10px;
}
.footer-social-links-note {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  opacity: .6;
}

@media(max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2,1fr);
  }
  .footer-brand {
    order: 1;
  }
  .footer-contact {
    order: 2;
    align-items: flex-end;
  }
  .footer-menu {
    order: 3;
  }
  .footer-social {
    order: 4;
  }
}

@media(max-width: 500px) {
  .footer-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer-grid {
    grid-template-columns: repeat(1,1fr);
  }
  .footer-brand {
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-menu {
    order: 4;
    align-items: center;
    text-align: center;
  }
  .footer-social {
    order: 3;
  }
}


:root {
  --hello-section-margin: -150px var(--container-margin) 0 var(--container-margin);
  --hello-section-padding: 350px var(--container-padding) 200px var(--container-padding);
  --hello-container-padding: 0 50px 100px 0;
  --hello-title-size: 54px;
  --hello-text-size: 18px;
}
@media(max-width: 992px) {
  :root {
    --hello-section-margin: -150px var(--container-margin) 0 var(--container-margin);
    --hello-section-padding: 300px var(--container-padding) 150px var(--container-padding);
    --hello-title-size: 46px;
    --hello-text-size: 16px;
  }
}
@media(max-width: 768px) {
  :root {
    --hello-section-margin: -150px var(--container-margin) 0 var(--container-margin);
    --hello-section-padding: 250px var(--container-padding) 100px var(--container-padding);
    --hello-container-padding: 0 0 100px 0;
    --hello-title-size: 38px;
    --hello-text-size: 14px;
  }
}
.hello-section {
  display: block;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: var(--hello-section-margin);
  padding: var(--hello-section-padding);
  background: #1d2a4b;
}
.hello-video {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
  opacity: .2;
}
.hello-video video {
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hello-section .container {
  position: relative;
  z-index: 2;
}
.hello-container {
  display: block;
  position: relative;
  padding: var(--hello-container-padding);
}
.hello-container .title {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  font-size: var(--hello-title-size);
  line-height: 1.1;
  font-weight: var(--font-weight-700);
  color: #fff;
  text-align: left;
  letter-spacing: 2px;
}
.hello-container .text {
  display: block;
  margin: 20px 0 0 0;
  padding: 0;
  max-width: 650px;
  font-size: var(--hello-text-size);
  line-height: 1.6;
  font-weight: var(--font-weight-300);
  color: #fff;
}
.hello-social {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
}
.hello-social::before {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: #fff;
}
.hello-ani {
  display: block;
  position: absolute;
  z-index: 2;
  bottom: -12px;
  left: 0;
}
.hello-ani:after {
  content: '';
  display: block;
  position: absolute;
  top: 30px;
  left: 50%;
  -webkit-transform: translate(-50%,0);
          transform: translate(-50%,0);
  width: 18px;
  height: 18px;
  background: no-repeat center url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M16,29a1,1,0,0,1-.71-.29l-9-9a1,1,0,0,1,1.42-1.42L16,26.59l8.29-8.3a1,1,0,0,1,1.42,1.42l-9,9A1,1,0,0,1,16,29Z'/%3E%3Cpath fill='%23fff' d='M16,29a1,1,0,0,1-1-1V4a1,1,0,0,1,2,0V28A1,1,0,0,1,16,29Z'/%3E%3Crect fill='none'/%3E%3C/svg%3E");
  background-size: contain;
}
.hello-ani--mouse {
  display: block;
  position: relative;
  width: 16px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 8px;
}
.hello-ani--mouse::before {
  content: '';
  display: block;
  position: absolute;
  top: 6px;
  left: 50%;
  width: 2px;
  height: 5px;
  -webkit-transform: translate(-50%,0);
          transform: translate(-50%,0);
  border-radius: 2px;
  background: #fff;
}
@media(max-width: 768px) {
  .hello-social {
    flex-flow: row nowrap;
    top: calc(100% - 15px);
  }
  .hello-social::before {
    width: 50px;
    height: 1px;
  }
}

:root {
  --video-head-left: 50%;
  --video-item-width: 25%;
  --video-item-title-size: 22px;
  --video-item-subtitle-size: 14px;
}
@media(max-width: 992px) {
  :root {
    --video-head-left: calc(100% / 3);
    --video-item-width: calc(100% / 3);
  }
}
@media(max-width: 768px) {
  :root {
    --video-head-left: 0;
    --video-item-width: 50%;
    --video-item-title-size: 18px;
    --video-item-subtitle-size: 12px;
  }
}
@media(max-width: 550px) {
  :root {
    --video-head-left: 0;
    --video-item-width: 100%;
    --video-item-title-size: 18px;
    --video-item-subtitle-size: 12px;
  }
}
.video-section {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: center;
  position: relative;
  z-index: 2;
  margin: 0 var(--container-margin);
  padding: 0;
}
.video-head {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  left: var(--video-head-left);
  right: 0;
  bottom: 100%;
  min-height: 70px;
  padding-left: 90px;
  padding-right: var(--container-padding);
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--font-weight-700);
  background: #fff;
}
.video-head .icon {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 70px;
  background: #ff8cab;
}
.video-head .icon svg {
  width: 30px;
  height: 30px;
}
.video-item {
  display: block;
  position: relative;
  overflow: hidden;
  width: var(--video-item-width);
  background: #111;
  cursor: pointer;
}
.video-item::before {
  content: '';
  display: block;
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 60%;
}
.video-item::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(0, rgba(0,0,0,1) 0, rgba(0,0,0,0) 90%);
  opacity: .5;
}
.video-item .image,
.video-item .video {
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  -webkit-transform: translate(-50%,-50%);
          transform: translate(-50%,-50%);
}
.video-item .video {
  z-index: 2;
  opacity: 0;
}
.video-item .image img,
.video-item .video video {
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.video-item .head {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  position: absolute;
  z-index: 5;
  left: 20px;
  right: 20px;
  bottom: 20px;
  -webkit-transition: all .2s ease;
          transition: all .2s ease;
}
.video-item .head .title,
.video-item .head .subtitle {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  color: #fff;
  text-shadow: 1px 0 1px #000, 
               0 1px 1px #000, 
               -1px 0 1px #000, 
               0 -1px 1px #000;
  -webkit-mask-image: -webkit-gradient(linear, 50% top, 80% bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
}
.video-item .head .title {
  font-size: var(--video-item-title-size);
}
.video-item .head .subtitle {
  font-size: var(--video-item-subtitle-size);
}
.video-item:hover .video {
  opacity: 1;
}
@media(max-width: 992px) {
  .video-item:nth-child(15) {
    display: none;
  }
}
@media(max-width: 768px) {
  .video-section {
    padding-top: 70px;
  }
  .video-head {
    top: 0;
  }
  .video-item:nth-child(15) {
    display: block;
  }
}


.section {
  display: block;
  overflow: hidden;
  margin: 0 var(--container-margin);
  padding: 150px var(--container-padding);
}
.section-head {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  gap: 30px;
  margin-bottom: 100px;
  text-align: center;
}
.section-head .title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: var(--font-weight-700);
  text-align: center;
}
.section-head .text {
  max-width: 800px;
}


.about-header {
  z-index: 3;
  margin-bottom: 20px;
}
.about-header .img {
  display: block;
  position: absolute;
  z-index: -1;
  width: 200px;
  height: auto;
}
.about-header .img1 {
  top: -100px;
  left: 0;
}
.about-header .img2 {
  bottom: 0;
  right: 0;
}
.about-container {
  display: block;
  position: relative;
  z-index: 2;
}
.about-container-bg {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: -50px;
  right: -50px;
}
.about-container-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}
@media(max-width: 992px) {
  .about-container-bg img {
    object-fit: cover;
  }
}

.about-title {
  display: block;
  position: relative;
  z-index: 2;
  text-align: center;
}
.about-title .title {
  display: block;
  font-size: 28px;
  font-weight: var(--font-weight-700);
  color: #555;
}
.about-title .title-bg {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%,0);
          transform: translate(-50%,0);
  font-size: 70px;
  font-weight: var(--font-weight-700);
  color: #fee3ea;
  white-space: nowrap;
}

.about-content-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  margin-top: 150px;
  margin-bottom: 150px;
  font-size: 14px;
  font-weight: var(--font-weight-700);
}
.about-content-1 {
  width: calc(60% - 25px);
}
.about-content-2 {
  padding-left: 60px;
  width: calc(40% - 25px);
}
.about-content-2 .title {
  display: block;
  position: relative;
  margin-bottom: 20px;
  font-size: 24px;
}
.about-content-2 .title::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: -60px;
  -webkit-transform: translate(0,-50%);
          transform: translate(0,-50%);
  width: 40px;
  height: 40px;
  background: no-repeat center url("data:image/svg+xml,%3Csvg viewBox='0 0 43 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='21.5' cy='21' r='4.33333' fill='%23777'/%3E%3Ccircle cx='21.5' cy='21' r='12' stroke='%23cfd0d0' stroke-width='2'/%3E%3Cpath d='M21.5 0L21.5 11' stroke='%23b2b3b3'/%3E%3Cpath d='M21.5 30L21.5 41' stroke='%23b2b3b3'/%3E%3Cpath d='M43 20.5L32 20.5' stroke='%23b2b3b3'/%3E%3Cpath d='M13 20.5L2 20.5' stroke='%23b2b3b3'/%3E%3C/svg%3E%0A");
  background-size: contain;
}
@media(max-width: 992px) {
  .about-content-1,
  .about-content-2 {
    width: 100%;
  }
}


.about-plus-grid {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px 20px;
}
.about-plus {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 10px 20px;
  width: calc((100% - 80px) / 5);
  text-align: center;
}
.about-plus::before {
  content: '';
  order: 2;
  display: block;
  width: 2px;
  height: 20px;
  background: #555;
}
.about-plus .title {
  order: 1;
  font-size: 40px;
  font-weight: var(--font-weight-700);
  line-height: 1;
}
.about-plus .text {
  order: 3;
  font-size: 14px;
  line-height: 1.2;
}
@media(max-width: 992px) {
  .about-header .img {
    opacity: .5;
  }
  .about-header .img1 {
    left: -100px;
  }
  .about-header .img2 {
    right: -100px;
  }
  .about-plus {
    width: calc((100% - 40px) / 3);
  }
}
@media(max-width: 768px) {
  .about-plus-grid {
    flex-flow: column;
    align-items: stretch;
    max-width: 350px;
    margin: 0 auto;
  }
  .about-plus {
    flex-flow: row nowrap;
    width: 100%;
    text-align: left;
  }
  .about-plus::before {
    display: none;
  }
  .about-plus .title,
  .about-plus .text {
    width: calc((100% - 20px) / 2);
  }
  .about-plus .title {
    font-size: 34px;
    text-align: right;
  }
}

.plus-section {
  background: #ebecec url('../../images/plus-section-bg.jpg');
}
.plus-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px;
}
.plus-head {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 36px;
  line-height: 1.2;
  font-weight: var(--font-weight-700);
}
.plus-item {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  gap: 20px;
  position: relative;
  z-index: 2;
}
.plus-item-head {
  display: block;
  position: relative;
  padding-left: 80px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: var(--font-weight-700);
}
.plus-item-head .icon {
  display: block;
  position: absolute;
  left: 0;
  top: -8px;
  width: 40px;
  height: 40px;
  background: no-repeat center;
  background-size: contain;
}
.plus-item-head .icon::before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 20px;
  height: 1px;
  margin-left: 10px;
  background: #000;
  opacity: .5;
}
.plus-item-head .icon-1 {
  background-image: url('../../images/plus-item-icon-1.png');
}
.plus-item-head .icon-2 {
  background-image: url('../../images/plus-item-icon-2.png');
}
.plus-item-head .icon-3 {
  background-image: url('../../images/plus-item-icon-3.png');
}
.plus-item-body {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
}
.plus-item-body .item {
  display: block;
  position: relative;
  width: calc((100% - 10px) / 2);
  padding: 15px;
  font-size: 14px;
}
.plus-item-body .item-box {
  background: #fff;
  border-radius: 10px 0 10px 0;
  box-shadow: 5px 5px 0 0 #f7396d;
}
.plus-item-bg {
  display: block;
  position: absolute;
  z-index: -1;
  top: 20px;
  left: -100px;
  width: calc(100% + 200px);
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.plus-item-bg-3 {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media(max-width: 992px) {
  .plus-grid {
    max-width: 500px;
    margin: 0 auto;
    grid-template-columns: repeat(1,1fr);
  }
  .plus-head {
    align-items: center;
    text-align: center;
  }
}
@media(max-width: 500px) {
  .plus-item-body .item {
    width: 100%;
  }
}


@media(max-width: 768px) {
  :root {
    --b-title-size: 24px;
    --b-text-size: 14px;
  }
}
.banner-which-section {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 var(--container-margin);
  padding: 70px var(--container-padding);
  background: #f7396d;
}
.banner-which-grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 50px 30px;
}
.banner-which-body {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.1;
  font-weight: var(--font-weight);
  color: #fff;
}
.banner-which-body .title {
  font-size: 36px;
  font-weight: 200;
}
.banner-which-foot {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  width: calc((100% - 90px) / 4);
}

@media(max-width: 992px) {
  .banner-which-grid {
    flex-flow: column;
  }
  .banner-which-body,
  .banner-which-foot {
    width: 100%;
  }
  .banner-which-foot {
    align-items: flex-start;
  }
}

@media(max-width: 768px) {
  .banner-which-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .banner-which-body {
    gap: 15px;
    font-size: 14px;
  }
  .banner-which-body .title {
    font-size: 28px;
  }
}

.banner-order-section {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 var(--container-margin);
  padding: 70px var(--container-padding);
  background: #f7396d;
}
.banner-order-grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.banner-order-body {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.1;
  font-weight: var(--font-weight);
  color: #fff;
}
.banner-order-body .title {
  font-size: 36px;
  font-weight: 200;
}
.banner-order-form {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
  width: calc((100% - 30px) / 2);
  gap: 30px;
}
.banner-order-form-col {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: flex-end;
  width: calc((100% - 30px) / 2);
  gap: 10px;
  font-size: 12px;
  color: #fff;
}
.banner-order-form-col .note {
  margin-bottom: 10px;
  opacity: .6;
}

@media(max-width: 992px) {
  .banner-order-grid {
    flex-flow: column;
  }
  .banner-order-body,
  .banner-order-form {
    width: 100%;
  }
}

@media(max-width: 768px) {
  .banner-order-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .banner-order-body {
    gap: 15px;
    font-size: 14px;
  }
  .banner-order-body .title {
    font-size: 28px;
  }
}

@media(max-width: 500px) {
  .banner-order-form {
    flex-flow: column;
  }
  .banner-order-form-col {
    width: 100%;
  }
}



.price-grid {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 20px 50px;
}
.price-item {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 2;
  height: 100%;
  padding: 25px;
  font-size: 14px;
  text-align: left;
  background: #e6e7e7;
  box-shadow: 6px 6px 0 0 #ffbac9;
  border-radius: 20px 0 20px 0;
  transition: all .4s ease;
}
.price-item::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #f7396d 0%, #ff92af 100%);
  opacity: 0;
  transition: all .4s ease;
}
.price-item-head {
  display: block;
  flex: 0 0 auto;
}
.price-item-head .title {
  font-size: 21px;
  font-weight: var(--font-weight-900);
}
.price-item-head .price {
  font-size: 16px;
}
.price-item-head .subtitle {
  margin: 10px -20px 0 -20px;
  padding: 10px 20px 0 20px;
  font-weight: var(--font-weight-700);
  border-top: 1px solid #cacbcb;
}
.price-item-body {
  display: block;
  flex: 1 1 auto;
  padding: 10px 0;
}
.price-item-body p {
  margin: 15px 0;
}
.price-item-foot {
  display: block;
  flex: 0 0 auto;
}
.price-item-foot .btn {
  width: 100%;
}
.price-item-red {
  background: #ffbac9;
  box-shadow: 6px 6px 0 0 #b2b3b3;
}
.price-item-red .price-item-head .subtitle {
  border-color: #fff;
}
@media(max-width: 992px) {
  .price-item {
    width: 320px;
    height: 100%;
  }
}


.review {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  height: 100%;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
  background: #ffdce4;
  border: 15px solid #ffbac9;
  border-radius: 0 20px 0 20px;
  box-shadow: 7px 7px 0 0 rgba(0,0,0,.7);
}
.review-info {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 20px;
  flex: 0 0 150px;
  font-size: 14px;
  line-height: 1.2;
}
.review-info .avatar {
  display: block;
  position: relative;
  overflow: hidden;
  width: 120px;
  height: 120px;
  border: 5px solid #fff;
  border-radius: 50%;
}
.review-info .avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.review-info .text {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: 10px;
}
.review-info .text .name {
  font-size: 18px;
  font-weight: var(--font-weight-600);
}
.review-info .text .date {
  opacity: .7;
}
.review-body {
  display: block;
  flex: 1 1 auto;
}
.review-body .youtube {
  border-radius: 0 15px 0 15px;
}
@media(min-width: 920px) {
  .review {
    width: 800px;
  }
}
@media(max-width: 768px) {
  .review {
    flex-flow: column;
    align-items: stretch;
    padding: 10px;
  }
  .review-info {
    flex-flow: row nowrap;
    align-items: center;
    justify-content: flex-start;
    flex: 1 1 auto;
  }
  .review-info .avatar {
    width: 80px;
    height: 80px;
  }
  .review-info .text {
    align-items: flex-start;
    text-align: left;
    gap: 5px;
  }
}


























/* Модальное окно - растягивается на весь экран */
/* Модальное окно */
.gpv-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8); /* Тёмный фон */
    display: flex;
    align-items: center; /* Центрирование по вертикали */
    justify-content: center; /* Центрирование по горизонтали */
    z-index: 1000;
    overflow: hidden; /* Скрываем излишки */
}

/* Тело модального окна */
.gpv-modal--body {
    width: 80%; /* Ширина окна (в процентах или пикселях) */
    max-width: 800px; /* Максимальная ширина */
    height: auto; /* Высота подстраивается под содержимое */
    max-height: 450px; /* Максимальная высота */
    background: #000; /* Фон модального окна */
    position: relative;
    border-radius: 8px; /* Закруглённые углы (опционально) */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* Тень */
    overflow: hidden; /* Скрываем всё, что выходит за границы окна */
}

/* Видео внутри модального окна */
.gpv-modal--body video {
    width: 100%; /* Видео занимает ширину контейнера */
    height: 100%; /* Видео занимает высоту контейнера */
    object-fit: contain; /* Сохраняем пропорции видео */
    background: #000; /* Задаём фон под видео */
}

/* Фон для закрытия модального окна */
.gpv-modal--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Тёмный фон для клика снаружи */
    z-index: -1; /* Чтобы фон находился позади видео */
}

/* Анимация загрузки */
@keyframes gpv-modal--loading {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes gpv-modal--loading-path {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}



.modal-send-section {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(0,0,0,.3);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.modal-send {
  display: flex;
  flex-flow: column;
  align-items: stretch;
  position: relative;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  padding: 40px;
  background: #fff;
  border-radius: 10px 0 10px 0;
}
.modal-send-close {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.modal-send-close::before {
  content: '';
  display: block;
  width: 26px;
  height: 26px;
  background: no-repeat center url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M38 12.83l-2.83-2.83-11.17 11.17-11.17-11.17-2.83 2.83 11.17 11.17-11.17 11.17 2.83 2.83 11.17-11.17 11.17 11.17 2.83-2.83-11.17-11.17z'/%3E%3Cpath d='M0 0h48v48h-48z' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
}
.modal-send .title {
  font-size: 21px;
}
.modal-send .subtitle {
  margin-top: -10px;
}
/**/