@charset "UTF-8";

/* Normalize */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

ul,
ol {
  padding-left: 1em;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

img {
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

input[type=file] {
  position: absolute;
  display: none;
  opacity: 0;
  z-index: -1;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number],
input[type=number]:hover,
input[type=number]:focus {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: textfield;
}

input[type=text]:focus,
input[type=tel]:focus,
input[type=email]:focus,
input[type=number]:focus,
input[type=password]:focus {
  outline: none;
}

textarea {
  font-family: inherit;
}


:root {
  --bg: #F7F6F5;
  --ink: #272727;
  --muted: #6b6b6b;
  --brand: #EE3524;
  --brand-dark: #9e2f24;
  --card: #ffffff;
  --ok: #0a7d2f;
  --warn: #a76a00;
  /* --shadow: 0 8px 24px rgba(0,0,0,.08); */
  --shadow: none;
}

html,
body {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
  color: var(--ink);
  background: var(--bg);
}

h1,
.h1 {
  font-weight: 600;
  font-size: 72px;
  line-height: 1;
  letter-spacing: 2%;
}

h2,
.h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 1.2;
}

h3,
.h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}

h4,
.h4 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
}

h5,
.h5 {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
}

h6,
.h6 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
}

.bg,
.bg__gradient,
.bg__shadow {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.bg__media {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: inherit;
}

.btn {
  font-size: 1em;
  line-height: 1.6;
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 70px;
  padding: 0 48px;
  background: var(--brand);
  border: none;
  border-radius: 8px;
  transition: 0.5s;
  touch-action: manipulation;
  box-shadow: var(--shadow);
}

.btn__icon {
  width: 24px;
  height: 24px;
}

.btn__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.btn svg path {
  fill: #FFFFFF;
  transition: 0.5s;
}

.btn:hover {
  color: #fff;
  background: var(--brand-dark);
}

.btn:disabled,
.btn.disabled {
  color: #959c9b;
  background: #eaedec;
}

.btn_second {
  color: #1f1f1f;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: none;
}

.btn_second:hover {
  color: var(--muted);
  background: #fff;
}

button:disabled {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

a.disabled {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
}

.title-wrapper {
  position: relative;
  margin-bottom: 32px;
}

.title-wrapper > *:not(:last-child) {
  margin-bottom: 14px;
}

.title-wrapper .title {}

.title-wrapper .description {}

.title-wrapper_centered {
  text-align: center;
  display: block;
  width: 100%;
}

.title-wrapper_centered .description {
  max-width: 630px;
  margin: 0 auto;
}

.input {}

.input-base {
  position: relative;
}

.input-base .wpcf7-form-control {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 5px;
}
.input-base .wpcf7-list-item,
.input-base .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}
.input-base .wpcf7-list-item input {
  width: 1.1em;
  height: 1.1em;
}
.input-base .wpcf7-list-item-label {
  font-size: .9em;
  color: var(--muted);
}

.input-base span {
  display: block;
}

.input-base .wpcf7-not-valid-tip {
  font-size: .9em;
}

.input-base .label {
  font-size: .9em;
  color: var(--muted);
  display: block;
  margin-bottom: 3px;
}

.input-base .input,
.input-base .textarea {
  font-size: 1rem;
  line-height: 1.3;
  color: inherit;
  width: 100%;
  height: 50px;
  padding: 12px 14px;
  background-color: #fff !important;
  border: 1px solid #e3e0db;
  border-radius: 15px;
  outline: none;
  transition: 0.5s;
}

.input-base .input::-moz-placeholder,
.input-base .textarea::-moz-placeholder,
.input-base .input::placeholder,
.input-base .textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}

.input-base .input:focus,
.input-base .textarea:focus {
  color: var(--ink);
  border-color: var(--ink);
}

.input-base .input:invalid,
.input-base .input.invalid,
.input-base .textarea:invalid,
.input-base .textarea.invalid {
  color: #fc5761;
  border-color: #fc5761;
}

.input-base .input:invalid::-moz-placeholder,
.input-base .input.invalid::-moz-placeholder,
.input-base .textarea:invalid::-moz-placeholder,
.input-base .textarea.invalid::-moz-placeholder {
  color: #fc5761;
}

