@import url(variable.css);

html {
    font-size: 100%;
}
html,
head,
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,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

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

ol,
ul {
    margin: 0;
    padding: 0;
}

blockquote,
q {
    quotes: none;
}

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

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

::-moz-selection {
    color: var(--bs-white);
    background: var(--bs-primary);
}

::selection {
    color: var(--bs-white);
    background: var(--bs-primary);
}

a {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: var(--bs-gray-dark);
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    -ms-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
}

strong,
b {
    font-weight: bold;
}

a:hover {
    text-decoration: none;
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:focus {
    text-decoration: none;
    --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

.link-primary:hover {
    color: RGBA(236, 186, 168, var(--bs-link-opacity, 1)) !important;
}

* {
    outline: none !important;
}

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

.top-auto {
    top: auto;
}

section {
    position: relative;
}

img {
    display: block;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 21px;
    color: var(--bs-secondary);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    position: relative;
    overflow-x: hidden;
}

body {
    --sb-track-color: var(--bs-light);
    --sb-thumb-color: var(--bs-primary);
    --sb-size: 10px;
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
}

body::-webkit-scrollbar {
    width: var(--sb-size);
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 10px;
}

/* Colors */

.text-primary {
    color: var(--bs-primary) !important;
}

.text-primary-light20 {
    color: var(--bs-primary20);
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-dark {
    color: var(--bs-black) !important;
}

.text-gray {
    color: var(--bs-gray-dark) !important;
}

.text-extra-light {
    color: var(--bs-gray30);
}

.text-secondary-light {
    color: var(--bs-secondary30);
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-primary-light20 {
    background-color: var(--bs-primary20);
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.bg-black {
    background-color: var(--bs-black) !important;
}

.bg-dark {
    background-color: var(--bs-gray-dark) !important;
}

.bg-outline-primary {
    border: 1px solid var(--bs-primary);
}

/*Title*/

.fw-bold {
    font-weight: 700 !important;
}
.fw-semibold {
    font-weight: 600 !important;
}
.fw-medium {
    font-weight: 500 !important;
}
.fw-normal {
    font-weight: 400 !important;
}
.fw-light {
    font-weight: 300 !important;
}

.section-title h1,
.section-title h2,
.section-title h3,
.section-title h4,
.section-title h5,
.section-title h6 {
    font-weight: 700;
    font-style: normal;
    display: block;
    position: relative;
}

.section-title h1.title-lg,
.section-title h2.title-lg,
.section-title h3.title-lg,
.section-title h4.title-lg {
    font-size: 28px;
    line-height: 36px;
}

.section-title h1.title-md,
.section-title h2.title-md,
.section-title h3.title-md,
.section-title h4.title-md {
    font-size: 24px;
    line-height: 36px;
}

.section-title h1.title-sm,
.section-title h2.title-sm,
.section-title h3.title-sm,
.section-title h4.title-sm {
    font-size: 20px;
    line-height: 26px;
}

.section-title h1.title-xs,
.section-title h2.title-xs,
.section-title h3.title-xs,
.section-title h4.title-xs {
    font-size: 18px;
    line-height: 24px;
}

.lead {
    font-size: 20px;
    line-height: 24px;
}

.copy {
    font-size: 18px;
    line-height: 22px;
}

.medium {
    font-size: 16px;
    line-height: 20px;
}

.medium-semi {
    font-size: 14px;
    line-height: 18px;
}

.small {
    font-size: 13px;
    line-height: 16px;
}

.extrasmall {
    font-size: 12px;
    line-height: 14px;
}

/* Margin */
.mt-30 {
    margin-top: 30px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-n1 {
    margin-bottom: -0.625rem;
}

/* Padding */

.pt-40 {
    padding-top: 40px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pe-30 {
    padding-left: 30px !important;
}

.px-30 {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

/* Button */

.btn {
    --bs-btn-padding-x: 1.125rem;
    --bs-btn-padding-y: 0.782rem;
    --bs-btn-font-family: "Inter", sans-serif;
    --bs-btn-font-size: 16px;
    --bs-btn-font-weight: 300;
    --bs-btn-line-height: 21px;
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: transparent;
    --bs-btn-border-width: var(--bs-border-width);
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: var(--bs-border-radius);
    --bs-btn-hover-border-color: transparent;

    padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
    font-family: var(--bs-btn-font-family);
    font-size: var(--bs-btn-font-size);
    font-weight: var(--bs-btn-font-weight);
    line-height: var(--bs-btn-line-height);
    color: var(--bs-btn-color);
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    border-radius: var(--bs-btn-border-radius);
    background-color: var(--bs-btn-bg);
    transition: color 400ms ease-in-out, background-color 400ms ease-in-out,
        border-color 400ms ease-in-out;
    letter-spacing: 0;
}

.btn-extra-large {
    min-width: 320px;
}

.btn-large {
    min-width: 180px;
}

.btn-medium {
    min-width: 160px;
}

.btn-md {
    font-size: 14px;
    padding: 8px 12px;
    min-width: 90px;
    line-height: 16px;
}

.btn-sm {
    font-size: 10px;
    padding: 4px 8px;
    min-width: 80px;
    line-height: 14px;
}

.btn-xs {
    font-size: 8px;
    padding: 4px 8px;
    min-width: 60px;
    line-height: 10px;
}

.btn-primary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border: 1px;
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-disabled-color: var(--bs-white);
    --bs-btn-disabled-bg: var(--bs-gray30);
    --bs-btn-disabled-border-color: var(--bs-gray30);
}

.btn-primary:focus-visible {
    box-shadow: none;
}

.btn-primary:focus {
    color: var(--bs-white);
}

.btn-primary:hover:focus {
    color: var(--bs-primary);
}

.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-bg: transparent;
    --bs-btn-border: 1px;
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-disabled-color: var(--bs-gray30);
    --bs-btn-disabled-bg: var(--bs-gray30);
    --bs-btn-disabled-border-color: var(--bs-gray30);
}

.btn-outline-primary:focus-visible {
    box-shadow: none;
}

.btn-outline-primary:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.btn-outline-primary:hover:focus {
    color: var(--bs-white);
    background-color: var(--bs-primary);
}

.btn-secondary {
    --bs-btn-color: var(--bs-white);
    --bs-btn-bg: var(--bs-secondary);
    --bs-btn-border: 1px;
    --bs-btn-hover-border-color: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-secondary);
    --bs-btn-hover-bg: var(--bs-white);
    --bs-btn-active-color: var(--bs-secondary);
    --bs-btn-active-bg: var(--bs-white);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-disabled-color: var(--bs-gray-dark);
    --bs-btn-disabled-bg: var(--bs-gray30);
    --bs-btn-disabled-border-color: var(--bs-gray30);
}

.btn-secondary:focus-visible {
    box-shadow: none;
}

.btn-secondary:focus {
    color: var(--bs-white);
}

.btn-secondary:hover:focus {
    color: var(--bs-white);
}

.btn-outline-secondary {
    --bs-btn-color: var(--bs-secondary);
    --bs-btn-bg: transparent;
    --bs-btn-border: 1px;
    --bs-btn-border-color: var(--bs-secondary);
    --bs-btn-hover-color: var(--bs-white);
    --bs-btn-hover-bg: var(--bs-secondary);
    --bs-btn-active-color: var(--bs-white);
    --bs-btn-active-bg: var(--bs-secondary);
    --bs-btn-active-border-color: var(--bs-secondary);
    --bs-btn-disabled-color: var(--bs-gray-dark);
    --bs-btn-disabled-bg: var(--bs-gray30);
    --bs-btn-disabled-border-color: var(--bs-gray30);
}

.btn-outline-secondary:focus-visible {
    box-shadow: none;
}

.btn-outline-secondary:focus {
    color: var(--bs-white);
    background-color: var(--bs-secondary);
}

.btn-outline-secondary:hover:focus {
    color: var(--bs-white);
    background-color: var(--bs-secondary);
}

/* Form Css */
.form-label {
    font-size: 18px;
    margin-bottom: 1rem;
}

.form-control,
.form-select {
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    padding: 0.375rem 0rem;
    border-radius: 0;
    background-color: var(--bs-white);
    border: var(--bs-border-width) solid var(--bs-form-border);
    border-top: 0;
    border-left: 0;
    border-right: 0;
    color: var(--bs-secondary);
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    -ms-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
    height: calc(1.5em + 0.75rem + 0px);
}

.form-floating > .form-control {
    height: calc(3rem + calc(var(--bs-border-width) * 2));
    min-height: calc(3rem + calc(var(--bs-border-width) * 2));
    padding-left: 0rem;
    padding-right: 0rem;
}
.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.85) translateY(-0.8rem) translateX(0.15rem);
    left: -2px;
}

.form-floating > .form-select ~ label {
    transform: scale(0.85) translateY(-0.3rem) translateX(0.15rem);
}

.form-floating > label {
    padding-left: 0rem;
    padding-right: 0rem;
    color: var(--bs-secondary32);
}
.form-select {
    color: var(--bs-secondary32);
}
.form-select:focus {
    color: var(--bs-secondary);
}
select.form-select {
    color: var(--bs-secondary32);
}
.form-control:focus {
    font-weight: 600;
}
.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
    background-color: var(--bs-white);
    border-color: var(--bs-secondary);
}
.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
    color: var(--bs-secondary32);
}
.form-control::placeholder,
.form-select::placeholder {
    color: var(--bs-secondary32);
}
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
    color: var(--bs-secondary32);
}
.form-control::-ms-input-placeholder,
.form-select::-ms-input-placeholder {
    color: var(--bs-secondary32);
}

