@charset "UTF-8";
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

h6, .h6, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h6, .h6 {
  font-size: 1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul {
  padding-left: 2rem;
}


ul {
  margin-top: 0;
  margin-bottom: 1rem;
}


ul ul {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  vertical-align: middle;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/

iframe {
  border: 0;
}

[hidden] {
  display: none !important;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
   .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
   .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
   .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
   .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
   .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.col {
  flex: 1 0 0%;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}
@media (min-width: 768px) {

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
@media (min-width: 992px) {

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
  }
  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  opacity: 1;
}
.btn-close:disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}
.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
}

/* rtl:begin:ignore */

/* rtl:end:ignore */

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-none {
  display: none !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.top-50 {
  top: 50% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.end-0 {
  right: 0 !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-center {
  align-items: center !important;
}

.order-0 {
  order: 0 !important;
}

.order-1 {
  order: 1 !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.p-3 {
  padding: 1rem !important;
}

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

/* rtl:begin:remove */

/* rtl:end:remove */

.text-muted {
  --bs-text-opacity: 1;
  color: #6c757d !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

@media (min-width: 576px) {

  .d-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) {

  .d-md-none {
    display: none !important;
  }

  .order-md-0 {
    order: 0 !important;
  }

  .order-md-1 {
    order: 1 !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}
@media (min-width: 992px) {

  .align-items-lg-center {
    align-items: center !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

.header {
  padding-top: 71px;
}

.header__publish-button {
  color: #fff;
  text-decoration: none;
}

.header__publish-button:hover {
  color: #ffffff;
}

.header__navbar {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  color: #ffffff;
  font-size: 1.2rem;
  background-color: #db1a21;
  transition: background-color 0.5s;
}

.header__account {
  position: relative;
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.header__account::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  right: -20px;
  display: none;
  background-image: url("/img/icons/chevron-right.svg");
  background-size: cover;
  transition: right 0.5s;
}

.header__account:hover {
  color: #ffffff;
}

.header__account:hover::after {
  right: -25px;
  transition: right 0.5s;
}

.header__link {
  display: inline-block;
  padding: 0 20px 0 0;
  color: #ffffff;
  text-decoration: none;
}

.header__link::after {
  content: "";
  display: block;
  border-bottom: solid 2px #ffffff;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}

.header__link:hover {
  color: #ffffff;
}

.header__link:hover::after {
  color: #ffffff;
  transform: scaleX(1);
}

.header__link_active::after {
  transform: scaleX(1);
}

.header_transparent {
  background: linear-gradient(45deg, #f1f3fc, #e1fff1);
  background: -ms-linear-gradient(45deg, #f1f3fc, #e1fff1);
}
.header_transparent .header__navbar {
  background-color: transparent;
  transition: background-color 0.5s;
}
.header_transparent .navbar-brand, .header_transparent .header__link, .header_transparent .editus-dropdown__title, .header_transparent .editus-dropdown__link {
  color: #000000;
}
.header_transparent .navbar-brand:hover {
  color: #000000;
}
.header_transparent .header__link::after {
  border-bottom: solid 2px #000000;
}
.header_transparent .header__account::after {
  background-image: url(/img/icons/chevron-right-black.svg);
}
.header_transparent .editus-dropdown__btn path {
  stroke: #000000;
}
.header_transparent .header__publish-button {
  color: #000000;
}
@media (min-width: 992px) {
  .header__publish-button {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 45px;
    padding: 0.7em;
    color: #db1a21;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    border: 2px solid #ffffff;
    background-color: #ffffff;
    border-radius: 50px;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }

  .header__publish-button:hover {
    color: #ffffff;
    border: 2px solid #ffffff;
    background-color: #db1a21;
  }

  .header__publish-button:active {
    transform: scale(1.02);
    transition: transform 0.1s;
  }

  .header__account::after {
    display: block;
  }

  .header_transparent .header__publish-button {
    color: #ffffff;
    border: 2px solid #db1a21;
    background-color: #db1a21;
  }
  .header_transparent .header__publish-button:hover {
    color: #db1a21;
    border: 2px solid #db1a21;
    background-color: transparent;
  }
}
.editus-dropdown {
  position: relative;
}

.editus-dropdown__btn {
  border: none;
  background-color: transparent;
}

.editus-dropdown__btn.collapsed {
  transform: rotate(0deg);
  transition: transform 0.25s;
}

.editus-dropdown__btn:not(.collapsed) {
  transform: rotate(90deg);
  transition: transform 0.25s;
}

.editus-dropdown__list {
  list-style: none;
}

.editus-dropdown__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
}

.editus-dropdown__link:hover {
  color: #db1a21;
}

@media (min-width: 992px) {
  .editus-dropdown {
    position: relative;
  }

  .editus-dropdown__btn {
    display: none;
  }

  .editus-dropdown__list {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 0;
    padding-top: 1em;
    background-color: transparent;
    border-radius: 0.5em;
  }

  .editus-dropdown__list::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% - 1.2em);
    width: 1em;
    height: 1em;
    background-image: url("/img/icons/up-arrow.png");
    background-size: cover;
  }

  .editus-dropdown__list::after {
    content: "";
    position: absolute;
    top: 1em;
    width: 100%;
    height: calc(100% - 1em);
    background-color: #ffffff;
    border-radius: 0.5em;
    box-shadow: 0 5px 9px 0 #464646;
    z-index: -1;
  }

  .editus-dropdown:hover .editus-dropdown__list {
    display: block;
  }

  .editus-dropdown__item:first-child .editus-dropdown__link {
    border-radius: 0.5em 0.5em 0 0;
  }

  .editus-dropdown__item:last-child .editus-dropdown__link {
    border-radius: 0 0 0.5em 0.5em;
  }

  .editus-dropdown__link {
    display: block;
    padding: 1em 2em;
    color: #000000;
    text-decoration: none;
    background-color: #ffffff;
    white-space: nowrap;
  }

  .editus-dropdown__title {
    cursor: pointer;
  }
}
.header_transparent-white .editus-dropdown__title, .header_transparent-white .header__link, .header_transparent-white .navbar-brand, .header_transparent-white .navbar-brand:hover {
  color: #fff;
}

.header_transparent-white .editus-dropdown__btn path {
  stroke: #fff !important;
}

.header_transparent-white .header__account:after {
  background-image: url(/img/icons/chevron-right.svg);
}

.footer {
  margin-top: 120px;
}

.footer__socials-list {
  display: flex;
}

.footer__socials-item {
  margin-right: 1.5em;
}

.footer__socials-item:last-child {
  margin-right: 0;
}

.footer__socials-link {
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer__socials-facebook {
  background-image: url("/img/socials/facebook-red.png");
}

.footer__socials-vk {
  background-image: url("/img/socials/vk-red.png");
}

.footer__socials-twitter {
  background-image: url("/img/socials/twitter-red.png");
}

.footer__socials-ok {
  background-image: url("/img/socials/ok-red.png");
}

.footer__socials-youtube {
  background-image: url("/img/socials/youtube-red.png");
}

.footer__socials-zen {
  background-image: url("/img/socials/zen-red.png");
}

.footer__socials-insta {
  background-size: 50%;
  background-color: #db1a21;
  background-image: url("/img/socials/insta.png");
}

.footer__socials-item:hover .footer__socials-facebook {
  background-image: url("/img/socials/facebook.png");
}

.footer__socials-item:hover .footer__socials-vk {
  background-image: url("/img/socials/vk.png");
}

.footer__socials-item:hover .footer__socials-insta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.footer__socials-item:hover .footer__socials-insta::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-image: url("/img/socials/insta.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer__socials-item:hover .footer__socials-twitter {
  background-image: url("/img/socials/twitter.png");
}

.footer__socials-item:hover .footer__socials-ok {
  background-image: url("/img/socials/ok.png");
}

.footer__socials-item:hover .footer__socials-youtube {
  background-image: url("/img/socials/youtube.png");
}

.footer__socials-item:hover .footer__socials-zen {
  background-image: url("/img/socials/zen.png");
}

.footer__nav {
  height: 95%;
  border-left: 1px solid #db1a21;
}

.footer__nav-title {
  margin-bottom: 1em;
  padding-left: 1.2em;
  font-family: inherit;
  font-size: 1.25rem;
  color: #db1a21;
}

.footer__nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #808080;
  text-decoration: none;
}

.footer__nav-item {
  margin-bottom: 0.25em;
  padding: 0.25em 0.5em;
  padding-left: 1.5em;
  border-radius: 0 50px 50px 0;
}

.footer__nav-item:hover {
  background-color: #db1a21;
}

.footer__nav-item:hover .footer__nav-link {
  color: #ffffff;
}

.footer__nav-link:hover {
  color: #ffffff;
}

.footer__copyright {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #808080;
}

@media (min-width: 769px) {
  .footer__float-end {
    min-width: 65%;
  }
}
.jumbo__title {
  font-family: inherit;
  font-size: 1.875rem;
}

.jumbo__btn {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding: 0.7rem 0;
  min-width: 100%;
  text-align: center;
  text-decoration: none;
  color: #db1a21;
  background-color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 50px;
  transition: color 0.5s;
  transform: translateZ(0);
  overflow: hidden;
  cursor: pointer;
}

.jumbo__btn::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: #db1a21;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.jumbo__btn::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  border-radius: 100%;
  transform: scale(0);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}

.jumbo__btn:active {
  position: relative;
  top: 5px;
  color: #db1a21;
}

.jumbo__btn:active::after {
  transform: scale(2);
}

.jumbo__btn_red {
  color: #ffffff;
  background-color: #db1a21;
  border: 2px solid #db1a21;
}

.jumbo__btn_red::before {
  background: #ffffff;
}

.jumbo__btn_red::after {
  background: #db1a21;
}

.jumbo__text {
  max-width: 428px;
  margin-top: 0;
  margin-bottom: 1.5em;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 768px) {
  .jumbo__btn {
    min-width: 350px;
    padding: 1.25rem;
  }

  .jumbo__btn:hover {
    color: #ffffff;
    transition: color 0.5s;
  }

  .jumbo__btn:hover::before {
    transform: scaleX(1);
  }

  .jumbo__btn_red:hover {
    color: #db1a21;
    transition: color 0.5s;
  }

  .jumbo__btn_red:active {
    color: #ffffff;
  }

  .jumbo__title {
    font-size: 3rem;
    margin-top: calc(8rem + 71px);
  }

  .jumbo__text {
    font-size: 1.2em;
  }
}
.jumbotron__wrapper {
  height: 90vh;
  margin-top: -71px;
  padding-top: 71px;
  padding-bottom: 80px;
  background-color: #db1a21;
}

.jumbotron__container {
  height: 100%;
}

.jumbotron__content_centered {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

@media (min-width: 768px) {
  .jumbotron__wrapper {
    height: 93vh;
    padding-top: 0;
  }
}
.main-index-jumbo__wrapper {
  position: relative;
  height: 100%;
}

.main-index-jumbo__lottie-player {
  max-width: 1600px;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .main-index-jumbo__wrapper {
    background-image: url("/img/editus_bg_main.webp");
    background-size: cover;
    height: 100vh;
    min-height: fill-available;
    min-height: -webkit-fill-available;
    min-height: -moz-available;
  }

  .main-index-jumbo__content {
    position: relative;
    z-index: 99;
  }

  .main-index-jumbo__lottie-player-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 0;
  }
}
.feedback-modal__content {
  padding: 20px;
  border-radius: 1.5rem;
}

@media (min-width: 576px) {
  .feedback-modal__dialog {
    max-width: 800px;
  }
}
.file-upload-error-info {
  display: none;
  text-align: center;
  color: #dc3545;
  font-size: 0.875em;
  font-family: "Roboto Slab", serif;
}

.box {
  font-size: 1.25rem;
  position: relative;
  padding: 45px 20px;
  border-radius: 25px;
}

.box__info {
  font-size: 0.9rem;
  color: grey;
}

.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
  display: none;
}

.box__dragndrop {
  display: none;
}

.box__uploading,
.box__success,
.box__error {
  display: none;
}

.box__uploading {
  font-style: italic;
}

.box__success {
  animation: appear-from-inside 0.25s ease-in-out;
}
@keyframes appear-from-inside {
  from {
    transform: translateY(-50%) scale(0);
  }
  75% {
    transform: translateY(-50%) scale(1.1);
  }
  to {
    transform: translateY(-50%) scale(1);
  }
}

.box__file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.box__file + label:hover strong,
.box__file:focus + label strong {
  color: #db1a21;
  cursor: pointer;
  padding: 0;
}

.box__file:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
  outline: none;
}

.box__file + label * {
  /* pointer-events: none; */
  /* in case of FastClick lib use */
}

.mt-6 {
  margin-top: 5rem !important;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto Slab", serif;
}

/* СТИЛИ ЯНЫ */
a {
  color: #db1a21;
  text-decoration: none;
}

a:hover {
  color: #4d4b4b;
}

@media (min-width: 576px) {
  .container {
    max-width: 480px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 640px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 860px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1020px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1180px;
  }
}
.form-control {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #c1c1c1;
  border-radius: 25px;
  display: block;
  font-family: Montserrat, sans-serif;
  padding: 0.75em 1.5em;
  width: 100%;
}

 ul {
  font-family: Montserrat, sans-serif;
}

.img-fluid {
  display: block;
  margin: auto;
}

.navbar-nav {
  font-family: inherit;
  font-size: 1.2rem;
}

p {
  font-family: Montserrat, sans-serif;
}

/* СТИЛИ ЯНЫ */
.button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1em;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  background-color: #db1a21;
  text-decoration: none;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.button:disabled {
  background-color: #BDBDBD;
  cursor: not-allowed;
}

.button:hover {
  color: #fff;
  background-color: #333;
}

.button:active {
  transform: scale(1.02);
  transition: transform 0.1s;
}

.bookstore-btn {
  padding: 0.625rem 1.25rem;
  color: #db1a21;
  text-decoration: none;
  border: 2px solid #db1a21;
  border-radius: 50px;
}

.bookstore-btn:hover {
  color: #ffffff;
  background-color: #db1a21;
}

.link {
  color: inherit;
  text-decoration: none;
}

.link:hover {
  color: #db1a21;
}

.font-montserrat {
  font-family: "Montserrat", sans-serif;
}

.font-roboto {
  font-family: Roboto Slab, serif;
}
.girl-reading {
  min-height: 265px;
  color: #ffffff;
  background-color: #f7e8e9;
  background-image: url(/img/editus_bg_main_2.webp);
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: 1900vw;
}

@media screen and (min-width: 768px) {
  .girl-reading {
    min-height: 525px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .girl-reading__text {
    font-size: 1.25rem;
    width: 50%;
  }
}
.steps img {
  animation-duration: 1.5s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-name: img-jump;
}

@keyframes img-jump {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(10px);
  }
}
.step-text {
  max-width: 330px;
  font-family: "Montserrat", sans-serif;
}

.step-number {
  font-size: 5em;
  color: #db1a21;
  line-height: 1em;
}

.title-red {
  color: #db1a21;
}

.contact-us-btn {
  max-width: 100%;
  padding: 1em;
  font-size: 1.2em;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 30px;
  background-color: #db1a21;
}

.contact-us-btn:hover {
  color: #ffffff;
  background-color: #333;
}

.ready-to-print {
  background-image: url(/img/editus_faq_Alex.webp);
}

.main-index-jumbo__cursor-text {
  text-shadow: 0 0 6px white, 0 0 14px white;
}

/* =WordPress Core
-------------------------------------------------------------- */

.calculator-wrap {
  background-color: #f7e8e9;
  border-radius: 50px;
  margin-top: 4em;
  padding: 2em;
}

.jumbo__btn_red {
  background-color: #db1a21;
  border: 2px solid #db1a21;
  color: #fff;
}

.jumbo__btn_red:before {
  background: #fff;
}

.jumbo__btn_red:after {
  background: #db1a21;
}

.jumbo__btn_red:hover {
  color: #db1a21;
  transition: color 0.5s;
}

.jumbo__btn_red:active {
  color: #fff;
}

/* БАЗА: фон есть везде */
.main-index-jumbo__wrapper {
  position: relative;
  height: 100%;
  min-height: 100svh;
  /* корректная высота на мобилках */
  background-image: url("/img/editus_bg_main.webp");
  background-size: cover;
  /* тянем под экран */
  background-position: center;
  /* центрируем */
  background-repeat: no-repeat;
}

/* Фикс для старых Safari/Chrome */
@supports (-webkit-touch-callout: none) {
  .main-index-jumbo__wrapper {
    min-height: -webkit-fill-available;
  }
}
/* Если браузер понимает dvh — используем его */
@supports (height: 100dvh) {
  .main-index-jumbo__wrapper {
    min-height: 100dvh;
  }
}
/* Десктопные правки */
@media (min-width: 768px) {
  .jumbotron__wrapper {
    height: 93vh;
    padding-top: 0;
  }

  .main-index-jumbo__wrapper {
    height: 100vh;
    /* можно фикснуть ровно вьюпорт */
    min-height: 100vh;
    /* и минимум */
    /* при желании можно сместить фокус:
    background-position: center 30%;
    */
  }
}
.jumbotron__wrapper.main-index-jumbo__wrapper {
  min-height: 100svh;
  display: flex;
  align-items: center;
  /* вертикальный центр */
  /* justify-content: center; */
  /* включите, если нужен центр по горизонтали */
  position: relative;
}

@supports (height: 100dvh) {
  .jumbotron__wrapper.main-index-jumbo__wrapper {
    min-height: 100dvh;
  }
}
/* Важно: растянуть контейнер на всю высоту, чтобы align-items работал по всей высоте */
.jumbotron__container {
  flex: 1 1 auto;
  /* чтобы контейнер занял высоту родителя */
  align-items: center;
  /* дополнительный центр для надёжности */
}
