/* Base */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
body {
  background: #F5F7F8;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}
body.active {
  overflow: hidden;
}

section {
  height: 100%;
}

.wrapper-container {
  width: 100%;
  height: 100%;
  padding: 126px 148px 40px 420px;
}
@media screen and (max-width: 1300px) {
  .wrapper-container {
    padding: 126px 70px 40px 400px;
  }
}
@media screen and (max-width: 1024px) {
  .wrapper-container {
    padding: 124px 24px 38px !important;
  }
}

/* Reset */
body {
  height: 100%;
  margin: 0;
}

html {
  box-sizing: border-box;
  margin: 0;
  height: 100%;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul, ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  font-size: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

img {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

button {
  border: unset;
  background-color: transparent;
  cursor: pointer;
}

.flex {
  display: flex;
}

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

.flow-column {
  flex-flow: column;
}

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

.flex-1 {
  flex: 1;
}

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

.w-216 {
  width: 216px;
}
@media screen and (max-width: 998px) {
  .w-216 {
    width: 100%;
  }
}

.gap-16 {
  gap: 16px;
}

.p-0 {
  padding: 0 !important;
}

.m-form-title {
  color: #043158;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .m-form-title {
    font-size: 26px;
    line-height: 34px;
  }
}

@media screen and (max-width: 998px) {
  .m-box {
    flex-flow: column;
    padding-bottom: 40px;
  }
  .m-box .m-input-container {
    width: 100%;
    padding-bottom: 0;
  }
}

.m-label {
  padding-bottom: 8px;
  color: #043158;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.48px;
}

.m-form-section {
  padding: 16px;
  border-radius: 8px;
  background: #DEEDFA;
  display: flex;
  flex-flow: column;
  gap: 24px;
  margin-bottom: 24px;
}
.m-form-section__col {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .m-form-section__col {
    flex-flow: column;
  }
}
.m-form-section__col .m-input-container {
  width: 100%;
}

.m-info {
  cursor: pointer;
  transition: all 0.3s ease;
}
.m-info:hover {
  transition: all 0.3s ease;
  opacity: 0.6;
}

.m-form {
  height: 100%;
  display: flex;
  flex-flow: column;
}

.m-input {
  width: 100%;
  color: #043158;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.48px;
  padding: 20px 16px;
  height: 58px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(4, 49, 88, 0.04);
  border: unset;
}
.m-input:disabled{
  background: #efefef;
}
.m-input::placeholder {
  color: #C4D3E0;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.48px;
}
.m-input:focus-visible {
  outline: unset;
}

.dropdown {
  position: relative;
}
.dropdown__button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  background: #ffffff;
  cursor: pointer;
  color: #165E9D;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.48px;
  border-radius: 8px;
  box-shadow: 0 4px 4px 0 rgba(4, 49, 88, 0.04);
  height: 58px;
  padding: 20px 16px;
}
.dropdown__button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: url("../../images/Down.svg") 100% 100%;
  pointer-events: none;
  transition: 200ms ease;
  z-index: 3;
}
.dropdown__button_active::after {
  transform: translateY(-50%) rotate(-180deg);
}
.dropdown__list {
  box-shadow: 0 4px 4px 0 rgba(4, 49, 88, 0.04);
  border-radius: 8px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  top: 62px;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transition: 200ms ease;
}
.dropdown__list_visible {
  opacity: 1;
  visibility: visible;
}
.dropdown__list-item {
  margin: 0;
  padding: 8px 16px;
  cursor: pointer;
  color: #165E9D;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.48px;
  transition: 200ms ease;
}
.dropdown__list-item_active {
  background: #f5f8fa;
}
.dropdown__list-item:hover {
  background: #DEEDFA;
}
.dropdown__input_hidden {
  display: none;
}

.m-buttons-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .m-buttons-container {
    flex-flow: column;
  }
  .m-buttons-container .m-button {
    width: 100%;
  }
}

