: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 {
  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;
}

.input-icon {
  position: absolute;
  right: 1px;
  top: 1px;
  display: flex;
  align-items: center;
  height: 39px;
  background: #FFF;
}

.icon-view .form-control {
  padding-right: 40px;
}

.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: 14px;
  font-weight: 600;
  color: #000;
  border-radius: 6px;
  letter-spacing: 0.5px;
  height: 52px;
}

.form-label {
  font-weight: 500;
}

.search-wrapper .form-control {
  max-width: 300px;
  height: 42px;
}

.search-wrapper .form-control.is-invalid, .was-validated .form-control:invalid {
  background: none;
}

.search-wrapper .form-control::placeholder {
  font-size: 14px;
}

.error.error-message {
  color: #e9435d;
}

.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: none;
  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;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
}

/*---------------------*/

.md-brand {
  width: 240px;
  padding: 15px;
}

.md-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-right: 15px;
}

.md-call {
  background: #FFFFFF;
  padding: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

.md-banner {
  background: #FCF5EE url('../images/bg-lines.svg') no-repeat center center;
  background-size: cover;
  overflow: hidden;
  max-width: 1920px;
  min-height: 450px;
  margin: 0 auto;
}

.md-banner header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.md-banner-content {
  text-align: center;
  margin: 50px 0 30px 0;
}

.md-banner-content h1 {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 15px;
}

.md-banner-content h1 strong {
  color: #000;
  font-weight: 800;
}

.md-banner-content > p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #53514C;
  letter-spacing: .5px;
  text-align: center;
}

.md-upload-section {
  margin-top: -170px;
}

.card {
  border: none;
  border-radius: 10px;
  box-shadow: rgba(17, 17, 26, 0.05) 0px 0px 16px;
  height: 450px;
}

.card-body {
  padding: 20px;
}

.card-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.custum-file-upload {
  height: calc(100% - 40px);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: var(--bs-border-width) dashed var(--bs-border-color);
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
}

.custum-file-upload .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
}

.custum-file-upload .text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custum-file-upload .text span {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

.custum-file-upload input {
  display: none;
}

.custum-file-upload .img-preview {
  max-width: 100%;
  height: 200px;
  margin-top: 10px;
  border-radius: 6px;
  object-fit: cover;
}

.md-produtcs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  height: 348px;
  overflow-y: auto;
}

.md-produtcs .md-product-item {
  width: 152px;
  height: 152px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid transparent;
}

.md-produtcs .md-product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-produtcs .md-product-item.selected {
  border: 3px solid #000;
}

.mockup-preview {
  margin-bottom: 15px;
}

.mockup-preview > a {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 6px;
}

.mockup-preview > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease .3s all;
}

.mockup-preview > a > img:hover {
  transform: scale(1.05);
  transition: ease .3s all;
}

footer {
  padding: 40px 0;
}

footer p {
  font-size: 14x;
  font-weight: 500;
  color: #5c5c5c;
}

.btn-close {
  width: 24px;
  height: 24px;
  padding: 5px !important;
  border-radius: 50px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;   
}

.modal-md {
  --bs-modal-width: 650px;
}

.modal-sm {
  --bs-modal-width: 400px;
}

.modal .modal-content {
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
  border: none;
  border-radius: 10px;
}

.modal .modal-body {
  padding: 20px;
  background: #FFF;
  border-radius: 10px;
}

.modal-header {
  padding: 15px 15px;
  border: none;
}

.modal-header .modal-title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.modal-body a {
  color: #9F1127;
}

.alert {
  border: none;
  padding: 12px;
}

.error-message {
  font-size: 12px;
  margin-top: 5px;
}

.iti__selected-country {
  height: 55px !important;
}

.md-title {
  margin-bottom: 40px;
}

.md-title h2 {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 400;
  color: #000;
}

.md-title p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #747272;
  letter-spacing: .5px;
  max-width: 50%;
  margin: 15px auto 0 auto;
}

.md-material-finishes {
  padding: 60px 0 80px 0
}

.md-materials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center
}

.md-material {
  display: block;
  cursor: pointer;
  text-decoration: none
}

.md-material img {
  border-radius: 6px;
  padding: 2px;
  box-shadow: rgba(50,50,93,.25) 0px 2px 5px -1px,rgba(0,0,0,.3) 0px 1px 3px -1px;
  border: 2px solid rgba(0,0,0,0);
  transition: ease .3s all
}