/* Select2 */
.select2-container--default .select2-selection--single {
    border-top: 0;
    border-left: 0;
    border-right: 0;
    border-color: var(--bs-form-border);
    border-radius: 0;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 16px;
}
.select2-container--default.select2-container--open.select2-container--above
    .select2-selection--single {
    border-color: var(--bs-secondary);
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 16px;
}
.select2-results__option span {
    display: inline-flex;
}

.select2-results__option span img.img-flag {
    margin-right: 5px;
}

.cust-radio .btn {
    font-size: 28px;
    line-height: 36px;
    border-color: var(--bs-white);
}

.cust-radio .btn-check + .btn:hover {
    border-color: var(--bs-secondary);
}

.input-code {
    font-size: 40px;
    line-height: 48px;
    border-radius: var(--bs-border-radius-md);
    background-color: var(--bs-light);
    border: var(--bs-light);
    color: var(--bs-secondary);
    -webkit-transition: all 450ms ease-in-out;
    -moz-transition: all 450ms ease-in-out;
    -o-transition: all 450ms ease-in-out;
    -ms-transition: all 450ms ease-in-out;
    transition: all 450ms ease-in-out;
    height: calc(1.5em + 0.75rem + 20px);
    text-align: center;
    width: 60px;
    padding: 0px;
    margin: 0 6px;
}
.input-code:focus {
    outline: none;
    box-shadow: none;
    background-color: var(--bs-light);
    border-color: var(--bs-secondary);
}