.m-button {
  color: #FFF;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.48px;
  padding: 16px 56px;
  border-radius: 12px;
  background: #408ACB;
  height: 50px;
  transition: all 0.3s ease;
  width: fit-content;
}
.m-button:hover {
  transition: all 0.3s ease;
  background: #165E9D;
}
.m-button.disabled {
  background: #D0DBE3;
  color: #99A5AF;
  pointer-events: none;
}
.m-button.border {
  background: transparent;
  border: 1px solid #408ACB;
  color: #165E9D;
  height: 49px;
}
.m-button.border:hover {
  transition: all 0.3s ease;
  background: transparent;
  border: 1px solid #165E9D;
}
.m-button.border.disabled {
  border: 1px solid #D0DBE3;
  color: #99A5AF;
  pointer-events: none;
}

.m-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .m-modal {
    padding: 0 24px;
  }
}
.m-modal.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
.m-modal.active .m-modal__content {
  transform: translateY(0%);
  transition: all 0.5s ease;
}
.m-modal__content {
  padding: 80px;
  background: #fff;
  border-radius: 12px;
  max-width: 680px;
  position: relative;
  transform: translateY(100%);
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .m-modal__content {
    width: 100%;
    max-width: 100%;
    padding: 40px;
  }
}
@media screen and (max-width: 560px) {
  .m-modal__content {
    padding: 24px;
  }
}
.m-modal__header {
  padding-bottom: 32px;
}
.m-modal__header .title {
  color: #043158;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
}
@media screen and (max-width: 768px) {
  .m-modal__header .title {
    font-size: 28px;
  }
}
.m-modal__header .modal-close {
  position: absolute;
  cursor: pointer;
  top: 28px;
  right: 28px;
  transition: all 0.3s ease;
}
.m-modal__header .modal-close:hover {
  transition: all 0.3s ease;
  opacity: 0.7;
}
.m-modal__body {
  color: #043158;
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .m-modal__body {
    font-size: 16px;
  }
}

.overlay {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  z-index: 8;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(4, 49, 88, 0.5);
}
.overlay.active {
  opacity: 0.5;
  visibility: visible;
  transition: all 0.5s ease;
}

.m-input-container {
  padding-bottom: 80px;
}
@media screen and (max-width: 998px) {
  .m-input-container {
    padding-bottom: 40px;
  }
}

.m-info {
  min-width: 32px;
}

.general {
  height: 100%;
}
.general .m-buttons-container {
  margin-top: auto;
}
.general .m-button {
  margin-left: auto;
}

.detailed .m-input-container {
  padding-bottom: 0;
}
.detailed .m-form-title {
  justify-content: space-between;
}
.detailed .m-form-title .add-section {
  cursor: pointer;
  transition: all 0.3s ease;
}
.detailed .m-form-title .add-section:hover {
  transition: all 0.3s ease;
  opacity: 0.6;
}

.billing .checkbox-container {
  padding-bottom: 40px;
}
.billing .checkbox {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  gap: 8px;
}
.billing .checkbox input {
  position: absolute;
  width: 0;
  left: 50px;
  height: 0;
  opacity: 0;
  cursor: pointer;
}
.billing .checkbox .checkmark {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 24px;
  min-width: 24px;
  height: 24px;
  background: white;
  border-radius: 3px;
  outline: 1px solid #acacac;
  transition: all 0.2s ease;
}
.billing .checkbox:hover .checkmark {
  background: #f4f4f5;
  transition: all 0.2s ease;
}
.billing .checkbox input:checked ~ .checkmark {
  background: #408ACB;
  outline: 1px solid rgb(95, 126, 240);
}
.billing .checkbox .checkmark::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  top: 40%;
  width: 9px;
  height: 14px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}
.billing .checkbox input:checked ~ .checkmark::after {
  opacity: 1;
  transition: all 0.2s ease;
}

