:root {
  --primaryternary: #fdefed;
  --white: #ffffff;
  --gray800: #1f2937;
  --dark: #111111;
  --secondaryternary: #f3fafc;
  --gray100: #f3f4f6;
  --gray600: #4b5563;
  --gray500: #6b7280;
  --gray900: #111827;
  --secondaryBlue: #2f5bea;
  --primaryOrange: #eb5b49;
  --slate800: #1e293b;
  --gray700: #374151;
  --colors-success-500: #01bb01;
}

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
}

body {
}

.gap-5 {
  gap: 20px;
}

.gap-1 {
  gap: 4px;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-7 {
  gap: 28px;
}

.gap-8 {
  gap: 32px;
}

.gap-20 {
  gap: 2rem;
}

.gap-30 {
  gap: 7.5rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3.5rem;
}

.gap-80 {
  gap: 80px;
}

.px-fluid {
  padding: 0 24px !important;
}

.p-20 {
  padding: 1.25rem;
}

.p-10 {
  padding: 1.25rem;
}

.py-20 {
  padding: 2.5rem 0 !important;
}

.py-80 {
  padding: 50px 0;
}

.py-120 {
  padding: 60px 0;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.font-weight-semibold {
  font-weight: 500 !important;
}

.font-weight-700 {
  font-weight: 700 !important;
}

.font-weight-600 {
  font-weight: 600 !important;
}

.font-weight-500 {
  font-weight: 500 !important;
}

.font-weight-400 {
  font-weight: 400 !important;
}

.font-size-48 {
  font-size: 2rem;
  line-height: 2.5rem;
}

.font-size-20 {
  font-size: 1.25rem !important;
}

.font-size-36 {
  font-size: 1.75rem;
  line-height: 2.25rem;
}

.font-size-18 {
  font-size: 1.125rem !important;
  line-height: 150%;
}

.font-size-16 {
  font-size: 1rem !important;
}

.font-size-14 {
  font-size: 0.875rem !important;
}

.font-size-12 {
  font-size: 0.75rem !important;
}

.font-size-24 {
  font-size: 1.5rem !important;
}

.font-size-28 {
  font-size: 1.875rem !important;
}

.font-size-30 {
  font-size: 2rem !important;
}

.w-88rem {
  width: 5.5rem !important;
}

.max-h-12 {
  max-height: 12rem;
}

.max-w-1000 {
  max-width: 1000px;
}

.max-w-1400 {
  max-width: 1400px;
}

.max-w-800 {
  max-width: 800px;
}

.max-w-1200 {
  max-width: 1000px !important;
}

.max-w-560 {
  max-width: 560px;
}

.max-w-405px {
  max-width: 405px;
}

.bg-primary-ternary {
  background-color: var(--primaryternary);
}

.bg-secondary-ternary {
  background-color: var(--secondaryternary);
}

.grid {
  display: -ms-grid;
  display: grid;
}

.grid-cols-2 {
  -ms-grid-columns: (auto) [2];
  grid-template-columns: repeat(2, auto);
  gap: 10px 40px;
}
.grid-cols-3 {
  -ms-grid-columns: (auto) [1];
  grid-template-columns: repeat(1, auto);
  gap: 20px;
}

.rounded-full {
  border-radius: 100%;
}

.box-72 {
  border-radius: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.drop-shadow > div:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
}

.box-12 {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* .box-56::before{
   box-sizing: unset !important;
}

.box-56::after{
   box-sizing: unset !important;
} */

.min-height-110px {
  min-height: 110px;
  margin-top: -20px;
}

.w-60px {
  width: 100px !important;
}

.text-gray-500 {
  color: var(--gray600);
}

.text-gray-600 {
  color: var(--gray600);
}

.text-gray-700 {
  color: #374151;
}

.text-gray-800 {
  color: var(--gray800);
}

.text-gray-900 {
  color: var(--gray900);
}

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

.text-secondary-blue {
  color: var(--secondaryBlue);
}

h4 {
  margin: 0 !important;
}

.line {
  width: 3px !important;
  height: 100px !important;
  background-color: var(--primaryternary);
  margin: 0 auto;
}

p {
  margin: 0 !important;
}

.owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

.owl-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0%;
}

.owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 48px;
}

.owl-carousel button.owl-dot {
  height: 12px !important;
  width: 12px !important;
  border: 1px solid var(--primaryOrange);
  border-radius: 100%;
  outline: none;
}

.owl-carousel button.owl-dot.active {
  background: var(--primaryOrange) !important;
  outline: none;
}

.font-1 {
  font-size: 1rem !important;
}

.max-width-992px {
  max-width: 992px !important;
}

.quote {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.border-bottom {
  border-bottom: 1px solid #cbcbcb;
}

.border-bottom-light {
  border-bottom: 1px solid #f4f4f4;
}

.border-bottom-gray {
  border-bottom: 1px solid var(--gray700);
}

.nav-pill {
  padding: 14px;
  border-radius: 70px;
  width: 50%;
}

.nav-pill.active {
  background-color: var(--secondaryBlue);
  color: white;
}

.nav-pill > svg {
  stroke: var(--secondaryBlue);
}

.nav-pill > svg .fill {
  fill: var(--secondaryBlue);
}

.nav-pill.active > svg {
  stroke: white;
}

.nav-pill.active > svg .fill {
  fill: white;
}

.nav-pill.active > svg .fill-business {
  fill: var(--secondaryBlue);
}

.w-100 {
  width: 100% !important;
}

.outline-none {
  outline: none !important;
}

.lh-24 {
  line-height: 24px;
}

.border-blue-secondary {
  border: 1px solid var(--secondaryBlue);
  border-radius: 70px;
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

label {
  margin: 0;
  padding: 0;
}

.bg-secondary-blue {
  background-color: var(--secondaryBlue);
}

.btn-primary-orange {
  background-color: var(--primaryOrange);
  color: white;
}

.btn-primary-orange:hover {
  color: white;
}

.btn-outline-primary-orange {
  border: 1px solid var(--primaryOrange);
  color: var(--primaryOrange);
}

.btn-outline-primary-orange:hover {
  color: var(--primaryOrange);
}

.text-primary-orange {
  color: var(--primaryOrange);
}

.bg-slate-800 {
  background-color: var(--slate800);
}

.underline {
  text-decoration: underline;
}

.blob-1-position {
  display: none;
}

.btn:hover {
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
}

button {
  outline: none !important;
}

a:hover {
  text-decoration: none !important;
}

.form-control {
  border-color: rgb(243 244 246);
  height: 42px !important;
}

.navbar {
  padding: 8px 0px !important;
  transition: background-color 0.3s ease;
}

.navbar-nav li {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
  gap: 1rem;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
  margin-top: 20px;
  text-align: center;
}

.navbar-nav li:last-child {
  margin-bottom: 30px;
}

.nav-link {
  padding: 0 !important;
}

a.btn-primary-orange {
  line-height: normal;
  padding: 12px 24px;
}

a.btn-outline-primary-orange {
  line-height: normal;
  padding: 12px 24px;
}

.top-0 {
  top: 3%;
  right: 2%;
  width: 100%;
  z-index: -10;
}

svg {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.collapsed svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.question {
  width: 100%;
}

.question:after {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  float: right;
}

.collapsed .question:after {
  content: "\f107";
}

.py-160 {
  padding: 5rem 0;
}

.btn.button-padding {
  padding: 12px 24px !important;
}

.form-break {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.navbar-light .navbar-toggler {
  color: var(--dark) !important;
  border-color: transparent !important;
  padding: 0 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.p-4.border-bottom {
  padding-bottom: 32px !important;
}

footer img {
  display: block;
  margin: auto;
}

.justify-s-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.bookConsultation {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
}

.bookConsultation:hover {
  color: #0056b3;
}

.custom-width {
  width: 80% !important;
}

.w-s-100 {
  width: 100%;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("/assets/pageLoader.gif") 50% 50% no-repeat rgb(249, 249, 249);
  opacity: 0.8;
}

.grid-cols-3-min-2 {
  grid-template-columns: repeat(2, auto);
  gap: 10px;
}

.hero-subtext {
  margin-top: 16px !important ;
}

@media only screen and (min-width: 576px) {
  .font-size-48 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
  .px-fluid {
    padding: 0 24px !important;
  }

  .small-screen-line .justify-content-center {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: start !important;
  }

  .grid-cols-3 {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .py-160 {
    padding: 5rem 0;
  }

  .form-break {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .w-s-100 {
    width: fit-content;
  }
}

@media only screen and (min-width: 768px) {
  .custom-width {
    width: 100% !important;
  }
  .p-20 {
    padding: 5rem;
  }

  footer img {
    display: block;
    margin-right: auto;
  }

  .px-fluid {
    padding: 0 80px !important;
  }

  .font-size-48 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .form-break {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .grid-cols-3 {
    -ms-grid-columns: (1fr) [1];
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .line {
    width: 3px !important;
    height: 100px !important;
    background-color: var(--primaryternary);
    margin: 0 auto;
  }

  .py-160 {
    padding: 6rem 0;
  }

  .hero-subtext {
    margin-top: 24px !important;
  }

  /* navbar-nav */
}

.footer-flex.flex-row {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.text-s-center {
  text-align: center;
}

@media only screen and (min-width: 992px) {
  .grid-cols-3-min-2 {
    grid-template-columns: repeat(3, auto);
  }

  .justify-s-center {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
  }
  .p-10 {
    padding: 2.5rem;
  }

  .footer-flex.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  footer .col-lg-3 {
    margin: 0 auto !important;
  }

  .text-s-center {
    text-align: start;
  }

  .font-size-48 {
    font-size: 3rem;
    line-height: 4rem;
  }

  .py-80 {
    padding: 80px 0;
  }

  .py-120 {
    padding: 100px 0;
  }

  .py-160 {
    padding: 7rem 0;
  }

  .navbar-nav li {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    gap: 1rem;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    margin-top: 0 !important;
    margin-left: 20px;
  }

  .navbar-nav li a {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .navbar-nav li:last-child {
    margin-bottom: 0;
  }

  .grid-cols-3 {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .font-size-36 {
    font-size: 2.25rem;
    line-height: 3.5rem;
  }

  .gap-20 {
    gap: 4rem;
  }
}

@media only screen and (min-width: 1200px) {
  .px-fluid {
    padding: 0 120px !important;
  }

  .grid-cols-3 {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .py-160 {
    padding: 9rem 0;
  }

  .blob-1-position {
    display: none;
  }

  .pl-80 {
    padding-left: 50px !important;
  }
}

@media only screen and (min-width: 1520px) {
  .max-w-1200 {
    max-width: 1400px !important;
  }

  .blob-1-position {
    right: 88%;
    top: 39%;
    display: block;
  }

  .px-fluid {
    padding: 0 300px !important;
  }

  .grid-cols-2 {
    -ms-grid-columns: (auto) [2];
    grid-template-columns: repeat(2, auto);
    gap: 10px 40px;
  }
  .grid-cols-3 {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .font-size-36 {
    font-size: 2.25rem;
    line-height: 3.625rem;
  }

  .py-160 {
    padding: 9rem 0;
  }

  .pl-80 {
    padding-left: 80px !important;
  }
}
