@font-face {
  src: url("../fonts/Futura/FuturaRegular.woff") format("woff");
  font-family: "Futura";
  font-weight: 400;
}
@font-face {
  src: url("../fonts/Futura/FuturaDemi.woff") format("woff");
  font-family: "Futura";
  font-weight: 500;
}
html,
body {
  height: 100%;
  font: 20px/1.2 Futura, sans-serif;
  color: black;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  html,
  body {
    font-size: 16px;
  }
}
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  margin-bottom: 1em;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
}
.h3 {
  font-size: 1.25em;
}
@keyframes fade-in-bottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.anim-fib {
  opacity: 0;
}
.anim-fib.anim--shown {
  animation: fade-in-bottom 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.anim-fil {
  opacity: 0;
}
.anim-fil.anim--shown {
  animation: fade-in-left 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.anim-fir {
  opacity: 0;
}
.anim-fir.anim--shown {
  animation: fade-in-right 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-zoom {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.anim-fiz {
  opacity: 0;
}
.anim-fiz.anim--shown {
  animation: fade-in-zoom 1000ms ease 1;
  animation-fill-mode: forwards;
}
.anim--shown.anim-d250 {
  animation-delay: 250ms;
}
.anim--shown.anim-d500 {
  animation-delay: 500ms;
}
.container {
  max-width: 1170px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.row--align--center {
  align-items: center;
}
.row--justify--center {
  justify-content: center;
}
.col {
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}
.col-1 {
  width: 8.333%;
}
.col-2 {
  width: 16.667%;
}
.col-3 {
  width: 25%;
}
.col-4 {
  width: 33.333%;
}
.col-5 {
  width: 41.667%;
}
.col-6 {
  width: 50%;
}
.col-7 {
  width: 58.333%;
}
.col-8 {
  width: 66.667%;
}
.col-9 {
  width: 75%;
}
.col-10 {
  width: 83.333%;
}
.col-11 {
  width: 91.667%;
}
.col-12 {
  width: 100%;
}
@media screen and (max-width: 992px) {
  .md-hidden {
    display: none;
  }
  .col-md-1 {
    width: 8.333%;
  }
  .col-md-2 {
    width: 16.667%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-4 {
    width: 33.333%;
  }
  .col-md-5 {
    width: 41.667%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 58.333%;
  }
  .col-md-8 {
    width: 66.667%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-10 {
    width: 83.333%;
  }
  .col-md-11 {
    width: 91.667%;
  }
  .col-md-12 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sm-hidden {
    display: none;
  }
  .col-sm-1 {
    width: 8.333%;
  }
  .col-sm-2 {
    width: 16.667%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-4 {
    width: 33.333%;
  }
  .col-sm-5 {
    width: 41.667%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-7 {
    width: 58.333%;
  }
  .col-sm-8 {
    width: 66.667%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-10 {
    width: 83.333%;
  }
  .col-sm-11 {
    width: 91.667%;
  }
  .col-sm-12 {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .xs-hidden {
    display: none;
  }
  .col-xs-1 {
    width: 8.333%;
  }
  .col-xs-2 {
    width: 16.667%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-4 {
    width: 33.333%;
  }
  .col-xs-5 {
    width: 41.667%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-7 {
    width: 58.333%;
  }
  .col-xs-8 {
    width: 66.667%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-10 {
    width: 83.333%;
  }
  .col-xs-11 {
    width: 91.667%;
  }
  .col-xs-12 {
    width: 100%;
  }
}
.section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.section--flush--top {
  padding-top: 0;
}
.section--flush--bottom {
  padding-bottom: 0;
}
.section--flush--both {
  padding-top: 0;
  padding-bottom: 0;
}
.page-layout {
  overflow: hidden;
}
.page-footer {
  padding-top: 40px;
  padding-bottom: 40px;
  border-top: 1px solid #e5e5e5;
  color: #aaa;
  background: #fafafa;
}
.section__title {
  margin-bottom: 1rem;
  white-space: pre-line;
  font-weight: 400;
  font-size: 2rem;
  text-align: center;
  line-height: 1.35;
}
.btn {
  display: inline-block;
  box-sizing: border-box;
  margin: 0;
  padding: 0.5em 1.5em;
  font-weight: 400;
  font-size: inherit;
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
  color: white;
  cursor: pointer;
  background: #d396db;
  border-radius: 999px;
  border: 2px solid #d396db;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: all 250ms ease;
}
.btn:hover {
  background-color: #ab65be;
  border-color: #ab65be;
}
.btn.btn--empty {
  color: #d396db;
  background-color: transparent;
}
.btn.btn--empty:hover {
  color: white;
  background-color: #d396db;
}
.btn--style--grey {
  color: black;
  background-color: #e4e4e4;
  border-color: #e4e4e4;
}
.btn--style--grey:hover {
  background-color: #ccc;
  border-color: #ccc;
}
.btn--style--grey.btn--empty {
  color: #ccc;
  background-color: transparent;
  border-color: #e4e4e4;
}
.btn--style--grey.btn--empty:hover {
  color: black;
  background-color: #e4e4e4;
  border-color: #e4e4e4;
}
.btn--size--medium {
  font-size: 1.25em;
}
.logo {
  position: relative;
  width: 75%;
  max-width: 400px;
  height: 100px;
  margin: 40px auto 20px;
}
.slogan {
  margin-bottom: 40px;
  font-weight: 500;
  font-size: 0.75em;
  text-transform: uppercase;
  text-align: center;
}
@keyframes a-logo-bg {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.logo__bg {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/logo-bg-violet.png") no-repeat center;
  background-size: contain;
}
@keyframes a-logo-img {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.logo__img {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../images/logo.png") no-repeat left center;
  background-size: contain;
  opacity: 0;
  transform: scale(1.2);
  animation: a-logo-img 1000ms ease 1;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
.main-menu {
  font-family: "Oswald", sans-serif;
  font-size: 0.8rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-top: 1px solid #ccc;
}
.main-menu .menu__items {
  display: flex;
  justify-content: center;
}
.main-menu .menu__link {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  color: #aaa;
}
.main-menu .menu__link:hover {
  color: #666;
}
.carousel {
  position: relative;
}
.carousel__viewport {
  overflow: hidden;
}
.carousel__items {
  display: flex;
  width: 10000%;
}
.carousel__item {
  width: 1%;
}
.carousel__prev,
.carousel__next {
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background: #e5e5e5;
  cursor: pointer;
}
.carousel__prev {
  left: 0;
}
.carousel__next {
  right: 0;
}
.carousel__indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.carousel__indicator {
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  margin-right: 10px;
  background: #ccc;
  border-radius: 999px;
  transition: 250ms ease;
}
.carousel__indicator--active {
  background: black;
}
.carousel__img {
  display: block;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.intro {
  max-width: 800px;
  margin: auto;
  padding: 1rem;
  text-align: center;
  font-size: 1.35rem;
  line-height: 1.2;
}
.emojis {
  text-align: center;
  padding: 1rem;
}
.emoji {
  display: inline-block;
  width: 64px;
  padding: 10px;
}
.tabs__nav {
  margin: 20px;
  text-align: center;
}
.tabs__nav .menu__item {
  display: block;
  padding: 10px 20px;
  cursor: pointer;
}
.tabs__nav .menu__item--active {
  background: #d396db;
  border-radius: 999px;
}
.tabs__nav .menu__items {
  display: inline-flex;
  justify-content: center;
  background: #f7f8fa;
  border-radius: 999px;
}
.tabs__item {
  display: none;
}
.tabs__item--open {
  display: block;
}
.progress {
  position: relative;
  width: 100%;
  height: 10px;
}
.progress__fill {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: limegreen;
  transition: width 250ms ease;
}
.progress__text {
  position: absolute;
  left: 0;
  top: 0;
  padding-left: 2px;
  padding-right: 2px;
  text-align: center;
  font-size: 10px;
  line-height: 10px;
  color: white;
  transform: translateX(-100%);
  transition: left 250ms ease;
}
.box {
  border: 10px solid #d396db;
}
.box__wrap {
  margin: -1px;
  padding: 50px;
  border: 1px solid #ab65be;
}
@media screen and (max-width: 576px) {
  .box {
    margin-left: -15px;
    margin-right: -15px;
    border-width: 5px;
  }
  .box__wrap {
    padding: 20px;
  }
}
.designer__wrap {
  position: relative;
}
.designer__progress {
  position: absolute;
  left: 0;
  top: 0;
}
.part {
  display: none;
}
.part--active {
  display: block;
}
.part__title {
  margin-bottom: 50px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
}
.product__img {
  display: block;
  max-width: 100%;
  height: auto;
}
.part__ctrls {
  padding-top: 50px;
  text-align: center;
}
.part__ctrls .btn {
  margin: 5px;
}
.part__block {
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.2;
}
.block {
  padding: 20px;
  font-size: 0.9rem;
  border: 1px solid #f0f0f0;
}
.block__item + .block__item {
  margin-top: 10px;
}
.pic {
  display: inline-block;
}
.pic__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
}
.pic__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}
.slider {
  position: relative;
  padding: 50px 8% 0;
}
.slider__viewport {
  overflow: hidden;
}
.slider__items {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 10000%;
  touch-action: manipulation;
}
.slider__items::after {
  content: "";
  display: table;
  clear: both;
}
.slider__item {
  width: 1%;
  float: left;
  touch-action: pan-y;
  text-align: center;
}
.slider__prev {
  position: absolute;
  left: 0;
  top: 0;
  width: 8%;
  height: 100%;
  background: url("../images/a-prev.svg") no-repeat center;
  background-size: 40% auto;
  cursor: pointer;
  user-select: none;
}
.slider__next {
  position: absolute;
  right: 0;
  top: 0;
  width: 8%;
  height: 100%;
  background: url("../images/a-next.svg") no-repeat center;
  background-size: 40% auto;
  cursor: pointer;
  user-select: none;
}
.slider__bullets {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-left: 8%;
  padding-right: 8%;
  height: 6px;
  gap: 4px;
}
.slider__bullet {
  width: 100%;
  max-width: 100px;
  background: #f0f0f0;
}
.slider__bullet--active {
  background: #d396db;
}
.note {
  padding: 20px 8% 0;
  color: #666;
}
.label {
  display: block;
  margin-bottom: 0.25em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.textbox {
  position: relative;
}
.textbox__input {
  border: 1px solid #ccc;
  border-radius: 3px;
  overflow: hidden;
}
.textbox__input .input__ctrl {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 0.25em 0.5em;
  font-weight: 400;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.textbox__input input.input__ctrl {
  height: 1.7em;
}
.textbox__input textarea.input__ctrl {
  height: auto;
  resize: vertical;
  min-height: 2.9em;
}
.checkbox {
  display: inline-block;
  position: relative;
  min-height: 1.5em;
  padding-left: 2em;
  padding-top: 0.15em;
  line-height: 1.2;
  cursor: pointer;
}
.checkbox__input {
  position: absolute;
  opacity: 0;
}
.checkbox__main::before,
.checkbox__main::after {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  left: 0.75em;
  top: 0.75em;
}
.checkbox__main::before {
  width: 1.5em;
  height: 1.5em;
  margin-left: -0.75em;
  margin-top: -0.75em;
  border: 2px solid #d396db;
  border-radius: 3px;
}
.checkbox__main::after {
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  background: url(../images/tick-violet.svg) no-repeat center;
  background-size: contain;
  transform: translateY(-100%);
  opacity: 0;
  transition: 250ms ease;
}
.checkbox__input:checked ~ .checkbox__main::after {
  transform: translateY(0);
  opacity: 1;
}
.switch__box {
  display: inline-block;
  position: relative;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
}
.switch__input {
  position: absolute;
  opacity: 0;
}
.switch__thumb {
  display: block;
  position: relative;
  width: 2.4em;
  padding: 0.15em;
  background: rgba(211, 150, 219, 0.25);
  border: 1px solid #d396db;
  border-radius: 999px;
}
.switch__thumb::before {
  content: "";
  display: block;
  width: 1.2em;
  height: 1.2em;
  background: white;
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: 250ms ease;
}
.switch__input:checked ~ .switch__thumb {
  background: #d396db;
}
.switch__input:checked ~ .switch__thumb::before {
  margin-left: 1.2em;
}
.spinner {
  display: inline-block;
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
  font-family: inherit;
  font-size: inherit;
  border: 1px solid #d396db;
  border-radius: 3px;
  overflow: hidden;
}
.spinner .spinner__value {
  box-sizing: border-box;
  width: 3em;
  height: 2em;
  padding: 0 0.5rem;
  font-family: inherit;
  font-size: inherit;
  text-align: center;
  background: white;
  border: none;
  pointer-events: none;
}
.spinner .spinner__minus,
.spinner .spinner__plus {
  position: absolute;
  top: 0;
  width: 2em;
  height: 2em;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
.spinner .spinner__minus::before,
.spinner .spinner__plus::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 1.35em;
  line-height: 1.5;
  text-align: center;
  background: rgba(211, 150, 219, 0.25);
}
.spinner .spinner__minus:hover::before,
.spinner .spinner__plus:hover::before {
  background: #d396db;
}
.spinner .spinner__minus {
  left: 0;
}
.spinner .spinner__minus::before {
  content: "−";
}
.spinner .spinner__plus {
  right: 0;
}
.spinner .spinner__plus::before {
  content: "+";
}
.spinner--style--grey {
  border-color: #d1d8e0;
}
.spinner--style--grey .spinner__minus::before,
.spinner--style--grey .spinner__plus::before {
  background: rgba(209, 216, 224, 0.25);
}
.spinner--style--grey .spinner__minus:hover::before,
.spinner--style--grey .spinner__plus:hover::before {
  background: #d1d8e0;
}
.spinner--style--blue {
  border-color: #4b7bec;
}
.spinner--style--blue .spinner__minus::before,
.spinner--style--blue .spinner__plus::before {
  background: rgba(75, 123, 236, 0.25);
}
.spinner--style--blue .spinner__minus:hover::before,
.spinner--style--blue .spinner__plus:hover::before {
  background: #4b7bec;
}
.spinner--style--red {
  border-color: #fc5c65;
}
.spinner--style--red .spinner__minus::before,
.spinner--style--red .spinner__plus::before {
  background: rgba(252, 92, 101, 0.25);
}
.spinner--style--red .spinner__minus:hover::before,
.spinner--style--red .spinner__plus:hover::before {
  background: #fc5c65;
}
.spinner--size--big {
  font-size: 1.5em;
}
.selector {
  display: inline-flex;
}
.selector--wide {
  width: 100%;
}
.selector__btn {
  flex: 1;
  position: relative;
  cursor: pointer;
}
.selector__btn + .selector__btn {
  margin-left: -1px;
}
.selector__input {
  position: absolute;
  opacity: 0;
}
.selector__label {
  display: block;
  padding: 0.5em 1em;
  text-align: center;
  font-size: inherit;
  line-height: 1;
  border: 1px solid #d396db;
  transition: 250ms ease;
}
.selector__btn:first-child .selector__label {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.selector__btn:last-child .selector__label {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.selector__input:checked ~ .selector__label {
  background: #d396db;
}
.select {
  position: relative;
}
.select::after {
  content: "▼";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  height: 1em;
  margin: -0.5em 0.5em 0;
  text-align: center;
  font-size: 1em;
  line-height: 1;
  color: black;
}
.select__input {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  box-sizing: border-box;
  padding: 0.25em 0.5em;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  color: black;
  background: transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.gauge {
  position: relative;
  width: 100%;
  min-width: 100px;
  max-width: 800px;
  height: calc(24px + 1.25em);
}
.gauge__track {
  position: absolute;
  height: 10px;
  left: 0;
  right: 0;
  top: 12px;
  margin-top: -5px;
  background: #f3e2f5;
  border-radius: 5px;
  overflow: hidden;
}
.gauge__fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: #e3bce8;
}
.gauge__thumb {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  margin-left: -12px;
  background: #d396db;
  border-radius: 50%;
  cursor: pointer;
}
.gauge__label {
  position: absolute;
  top: 100%;
  margin-top: 0.25em;
  font-weight: 700;
  font-size: inherit;
  line-height: 1;
  color: #333;
}
.form {
  max-width: 500px;
  margin: auto;
}
.form__row {
  padding-top: 10px;
  padding-bottom: 10px;
}
.form__row--submit {
  padding-top: 20px;
  text-align: center;
}
.result__output {
  margin-bottom: 40px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.result__output img {
  display: block;
  max-width: 100%;
  height: auto;
}
.output__cart {
  max-width: 800px;
  margin: auto;
}
.output__cart .cart__item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
}
.output__cart .cart__img {
  width: 200px;
  flex: 1;
}
.output__cart .cart__desc {
  padding-left: 40px;
  flex: 1;
}
.output__cart .cart__name {
  font-weight: 700;
}
.output__total {
  margin-top: 20px;
  padding-top: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 1.5em;
  border-top: 1px solid #f0f0f0;
}
.benefits {
  max-width: 900px;
  margin: auto;
  text-align: center;
}
.benefits .col {
  padding: 20px;
}
.responses__carousel {
  max-width: 640px;
  margin: auto;
  padding-left: 10%;
  padding-right: 10%;
}
.responses__carousel .carousel__items {
  width: 10000%;
}
.responses__carousel .carousel__item {
  width: 1%;
}
.responses__carousel .carousel__prev,
.responses__carousel .carousel__next {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  height: 100%;
  width: 8%;
  cursor: pointer;
  transition: 250ms ease;
}
.responses__carousel .carousel__prev,
.responses__carousel .carousel__next {
  background: white no-repeat center;
  background-size: 50% auto;
}
.responses__carousel .carousel__prev {
  background-image: url("../images/a-prev.svg");
}
.responses__carousel .carousel__next {
  background-image: url("../images/a-next.svg");
}
.response {
  box-sizing: border-box;
  padding: 40px 0;
}
.response__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.response__body {
  font-size: 1.2rem;
  line-height: 1.35;
  text-align: center;
}
.response__img {
  display: block;
  width: 60px !important;
  height: 60px !important;
  margin-right: 20px;
  border-radius: 999px;
  overflow: hidden;
}
.response__title {
  line-height: 1.2;
}
.response__names {
  font-weight: bold;
}
.response__date {
  font-size: 0.9rem;
  color: #aaa;
}
.contacts__item {
  padding: 20px 0;
  text-align: center;
}
.contacts__phone,
.contacts__email {
  font-weight: 500;
  font-size: 1.5rem;
}
.contacts__link {
  text-decoration: none;
  color: inherit;
}