.payment__box {
  gap: 32px;
}
@media screen and (max-width: 1260px) {
  .payment__box {
    flex-flow: column;
  }
}
.payment__left {
  max-width: 450px;
  width: 100%;
}
@media screen and (max-width: 1260px) {
  .payment__left {
    max-width: 100%;
  }
}
.payment__left .payment-document {
  border-radius: 20px;
  background: #fff;
  padding: 24px;
  position: relative;
  box-shadow: 12px 12px 12px 0 rgba(0, 0, 0, 0.08);
  height: 580px;
  width: 100%;
}
@media screen and (max-width: 498px) {
  .payment__left .payment-document {
    height: 300px;
  }
}
.payment__left .payment-document:after {
  content: "";
  position: absolute;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 11px;
  left: 11px;
  z-index: -1;
}
.payment .m-buttons-container {
  margin-top: 40px;
}
.payment__right {
  flex: 1;
  border-radius: 20px;
  background: #fff;
  padding: 24px;
}
.payment__right .billing-price .main-price {
  color: #043158;
  font-family: "Inter", sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 92px;
}
.payment__right .billing-price ul {
  margin-top: 16px;
  display: flex;
  flex-flow: column;
  gap: 4px;
}
.payment__right .billing-price ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #043158;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}
.payment__right .title {
  color: #043158;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  padding-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .payment__right .title {
    font-size: 32px;
    line-height: normal;
  }
}
.payment__right .description {
  color: #043158;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0.6px;
  padding-bottom: 48px;
}
.payment__right .separate {
  height: 2px;
  width: 100%;
  border-radius: 3px;
  background: #C4D3E0;
  margin: 40px 0;
}
.payment__right .m-input-container {
  padding: 0 0 16px 0;
}
.payment__right .else {
  padding: 24px 0;
  text-align: center;
}

.hidden {
  display: none;
}

:root {
  --desktop-button-font-family: "Inter-Bold", Helvetica;
  --desktop-button-font-weight: 700;
  --desktop-button-font-size: 16px;
  --desktop-button-letter-spacing: 0.48px;
  --desktop-button-line-height: 18px;
  --desktop-button-font-style: normal;
  --desktop-caption-regular-font-family: "Inter-Regular", Helvetica;
  --desktop-caption-regular-font-weight: 400;
  --desktop-caption-regular-font-size: 16px;
  --desktop-caption-regular-letter-spacing: 0.48px;
  --desktop-caption-regular-line-height: 20px;
  --desktop-caption-regular-font-style: normal;
  --elevation-1: 0px 4px 4px 0px rgba(4, 49, 88, 0.04);
  --variable-collection-text-main-blue: rgba(4, 49, 88, 1);
  --variable-collection-button-default: rgba(64, 138, 203, 1);
  --variable-collection-button-hover: rgba(22, 94, 157, 1);
  --variable-collection-button-disable: rgba(208, 219, 227, 1);
  --variable-collection-text-dark-blue: rgba(22, 94, 157, 1);
  --variable-collection-text-disable-mode: rgba(153, 165, 175, 1);
  --variable-collection-text-white: rgba(255, 255, 255, 1);
  --variable-collection-bg-white: rgba(255, 255, 255, 1);
  --variable-collection-text-light-blue: rgba(196, 211, 224, 1);
  --variable-collection-icon-main-brand-blue: rgba(64, 138, 203, 1);
  --variable-collection-notification-error: rgba(177, 10, 10, 1);
  --variable-collection-stroke-grey-blue: rgba(185, 207, 227, 1);
  --variable-collection-bg-light-blue: rgba(222, 237, 250, 1);
}