.input-base .input:invalid::placeholder,
.input-base .input.invalid::placeholder,
.input-base .textarea:invalid::placeholder,
.input-base .textarea.invalid::placeholder {
  color: #fc5761;
}

.input-base.invalid .input {
  color: #fc5761;
  border-color: #fc5761;
}

.input-base .textarea {
  height: 120px !important;
  resize: none;
}

.label-check {
  position: relative;
  display: block;
  padding-left: 29px;
}

.label-check br {
  display: none;
}

.label-check a {}

.label-check .wpcf7-form-control-wrap {
  position: static;
}

.label-check .wpcf7-list-item {
  margin-left: 0;
}

.label-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.label-check input + span {
  position: absolute;
  top: 0.2em;
  left: 0;
  width: 16px;
  height: 16px;
}

.label-check input + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid var(--brand);
  border-radius: 4px;
  box-sizing: border-box;
  transition: 0.5s;
}

.label-check input + span::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #FFFFFF;
  border: 2px solid;
  border-width: 0 0 2px 2px;
  transition: 0.3s;
  opacity: 0;
  transform: translate(-50%, -75%) rotate(-45deg);
}

.label-check input:checked + span::after {
  opacity: 1;
}

.label-check input:checked + span::before {
  border-color: var(--brand);
  background: var(--brand);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.primary-navigation-content {
  justify-content: flex-start;
  padding: 1.5rem 0;
}

header .site-logo {
  filter: grayscale(1) brightness(10);
}

.main {
  width: 100%;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 50px;
}

.main_no-padding {
  padding-top: 0;
  padding-bottom: 0;
}

.section {
  padding: 40px 0;
}

.grid {
  display: grid;
  gap: 15px;
}
.grid.cols-2 {
  grid-template-columns: 1fr 1fr;
}
.grid.cols-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.grid.cols-4 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.grid.cols-5 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.list {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.list > * {
  height: auto;
}
.list.cols-2 > * {
  width: calc(50% - 15px / 2);
}
.list.cols-3 > * {
  width: calc(33% - 15px / 4);
}
.list.cols-4 > * {
  width: calc(25% - 15px / 6);
}
.list.cols-5 > * {
  width: calc(20% - 15px / 8);
}

.text-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  height: 100%;
  padding: 16px 24px;
  background: var(--card);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.text-item__name {}
.text-item__name span {
  color: var(--brand);
}
.text-item__text {
  color: var(--muted);
}

.notice {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

/* CF7 */

.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 0.9em;
  margin-top: 8px;
}

.wpcf7 form .wpcf7-response-output {
  padding: 15px;
  margin: 20px 0 0 0;
  border-radius: 15px;
}

.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}

*[modal] {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 22;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal.open .modal__content {
  transform: translateY(0px);
}

.modal__wrapper {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  padding: 100px 30px;
}

.modal__shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.55);
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 640px;
  padding: 20px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 15px;
  transition: 0.5s;
  transform: translateY(-30px);
}

.modal__close {
  color: var(--ink);
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
}

.modal__close:hover {
  color: var(--brand);
}

.modal .line {
  width: 100%;
  height: 1px;
  background: #EFEFED;
}

.cf-modal {
  padding: 20px;
  max-width: 450px;
  text-align: center;
}

.cf-modal__title {
  margin-bottom: 30px;
}

.cf-modal__text {
  margin-bottom: 30px;
}

.cf-modal__line {
  margin-bottom: 30px;
}

.cf-modal form {
  text-align: left;
  width: 100%;
}

.cf-modal form > :not(:last-child) {
  margin-bottom: 15px;
}

.cf-modal form .input-base p,
.cf-modal form .input-base span {
  display: block;
}

.cf-modal form .input-base .input::-moz-placeholder,
.cf-modal form .input-base .textarea::-moz-placeholder {
  opacity: 0.8;
}

.cf-modal form .input-base .input::placeholder,
.cf-modal form .input-base .textarea::placeholder {
  opacity: 0.8;
}