textarea.form-control {
    min-height: calc(1.5em + 0.75rem + calc(70px));
    padding-top: 15px;
}

select option {
    padding: 10px;
}

.opt-entered .form-control {
    font-size: 28px;
    line-height: 38px;
    font-weight: 500;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
}

.form-check {
    padding-left: 2em;
}

.form-check .form-check-input {
    margin-left: -2em;
}

.form-check-input {
    width: 1.188rem;
    height: 1.188rem;
    margin-top: 0em;
}

.form-check-input:checked {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
}

.form-check-input:focus {
    box-shadow: none;
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* intlTelInput */

.iti {
    width: 100%;
    margin-top: 15px;
}

.iti--allow-dropdown .iti__flag-container:hover,
.iti--show-selected-dial-code .iti__selected-flag {
    background-color: var(--bs-white) !important;
}

.wrapper {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
}

.wrapper.logout .card-rounded-top {
    min-height: auto;
}

.wrapper.logged-in {
    min-height: calc(100vh - 105px);
    min-height: calc(var(--vh, 1vh) * 100 - 60px);
}

.card-rounded-top {
    border-radius: var(--bs-border-radius-xl) var(--bs-border-radius-xl) 0 0;
    min-height: calc(100vh - 160px);
    min-height: calc(var(--vh, 1vh) * 100 - 160px);
}

.login-btn {
    min-height: 130px;
}

.register-first-step {
    min-height: 130px;
}

/* Phone Number Dialpad*/
.dialpad .phone {
    width: 320px;
    margin: 0 auto;
    position: relative;
}

.dialpad .phone .phone-container {
    width: 100%;
    margin-top: 10px;
}
.dialpad .phone .phone-container .keyboard {
    width: 100%;
    /* margin-left: 5%; */
    margin-top: 30px;
    margin-bottom: 20px;
}
.dialpad .phone .phone-container .keyboard .number {
    width: 100%;
    font-size: 0;
    text-align: center;
}
.dialpad .phone .phone-container .keyboard .number.aling-right {
    text-align: right;
    width: 100%;
}
.dialpad .phone .phone-container .keyboard .number span {
    font-size: 40px;
    color: var(--bs-secondary);
    display: inline-block;
    width: calc(100% / 3);
    text-align: center;
    margin-bottom: 20px;
}
.dialpad .phone .phone-container .keyboard .number span.call-button {
    opacity: 0;
    transition: 250ms;
}
.dialpad .phone .phone-container .keyboard .number span.call-button.show {
    opacity: 1;
}
.dialpad .phone .phone-container .keyboard .number span.call-button img {
    display: inline-block;
    vertical-align: middle;
}
.dialpad .phone .phone-container .keyboard .number span i {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 70px;
    font-style: normal;
    background: var(--bs-white);
    cursor: pointer;
    border-radius: 100%;
    transition: 250ms;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* -webkit-box-shadow: 8px 8px 24px 0px rgba(132, 132, 132, 0.09);
  -moz-box-shadow: 8px 8px 24px 0px rgba(132, 132, 132, 0.09);
  box-shadow: 8px 8px 24px 0px rgba(132, 132, 132, 0.09); */
}
.dialpad .phone .phone-container .keyboard .number span i.delete {
    background: transparent;
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    -ms-box-shadow: 0 0 0 0;
    color: var(--bs-secondary);
}
.dialpad .phone .phone-container .keyboard .number span i.delete img {
    display: inline-block;
    vertical-align: middle;
}
.dialpad .phone .phone-container .keyboard .number span:hover i {
    color: var(--bs-secondary);
}
.dialpad .phone .phone-container .keyboard .number span:active i {
    transform: translateY(1px);
    /* -webkit-box-shadow: 5px 5px 24px 0px rgba(132, 132, 132, 0.18);
  -moz-box-shadow: 5px 5px 16px 0px rgba(132, 132, 132, 0.18);
  box-shadow: 5px 5px 16px 0px rgba(132, 132, 132, 0.18); */
}
.dialpad .phone .phone-container .keyboard .number span:active i.delete {
    box-shadow: 0 0 0 0;
    -webkit-box-shadow: 0 0 0 0;
    -moz-box-shadow: 0 0 0 0;
    -ms-box-shadow: 0 0 0 0;
    transform: translateY(0px);
}
.dialpad .phone .phone-container .keyboard .number span:active i.delete img {
    transition: 250ms;
}
.dialpad
    .phone
    .phone-container
    .keyboard
    .number
    span:active
    i.delete:active
    img {
    transform: translateY(2px);
}

.btn-close:focus,
.btn-close:active {
    outline: none;
    box-shadow: none;
}

/* Footer */
.footer-area {
    margin-bottom: 120px;
    position: relative;
}
.footer {
    position: fixed;
    /* width: 100%; */
    margin: 0 auto;
    z-index: 9;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #31323b;
    border-radius: 20px 20px 0 0px;
}

.footer ul {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0 30px;
}
.footer ul li {
    padding: 15px 20px;
}

.footer ul li a {
    color: var(--bs-secondary);
    font-size: 24px;
}

.footer ul li a:hover,
.footer ul li a:active,
.footer ul li a.active {
    color: var(--bs-primary);
}

.footer .qr-btn {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: -60px 30px 0;
    background-color: var(--bs-white);
    box-shadow: 0px 6px 8px 3px rgba(0, 0, 0, 0.16);
}

/* Card CSS */
.card-hori {
    /* global 94%+ browsers support */
    background: linear-gradient(90deg, #ecbaa8 0%, #ffffff 100%);
    border-radius: var(--bs-border-radius-md);
    padding: 15px;
    box-shadow: -25px 20px 30px -20px rgba(0, 0, 0, 0.22),
        10px 10px 20px -20px rgba(0, 0, 0, 0.22);
    min-height: 200px;
}

.card-ver {
    /* global 94%+ browsers support */
    background: linear-gradient(180deg, #ecbaa8 0%, #ffffff 100%);
    border-radius: var(--bs-border-radius-md);
    padding: 15px;
    box-shadow: 0px -10px 20px 2px rgba(0, 0, 0, 0.12);
    min-height: 380px;
    max-width: 230px;
    margin: 0 auto;
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 100%;
}

.image-mask {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.profile-close {
    min-height: 48px;
    bottom: 30px;
    position: relative;
}

.back-title {
    margin: 0 0 0 33%;
}

.hr-gradient {
    /* global 94%+ browsers support */
    background: linear-gradient(90deg, #ecbaa8 0%, #ffffff 100%);
    border-radius: var(--bs-border-radius-md);
    padding: 15px;
    box-shadow: -25px 20px 30px -20px rgba(0, 0, 0, 0.22),
        10px 10px 20px -20px rgba(0, 0, 0, 0.22);
}

.vr-gradient {
    /* global 94%+ browsers support */
    background: linear-gradient(180deg, #ecbaa8 0%, #ffffff 100%);
    border-radius: var(--bs-border-radius-md);
    padding: 15px;
    box-shadow: 0px -5px 10px -5px rgba(0, 0, 0, 0.12);
}

/***MEDIA CSS***/
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

@media (min-width: 720px) {
    .wrapper-desktop {
        max-width: 414px;
        margin: 0 auto;
    }
    .footer {
        max-width: 414px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
}

@media (min-width: 1199.98px) {
}

/* xxl applies to x-large devices (large desktops, less than 1400px) */
@media (max-width: 1365px) {
}

/* xl applies to large devices (desktops, less than 1280px) */

@media (min-width: 1200px) and (max-width: 1280px) {
}

@media (max-width: 1199.98px) {
}

/* lg applies to medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
}

/* md applies to small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
}

/* sm applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
}

@media (max-width: 480px) {
    .btn-extra-large {
        min-width: 100%;
    }
    .btn-large {
        min-width: 100%;
    }
    .btn-medium {
        min-width: 100%;
    }
    .btn-outline-primary-lg {
        --bs-btn-padding-x: 1.2rem;
    }
}

@media (max-width: 420px) {
}

@media (max-width: 375px) {
}

@media (max-width: 320px) {
}