.m-document {
  display: flex;
  flex-direction: row;
  justify-content: center;
  transform: scale(0.27);
  position: absolute;
  left: 0;
  top: -40px;
}
@media screen and (max-width: 498px) {
  .m-document {
    transform: scale(0.2);
  }
}
.m-document .div {
  position: relative;
}
.m-document .logo {
  position: absolute;
  top: 190px;
  left: 53px;
  height: 80px;
  width: 240px;
}
.m-document .logo img {
  width: 100%;
  height: 100%;
}
.m-document .text-wrapper {
  position: absolute;
  top: 289px;
  left: 80px;
  font-family: "Inter-Bold", sans-serif;
  font-weight: 700;
  color: var(--variable-collection-text-dark-blue);
  font-size: 48px;
  letter-spacing: 0;
  line-height: 56px;
  white-space: nowrap;
}
.m-document .p {
  position: absolute;
  width: 801px;
  top: 369px;
  left: 80px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 32px;
}
.m-document .room-info-card {
  display: flex;
  flex-direction: column;
  width: 801px;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  position: absolute;
  top: 458px;
  left: 80px;
  background-color: var(--variable-collection-bg-light-blue);
  border-radius: 8px;
}
.m-document .frame {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.m-document .input {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}
.m-document .caption {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--desktop-caption-regular-font-family);
  font-weight: var(--desktop-caption-regular-font-weight);
  color: var(--variable-collection-text-main-blue);
  font-size: var(--desktop-caption-regular-font-size);
  letter-spacing: var(--desktop-caption-regular-letter-spacing);
  line-height: var(--desktop-caption-regular-line-height);
  font-style: var(--desktop-caption-regular-font-style);
}
.m-document .input-body {
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: var(--variable-collection-bg-white);
  border-radius: 8px;
  box-shadow: var(--elevation-1);
  display: flex;
  position: relative;
}
.m-document .ex {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: var(--desktop-button-font-family);
  font-weight: var(--desktop-button-font-weight);
  color: var(--variable-collection-text-main-blue);
  font-size: var(--desktop-button-font-size);
  letter-spacing: var(--desktop-button-letter-spacing);
  line-height: var(--desktop-button-line-height);
  font-style: var(--desktop-button-font-style);
}
.m-document .caption-2 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-Regular", sans-serif;
  font-weight: 400;
  color: var(--variable-collection-text-main-blue);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 20px;
}
.m-document .frame-wrapper {
  display: flex;
  flex-direction: column;
  width: 1493px;
  align-items: flex-start;
  padding: 16px;
  position: absolute;
  top: 1336px;
  left: 80px;
  background-color: var(--variable-collection-bg-light-blue);
  border-radius: 8px;
}
.m-document .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid;
  border-color: var(--variable-collection-stroke-grey-blue);
}
.m-document .frame-3 {
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}
.m-document .input-2 {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  margin-top: -1px;
  margin-bottom: -1px;
  margin-left: -1px;
  border: 2px solid;
  border-color: var(--variable-collection-stroke-grey-blue);
  display: flex;
  position: relative;
}
.m-document .ex-wrapper {
  align-items: flex-start;
  flex: 1;
  flex-grow: 1;
  display: flex;
  gap: 10px;
  padding: 20px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--variable-collection-bg-white);
  box-shadow: var(--elevation-1);
}
.m-document .ex-2 {
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.54px;
  line-height: 28px;
  position: relative;
  flex: 1;
  margin-top: -1px;
  color: var(--variable-collection-text-main-blue);
}
.m-document .input-3 {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  margin-top: -1px;
  margin-bottom: -1px;
  border: 2px solid;
  border-color: var(--variable-collection-stroke-grey-blue);
  display: flex;
  position: relative;
}
.m-document .ex-3 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "Inter-Bold", sans-serif;
  font-weight: 700;
  color: var(--variable-collection-text-main-blue);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 18px;
}
.m-document .input-4 {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  flex-grow: 1;
  margin-top: -1px;
  margin-bottom: -1px;
  border: 2px solid;
  border-color: var(--variable-collection-stroke-grey-blue);
  display: flex;
  position: relative;
}
.m-document .div-wrapper {
  align-items: center;
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
  padding: 20px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--variable-collection-bg-white);
  box-shadow: var(--elevation-1);
}
.m-document .input-5 {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
  flex-grow: 1;
  margin-top: -1px;
  margin-bottom: -1px;
  margin-right: -1px;
  border: 2px solid;
  border-color: var(--variable-collection-stroke-grey-blue);
  display: flex;
  position: relative;
}
.m-document .ex-4 {
  font-family: "Inter-Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 18px;
  position: relative;
  flex: 1;
  margin-top: -1px;
  color: var(--variable-collection-text-main-blue);
}
.m-document .input-body-2 {
  flex-grow: 1;
  padding: 20px 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: var(--variable-collection-bg-white);
  box-shadow: var(--elevation-1);
  border: none;
  font-family: "Inter-Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 18px;
  flex: 1;
  margin-top: -1px;
  color: var(--variable-collection-text-main-blue);
}
.m-document .frame-4 {
  display: flex;
  width: 660px;
  align-items: center;
  gap: 10px;
  padding: 16px;
  position: absolute;
  top: 458px;
  left: 913px;
  background-color: var(--variable-collection-bg-light-blue);
  border-radius: 8px;
}
.m-document .text-wrapper-2 {
  position: relative;
  flex: 1;
  margin-top: -1px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 32px;
}
.m-document .frame-5 {
  display: flex;
  flex-direction: column;
  width: 801px;
  align-items: flex-start;
  gap: 22px;
  padding: 16px;
  position: absolute;
  top: 1012px;
  left: 80px;
  height: 294px;
  background-color: var(--variable-collection-bg-light-blue);
  border-radius: 8px;
}
.m-document .text-wrapper-3 {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 28px;
}
.m-document .text-wrapper-4 {
  position: relative;
  align-self: stretch;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 28px;
}
.m-document .frame-6 {
  display: flex;
  flex-direction: column;
  width: 801px;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  position: absolute;
  top: 828px;
  left: 80px;
  background-color: var(--variable-collection-bg-light-blue);
  border-radius: 8px;
}
.m-document .frame-7 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}
.m-document .ellipse {
  position: relative;
  width: 8px;
  height: 8px;
  background-color: var(--variable-collection-text-main-blue);
  border-radius: 4px;
}
.m-document .text-wrapper-5 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 20px;
  letter-spacing: 0;
  line-height: 32px;
  white-space: nowrap;
}
.m-document .text-wrapper-6 {
  position: absolute;
  top: 2100px;
  left: 80px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 28px;
  white-space: nowrap;
}
.m-document .text-wrapper-7 {
  position: absolute;
  top: 2100px;
  left: 505px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-main-blue);
  font-size: 16px;
  letter-spacing: 0.48px;
  line-height: 28px;
  white-space: nowrap;
}
.m-document .frame-8 {
  display: flex;
  width: 660px;
  height: 686px;
  align-items: flex-start;
  gap: 24px;
  padding: 16px;
  position: absolute;
  top: 618px;
  left: 913px;
  background-color: var(--variable-collection-bg-light-blue);
  border-radius: 8px;
}
.m-document .frame-9 {
  display: inline-flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}