.cf-modal form .label-check {
  font-size: 0.9em;
  margin-bottom: 30px;
}

.cf-modal form .button-wrapper,
.cf-modal form .button-wrapper > p {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}

.cf-modal form .button-wrapper .btn {
  flex: 1 0 100%;
  margin-bottom: 0px;
  cursor: pointer;
}

.cf-modal form .wpcf7-spinner {
  position: absolute;
  right: 24px;
  margin: 0;
}

.cf-modal form .wpcf7-response-output {
  text-align: center;
  margin: 15px 0 0 !important;
  border-radius: 15px;
}

.cf-modal form .wpcf7-response-output:empty {
  display: none;
}


.block-title {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  min-height: 700px;
  margin-bottom: 40px;
}
.block-title .bg__gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%), linear-gradient(277.17deg, rgba(0, 0, 0, 0) 63.3%, rgba(0, 0, 0, 0.7) 97.49%);
}
.block-title .container {
  position: relative;
  height: 100%;
}
.block-title .content {
  color: #fff;
  padding: 24px 0;
}
.block-title .content .h1 {
  margin-bottom: 16px;
}
.block-title .content .text {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 24px;
}
.block-title .content .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.block-sets {}
.block-sets .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-radius: 15px;
}
.block-sets .item__image,
.block-sets .item__image img {
  aspect-ratio: 4/3;
  display: block;
  width: 100%;
  height: auto;
  background: #eee;
  border-radius: 8px;
  object-fit: cover;
}
.block-sets .item__number {
  color: var(--muted);
}
.block-sets .item__name {
  font-weight: 600;
}
.block-sets .item__price {
  font-size: 1em;
  font-weight: 600;
}
.block-sets .item__price span {
  color: var(--muted);
}
.block-sets .item__text ul {
  padding-left: 1em;
}
.block-sets .item__text > * {
  margin-bottom: 0;
}
.block-sets .item__text > *:not(:last-child) {
  margin-bottom: 1em;
}
.block-sets .item .btn {
  margin-top: auto;
}

.block-personalization {}
.block-personalization .text-item {
  height: auto;
}

.block-how-work {}

.block-payment-delivery {}

.block-reviews {}
.block-reviews .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.block-reviews .item__image,
.block-reviews .item__image img {
  aspect-ratio: 16/9;
  display: block;
  width: 100%;
  height: auto;
  background: #eee;
  border-radius: 15px;
  object-fit: cover;
}
.block-reviews .item__line {
  width: 100%;
  height: 1px;
  background: #eee;
}
.block-reviews .item__text {
  font-style: italic;
  width: 100%;
  padding: 20px;
  background: var(--card);
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.block-reviews .item__text ul {
  padding-left: 1em;
}
.block-reviews .item__text > * {
  margin-bottom: 0;
}
.block-reviews .item__text > *:not(:last-child) {
  margin-bottom: 1em;
}
.block-reviews .arrows-wrapper {
  gap: 32px;
}
.block-reviews .partners-section-header .arrow {
  width: 48px;
  height: 48px;
  background-color: var(--card);
  border-radius: 8px;
}
.block-reviews #partners-slider {
  display: flex;
}
.block-reviews .partner-logo {
  margin: 0 auto;
}
.block-reviews .partner-logo img {
  filter: initial;
}

.block-office-subscription {}
.block-office-subscription .title-wrapper {
  margin-bottom: 0;
}
.block-office-subscription .title-wrapper .description {
  max-width: 676px;
}

