@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");
:root {
  --font: "Manrope", sans-serif;
  --bgColor: #F3F3F9;
  --titleColor: #000000;
  --subTitle: #71767D;
  --borderColor: #E8E8E9;
  --pirmaryColor: #facc15;
  --primaryHoverColor: #f7c603;
}

/*--- 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, header, 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, header, 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;
  color: var(--pirmaryColor);
}

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

body,
html {
  height: 100%;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: var(--font);
  font-optical-sizing: auto;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1 {
  font-size: clamp(3.2rem, 3vw, 4.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
}

h3 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
}

h4 {
  font-size: clamp(1.8rem, 3vw, 2rem);
  font-weight: 700;
}

h5 {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
  font-weight: 700;
}

h6 {
  font-size: clamp(1.4rem, 3vw, 1.4rem);
  font-weight: 700;
}

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

.btn {
  outline: 0;
  outline-offset: 0;
  border: 0;
  border-radius: 2px;
  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: var(--pirmaryColor);
  border: solid 2px var(--pirmaryColor);
  color: #3c08aa;
  font-weight: 800;
  font-size: 1.6rem;
  padding: 1.2rem 3rem;
  border-radius: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.btn-primary:active {
  background: var(--primaryHoverColor);
  border: solid 2px var(--primaryHoverColor);
  color: #3c08aa;
}
.btn-primary:active:focus-visible {
  background: var(--primaryHoverColor);
  border: solid 2px var(--primaryHoverColor);
}
.btn-primary:hover {
  background: var(--primaryHoverColor);
  border: solid 2px var(--primaryHoverColor);
  color: #3c08aa;
}
.btn-primary:focus, .btn-primary:focus-visible {
  background: var(--primaryHoverColor);
  border: solid 2px var(--primaryHoverColor);
  color: #3c08aa;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
  background: var(--pirmaryColor);
  border: solid 2px var(--pirmaryColor);
  color: #3c08aa;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn {
  background: var(--pirmaryColor);
  border: solid 2px var(--pirmaryColor);
  color: #3c08aa;
}

.btn:first-child:active, :not(.btn-check) + .btn:active {
  background: var(--pirmaryColor);
  color: #3c08aa;
}

.btn-secondary {
  background: transparent;
  color: #FFF;
  border: solid 2px #FFF;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1.5rem 3rem;
  border-radius: 1.5rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-secondary:active {
  background: transparent;
  color: #FFF;
  border: solid 2px #FFF;
}
.btn-secondary:active:focus-visible {
  background: transparent;
  border: solid 2px #FFF;
}
.btn-secondary:hover {
  background: transparent;
  color: #FFF;
  border: solid 2px #FFF;
}
.btn-secondary:focus, .btn-secondary:focus-visible {
  background: transparent;
  color: #FFF;
  border: solid 2px #FFF;
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
  background: transparent;
  color: #FFF;
  border: solid 2px #FFF;
}

.md-header {
  margin: 0 auto;
  max-width: 1920px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #FFF;
  border-radius: 0 0 1.5rem 0;
}

/*--- Banner Section ---*/
.md-banner {
  background: url(../images/banner2.jpg) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 8rem;
  height: 100dvh;
  position: relative;
  z-index: 1;
}
.md-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(83, 21, 217, 0.8);
}
.md-banner .banner-content {
  position: relative;
  z-index: 1;
}
.md-banner .banner-content h1 {
  font-size: clamp(2.8rem, 3vw, 4.8rem);
  color: #FFF;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.md-banner .banner-content h6 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.4;
  font-weight: 500;
  color: #FFF;
  margin-bottom: 1.5rem;
}
.md-banner .banner-content p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.md-banner .banner-content span {
  color: #facc15;
}

.md-action {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}
.md-action a {
  color: #FFF;
  padding: 1rem 2rem;
  border-radius: 1rem;
}
.md-action a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.form-control,
.form-select {
  border: solid 1px #DEE2E6;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  color: #000;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  font-weight: 500;
}
.form-control::placeholder,
.form-select::placeholder {
  font-weight: 500;
}