.m-document .frame-10 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
  align-self: stretch;
  flex: 0 0 auto;
}
.m-document .text-wrapper-8 {
  position: relative;
  width: fit-content;
  margin-top: -1px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-dark-blue);
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 32px;
  white-space: nowrap;
}
.m-document .text-wrapper-9 {
  position: relative;
  width: fit-content;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-dark-blue);
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 32px;
  white-space: nowrap;
}
.m-document .rectangle {
  position: relative;
  width: 20px;
  height: 100%;
  top: 0;
  margin-left: 0;
  background: linear-gradient(180deg, rgb(90, 233, 79) 0%, rgb(120, 255, 0) 22.4%, rgb(220, 255, 2) 44.27%, rgb(246, 255, 3) 52.6%, rgb(255, 199, 1) 63.02%, rgb(255, 100, 0) 80.21%, rgb(255, 23, 0) 100%);
}
.m-document .frame-11 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}
.m-document .text-wrapper-10 {
  position: relative;
  flex: 1;
  align-self: stretch;
  margin-top: -1px;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-dark-blue);
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 32px;
}
.m-document .text-wrapper-11 {
  position: relative;
  flex: 1;
  align-self: stretch;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-dark-blue);
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 32px;
}
.m-document .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: "Inter-SemiBold", sans-serif;
  font-weight: 600;
  color: var(--variable-collection-text-dark-blue);
  font-size: 24px;
  letter-spacing: 0.72px;
  line-height: 32px;
}

