/* :root {
  --color-1: #FF9900;
  --color-2: #BC0000;
  --grey-5: #090B39;
  --primary-text: #090B39;
  --secondary-text: #fff;
  --grey-1: #EFEFEF;
  --grey-2: #8A8A8A;
  --grey-3: #F9F9F9;
  --grey-4: #C1C1C1;
  --white: #fff;
  --black: #000;
  --success: #259835;
  --warning: #FACC15;
  --error: #E51212;
  --shadow: 0px 0px 20px rgb(0 0 0 / 15%);
  --shadow-2: 0px 3px 6px rgb(0 0 0 / 15%);
  --primary-font-family: 'Open Sans', sans-serif;
} */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: auto;
}

body {
  margin: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
  color: var(--grey-5);
}

/*---------- General classes and tags ----------*/
/*----- Layout -----*/
article {
  position: relative;
}
form {
  width: 100%;
}

.relative {
  position: relative;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.center {
  display: flex;
  justify-content: center;
}

.center-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.align-center {
  display: flex;
  align-items: center;
}

.grid {
  display: grid;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.z--10 {
  z-index: -10;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

/*----- Sizing -----*/
.w-full {
  width: 100%;
}

.full-height {
  min-height: 100vh;
}

/*----- Spacing -----*/
.m-0 {
  margin: 0;
}

.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-14 {
  margin-top: 3.5rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mt-24 {
  margin-top: 6rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}

.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-6 {
  margin-right: 1.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}
.ml-6 {
  margin-left: 1.5rem;
}

.mx--6 {
  margin-right: calc(-1 * 1.5rem);
  margin-left: calc(-1 * 1.5rem);
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-5 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.my-14 {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.p-6 {
  padding: 1.5rem;
}
.p-12 {
  padding: 3rem;
}

.pt-6 {
  padding-top: 1.5rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-12 {
  padding-top: 3rem;
}

.pb-4 {
  padding-bottom: 1rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pb-12 {
  padding-bottom: 3rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/*----- Typography -----*/
a {
  text-decoration: none;
  color: var(--grey-5);
}

.default-link-color {
  color: #3366ff;
}

p {
  margin-top: 0.5rem;
}

p:last-of-type {
  margin-bottom: 0;
}

p.limited-width {
  max-width: 40ch;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
}

.title {
  font-size: 1.5rem;
}

.subtitle {
  font-size: 1.25rem;
}

.text-xxl {
  font-size: 2.5rem;
  line-height: 1.2;
}
.text-xl {
  font-size: 1.75rem;
}
.text-lg {
  font-size: 1.5rem;
}

.text-md {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}
.text-xs {
  font-size: 0.625rem;
}

.text-light {
  font-weight: 300 !important;
}

.text-normal {
  font-weight: 400 !important;
}

.text-semibold {
  font-weight: 600;
}

.text-bold {
  font-weight: 700;
}

.text-center {
  text-align: center;
}

.text-upper {
  text-transform: uppercase;
}

.text-underline {
  text-decoration: underline;
}

.text-opacity-80 {
  opacity: 0.8;
}

.text-trans-init {
  text-transform: initial !important;
}

.text-primary {
  color: var(--color-1);
}

.font-shadows-into {
  font-family: 'Shadows Into Light', cursive;
}

/*----- Components -----*/
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-link {
  display: inline-block;
}

.menu-horizontal {
  display: flex;
}

.menu-horizontal .menu-link {
  margin: 0 0.5rem;
}

button {
  font-family: var(--primary-font-family);
  border: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

button,
.btn {
  cursor: pointer;
}

.btn {
  display: inline-block;
  border: 0;
  /* margin: 0; */
  padding: 0.8em 2em;
  background: var(--color-1);
  color: var(--white);
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  position: relative;
  /* overflow: hidden; */
  /* box-shadow: 0 0 0 0 var(--color-2); */
  /* transition: .5s; */
  /* height: 100%; */
}

.btn-secondary {
  background: var(--color-2);
}

.btn-grey {
  background: var(--grey-3);
  color: var(--grey-2);
  font-weight: 400;
}

.btn-text-only {
  text-decoration: underline;
  font-weight: 400;
  font-size: 0.875rem;
  padding: 0.5em 2em;
  color: var(--grey-2);
  background: initial;
}

.btn:hover,
.btn-secondary:hover,
.btn-grey:hover {
  box-shadow: 0 0 0 8px transparent;
}

.btn:hover {
  animation: pulse 0.5s;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--color-1);
  }
}

.btn-secondary:hover {
  animation: pulse-2 0.5s;
}

@keyframes pulse-2 {
  0% {
    box-shadow: 0 0 0 0 var(--color-2);
  }
}

.btn-grey:hover,
.btn-text-only:hover,
.btn.inactive:hover {
  animation: none;
}

.btn.inactive {
  background: var(--grey-3);
  color: var(--grey-2);
  cursor: not-allowed;
}

.xs-btn-full {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 100%;
}

.btn-with-icon svg {
  height: 12px;
}

.back-home-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  width: 36px;
  height: 36px;
  padding: 0.7rem;
  border-radius: 50%;
}
.back-home-btn .icon {
  transform: rotate(90deg);
}
.back-home-btn .icon svg {
  height: 10px;
}
.back-home-btn span {
  display: none;
}

.back-home-btn-2 {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0 !important;
}

.icon img {
  height: 100%;
}

.text-with-icon {
  display: flex;
  font-size: 18px;
}

.text-with-icon .icon {
  width: 25px;
  height: auto;
  display: flex;
  align-items: center;
  color: var(--color-1);
}

.text-with-icon.small .icon {
  width: 15px;
}
.text-with-icon.small span {
  font-size: 0.875rem;
}

.text-with-icon .lock-icon {
  width: 8px;
  height: auto;
  flex-shrink: 0;
  margin-bottom: auto;
  margin-top: 4px;
  margin-right: 0.5rem;
}

.form-group {
  position: relative;
}

input,
select,
textarea {
  font-size: 16px;
  padding: 1rem;
  width: 100%;
  border: 1px solid var(--grey-4);
  border-radius: 12px;
  background: none;
  color: var(--grey-4);
  position: relative;
  transition: border 0.3s, color 0.3s;
}

input::placeholder {
  color: var(--grey-4);
}

input + .custom-label,
.signature-wrapper .custom-label {
  font-size: 0.875rem;
  font-weight: 300;
  position: absolute;
  top: -0.7em;
  left: 0.7em;
  background: linear-gradient(var(--grey-3), var(--grey-3)) no-repeat;
  background-position-y: -0.6em;
  color: var(--grey-4);
  padding: 0 0.5em;
  transition: color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--black);
  color: var(--black);
}

input:focus + .custom-label,
select:focus + .custom-label,
textarea:focus + .custom-label {
  color: var(--black);
}

input ~ .icon::after {
  content: '';
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  position: absolute;
  top: 16px;
  right: 1rem;
}
input.invalid {
  outline: 0;
  border-color: var(--error);
  color: var(--error);
}
input.invalid ~ .icon::after {
  content: url(./assets/media/cross.svg);
  opacity: 1;
  visibility: visible;
}
input.invalid + .custom-label {
  color: var(--error);
}
input.valid {
  outline: 0;
  border-color: var(--success);
  color: var(--success);
}
input.valid ~ .icon::after {
  content: url(./assets/media/check.svg);
  opacity: 1;
  visibility: visible;
}
input.valid + .custom-label {
  color: var(--success);
}

.validation-text {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  color: var(--error);
  padding-left: 1rem;
  transition: 0.3s;
}
.validation-text.active {
  visibility: visible;
  opacity: 1;
  max-height: 4em;
}

/* Custom toggle switch */
.toggle-wrapper {
  display: flex;
  justify-content: center;
}
.toggle-switch {
  height: 0;
  width: 0;
  visibility: hidden;
  display: inline-block;
}

.toggle-switch-label {
  cursor: pointer;
  text-indent: -9999px;
  width: 60px;
  height: 24px;
  /* background: var(--color-1); */
  display: inline-block;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.toggle-switch-label::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-1);
  opacity: 0.2;
}

.toggle-switch-label.variant-2 {
  background: var(--color-1);
  width: 70px;
  height: 26px;
}

.toggle-switch-label:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--color-1);
  border-radius: 20px;
  transition: 0.2s;
}

.toggle-switch-label.variant-2::after {
  background: var(--secondary-text);
  top: 1px;
  left: 1px;
}

.toggle-switch:checked + .toggle-switch-label:after {
  left: calc(100% - 24px);
}
.toggle-switch:checked + .toggle-switch-label.variant-2:after {
  left: calc(100% - 25px);
}

/* Custom checkbox */
.checkbox {
  position: absolute;
  opacity: 0;
  transition: 0.3s;
}

.checkbox + label {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  display: inline-block;
}
.checkbox + label::before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 22px;
  height: 22px;
  background: var(--grey-3);
  position: absolute;
  left: 0;
  top: 2px;
  border: 1px solid var(--grey-4);
  border-radius: 8px;
  transition: 0.3s;
}

.checkbox:hover + label::before,
.checkbox:focus + label::before {
  border-color: var(--black);
}

.checkbox:checked + label::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 14px;
  background: var(--color-1);
  width: 3px;
  height: 3px;
  box-shadow: -1px 0 0 var(--color-1), 2px 0 0 var(--color-1), 4px 0 0 var(--color-1), 4px -2px 0 var(--color-1),
    4px -4px 0 var(--color-1), 4px -6px 0 var(--color-1), 4px -8px 0 var(--color-1), 4px -10px 0 var(--color-1);
  transform: rotate(45deg);
}

.checkbox.valid + label::before {
  border-color: var(--success);
}

.checkbox.invalid + label::before {
  border-color: var(--error);
}

/* Paginator */
.paginator-container {
  visibility: visible;
  height: auto;
}

.paginator-container.hidden {
  visibility: hidden;
  height: 0;
}

.dots {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.dots::before,
.progress-bar::before {
  content: '';
  display: block;
  position: absolute;
  z-index: -1;
  top: 50%;
  transform: translateY(-50%);
  height: 5px;
  border-radius: 5px;
}

.dots::before {
  width: 98%;
  margin: 0 1%;
  background: var(--grey-4);
}

.progress-bar {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.progress-bar:first-of-type {
  width: auto;
}
.progress-bar.active:first-of-type::before {
  display: none;
}

.progress-bar::before {
  width: 0;
  transition: width 0.3s;
}

.progress-bar.active::before {
  background: var(--color-1);
  width: 100%;
  left: -5px;
}

.dot {
  width: 20px;
  height: 20px;
  /* margin-left: 30px; */
  border-radius: 50%;
  background: var(--grey-4);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.dot span {
  position: absolute;
  font-size: 12px;
  top: -20px;
}

.progress-bar:nth-child(even) .dot span {
  top: unset;
  bottom: -20px;
}

.progress-bar:first-child .dot span {
  left: 0;
}
.progress-bar:last-child .dot span {
  right: 0;
}

.progress-bar.active .dot {
  background: var(--color-1);
  transition: background 0.1s ease 0.15s;
}

/*----- Utilities -----*/
img,
svg {
  vertical-align: middle;
}

img {
  display: block;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.mobile-hidden {
  display: none;
}

.md-hidden,
.lg-hidden {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.blurred-bg::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgb(255 255 255 / 90%);
}
@supports ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
  .blurred-bg::before {
    background: rgba(255 255 255 / 70%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/*----- Transitions -----*/
a,
.btn,
.header,
.header-container {
  transition: 0.3s;
}

/* -------------------- Main page -------------------- */
/*---------- Module ----------*/
.module {
  position: relative;
  padding-bottom: 36px;
  background: url() center center/cover no-repeat;
  /* background: #ccc; */
  background-attachment: fixed;
  isolation: isolate;
}

.module::after {
  content: '';
  display: block;
  position: absolute;
  background: var(--grey-5);
  opacity: 0.55;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.logo-img {
  height: 65px;
}

.module-article {
  padding: 1rem 1rem 2rem;
}

.title-header {
  color: var(--white);
  margin-bottom: 2rem;
}

.membership-slider-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

/* Controls */
.prev-slide-btn,
.next-slide-btn {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: var(--color-1);
}

.prev-slide-btn svg,
.next-slide-btn svg {
  fill: currentColor;
  width: 100%;
  height: auto;
}

.prev-slide-btn {
  left: -10px;
}

.next-slide-btn {
  right: -10px;
}

.next-slide-btn svg {
  transform: scaleX(-1);
}

.inactive {
  opacity: 0.35;
}

.slider-item {
  display: none;
  width: 100%;
}
.slider-item.active {
  display: block;
}

form,
.step,
.card {
  height: 100%;
}

.nested-step {
  width: calc(100vw - 2rem);
  max-width: 400px;
}

.step,
.nested-step {
  visibility: hidden;
  position: absolute;
  opacity: 0;
  transition: 0s;
  pointer-events: none;
}

.step.active,
.nested-step.active {
  visibility: visible;
  opacity: 1;
  position: relative;
  transition: 0.5s;
  pointer-events: all;
}

.form-step {
  margin-top: 3rem;
}

.offer-card {
  min-width: 300px;
  max-width: 350px;
  margin: 0 auto;
}

.offer-card > .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  margin: 0 1rem;
}

.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

/* Membership card */
.price {
  align-items: stretch;
}

.price-base {
  font-size: 4.5rem;
  line-height: 0.95;
}
.price > span {
  display: flex;
  align-items: flex-end;
}

.price > div {
  min-height: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-suffix {
  font-size: 2rem;
}

.price.free-plan {
  font-weight: 700 !important;
  font-size: 2.5rem;
}

.checklist-wrapper {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist-item {
  font-size: 0.875rem;
  position: relative;
  margin: 10px 0;
  display: flex;
}

.checklist-item .icon {
  flex-shrink: 0;
  width: 15px;
  color: var(--color-1);
  margin-right: 0.75rem;
  margin-top: -2px;
}

.checklist-item .icon svg {
  fill: currentColor;
}

.plus-checklist .checklist-item {
  font-size: 0.75rem;
  margin: 5px 0;
}

/* Form */
.form-card {
  background: var(--grey-3);
}
.heading {
  margin-bottom: 0;
  padding: 1.5rem 4rem;
  background: var(--color-1);
  color: var(--white);
  position: relative;
}

.toggle-wrapper span {
  font-size: 0.875rem;
}

.left-part,
.right-part {
  padding: 0 1.5rem;
}

.right-part {
  border-top: 1px solid var(--grey-4);
  background: var(--white);
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  margin-top: 3rem;
}

.floating-btn-wrapper {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 20;
  background: var(--grey-5);
  padding: 0.5rem 1.5rem;
}

.additional-services {
  display: grid;
  gap: 1.5rem;
}

.single-service {
  position: relative;
}

.single-service input {
  margin: 0;
  width: 0;
  height: 0;
  position: absolute;
  z-index: -10;
}

.single-service-card {
  border-radius: 12px;
  position: relative;
  padding-bottom: 62.5%;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s;
}

.single-service-card:hover {
  box-shadow: var(--shadow);
}

.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 10;
}

.single-service-card .content::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color-1);
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.8;
}

.single-service .check-icon {
  width: 40px;
  height: 40px;
  color: var(--success);
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
}

.single-service .check-icon svg {
  fill: currentColor;
}

.single-service input:checked + label .check-icon,
.single-service.active .check-icon {
  visibility: visible;
  opacity: 1;
}

.single-service .info-icon {
  cursor: pointer;
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 10;
  transition: transform 0.2s ease-in-out;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-service .info-icon svg {
  stroke: var(--white);
  -webkit-filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.3));
  filter: drop-shadow(2px 2px 2px rgb(0 0 0 / 0.3));
}
.single-service .info-icon:hover {
  transform: scale(1.1);
}

.additional-services-summary,
.additional-services-summary-copy {
  font-size: 0.875rem;
  border: 1px solid var(--grey-2);
  border-left: 0;
  border-right: 0;
  margin-top: 1rem;
}
.additional-services-summary:empty,
.additional-services-summary-copy:empty {
  display: none;
}

.single-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.5rem 0;
}
.single-summary > div {
  text-align: right;
}

.price-summary {
  display: flex;
  justify-content: space-between;
  color: var(--color-1);
}

.additional-services-summary,
.price-summary {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.price-summary .payment-type {
  font-size: 0.875rem;
}

.signature-wrapper {
  position: relative;
  width: 100%;
  height: 120px;
  background: var(--white);
  border: 1px solid var(--grey-4);
  border-radius: 12px;
  cursor: crosshair;
  transition: border 0.3s;
}

.signature-wrapper .clear-btn {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  cursor: pointer;
}

.signature-form-group.invalid .signature-wrapper {
  border-color: var(--error);
}

.signature-form-group.valid .signature-wrapper {
  border-color: var(--success);
}

.signature-form-group.invalid .custom-label {
  color: var(--error);
}

.signature-form-group.valid .custom-label {
  color: var(--success);
}

.agreement a {
  color: var(--color-1);
}

.summary-grid ul {
  margin: 0;
  padding: 0;
}
.summary-grid li {
  list-style: none;
}

/*---------- Footer ----------*/
.small-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.small-footer .legals {
  background: var(--grey-5);
}

.legals-nav .menu-link {
  color: var(--white);
  font-size: 0.75rem;
  position: relative;
}

.legals-nav .menu-link::after {
  content: '';
  display: block;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  height: 80%;
  width: 1px;
  background: var(--white);
}

.legals-nav .menu-item:last-of-type .menu-link::after {
  display: none;
}

.module.thanks {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}

.share-container {
  width: 100%;
  position: relative;
  z-index: 10;
  background: var(--white);
  padding: 50px 1rem 2rem;
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0% 100%);
}

.title-wrapper {
  text-align: center;
}

.title-wrapper h3 {
  line-height: 1;
}

.share-wrapper .btn {
  min-width: 250px;
  position: relative;
}

.share-wrapper .btn-with-icon svg {
  height: 20px;
}

.whatsapp-btn {
  background: #00b957;
}

@keyframes pulse-3 {
  0% {
    box-shadow: 0 0 0 0 #00b957;
  }
}

.whatsapp-btn:hover {
  animation: pulse-3 0.5s;
}

.success-message {
  position: absolute;
  z-index: 10;
  top: -1em;
  padding: 0.5em 1em;
  font-size: 0.875rem;
  font-weight: 400;
  border-radius: 6px;
  background: var(--success);
  box-shadow: var(--shadow);
  color: var(--white);
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.share-link-btn.active .success-message {
  visibility: visible;
  opacity: 1;
  top: -3em;
}

.nested.module {
  padding-bottom: 150px;
}
.nested .legals {
  padding-bottom: 120px;
  background: var(--color-1);
}

.extra-trial-days:empty {
  display: none;
}

/*----- Modals -----*/
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease;
  pointer-events: none;
}
.modal-wrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal {
  padding: 20px 10px 20px 20px;
  position: relative;
  width: 90vw;
  max-width: 600px;
  height: 80vh;
  max-height: 1000px;
}

.back-home-btn.modal-close-btn {
  height: 30px;
  width: 30px;
  top: 10px !important;
  right: 10px !important;
  left: unset !important;
  border-radius: 50%;
  transform: unset;
  padding: 0;
}

.modal-close-btn .icon {
  margin: 0 !important;
}

.modal-close-btn .icon svg {
  height: 80%;
  width: 80%;
}

.modal-content {
  height: calc(80vh - 60px);
  max-height: 940px;
  overflow-y: scroll;
  margin-top: 20px;
  padding-right: 10px;
}

@media (min-width: 1024px) {
  .modal {
    padding: 40px 30px 40px 40px;
  }
  .modal-content {
    height: calc(80vh - 100px);
    max-height: 900px;
  }
  .back-home-btn.modal-close-btn {
    top: 20px !important;
    right: 30px !important;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  width: 11px;
}
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: var(--grey-2) #fff;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #fff;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--grey-2);
  border-radius: 6px;
  border: 3px solid #fff;
}

/* Contact card */
.module-article.contact {
  padding-top: 4rem;
}

.contact .card {
  background: unset;
  padding: 1.5rem;
}

p.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/* -------------------- Media queries -------------------- */
@media (min-width: 768px) {
  /*---------- General classes and tags ----------*/
  /*----- Layout -----*/
  .container {
    max-width: 768px;
  }

  /*----- Typography -----*/

  /*----- Components -----*/
  .xs-btn-full {
    padding: 0.8em 2em;
    text-align: center;
    width: auto;
  }

  /* -------------------- Main page -------------------- */
  /*---------- Module ----------*/
  .module {
    display: flex;
    align-items: center;
  }
  .module-article {
    width: 100%;
  }

  .membership-slider-wrapper {
    position: relative;
    max-width: initial;
    margin: 0 auto;
  }

  .membership-slider {
    /* display: flex;
    justify-content: center; */
    max-width: 94%;
    margin: 0 auto;
  }

  .auto-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .form-step,
  .nested-step {
    width: 550px;
    max-width: initial;
    margin: 0 auto;
  }

  .floating-btn-wrapper .btn.w-full {
    width: auto;
    min-width: 250px;
  }

  .additional-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .single-service .check-icon {
    top: 17%;
  }

  .thanks .module-article {
    padding-bottom: 5vh;
  }

  .share-wrapper .btn-wrapper {
    display: flex;
    justify-content: center;
  }

  .share-wrapper .btn-wrapper .btn {
    margin: 1rem 1rem 0;
  }

  /* Contact card */
  .contact .card {
    padding: 2.5rem;
  }

  .progress-bar:nth-child(even) .dot span {
    top: -20px;
    bottom: unset;
  }
}

@media (min-width: 1024px) {
  /*---------- General classes and tags ----------*/
  /*----- Layout -----*/
  .container {
    max-width: 1024px;
  }

  /*----- Typography -----*/
  .text-xxl {
    font-size: 4rem;
  }
  .text-xl {
    font-size: 2rem;
  }
  .text-lg {
    font-size: 1.75rem;
  }

  .back-home-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    width: auto;
    height: auto;
    z-index: 10;
    padding: 0.8rem 1rem;
    border-radius: 12px;
  }
  .back-home-btn .icon {
    margin-right: 1rem;
  }
  .back-home-btn span {
    display: block;
  }

  .back-home-btn-2 {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .heading {
    padding: 1.5rem 10rem;
  }

  /* -------------------- Main page -------------------- */
  /*---------- Module ----------*/
  .module-article {
    padding: 4.5rem 1.5rem 1.5rem;
  }

  .logo-img {
    height: 100px;
  }

  /* Overflow */

  /* .step {
    height: 50vh;
  }
  .card,
  .nested-step {
    height: 100%;
  }

  .nested-grid {
    height: 88%;
  }

  .left-part,
  .right-part {    
    overflow: scroll;
  } */

  .form-step,
  .nested-step {
    width: 920px;
  }

  .nested-grid {
    display: grid;
    grid-template-columns: calc(100% - 320px) 320px;
  }

  .left-part {
    padding: 0 2rem 2rem;
  }

  .toggle-wrapper {
    justify-content: flex-start;
  }

  .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 1rem;
  }

  .form-group-wrapper .form-group {
    margin-bottom: 0;
  }

  .form-group-wrapper.city-input {
    grid-template-columns: 30% 1fr;
  }
  .form-group-wrapper.w-full {
    grid-template-columns: 1fr;
  }

  .right-part {
    margin: 0;
    padding: 1.5rem;
    border: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .right-part > div:first-child {
    height: 100%;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .right-part > div:first-child > div {
    width: 100%;
  }

  .price-summary {
    margin-bottom: 0;
  }

  .floating-btn-wrapper {
    position: relative;
    background: none;
    padding: 0;
  }

  .floating-btn-wrapper .btn.w-full {
    width: 100%;
  }

  .share-container {
    padding-top: 80px;
  }

  .nested.module {
    padding-bottom: 36px;
  }
  .nested .legals {
    padding-bottom: 0.5rem;
    background: var(--grey-5);
  }

  .module-article.contact {
    padding-top: 4.5rem;
  }
  .contact .card {
    padding: 2.5rem;
  }

  .summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .summary .floating-btn-wrapper .btn.w-full {
    width: auto;
    min-width: 250px;
  }

  .summary [data-summary='fees']:empty::before,
  .summary [data-summary='additional-services']:empty::before {
    content: '-';
  }
}

@media (min-width: 1280px) {
  /*---------- General classes and tags ----------*/
  /*----- Layout -----*/
  .container {
    max-width: 1150px;
  }

  /* -------------------- Main page -------------------- */
  /*---------- Module ----------*/

  .prev-slide-btn {
    left: -40px;
  }

  .next-slide-btn {
    right: -40px;
  }

  .offer-card {
    max-width: 380px;
  }

  .offer-card p {
    font-size: 1.125rem;
  }

  .offer-card .text-md {
    font-size: 1.375rem;
  }

  .checklist-item {
    font-size: 1rem;
  }

  .checklist-item .icon {
    width: 18px;
    margin-right: 1rem;
    margin-top: 0;
  }

  .plus-checklist .checklist-item .icon {
    margin-top: -2px;
  }

  .price {
    margin: 0 auto 1.5rem;
  }

  .form-step,
  .nested-step {
    width: 1080px;
  }

  .nested-grid {
    grid-template-columns: calc(100% - 350px) 350px;
  }

  .left-part {
    padding: 0 3rem 3rem;
  }

  .right-part {
    padding: 1rem 2rem;
  }

  .single-service .check-icon {
    top: 22%;
  }

  .share-container .container {
    display: grid;
    grid-template-columns: 30% 70%;
  }

  .title-wrapper {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