.md-form {
  position: relative;
  z-index: 1;
  width: 550px;
  margin-left: auto;
  padding: 3rem;
  background: white;
  border-radius: 1rem;
}
.md-form h3 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2.4rem;
  text-align: center;
}
.md-form .form-control {
  padding: 2rem 2rem;
}
.md-form .form-control::-moz-placeholder {
  font-weight: 500;
}
.md-form .form-control::placeholder {
  font-weight: 500;
}

.py-5 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.md-title-section {
  margin-bottom: 3.5rem;
}
.md-title-section h2 {
  margin-bottom: 1.5rem;
}
.md-title-section p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #645d6b;
  line-height: 1.6;
  letter-spacing: 0.4px;
}

.item {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.item h5 {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.4rem;
}
.item p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #413b48;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.md-about {
  background: #F9FAFB;
}

.md-about-item {
  background: #FFF;
  padding: 2.5rem;
  margin: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: rgba(100, 100, 111, 0.06) 0px 7px 29px 0px;
  min-height: 180px;
  transition: all 0.3s ease;
}
.md-about-item h5 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.5rem;
}
.md-about-item p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #413b48;
  line-height: 1.6;
  letter-spacing: 0.2px;
}
.md-about-item img {
  width: 60px;
  margin-bottom: 1.5rem;
}
.md-about-item:hover {
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.bg-light {
  background: #FFF !important;
}

.md-app {
  background: #F3F1FF;
  border-bottom: solid 1px #E9ECEF;
}
.md-app.py-5 {
  padding-bottom: 0 !important;
}
.md-app .md-title-section h3 {
  text-align: left;
  margin-bottom: 1.5rem;
}
.md-app .md-title-section p {
  text-align: left;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  position: relative;
  padding: 1.5rem 0 1.5rem 4.5rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}
.feature-list li:last-child {
  border-bottom: none;
}
.feature-list li::before {
  content: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOCIgaGVpZ2h0PSIxOCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNGRkYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGVjay1pY29uIGx1Y2lkZS1jaGVjayI+PHBhdGggZD0iTTIwIDYgOSAxN2wtNS01Ii8+PC9zdmc+);
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 3rem;
  height: 3rem;
  background: #3c08aa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 4px;
}

.md-business-types .item {
  background: #F3F1FF;
  padding: 2rem 2.5rem;
  margin: 1rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
  min-height: 90px;
  flex-direction: row;
}
.md-business-types .item p {
  font-weight: 500;
}

.md-process {
  background: #F3F1FF;
}

.grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.grid .number {
  font-size: 2.4rem;
  font-weight: 500;
  color: #000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #611BF8;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.md-why .item {
  display: flex;
  gap: 1.5rem;
  text-align: center;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 2rem;
}
.md-why .item h5 {
  margin-bottom: 1rem;
}
.md-why .item svg circle {
  stroke: #22C55D;
  fill: #22C55D;
}

.md-testimonials {
  background: #F9FAFB;
}
.md-testimonials .item {
  background: #FFF;
  margin: 3rem;
  padding: 4rem 6rem;
  border-radius: 2rem;
  box-shadow: rgba(100, 100, 111, 0.05) 0px 7px 29px 0px;
}
.md-testimonials .item::before {
  content: "";
  background: url(../images/quote.svg) no-repeat center center/contain;
  width: 80px;
  height: 80px;
  opacity: 0.2;
}
.md-testimonials .item p {
  font-size: 1.8rem;
  line-height: 1.6;
  font-style: italic;
  letter-spacing: 0.4px;
  margin-bottom: 2rem;
  color: #000;
}
.md-testimonials .item .user-info h6 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 1rem;
}
.md-testimonials .item .user-info p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #79767d;
  margin-bottom: 0;
  font-style: normal;
}

.counts {
  text-align: center;
  padding: 2rem;
}
.counts span {
  font-size: 4rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  letter-spacing: 0.2px;
  display: block;
  margin-bottom: 1.5rem;
  color: #611BF8;
}
.counts p {
  color: #79767d;
}