.sidebar {
  width: 364px;
  height: 100%;
  background: #fff;
  box-shadow: 4px 0 4px 0 rgba(4, 49, 88, 0.04);
  position: fixed;
  left: 0;
  top: 0;
  padding: 40px 32px;
  overflow: auto;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1024px) {
  .sidebar {
    left: -100%;
    width: 314px;
    padding: 40px 22px;
    z-index: 10;
  }
}
@media screen and (max-width: 400px) {
  .sidebar {
    width: 294px;
  }
}
.sidebar.active {
  left: 0;
  transition: all 0.3s ease;
}
.sidebar__wrapper {
  display: flex;
  flex-flow: column;
  gap: 100px;
}
@media screen and (max-width: 768px) {
  .sidebar__wrapper {
    gap: 70px;
  }
}
.sidebar__sequence .points {
  position: relative;
}
.sidebar__sequence .points:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #043158;
  border-radius: 100%;
  top: 7px;
  left: 0;
}
.sidebar__sequence .points:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 12%;
  background: #043158;
  left: 7px;
  top: 7px;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step2:after {
  height: 19%;
}
.sidebar__sequence .points.step2 .points__box:first-child .points__list .points__item:nth-child(2) {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step3:after {
  height: 26%;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step3 .points__box:first-child .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step4:after {
  height: 51%;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step4 .points__box:first-child .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step4 .points__box:nth-child(2) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step4 .points__box:nth-child(2) .points__list .points__item:nth-child(1) {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step5:after {
  height: 58%;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step5 .points__box:first-child .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step5 .points__box:nth-child(2) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step5 .points__box:nth-child(2) .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step6:after {
  height: 73%;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step6 .points__box:first-child .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step6 .points__box:nth-child(2) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step6 .points__box:nth-child(2) .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step6 .points__box:nth-child(3) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step7:after {
  height: 93%;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step7 .points__box:first-child .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step7 .points__box:nth-child(2) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step7 .points__box:nth-child(2) .points__list .points__item {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step7 .points__box:nth-child(3) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points.step7 .points__box:nth-child(4) .points__title {
  opacity: 1;
  transition: all 0.3s ease;
}
.sidebar__sequence .points {
  display: flex;
  flex-flow: column;
  gap: 56px;
  padding-left: 24px;
}
.sidebar__sequence .points__box:first-child .points__title {
  padding: 0;
}
.sidebar__sequence .points__box:first-child .points__title:after {
  display: none;
}
.sidebar__sequence .points__title {
  color: #043158;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sidebar__sequence .points__title {
    font-size: 18px;
  }
}
.sidebar__sequence .points__title.not-active {
  opacity: 0.4;
}
.sidebar__sequence .points__title:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #043158;
  border-radius: 100%;
  left: -24px;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar__sequence .points__title.not-active {
  opacity: 0.4;
}
.sidebar__sequence .points__item + .points__item {
  margin-top: 16px;
}
.sidebar__sequence .points__item {
  padding-left: 16px;
  position: relative;
  transition: all 0.3s ease;
}
.sidebar__sequence .points__item:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #043158;
  border-radius: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar__sequence .points__item.not-active {
  opacity: 0.4;
}

.mobile-header {
  display: none;
  background: #fff;
  position: fixed;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .mobile-header {
    display: block;
  }
}
.mobile-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .mobile-header__wrapper {
    padding: 0 24px !important;
  }
}

.vbp-header-menu-button__svg {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transform: scaleX(-1);
}

.vbp-header-menu-button__svg line {
  stroke: #192a6b;
  stroke-dasharray: 100%;
  stroke-dashoffset: 0%;
  transition: transform 0.3s, stroke-dashoffset 0.4s;
  transform-origin: center;
  stroke-width: 3px;
}

.vbp-header-menu-button__svg .top {
  transform: translateY(-35%);
  -webkit-transform: translateY(-35%);
  -moz-transform: translateY(35%);
  -ms-transform: translateY(35%);
  -o-transform: translateY(35%);
}

.vbp-header-menu-button__svg .middle {
  transform: scaleX(1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
  transition: opacity 0.3s, transform 0.3s;
  -webkit-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s;
  -ms-transition: opacity 0.3s, transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
}

.vbp-header-menu-button__svg .bottom {
  transform: translateY(33%);
  -webkit-transform: translateY(33%);
  -moz-transform: translateY(33%);
  -ms-transform: translateY(33%);
  -o-transform: translateY(33%);
  stroke-dasharray: 100%;
  stroke-dashoffset: 9px;
}

.vbp-header-menu-button__svg:hover .bottom {
  stroke-dashoffset: 0%;
}

body.menu-open .vbp-header-menu-button__svg .top {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .middle {
  transform: scaleX(0.1);
  -webkit-transform: scaleX(0.1);
  -moz-transform: scaleX(0.1);
  -ms-transform: scaleX(0.1);
  -o-transform: scaleX(0.1);
  opacity: 0;
}

body.menu-open .vbp-header-menu-button__svg line.bottom {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  stroke-linecap: round;
}

body.menu-open .vbp-header-menu-button__svg .bottom {
  stroke-dashoffset: 0%;
}
.d-flex{
  display: flex;
    justify-content: center;
    align-items: center;
}
.blurred{
  filter: blur(15px);
}
/*# sourceMappingURL=index.css.map */
