@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --background: 0 0% 100%;
  --foreground: 222.2 84% 4.9%;
  --card: 0 0% 100%;
  --card-foreground: 222.2 84% 4.9%;
  --popover: 0 0% 100%;
  --popover-foreground: 222.2 84% 4.9%;
  --primary: 222.2 47.4% 11.2%;
  --primary-foreground: 210 40% 98%;
  --secondary: 210 40% 96.1%;
  --secondary-foreground: 222.2 47.4% 11.2%;
  --muted: 210 40% 96.1%;
  --muted-foreground: 215.4 16.3% 46.9%;
  --accent: 210 40% 96.1%;
  --accent-foreground: 222.2 47.4% 11.2%;
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 210 40% 98%;
  --border: 214.3 31.8% 91.4%;
  --input: 214.3 31.8% 91.4%;
  --ring: 222.2 84% 4.9%;
  --radius: 0.5rem;
  --secondary-background: 23 44% 96%;
  --theme-primary: 351 81% 35%;
  --success: 158 100% 37%;
  --danger: 354 70% 54%;
}

/*--- Reset Css ---*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a, a:focus, a:hover {
  text-decoration: none;
  outline: none;
  transition: all 0.3s;
}

input:focus {
  outline: none;
  box-shadow: none;
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/
html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: -webkit-fill-available;
}

body {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

strong {
  font-weight: 700;
}

::-webkit-scrollbar-track {
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 0.313rem;
  height: 0.313rem;
  background-color: #F5F5F5;
  scroll-behavior: smooth;
}

::-webkit-scrollbar-thumb {
  background-color: #b2b2b2;
}

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

.animation {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.slideDownIn {
  animation-name: slideDownIn;
}

@keyframes slideDownIn {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
  0% {
    transform: translateY(10px);
  }
}
.ink {
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(0);
  background: #fff;
  opacity: 0.2;
}

.ink.animate {
  animation: ripple 0.5s linear;
}

@keyframes ripple {
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
.btn-close {
  border-radius: 8px;
}
.btn-close:focus, .btn-close:active {
  box-shadow: none;
}

.btn {
  outline: 0;
  outline-offset: 0;
  border-radius: 8px;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -webkit-transition: all 0.15s ease-in-out;
}
.btn:focus, .btn:active, .btn.active, .btn:active:focus, .btn.active:focus {
  outline: 0;
  outline-offset: 0;
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
}

.btn-primary {
  background: hsl(var(--theme-primary));
  border-color: hsl(var(--theme-primary));
  color: #FFF;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-primary svg, .btn-primary i {
  margin-right: 10px;
}
.btn-primary:active {
  background: hsl(var(--theme-primary)/0.9);
  border-color: hsl(var(--theme-primary)/0.9);
  color: #FFF;
}
.btn-primary:active:focus-visible {
  background: hsl(var(--theme-primary)/0.9);
}
.btn-primary:hover {
  background: hsl(var(--theme-primary)/0.9);
  border-color: hsl(var(--theme-primary)/0.9);
  color: #FFF;
}
.btn-primary:focus, .btn-primary:focus-visible {
  background: hsl(var(--theme-primary)/0.9);
  border-color: hsl(var(--theme-primary)/0.9);
  color: #FFF;
}

.btn-primary:first-child:active, :not(.btn-check) + .btn-primary:active {
  background: hsl(var(--theme-primary)/0.9) !important;
  border-color: hsl(var(--theme-primary)/0.9) !important;
  color: #FFF;
}

.btn-secondary {
  background: hsl(var(--primary));
  color: #FFF;
  border: solid 1px hsl(var(--primary));
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary svg, .btn-secondary i {
  margin-right: 10px;
}
.btn-secondary:active {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}
.btn-secondary:active:focus-visible {
  background: hsl(var(--primary)/0.9);
}
.btn-secondary:hover {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}
.btn-secondary:focus, .btn-secondary:focus-visible {
  background: hsl(var(--primary)/0.9);
  color: #FFF;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background: hsl(var(--primary));
  color: #FFF;
  border: solid 1px hsl(var(--primary));
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 8px;
  opacity: 0.8;
  cursor: not-allowed;
  pointer-events: none;
  -moz-user-select: none;
       user-select: none;
  touch-action: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-outline {
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: solid 1px hsl(var(--primary));
}
.btn-outline svg, .btn-outline i {
  margin-right: 10px;
  font-size: 1.25rem;
}
.btn-outline:hover, .btn-outline:focus, .btn-outline:focus-visible {
  background: transparent;
  border: solid 1px hsl(var(--primary));
}

.btn:first-child:active, :not(.btn-check) + .btn:active {
  background: transparent;
  border: solid 1px hsl(var(--primary));
}

.btn-lg {
  font-size: 0.938rem;
  font-weight: 700;
  padding: 0.938rem 1.563rem !important;
}

.btn-sm {
  padding: 6px 10px !important;
  font-size: 0.813rem;
  border-radius: 8px;
}
.btn-sm i {
  font-size: 0.875rem;
  margin-right: 0.625rem;
}

.btn-link {
  color: hsl(var(--primary));
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
  color: hsl(var(--primary)/0.8);
  background: transparent !important;
  outline: 0;
  box-shadow: none;
}
.btn-link.btn:first-child:active, .btn-link:not(.btn-check) + .btn-link.btn:active {
  color: hsl(var(--primary)/0.8);
  background: transparent !important;
  outline: 0;
  box-shadow: none;
}

.btn:first-child:active, :not(.btn-check) + .btn:active {
  outline: 0;
  box-shadow: none;
  border: none;
}

.ripple-effect {
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.form-floating {
  position: relative;
}
.form-floating .icon {
  position: absolute;
  right: 15px;
  top: 18px;
  display: flex;
  align-items: center;
}
.form-floating.icon-view .form-control {
  padding-right: 50px;
}

.form-control {
  height: 55px;
}

.toggle-password {
  width: 20px;
  height: 20px;
}
.toggle-password.hide-pass {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWV5ZSI+PHBhdGggZD0iTTIuMDYyIDEyLjM0OGExIDEgMCAwIDEgMC0uNjk2IDEwLjc1IDEwLjc1IDAgMCAxIDE5Ljg3NiAwIDEgMSAwIDAgMSAwIC42OTYgMTAuNzUgMTAuNzUgMCAwIDEtMTkuODc2IDAiLz48Y2lyY2xlIGN4PSIxMiIgY3k9IjEyIiByPSIzIi8+PC9zdmc+");
  background-size: 20px;
}
.toggle-password.show-pass {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIGNsYXNzPSJsdWNpZGUgbHVjaWRlLWV5ZS1jbG9zZWQiPjxwYXRoIGQ9Im0xNSAxOC0uNzIyLTMuMjUiLz48cGF0aCBkPSJNMiA4YTEwLjY0NSAxMC42NDUgMCAwIDAgMjAgMCIvPjxwYXRoIGQ9Im0yMCAxNS0xLjcyNi0yLjA1Ii8+PHBhdGggZD0ibTQgMTUgMS43MjYtMi4wNSIvPjxwYXRoIGQ9Im05IDE4IC43MjItMy4yNSIvPjwvc3ZnPg==");
  background-size: 20px;
}

.form-control:disabled {
  --bs-secondary-bg: #f1f4f7;
  background-color: var(--bs-secondary-bg);
  opacity: 1;
}

.form-floating > .form-control:disabled ~ label::after, .form-floating > :disabled ~ label::after {
  --bs-secondary-bg: #f1f4f7;
  background: var(--bs-secondary-bg);
}

.form-floating > .form-control, .form-floating > .form-control-plaintext, .form-floating > .form-select {
  height: calc(55px + var(--bs-border-width) * 2);
  min-height: calc(55px + var(--bs-border-width) * 2);
  line-height: 1.25;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  background: transparent;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  background: transparent;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label.error::after {
  background: #FFF;
}

.form-floating > .form-control-plaintext ~ label.error::after, .form-floating > .form-control:focus ~ label.error::after, .form-floating > .form-control:not(:placeholder-shown) ~ label.error::after, .form-floating > .form-select ~ label::after {
  background: #FFF;
}

.form-floating > .form-select:disabled ~ label::after {
  background: transparent;
}

.form-floating label.error {
  background: #FFF;
  z-index: 11;
  border: none;
  margin-top: 1px;
  margin-left: 1px;
  border-radius: 8px;
  height: calc(100% - 2px);
  font-size: 13px;
  color: #e9435d;
  white-space: pre-wrap;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label.error {
  background: transparent;
  color: #e9435d;
  transform: scale(0.9) translateY(-12px) translateX(2px);
}

.form-floating > .form-control:focus ~ label.error, .form-floating > .form-control:not(:placeholder-shown) ~ label.error, .form-floating > .form-select ~ label.error {
  background: transparent;
  color: #e9435d;
  transform: scale(0.9) translateY(-12px) translateX(2px);
}

.form-control {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-radius: 8px;
  border: none;
  letter-spacing: 0.5px;
}
.form-control.error {
  border-color: #e9435d;
}
.form-control::-moz-placeholder {
  font-weight: 400;
  font-size: 14px;
}
.form-control::placeholder {
  font-weight: 400;
  font-size: 14px;
}

.iti {
  width: 100%;
}
.iti .form-control {
  height: calc(55px + var(--bs-border-width) * 2);
  min-height: calc(55px + var(--bs-border-width) * 2);
}
.iti .form-control.error {
  border-color: #e9435d;
}

.iti--inline-dropdown .iti__dropdown-content {
  --iti-border-color: hsl(var(--border));
  z-index: 9;
}

.iti__search-input {
  padding: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.iti__country {
  padding: 0.613rem;
}

.iti__country.iti__highlight {
  background-color: hsl(var(--secondary-background));
}

.form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  width: 100%;
  padding: 25px 15px 15px 15px;
}

.form-select {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  border-radius: 6px;
}
.form-select.error {
  border-color: #e9435d;
}

.select2-container .select2-selection--single {
  height: 57px;
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
}

.select2-dropdown {
  border: 1px solid hsl(var(--border));
}

.select2-results__option {
  padding: 0.613rem;
  font-size: 0.875rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  margin-top: 8px;
  padding: 0.938rem;
  font-size: 0.938rem;
  font-weight: 600;
  color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 16px;
  right: 11px;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid hsl(var(--border));
  border-radius: 6px;
  padding: 0.5rem 0.613rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: hsl(var(--secondary-background));
  color: #000;
}

.select2-container--default .select2-results__option--selected {
  background-color: hsl(var(--primary));
  color: #FFF;
}

.select2-selection__arrow {
  position: relative;
  display: grid;
  place-content: center;
}
.select2-selection__arrow b {
  display: none;
}
.select2-selection__arrow::after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9ImN1cnJlbnRDb2xvciIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgY2xhc3M9Imx1Y2lkZSBsdWNpZGUtY2hldnJvbi1kb3duIj48cGF0aCBkPSJtNiA5IDYgNiA2LTYiLz48L3N2Zz4=");
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-floating > label {
  display: flex;
  align-items: center;
  padding: 15px;
  font-size: 14px;
}

.form-floating > .form-control-plaintext:not(:-moz-placeholder-shown), .form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 25px;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 25px;
  padding-bottom: 0.625rem;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  transform: scale(0.9) translateY(-12px) translateX(2px);
  padding: 10px 15px;
}

.form-floating > .form-control-plaintext ~ label, .form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
  transform: scale(0.9) translateY(-12px) translateX(2px);
  padding: 10px 15px;
}

.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label::after {
  top: 14px;
  background: transparent;
}

.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  top: 14px;
  background: transparent;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext {
  padding: 15px;
}

.form-control:focus,
.form-check-input:focus {
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  border-color: hsl(var(--primary));
  box-shadow: 0 0 0 1px rgb(33, 33, 33);
  outline: 0;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  gap: 10px;
}
.form-check:not(:last-child) {
  margin-bottom: 5px;
}

.form-check-label {
  white-space: nowrap;
  font-size: 13px;
}
.form-check-label a {
  color: hsl(var(--theme-primary));
}

.checkbox .form-check-input:checked[type=checkbox] {
  --bs-form-check-bg-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGVjayI+PHBhdGggZD0iTTIwIDYgOSAxN2wtNS01Ii8+PC9zdmc+);
}
.checkbox .form-check-input {
  width: 20px;
  height: 20px;
  border-width: 1px;
}

.img-fluid {
  display: block;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
}

/*---------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  padding: 15px;
  background: #FFF;
  border-bottom-right-radius: 20px;
}

.brand img {
  width: 200px;
}

.whatsapp-btn {
  display: block;
  margin-right: 20px;
}

.banner {
  background: url("../images/banner-bg.jpg") no-repeat center center;
  background-size: cover;
  height: 700px;
}

.banner-content h1 {
  font-size: 40px;
  line-height: 1.4;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}
.banner-content > p {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
  margin-bottom: 50px;
}

.referral-form .btn-secondary {
  width: 300px;
}

.why-magicdecor {
  background: #F8F7FD;
  padding: 30px 40px;
  margin-bottom: 80px;
}
.why-magicdecor h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}
.why-magicdecor h2 strong {
  font-weight: 700;
}
.why-magicdecor h5 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}
.why-magicdecor p {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  color: #575769;
}

.what-you-get {
  margin-bottom: 80px;
}
.what-you-get h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  margin-bottom: 40px;
}
.what-you-get h2 strong {
  font-weight: 700;
}
.what-you-get ul {
  margin-bottom: 80px;
}
.what-you-get ul li {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  color: #000;
  margin-bottom: 35px;
  position: relative;
  padding-left: 60px;
}
.what-you-get ul li:last-child {
  margin-bottom: 0;
}
.what-you-get ul li::before {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiM0QTQ0NkMiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1hcnJvdy1yaWdodC1pY29uIGx1Y2lkZS1hcnJvdy1yaWdodCI+PHBhdGggZD0iTTUgMTJoMTQiLz48cGF0aCBkPSJtMTIgNSA3IDctNyA3Ii8+PC9zdmc+");
  width: 40px;
  height: 40px;
  line-height: 0;
  border-radius: 50px;
  background: #EEECF9;
  position: absolute;
  left: 0;
  top: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works {
  margin-bottom: 80px;
}
.how-it-works h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  margin-bottom: 50px;
  text-align: center;
}
.how-it-works h2 strong {
  font-weight: 700;
}

.option {
  padding: 30px;
}
.option h6 {
  font-size: 20px;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}
.option p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 500;
  color: #000;
}
.option.option1 {
  background: #FFF3D3;
  border-radius: 30px 30px 0 30px;
}
.option.option2 {
  background: #F8F7FD;
  border-radius: 0 30px 30px 30px;
  margin-top: 130px;
}

.faqs {
  margin: 0 30px 30px 30px;
  background: #F5F2E9;
  border-radius: 20px;
  padding: 30px 0 40px 0;
}
.faqs h3 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
  text-align: center;
}
.faqs h3 strong {
  font-weight: 700;
}

.accordion-custom {
  border: 0;
  gap: 0;
}
.accordion-custom .accordion-item {
  position: relative;
  border: 0;
}
.accordion-custom .accordion-item:not(:last-child) {
  border-bottom: 1px solid #D9D9D9;
}
.accordion-custom .accordion-button p {
  font-weight: 500;
  line-height: 22px;
  padding-bottom: 0;
}
.accordion-custom .accordion-button {
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.6;
  font-weight: 500;
  padding: 18px 0 18px 50px;
}
.accordion-custom .accordion-button:focus {
  box-shadow: none;
}
.accordion-custom .accordion-button,
.accordion-custom .accordion-button:not(.collapsed) {
  background: #FFF;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.accordion-custom .accordion-button::after {
  display: none;
}
.accordion-custom .accordion-button::before {
  content: "+";
  position: absolute;
  top: 5px;
  left: 15px;
  transition: all 0.3s ease;
  font-size: 30px;
  font-weight: 300;
}
.accordion-custom .accordion-button:not(.collapsed)::before {
  content: "-";
}
.accordion-custom .accordion-body {
  margin-left: 30px;
  padding: 0;
}
.accordion-custom .accordion-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #1d1d1d;
  font-weight: 400;
  margin: 0 15px 20px 15px;
  letter-spacing: 0.5px;
}
.accordion-custom .accordion-body p a {
  color: hsl(var(--theme-primary));
}

.accordion {
  display: grid;
}

.accordion-item {
  border: 0;
}

.accordion-button:not(.collapsed) {
  background: #FFF;
  color: #000;
  box-shadow: none;
}

.accordion-button::after {
  --bs-accordion-btn-icon-width: 18px;
  --bs-accordion-btn-icon-height: 18px;
  --bs-accordion-btn-icon-width: 18px;
}

.contact-us {
  padding: 30px;
  background: #2A2728;
  border-radius: 20px;
  color: #FFF;
  display: flex;
  gap: 30px;
}
.contact-us svg {
  flex: 0 0 50px;
}
.contact-us h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 15px;
}
.contact-us p {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.contact-us p a {
  color: #fd7e7e;
}

footer {
  padding: 30px 0;
}

.md-social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.md-social-links li {
  display: flex;
  align-items: center;
}
.md-social-links li img {
  width: 30px;
}
.md-social-links li a {
  padding: 8px;
}

.md-copy-link {
  position: relative;
  margin-bottom: 20px;
}
.md-copy-link .btn-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  position: absolute;
  top: 1px;
  right: 1px;
  text-decoration: none;
  color: #000;
  height: calc(100% - 2px);
  background: white;
  padding: 0 15px;
  border-radius: 8px;
  border: none;
}
.md-copy-link .form-control {
  padding: 15px 75px 15px 15px;
  font-size: 15px;
  text-overflow: ellipsis;
  color: #000;
  font-weight: 600;
}

.md-share-links h6 {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
}

.alert {
  border-radius: 8px;
  border: none;
}
.alert p {
  margin: 0;
  font-size: 15px;
}

#resend_otp {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
}

.spinner-border {
  --bs-spinner-width: 15px;
  --bs-spinner-height: 15px;
  --bs-spinner-vertical-align: -0.125em;
  --bs-spinner-border-width: 2px;
  --bs-spinner-animation-speed: 0.75s;
  --bs-spinner-animation-name: spinner-border;
  border: var(--bs-spinner-border-width) solid currentcolor;
  border-right-color: transparent;
}

/*----------------------------------------*/
@media (min-width: 992px) and (max-width: 1199.99px) {
  header {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
  }
  .brand {
    padding: 15px;
  }
  .brand img {
    width: 200px;
  }
  .banner {
    height: 560px;
  }
  .banner-content h1 {
    font-size: 36px;
  }
  .why-magicdecor {
    padding: 20px;
  }
  .why-magicdecor h2 {
    text-align: center;
    font-size: 28px;
  }
  .why-magicdecor p {
    font-size: 13px;
  }
  .what-you-get ul {
    margin-bottom: 40px;
  }
} /*---- @media (min-width: 992px) and (max-width: 1199.99px) ----*/
@media (min-width: 768px) and (max-width: 991px) {
  header {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
  }
  .brand {
    padding: 10px;
  }
  .banner {
    padding: 0 0 50px 0;
    height: auto;
    position: relative;
  }
  .banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(118, 70, 33, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .banner-content {
    position: relative;
    z-index: 1;
  }
  .banner-content h1 {
    font-size: 28px;
    color: #FFF;
  }
  .banner-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #FFF;
    margin-bottom: 30px;
  }
  .why-magicdecor {
    padding: 20px;
    margin-bottom: 20px;
  }
  .why-magicdecor h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
  }
  .why-magicdecor p {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .what-you-get {
    margin-bottom: 50px;
  }
  .what-you-get h2 {
    font-size: 22px;
  }
  .what-you-get img {
    margin-bottom: 30px;
  }
  .what-you-get ul {
    margin-bottom: 40px;
  }
  .option.option2 {
    margin-top: 20px;
  }
  .how-it-works {
    margin-bottom: 50px;
  }
  .how-it-works h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .faqs {
    margin: 10px;
  }
  .faqs h3 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .contact-us {
    padding: 20px;
    gap: 15px;
  }
  .contact-us svg {
    flex: 0 0 40px;
    width: 40px;
  }
  .contact-us h2 {
    font-size: 20px;
  }
  .contact-us p {
    line-height: 1.5;
  }
  footer {
    padding: 20px 0;
    text-align: center;
  }
  .md-social-links {
    justify-content: center;
    margin-top: 20px;
  }
  .md-share-links h6 {
    color: #FFF;
  }
} /*---- @media (min-width: 768px) and (max-width: 991.99px) ----*/
@media (min-width: 640px) and (max-width: 768.98px) {
  .brand {
      padding: 15px;
  }
}
/*---- @media (min-width: 640px) and (max-width: 768.98px) ----*/
@media (max-width: 767.98px) {
  header {
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
  }
  .brand {
    padding: 10px;
  }
  .banner {
    padding: 0 0 50px 0;
    height: auto;
    position: relative;
  }
  .banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(118, 70, 33, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
  }
  .banner-content {
    position: relative;
    z-index: 1;
  }
  .banner-content h1 {
    font-size: 28px;
    color: #FFF;
  }
  .banner-content > p {
    font-size: 16px;
    line-height: 1.7;
    color: #FFF;
    margin-bottom: 30px;
  }
  .why-magicdecor {
    padding: 20px;
    margin-bottom: 20px;
  }
  .why-magicdecor h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 22px;
  }
  .why-magicdecor p {
    font-size: 13px;
    margin-bottom: 25px;
  }
  .what-you-get {
    margin-bottom: 50px;
  }
  .what-you-get h2 {
    font-size: 22px;
  }
  .what-you-get img {
    margin-bottom: 30px;
  }
  .what-you-get ul {
    margin-bottom: 40px;
  }
  .option.option2 {
    margin-top: 20px;
  }
  .how-it-works {
    margin-bottom: 50px;
  }
  .how-it-works h2 {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .faqs {
    margin: 10px;
  }
  .faqs h3 {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .contact-us {
    padding: 20px;
    gap: 15px;
  }
  .contact-us svg {
    flex: 0 0 40px;
    width: 40px;
  }
  .contact-us h2 {
    font-size: 20px;
  }
  .contact-us p {
    line-height: 1.5;
  }
  footer {
    padding: 20px 0;
    text-align: center;
  }
  .md-social-links {
    justify-content: center;
    margin-top: 20px;
  }
  .md-share-links h6 {
    color: #FFF;
  }
} /*---- @media (max-width: 767.98px) ----*/
@media (max-width: 575.99px) {
  .brand {
    padding: 10px;
  }
  .brand img {
    width: 200px;
  }
  .referral-form .btn-secondary {
    width: auto;
  }
} /*---- @media (max-width: 400.99px) ----*//*# sourceMappingURL=main.css.map */