.accordion {
  border: none;
}
.accordion .card {
  border-bottom: solid 1px var(--borderColor) !important;
  border: none;
}
.accordion .card:last-child {
  border-bottom: 0 !important;
}
.accordion .card .card-header {
  padding: 0;
  background: transparent;
  border: none;
}
.accordion .accordion-item {
  background: #F9FAFB;
  border: none;
  border-radius: 0;
  margin-bottom: 1rem;
  border-radius: 1.5rem;
}
.accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: #000;
  border: none;
  box-shadow: none;
}
.accordion .accordion-button:not(.collapsed)::after {
  opacity: 1;
}
.accordion .accordion-button {
  font-size: 1.6rem;
  color: #000;
  padding: 2rem 2rem;
  letter-spacing: 0.5px;
  line-height: 2.2rem;
  font-weight: 600;
  box-shadow: none;
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
}
.accordion .accordion-button::after {
  --bs-accordion-btn-icon-width: 2rem;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  position: absolute;
  right: 2rem;
}
.accordion .accordion-body {
  padding: 1rem 2rem 2.5rem 2rem;
  font-size: 1.5rem;
  line-height: 2.9rem;
  font-weight: 400;
  border: none;
}
.accordion button:focus:not(:focus-visible) {
  box-shadow: none;
}