.block-form {}
.block-form .wrapper {
  display: flex;
  gap: 24px;
}
.block-form .form {
  flex: 1;
}
.block-form .texts {
  width: 100%;
  padding-top: 20px;
  max-width: 400px;
}
.block-form .texts .text-item {
  height: auto;
  padding: 0;
  background: transparent;
}
.block-form .texts .text-item:not(:last-child) {
  margin-bottom: 40px;
}
.block-form .input-base_company {
  /* grid-area: company; */
}
.block-form .input-base_contact-face {
  /* grid-area: contact-face; */
}
.block-form .input-base_email {
  /* grid-area: email; */
}
.block-form .input-base_phone {
  /* grid-area: phone; */
}
.block-form .input-base_format {
  /* grid-area: format; */
}
.block-form .input-base_volume {
  /* grid-area: volume; */
}
.block-form .input-base_budget {
  /* grid-area: budget; */
}
.block-form .input-base_call {
  /* grid-area: call; */
}
.block-form .input-base_message {
  /* grid-area: message; */
  grid-column: 1 / 2 span;
}
.block-form .wpcf7 form > p,
.block-form .wpcf7 form .wpcf7-response-output {
  grid-column: 1 / 2 span;
}
.block-form .wpcf7 form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 16px;
}
.block-form .wpcf7 p {
  margin: 0;
}
.block-form .wpcf7 button[type="submit"] {
  width: 100%;
}

.block-faq {}

.bd-footer {
  margin: 0;
}

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

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: calc(1396px + var(--bs-gutter-x) * .5);
  }
}

@media (max-width: 1280px) {
  .grid.cols-4,
  .grid.cols-5 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .list.cols-4 > *,
  .list.cols-5 > * {
    width: calc(33% - 15px / 4);
  }
  .main {
    padding-bottom: 30px;
  }
  .section {
    padding: 30px 0;
  }
  .block-title {
    margin-bottom: 30px;
  }
  .block-form .input-base_message {
    grid-column: 1 / 1 span;
  }
  .block-form .wpcf7 form > p,
  .block-form .wpcf7 form .wpcf7-response-output {
    grid-column: 1 / 1 span;
  }
  .block-form .wpcf7 form {
    display: grid;
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1024px) {
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5 {
    grid-template-columns: 1fr 1fr;
  }
  .list.cols-3 > *,
  .list.cols-4 > *,
  .list.cols-5 > * {
    width: calc(50% - 15px / 2);
  }

  .block-form .wrapper {
    flex-wrap: wrap;
  }
  .block-form .wrapper .texts {
    padding-top: 0;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .grid.cols-2,
  .grid.cols-3,
  .grid.cols-4,
  .grid.cols-5 {
    grid-template-columns: 1fr;
  }
  .list.cols-2 > *,
  .list.cols-3 > *,
  .list.cols-4 > *,
  .list.cols-5 > * {
    width: 100%;
  }
  .main {
    padding-bottom: 20px;
  }
  .section {
    padding: 20px 0;
  }
  .block-title {
    margin-bottom: 20px;
  }

  html,
  body {
    font-size: 14px;
  }

  .title {
    font-size: 24px;
  }


  h1,
  .h1 {
    font-size: 48px;
    letter-spacing: 0;
  }

  h2,
  .h2 {
    font-size: 34px;
  }

  h3,
  .h3 {
    font-size: 20px;
  }

  h4,
  .h4 {
    font-size: 18px;
  }

  h5,
  .h5 {
    font-size: 17px;
  }

  h6,
  .h6 {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
  }

  .title-wrapper {
    margin-bottom: 15px;
  }

  .title-wrapper > *:not(:last-child) {
    margin-bottom: 10px;
  }

  .title-wrapper .description {
    max-width: 100%;
  }

  .title-wrapper_centered .description {
    max-width: 100%;
  }

  .input-base .wpcf7-form-control {
    padding-top: 0;
  }

  .input-base .input,
  .input-base .textarea {
    height: 47px;
    padding: 16.5px 14px 14.5px 14px;
    border-radius: 15px;
  }

  .label-check {
    padding-right: 19px;
  }

  .block-title {}
  .block-title .bg__media {
    object-position: center;
  }
  .block-title .bg__shadow {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%),
      linear-gradient(277.17deg, rgba(0, 0, 0, 0) 63.3%, rgba(0, 0, 0, 0.7) 97.49%);
  }
  .block-title .content .text {
    font-size: 18px;
  }
  .block-title .content .btns {
    gap: 12px;
  }
  .block-title .content .btn {
    padding: 0 22px;
  }

  .block-reviews .partners-section-header {
    justify-content: flex-start;
  }
}