.md-material img.active {
  border: 2px solid #000
}

.md-material p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  letter-spacing: .5px;
  margin-top: 10px
}

.md-material-preview {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 5px solid #fff;
  box-shadow: rgba(0,0,0,.1) 0px 4px 12px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%)
}

.md-material-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%
}

.md-mockup img {
  border-radius: 10px
}

.md-testimonials {
  padding: 40px 0 50px 0;
  background: #f8f7fd;
  margin: 0 20px 80px 20px;
  border-radius: 15px
}

.md-testimonials .md-testimonial {
  overflow: hidden;
  border-radius: 10px;
  margin: 0 0 15px 0;
  box-shadow: rgba(0,0,0,.05) 0px 10px 12px;
  background: #fff
}

.md-testimonials .md-testimonial p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  color: #575769;
  letter-spacing: .5px;
  padding: 20px
}

.md-testimonials .md-testimonial .md-user-info {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 20px;
  margin-bottom: 20px
}

.md-testimonials .md-testimonial .md-user-info img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover
}

.md-testimonials .md-testimonial .md-user-info h5 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  letter-spacing: .5px;
  margin-bottom: 2px
}

.md-testimonials .md-testimonial .md-user-info small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #575769;
  letter-spacing: .5px
}

.md-wallpaper {
  padding: 0 0 60px 0
}

.md-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center
}

.md-features-grid p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: #000;
  letter-spacing: .5px;
  text-align: center;
  margin-top: 20px
}

.md-calculator-section {
  padding-bottom: 0px
}

.h-auto {
  height: auto;
}

.login-popup h6 {
  font-weight: 600;
}

.mfp-close-btn-in .mfp-close {
  color: #FFF;
}

.login-popup .login-content input.pc-input {
  padding: 10px 0px;
}

.login-popup .login-content button.pc-submit,
.login-popup .login-content a.login-register {
  padding: 12px;
}

.msg-limit {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}

/*-------------------------------------- Responsive --------------------------------------*/

@media (min-width: 768px) and (max-width: 998.99px) { 
  .md-materials { grid-template-columns: repeat(4, 1fr); gap: 15px; }
  .md-material-preview { position: relative; top: 0; left: 0; transform: none; width: 250px; height: 250px; margin-top: 30px; }
  .md-mockup { margin-top: -100px; }
}

@media (max-width:767.98px) { 
  .card { height: auto; margin-bottom: 20px; }
  .custum-file-upload { height: auto; padding: 40px 20px; }
  .card-body { padding: 15px; }  
  .search-wrapper { width: 100%; }
  .search-wrapper .form-control { max-width: 100%; }
  .card-title { flex-direction: column; gap: 15px; }
  .md-title p { font-size: 14px; max-width: max-content; }
  .md-title h2 { text-align: center; font-size: 22px; }
  .md-material-preview { position: relative; top: 0; left: 0; transform: none; width: 250px; height: 250px; margin-top: 30px; }
  .md-mockup { margin-top: -100px; }
  .md-testimonials { padding: 30px 0 30px 0; margin: 1rem 0px 3rem 0px; border-radius: 0; }
  .md-calculator-section { padding-bottom: 0rem; }
  .md-material-finishes { padding: 0 0 2rem 0; }
  footer { padding: 30px 0; }
  .md-wallpaper { padding: 0 0 40px 0; }
  .md-materials { grid-template-columns: repeat(4, 1fr); gap: 15px; }
}

@media (max-width:575.98px) {
  .md-contact-info { gap: 10px; margin-right: 0; }
  .md-call { border-radius: 50px; width: 35px; height: 35px; padding: 8px; }
  .md-call span { display: none; }
  .md-brand { padding: 10px 5px; width: 180px; }
  .md-banner-content h1 { font-size: 24px; line-height: 1.4; }
  .md-produtcs { grid-template-columns: repeat(4, 1fr); }
  .md-produtcs .md-product-item { width: 108px; height: 108px; }
  .md-features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width:575.99px) { 
  .md-materials { grid-template-columns: repeat(3, 1fr); gap: 15px; }
}

@media (max-width:429.98px) {
  .md-banner-content h1 { font-size: 22px; line-height: 1.3; }
}

@media (max-width:390.98px) {
  .md-materials { grid-template-columns: repeat(2, 1fr); gap: 15px }
}