.md-cta {
  background: #4809D3;
}
.md-cta .md-title-section h2 {
  color: #FFF;
}
.md-cta .md-title-section p {
  color: #FFF;
}
.md-cta .md-cta-form {
  background: #FFF;
  padding: 4rem;
  border-radius: 3rem;
}
.md-cta .md-cta-form label {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

footer {
  background: #101827;
  padding: 4rem 2rem;
}
footer p {
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1.4;
  letter-spacing: 0.2px;
}
footer .footer-item {
  margin-bottom: 5rem;
}
footer .footer-item span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #79767d;
  line-height: 1.4;
  letter-spacing: 0.2px;
  margin-bottom: 0.8rem;
  display: block;
}
footer .footer-item p {
  font-size: 1.8rem;
  font-weight: 400;
  color: #FFF;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

.md-seo-content-wrapper {
  padding: 30px 0;
  border-top: solid 1px hsl(var(--border));
}
.md-seo-content-wrapper h1 {
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h2 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h3 {
  font-size: clamp(16px, 2.5vw, 16px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper h5 {
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.8;
}
.md-seo-content-wrapper p {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.7;
  letter-spacing: 0.4px;
  color: hsl(var(--muted-foreground));
}
.md-seo-content-wrapper p strong {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 26px;
  color: #000;
}
.md-seo-content-wrapper ul {
  margin-bottom: 15px;
  padding-left: 20px;
}
.md-seo-content-wrapper ul li {
  list-style-type: disc;
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.8;
  color: hsl(var(--muted-foreground));
}
.md-seo-content-wrapper ul li strong {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.8;
  color: #000;
}
.md-seo-content-wrapper ol {
  margin-bottom: 15px;
  padding-left: 20px;
}
.md-seo-content-wrapper ol li {
  list-style-type: decimal;
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
  color: hsl(var(--muted-foreground));
}
.md-seo-content-wrapper ol li strong {
  font-size: clamp(12px, 2.5vw, 13px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 26px;
  color: #000;
}
.md-seo-content-wrapper a {
  color: var(--primary-foreground);
  font-weight: 600;
}
.md-seo-content-wrapper .seo-content {
  position: relative;
  height: 200px;
  overflow: hidden;
  transition: ease 0.3s all;
}
.md-seo-content-wrapper .seo-content::after {
  content: "";
  display: block;
  background: rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 15%, #fff 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.md-seo-content-wrapper .seo-content .more-content {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.md-seo-content-wrapper .seo-content.show-full-content {
  height: auto;
  transition: ease 0.3s all;
}
.md-seo-content-wrapper .seo-content.show-full-content::after {
  display: none;
}

.moreless-button, .viewmore-button {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  display: block;
  text-align: center;
  padding: 20px 0 0;
  text-decoration: underline;
}
.moreless-button i, .viewmore-button i {
  transition: 0.3s all ease;
}

.error-message {
  font-size: 1.3rem;
  color: #fe2647;
  margin-top: 0.5rem;
}

.alert-success {
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

.alert-danger {
  border: none;
  padding: 1.5rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

/*-------------------------------------------------------------------------------------------------------------------*/
/*---- @media (min-width: 1440px) and (max-width: 1921px) ----*/
/*---- @media (min-width: 1440px) and (max-width: 1660px) ----*/
@media (min-width: 1200px) and (max-width: 1366.98px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
} /*---- @media (min-width: 1200px) and (max-width: 1439.98px) ----*/
@media (min-width: 999px) and (max-width: 1199.99px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
} /*--- @media (min-width: 999px) and (max-width: 1199.99px) end ---*/
@media (min-width: 768px) and (max-width: 998.99px) {
  .md-header {
    width: 100%;
    border-radius: 0;
    padding: 1rem;
  }
  .md-header .navbrand {
    text-align: center;
    width: 100%;
  }
  .md-header img {
    width: 240px;
  }
  .md-banner {
    padding: 100px 2rem 4rem 2rem;
    height: auto;
  }
  .md-banner .banner-content {
    text-align: center;
  }
  .md-banner .banner-content p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .md-action {
    justify-content: center;
  }
  .md-form {
    padding: 3rem;
    margin: 0 auto;
  }
  .md-form h3 {
    font-size: 2rem;
  }
  .py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md-title-section {
    margin-bottom: 2.5rem;
  }
  .md-title-section h2 {
    margin-bottom: 1rem;
  }
  .md-about-item {
    margin: 1rem;
    min-height: 240px;
  }
  .md-business-types .item {
    padding: 2rem 1.5rem;
    margin: 0 0 1rem;
    text-align: left;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-why .item {
    padding: 1.5rem 2rem;
  }
  .md-testimonials .item {
    margin: 1.5rem;
    padding: 2rem 3rem;
  }
  .md-testimonials .item::before {
    width: 60px;
    height: 60px;
  }
  .counts {
    padding: 0;
    margin-top: 2rem;
  }
  .counts span {
    font-size: 3rem;
  }
  .counts p {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .md-cta .md-cta-form {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }
  footer {
    padding: 2rem;
  }
  footer .footer-item {
    margin-bottom: 2rem;
  }
  footer .copyright {
    margin-top: 2rem;
    text-align: center !important;
  }
  footer .copyright p {
    margin-bottom: 1rem;
  }
  footer .copyright .text-end {
    text-align: center !important;
  }
} /*---- @media (min-width: 768px) and (max-width: 998.99px) end ---*/
/*----- @media (min-width: 768px) and (max-width: 991.99px) end ----*/
/*----@media (min-width: 640px) and (max-width: 768.98px) end---*/
@media (max-width: 767.98px) {
  .md-header {
    width: 100%;
    border-radius: 0;
    padding: 1rem;
  }
  .md-header .navbrand {
    text-align: center;
    width: 100%;
  }
  .md-header img {
    width: 200px;
  }
  .md-banner {
    padding: 80px 1rem 1rem 1rem;
    height: auto;
  }
  .md-banner .banner-content {
    text-align: center;
  }
  .md-banner .banner-content p {
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .md-action {
    justify-content: center;
  }
  .md-form {
    width: auto;
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .md-form h3 {
    font-size: 2rem;
  }
  .py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }
  .md-title-section {
    margin-bottom: 2.5rem;
  }
  .md-title-section h2 {
    margin-bottom: 1rem;
  }
  .md-title-section p {
    font-size: 1.4rem;
  }
  .md-business-types .item {
    padding: 2rem 1.5rem;
    min-height: auto;
    margin-top: 0;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .md-why .item {
    padding: 1.5rem 2rem;
  }
  .md-testimonials .item {
    margin: 1.5rem;
    padding: 2rem 3rem;
  }
  .md-testimonials .item::before {
    width: 60px;
    height: 60px;
  }
  .counts {
    padding: 0;
    margin-top: 2rem;
  }
  .counts span {
    font-size: 3rem;
  }
  .counts p {
    font-size: 1.4rem;
    line-height: 1.4;
  }
  .md-cta .md-cta-form {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }
  footer {
    padding: 2rem;
  }
  footer .footer-item {
    margin-bottom: 2rem;
  }
  footer .copyright {
    margin-top: 2rem;
    text-align: center !important;
  }
  footer .copyright p {
    margin-bottom: 1rem;
  }
  footer .copyright .text-end {
    text-align: center !important;
  }
} /*----@media (max-width: 767.98px) end---*/
/*----@media (max-width: 639.99px) end---*/
/*----@media (max-width: 480.98px) end---*/
/*----@media (max-width: 480.98px) end---*//*# sourceMappingURL=styles.css.map */