@import url("https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700&display=swap");
/* font awesome */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css");
/*
@include mq(md) {

}

@include mqmin(md) {

}
*/
/* Breakpoints */
/* for common breakpoints */
/* special landscape devices */
/* example
@media (min-width: 768px) and (max-width: 1599px) {

}
*/
/*
@include mq(md) {

}

@include mqmin(md) {

}
*/
/* font awesome */
.btn {
  border-radius: 6px;
  font-size: 1.6rem;
  line-height: normal;
  padding: 0.8rem 1.6rem;
}

:root {
  --clr-primary-100: rgb(246, 141, 46);
  --clr-primary-200: rgb(255, 240, 209);
  --clr-primary-300: rgb(231, 110, 0);
  --clr-secondary-100: rgb(33, 150, 243);
  --clr-secondary-200: rgb(233, 216, 201);
  --clr-secondary-300: rgb(217, 220, 240);
  --clr-secondary-400: rgb(99, 156, 1);
  --clr-neutral-0: rgba(0, 0, 0, 0);
  --clr-neutral-50: rgba(255, 255, 255, 0.75);
  --clr-neutral-100: rgb(255, 255, 255);
  --clr-neutral-150: rgb(232, 231, 231);
  --clr-neutral-200: rgb(242, 242, 242);
  --clr-neutral-220: rgb(219, 219, 219);
  --clr-neutral-250: rgb(229, 229, 229);
  --clr-neutral-300: rgb(112, 112, 112);
  --clr-neutral-310: rgb(115, 115, 115);
  --clr-neutral-320: rgb(128, 128, 128);
  --clr-neutral-350: rgb(77, 77, 77);
  --clr-neutral-370: rgb(180, 180, 180);
  --clr-neutral-380: rgb(184, 184, 184);
  --clr-neutral-400: rgb(96, 96, 96);
  --clr-neutral-420: rgb(57, 57, 57);
  --clr-neutral-450: rgb(12, 20, 70);
  --clr-neutral-500: rgb(0, 0, 0);
  --fs-small-300: 1rem;
  --fs-small-400: 1.125rem;
  --fs-small-500: 1.563rem;
  --fs-small-600: 1.953rem;
  --fs-small-700: 2.441rem;
  --fs-small-800: 3.052rem;
  --fs-big-300: 1rem;
  --fs-big-350: 1.1rem;
  --fs-big-400: 1.2rem;
  --fs-big-425: 1.3rem;
  --fs-big-450: 1.4rem;
  --fs-big-470: 1.6rem;
  --fs-big-500: 2rem;
  --fs-big-600: 2.4rem;
  --fs-big-700: 4rem;
  --fs-big-800: 8rem;
  --fs-300: 1rem;
  --fs-400: 1.125rem;
  --fs-500: 1.563rem;
  --fs-600: 1.953rem;
  --fs-700: 2.441rem;
  --fs-800: 3.052rem;
  --fw-thin: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-bolder: 900;
  --op-100: 0.05;
  --op-200: 0.08;
  --op-300: 0.1;
  --op-400: 0.15;
  --op-500: 0.2;
  --op-600: 0.5;
  --op-700: 0.75;
  --op-800: 1;
  --bd-1: 1px;
  --bd-2: 2px;
  --bd-3: 3px;
  --bd-4: 4px;
  --bd-5: 5px;
}
@media only screen and (max-width: ) {
  :root {
    --fs-300: 1rem;
    --fs-350: 1.1rem;
    --fs-400: 1.2rem;
    --fs-425: 1.3rem;
    --fs-450: 1.4rem;
    --fs-470: 1.6rem;
    --fs-500: 2rem;
    --fs-600: 2.4rem;
    --fs-700: 4rem;
    --fs-800: 8rem;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  font-weight: var(--fw-regular);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
button,
button:focus,
a,
a:focus {
  outline: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p {
  line-height: 1.5;
}

ul li {
  line-height: 1.4;
}

body {
  margin: 0;
}

.txt-primary-100 {
  color: var(--clr-primary-100) !important;
}

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

.border-primary-100 {
  border-color: var(--clr-primary-100) !important;
}

.txt-primary-200 {
  color: var(--clr-primary-200) !important;
}

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

.border-primary-200 {
  border-color: var(--clr-primary-200) !important;
}

.txt-primary-300 {
  color: var(--clr-primary-300) !important;
}

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

.border-primary-300 {
  border-color: var(--clr-primary-300) !important;
}

.txt-secondary-100 {
  color: var(--clr-secondary-100) !important;
}

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

.border-secondary-100 {
  border-color: var(--clr-secondary-100) !important;
}

.txt-secondary-200 {
  color: var(--clr-secondary-200) !important;
}

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

.border-secondary-200 {
  border-color: var(--clr-secondary-200) !important;
}

.txt-secondary-300 {
  color: var(--clr-secondary-300) !important;
}

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

.border-secondary-300 {
  border-color: var(--clr-secondary-300) !important;
}

.txt-secondary-400 {
  color: var(--clr-secondary-400) !important;
}

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

.border-secondary-400 {
  border-color: var(--clr-secondary-400) !important;
}

.txt-neutral-0 {
  color: var(--clr-neutral-0) !important;
}

.bg-neutral-0 {
  background-color: var(--clr-neutral-0) !important;
}

.border-neutral-0 {
  border-color: var(--clr-neutral-0) !important;
}

.txt-neutral-50 {
  color: var(--clr-neutral-50) !important;
}

.bg-neutral-50 {
  background-color: var(--clr-neutral-50) !important;
}

.border-neutral-50 {
  border-color: var(--clr-neutral-50) !important;
}

.txt-neutral-100 {
  color: var(--clr-neutral-100) !important;
}

.bg-neutral-100 {
  background-color: var(--clr-neutral-100) !important;
}

.border-neutral-100 {
  border-color: var(--clr-neutral-100) !important;
}

.txt-neutral-150 {
  color: var(--clr-neutral-150) !important;
}

.bg-neutral-150 {
  background-color: var(--clr-neutral-150) !important;
}

.border-neutral-150 {
  border-color: var(--clr-neutral-150) !important;
}

.txt-neutral-200 {
  color: var(--clr-neutral-200) !important;
}

.bg-neutral-200 {
  background-color: var(--clr-neutral-200) !important;
}

.border-neutral-200 {
  border-color: var(--clr-neutral-200) !important;
}

.txt-neutral-220 {
  color: var(--clr-neutral-220) !important;
}

.bg-neutral-220 {
  background-color: var(--clr-neutral-220) !important;
}

.border-neutral-220 {
  border-color: var(--clr-neutral-220) !important;
}

.txt-neutral-250 {
  color: var(--clr-neutral-250) !important;
}

.bg-neutral-250 {
  background-color: var(--clr-neutral-250) !important;
}

.border-neutral-250 {
  border-color: var(--clr-neutral-250) !important;
}

.txt-neutral-300 {
  color: var(--clr-neutral-300) !important;
}

.bg-neutral-300 {
  background-color: var(--clr-neutral-300) !important;
}

.border-neutral-300 {
  border-color: var(--clr-neutral-300) !important;
}

.txt-neutral-310 {
  color: var(--clr-neutral-310) !important;
}

.bg-neutral-310 {
  background-color: var(--clr-neutral-310) !important;
}

.border-neutral-310 {
  border-color: var(--clr-neutral-310) !important;
}

.txt-neutral-320 {
  color: var(--clr-neutral-320) !important;
}

.bg-neutral-320 {
  background-color: var(--clr-neutral-320) !important;
}

.border-neutral-320 {
  border-color: var(--clr-neutral-320) !important;
}

.txt-neutral-350 {
  color: var(--clr-neutral-350) !important;
}

.bg-neutral-350 {
  background-color: var(--clr-neutral-350) !important;
}

.border-neutral-350 {
  border-color: var(--clr-neutral-350) !important;
}

.txt-neutral-370 {
  color: var(--clr-neutral-370) !important;
}

.bg-neutral-370 {
  background-color: var(--clr-neutral-370) !important;
}

.border-neutral-370 {
  border-color: var(--clr-neutral-370) !important;
}

.txt-neutral-380 {
  color: var(--clr-neutral-380) !important;
}

.bg-neutral-380 {
  background-color: var(--clr-neutral-380) !important;
}

.border-neutral-380 {
  border-color: var(--clr-neutral-380) !important;
}

.txt-neutral-400 {
  color: var(--clr-neutral-400) !important;
}

.bg-neutral-400 {
  background-color: var(--clr-neutral-400) !important;
}

.border-neutral-400 {
  border-color: var(--clr-neutral-400) !important;
}

.txt-neutral-420 {
  color: var(--clr-neutral-420) !important;
}

.bg-neutral-420 {
  background-color: var(--clr-neutral-420) !important;
}

.border-neutral-420 {
  border-color: var(--clr-neutral-420) !important;
}

.txt-neutral-450 {
  color: var(--clr-neutral-450) !important;
}

.bg-neutral-450 {
  background-color: var(--clr-neutral-450) !important;
}

.border-neutral-450 {
  border-color: var(--clr-neutral-450) !important;
}

.txt-neutral-500 {
  color: var(--clr-neutral-500) !important;
}

.bg-neutral-500 {
  background-color: var(--clr-neutral-500) !important;
}

.border-neutral-500 {
  border-color: var(--clr-neutral-500) !important;
}

.fw-thin {
  font-weight: var(--fw-thin) !important;
}

.fw-light {
  font-weight: var(--fw-light) !important;
}

.fw-regular {
  font-weight: var(--fw-regular) !important;
}

.fw-medium {
  font-weight: var(--fw-medium) !important;
}

.fw-semi-bold {
  font-weight: var(--fw-semi-bold) !important;
}

.fw-bold {
  font-weight: var(--fw-bold) !important;
}

.fw-bolder {
  font-weight: var(--fw-bolder) !important;
}

.fs-small-300 {
  font-size: var(--fs-small-300) !important;
}

.fs-small-400 {
  font-size: var(--fs-small-400) !important;
}

.fs-small-500 {
  font-size: var(--fs-small-500) !important;
}

.fs-small-600 {
  font-size: var(--fs-small-600) !important;
}

.fs-small-700 {
  font-size: var(--fs-small-700) !important;
}

.fs-small-800 {
  font-size: var(--fs-small-800) !important;
}

.fs-big-300 {
  font-size: var(--fs-big-300) !important;
}

.fs-big-350 {
  font-size: var(--fs-big-350) !important;
}

.fs-big-400 {
  font-size: var(--fs-big-400) !important;
}

.fs-big-425 {
  font-size: var(--fs-big-425) !important;
}

.fs-big-450 {
  font-size: var(--fs-big-450) !important;
}

.fs-big-470 {
  font-size: var(--fs-big-470) !important;
}

.fs-big-500 {
  font-size: var(--fs-big-500) !important;
}

.fs-big-600 {
  font-size: var(--fs-big-600) !important;
}

.fs-big-700 {
  font-size: var(--fs-big-700) !important;
}

.fs-big-800 {
  font-size: var(--fs-big-800) !important;
}

.opacity-100 {
  opacity: var(--op-100) !important;
}

.opacity-200 {
  opacity: var(--op-200) !important;
}

.opacity-300 {
  opacity: var(--op-300) !important;
}

.opacity-400 {
  opacity: var(--op-400) !important;
}

.opacity-500 {
  opacity: var(--op-500) !important;
}

.opacity-600 {
  opacity: var(--op-600) !important;
}

.opacity-700 {
  opacity: var(--op-700) !important;
}

.opacity-800 {
  opacity: var(--op-800) !important;
}

.border-1 {
  border-width: var(--bd-1) !important;
}

.border-2 {
  border-width: var(--bd-2) !important;
}

.border-3 {
  border-width: var(--bd-3) !important;
}

.border-4 {
  border-width: var(--bd-4) !important;
}

.border-5 {
  border-width: var(--bd-5) !important;
}

.wrapper {
  padding: 0 1.5rem;
  max-width: 62.5rem;
  margin: 0 auto;
}

.flow > * + * {
  margin-top: var(--flow-spacer, 0.75em);
}

.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.screenreader-text {
  position: absolute;
  left: -999px;
  width: 1px;
  height: 1px;
  top: auto;
}
.screenreader-text:focus {
  display: inline-block;
  height: auto;
  width: auto;
  position: static;
  margin: auto;
}

html,
body {
  overflow-x: hidden;
  height: 100%;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.8rem;
  color: var(--clr-neutral-300);
  background: var(--clr-neutral-100);
  line-height: 1.1;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: var(--clr-neutral-300);
}

h1 {
  font-size: 4.5rem;
  letter-spacing: -0.16rem;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 4.5rem;
  }
}
@media only screen and (max-width: 575px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 3.25rem;
  letter-spacing: -0.04rem;
  line-height: 1.5;
}
@media only screen and (max-width: 575px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 3rem;
  letter-spacing: -0.04rem;
}
@media only screen and (max-width: 575px) {
  h3 {
    font-size: 2.2rem;
  }
}

h4 {
  font-size: 2.4rem;
}
@media only screen and (max-width: 575px) {
  h4 {
    font-size: 2rem;
  }
}

h5 {
  font-size: 2rem;
}
@media only screen and (max-width: 575px) {
  h5 {
    font-size: 1.8rem;
  }
}

h6 {
  font-size: 1.5rem;
}

.sml {
  font-size: 1.2rem;
}

.x-sml {
  font-size: 1rem;
  line-height: 1.4;
}

.w-max {
  width: max-content;
}

.shadow {
  box-shadow: 0px 0rem 1rem rgba(0, 0, 0, 0.06) !important;
}

.form-control:focus {
  box-shadow: none;
}

.sec-pad {
  padding: 4em 0;
}
@media only screen and (max-width: 991px) {
  .sec-pad {
    padding: 2.5em 0;
  }
}

/* navigation */
.navigation__top .navbar-nav {
  align-self: center;
}
.navigation__top .navbar-nav .nav-link {
  color: var(--clr-neutral-300);
}
.navigation__top .nav-item {
  font-weight: var(--fw-regular);
  height: 40px;
  text-align: center;
}
.navigation__top .nav-item:not(:last-child) {
  margin-right: 3rem;
}
.navigation .nav-opt .nav-item {
  min-width: 200px;
}
.navigation__top {
  min-height: 85px;
}
@media only screen and (max-width: 991px) {
  .navigation__top {
    min-height: auto;
  }
}
.navigation__top .navbar-brand img {
  max-width: 100%;
}
@media only screen and (max-width: 575px) {
  .navigation__top .navbar-brand img {
    max-width: 80%;
  }
}
.navigation__top .navbar-nav {
  line-height: 1.7;
}
@media only screen and (max-width: 991px) {
  .navigation__top .navbar-nav {
    border-top: 1px solid var(--clr-neutral-250);
    margin-top: 12px;
    padding-top: 10px;
  }
}
.navigation__top .navbar-nav .nav-link {
  padding-bottom: 27px;
  font-size: 1.6rem;
  padding-top: 6px;
}
.navigation__top .navbar-nav .nav-link:hover, .navigation__top .navbar-nav .nav-link:focus, .navigation__top .navbar-nav .nav-link:active {
  color: var(--clr-primary-100);
}
.navigation__top .nav-item .nav-link.active {
  color: var(--clr-primary-100);
}
.navigation__top .navbar-brand .badge {
  border-radius: 0px;
}
.navigation__top .right-nav .nav-item .nav-link {
  color: var(--clr-neutral-100);
}
.navigation .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 3.25rem;
}
.navigation .navbar-toggler-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0.1em;
}
.navigation .navbar-toggler-icon i {
  font-size: 2rem;
}
/*
.hero-wrapper {
  height: 390px;
  background-image: url("../images/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 85px;
  position: relative;
  isolation: isolate;
} */
@media only screen and (max-width: 991px) {
  .hero-wrapper {
    background-image: url("../images/hero-mb.jpg");
  }
  .hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  }
}
@media only screen and (max-width: 991px) {
  .hero-wrapper {
    margin-top: 75px;
  }
}
.hero-wrapper .hero-text {
  transform: translateY(-20%);
}
@media only screen and (max-width: 767px) {
  .hero-wrapper .hero-text {
    transform: translateY(-30%);
  }
}
.hero-wrapper__testimonial {
  background-image: url("../images/hero-2.jpg");
}
.hero-wrapper__testimonial .hero-text {
  transform: none;
}
.hero-wrapper__home {
  background-image: url("../images/home.jpg");
  background-position: center -60px;
  height: auto;
  min-height: 720px;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1199px) {
  .hero-wrapper__home {
    background-position: 15% center;
  }
}
@media only screen and (max-width: 991px) {
  .hero-wrapper__home {
    background-position: top center;
    background-image: url("../images/home-mb.jpg");
  }
}

.card__partners {
  border-radius: 16px;
  border-color: var(--clr-neutral-220);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.08);
  padding: 0.1em 4em;
  transform: translateY(-20%);
}
@media only screen and (max-width: 1199px) {
  .card__partners {
    padding: 0.1em 0.1em;
  }
}
@media only screen and (max-width: 991px) {
  .card__partners .img-partners:not(.hero-partners) > * {
    flex: 0 1 80px;
    margin: 5px auto;
    min-width: 165px;
  }
  .card__partners .img-partners .w-img {
    min-width: 100px;
  }
  .card__partners .img-partners .h-img {
    min-width: 90px;
  }
}
.card__partners.hero-hm-card {
  transform: translateY(15%);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.28);
  padding: 2em 2em;
}
@media only screen and (min-width: 1200px) {
  .card__partners.hero-hm-card {
    padding: 3em 2em;
    margin-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .card__partners.hero-hm-card {
    transform: translateY(50%);
  }
}
@media only screen and (max-width: 475px) {
  .card__partners.hero-hm-card {
    transform: translateY(35%);
  }
}
.card__partners.hero-hm-card h1 {
  max-width: 20ch;
  margin: 0 auto;
  line-height: 1.4;
}

@media only screen and (max-width: 991px) {
  .breakout {
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: 100vw;
    position: relative;
    right: 50%;
    width: 100vw;
  }
}

.caption-block {
  padding: 110px 0px 50px 0px;
  max-width: 100ch;
}
@media only screen and (max-width: 991px) {
  .caption-block {
    padding: 60px 20px 30px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .caption-block {
    padding: 110px 20px 30px 20px;
  }
}

.content-block {
  padding: 50px 0px 100px 0px;
}
@media only screen and (max-width: 991px) {
  .content-block {
    padding: 50px 20px 100px 20px;
  }
}
.content-block p {
  margin-bottom: 2rem;
}

.ab-testimonial {
  border-top: 1px solid var(--clr-neutral-300);
}
.ab-testimonial .testi-cont {
  padding: 35px 0px 0px 0px;
}
@media only screen and (max-width: 575px) {
  .ab-testimonial .testi-cont {
    padding: 35px 20px 0px 20px;
  }
}
.ab-testimonial .nps-img img {
  max-width: 220px;
  transform: translate(-17%, -23%);
}
@media only screen and (max-width: 1199px) {
  .ab-testimonial .nps-img img {
    max-width: 100%;
    transform: translate(-17%, -40%);
  }
}
@media only screen and (max-width: 991px) {
  .ab-testimonial .nps-img img {
    max-width: 220px;
    transform: translate(-17%, -25%);
  }
}
.ab-testimonial .comment-box {
  border-radius: 12px;
  position: relative;
  max-width: 94%;
}
@media only screen and (max-width: 1400px) {
  .ab-testimonial .comment-box {
    max-width: 100%;
  }
}
.ab-testimonial .comment-box::after {
  content: " ";
  position: absolute;
  left: 32%;
  bottom: -20px;
  border-top: 30px solid var(--clr-neutral-250);
  border-right: 30px solid transparent;
  border-left: 0px solid transparent;
  border-bottom: none;
}
@media only screen and (max-width: 1199px) {
  .ab-testimonial .comment-box::after {
    left: 38%;
  }
}
@media only screen and (max-width: 991px) {
  .ab-testimonial .comment-box::after {
    left: 25%;
  }
}
@media only screen and (max-width: 575px) {
  .ab-testimonial .comment-box::after {
    content: none;
  }
}
.ab-testimonial .comment-box p {
  color: var(--clr-neutral-350);
  padding: 20px 20px 20px 40px;
  flex: 1;
}
@media only screen and (max-width: 1400px) {
  .ab-testimonial .comment-box p {
    font-size: 1.4rem;
    padding: 10px 10px 10px 20px;
  }
}
.ab-testimonial .comment-box img {
  object-fit: cover;
}
.ab-testimonial .comment-box.box-2::after {
  left: 40%;
}
@media only screen and (max-width: 991px) {
  .ab-testimonial .comment-box.box-2::after {
    left: 25%;
  }
}
@media only screen and (max-width: 1400px) {
  .ab-testimonial .com-box-name h5 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 1400px) {
  .ab-testimonial .com-box-name h6 {
    font-size: 1.2rem;
    margin-left: 15%;
  }
}
@media only screen and (max-width: 575px) {
  .ab-testimonial .com-box-name h6 {
    margin-left: auto;
  }
}
@media only screen and (max-width: 991px) {
  .ab-testimonial .com-box-wrap {
    transform: translateY(-50%);
  }
}

footer {
  padding: 4em 0 2em 0;
}
@media only screen and (max-width: 575px) {
  footer {
    padding: 2em 0 2em 0;
  }
}
footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 575px) {
  footer ul {
    flex-direction: column;
  }
}
footer ul li {
  margin: 10px 15px;
}
footer ul li a {
  color: var(--clr-neutral-100);
}
footer ul li a:hover, footer ul li a:focus, footer ul li a:active {
  color: var(--clr-neutral-100);
}
footer img {
  max-width: 6em;
}

/*-----------testimonial page start-----------------*/
.testi-main {
  transform: translateY(-5%);
}
@media only screen and (max-width: 1199px) {
  .testi-main {
    transform: translateY(-2%);
  }
}
@media only screen and (max-width: 575px) {
  .testi-main {
    transform: translateY(-1%);
  }
}

@media only screen and (max-width: 991px) {
  .check-img {
    max-width: 16%;
  }
}

.testi-box {
  border-radius: 18px;
  padding: 2em;
  margin: 0.5rem 0;
  border-color: var(--clr-neutral-380);
}
.testi-box p {
  color: var(--clr-neutral-310);
}

/*-----------testimonial page end-----------------*/
/*-----------home page start-----------------*/
.hero-icon-wrap {
  margin: 0.5em 0 0.5em 0;
}
@media only screen and (min-width: 992px) {
  .hero-icon-wrap {
    margin: 2em 0 2em 0;
  }
}
.hero-icon-wrap .hero-icon-box {
  margin: 1rem 2rem;
}
.hero-icon-wrap .hero-icon-box p {
  font-size: 1.5rem;
  line-height: 1.38;
  margin-top: 6px;
  letter-spacing: -0.02rem;
}
@media only screen and (max-width: 767px) {
  .hero-icon-wrap .hero-icon-box {
    margin: 1rem 1rem;
  }
  .hero-icon-wrap .hero-icon-box p {
    font-size: 1.4rem;
  }
}
.hero-icon-wrap .hero-icon-box img {
  margin: 0 auto;
  width: 46px;
}

@media only screen and (min-width: 992px) {
  .hero-btns {
    margin-bottom: 2.5em;
  }
}
.hero-btns a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  margin: 0.5em 0.9em;
  padding: 1.8rem 3.2rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 575px) {
  .hero-btns a {
    padding: 1.5rem 1rem;
    width: 100% !important;
  }
}
@media only screen and (min-width: 576px) {
  .hero-btns a {
    min-width: 280px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-btns a.fs-big-600 {
    font-size: 1.5rem !important;
  }
}
.hero-btns a i {
  margin-left: 2rem;
}
@media only screen and (min-width: 576px) {
  .hero-btns a i {
    font-size: 2rem;
  }
}
.hero-btns a .top {
  font-size: 1.8rem;
  display: block;
}
@media (min-width: 768px) and (max-width: 1599px) {
  .hero-btns a .top {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .hero-btns a .top {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 767px) {
  .hero-hm-card .hero-btns {
    margin-bottom: 2rem;
  }
  .hero-hm-card .hero-btns a {
    font-size: 1rem;
    width: auto !important;
  }
}
@media only screen and (max-width: 475px) {
  .hero-hm-card .hero-btns a {
    width: 100% !important;
  }
}

.hero-partners {
  margin: 0.5em auto 0 auto;
  margin: 1.2em auto 0 auto;
}
@media only screen and (min-width: 1200px) {
  .hero-partners {
    max-width: 32em;
  }
}
@media only screen and (max-width: 991px) {
  .hero-partners {
    margin: 0 auto 0 auto;
  }
}
.hero-partners img {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .hero-partners img {
    margin: 1rem auto;
  }
}

.value-block {
  padding: 154px 0px 90px 0px;
}
@media only screen and (max-width: 991px) {
  .value-block {
    padding: 290px 0px 0px 0px;
    max-width: 100%;
  }
  .value-block h4 {
    font-size: 2.4rem;
    letter-spacing: -0.04rem;
  }
}
@media only screen and (max-width: 767px) {
  .value-block {
    padding: 350px 0px 0px 0px;
  }
}
.value-block h2 i {
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .value-block h2 {
    line-height: 1.1;
  }
  .value-block h2 span {
    display: block;
  }
  .value-block img {
    margin: 0 auto;
    max-width: 50%;
  }
  .value-block h4 {
    text-align: center;
  }
}

.rev-block .rev-user-img {
  filter: grayscale(100%);
}
.rev-block .rev-text h5 {
  line-height: 1;
}
@media only screen and (max-width: 991px) {
  .rev-block .rev-text h5 {
    font-size: 1.5rem;
  }
}
.rev-block a {
  line-height: 1.6;
}
@media only screen and (max-width: 991px) {
  .rev-block a {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 767px) {
  .rev-block {
    justify-content: center;
    text-align: center;
  }
}

.support-block {
  padding: 50px 20px 50px 20px;
}
.support-block .card img {
  max-width: 320px;
  max-height: 200px;
  margin: 0 auto;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  overflow: hidden;
}
.support-block .card .card-text {
  max-width: 22ch;
  margin: 0 auto;
}
.support-block .sup-cards {
  margin-top: 3.5em;
}

.people-box .img-box img {
  object-fit: cover;
  height: 720px;
  flex-grow: 1;
}
.people-box .content-box {
  padding: 4em 3em 4em 3em;
}
@media only screen and (max-width: 767px) {
  .people-box .content-box {
    padding: 2em 1.5em 2em 1.5em;
  }
}
.people-box .content-box h2 {
  line-height: 1;
}
.people-box .content-box p {
  margin-bottom: 1rem;
  color: var(--clr-neutral-420);
  font-size: 2rem;
}
.people-box ul {
  list-style: none;
}
.people-box ul li {
  color: var(--clr-neutral-420);
  font-size: 2rem;
}
.people-box.left ul {
  margin: 1em 0 0 0;
}
.people-box.left ul li {
  margin: 0 0 10px 0;
}
.people-box.left ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f111";
  margin: 0 10px 0 -20px;
  color: var(--clr-neutral-300);
  font-size: 1rem;
  vertical-align: middle;
}
.people-box.right ul {
  margin: 1em 0 0 0;
}
.people-box.right ul li {
  margin: 0 20px 10px 0;
}
@media only screen and (min-width: 768px) {
  .people-box.right ul li {
    display: inline-flex;
    align-items: baseline;
  }
}
@media only screen and (max-width: 767px) {
  .people-box.right ul li {
    margin: 0 0 10px 0;
  }
}
.people-box.right ul li::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f111";
  margin: 0 -20px 0 10px;
  color: var(--clr-neutral-300);
  font-size: 1rem;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .people-box.right ul li::after {
    content: none;
  }
}
@media only screen and (max-width: 767px) {
  .people-box.right ul li::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f111";
    margin: 0 10px 0 -20px;
    color: var(--clr-neutral-300);
    font-size: 1rem;
    vertical-align: middle;
  }
}
@media only screen and (max-width: 767px) {
  .people-box.right .content-box {
    order: 2;
  }
  .people-box.right .img-box {
    order: 1;
  }
}

@media only screen and (max-width: 991px) {
  .trust-wrap {
    padding-bottom: 1em;
  }
}
.trust-wrap h1 {
  font-size: 8rem;
  line-height: 1.1;
  margin-top: 20px;
  margin-bottom: 52px;
}
@media only screen and (max-width: 991px) {
  .trust-wrap h1 {
    font-size: 5.5rem;
  }
  .trust-wrap h1 br {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .trust-wrap .left-block img {
    margin: 1.3rem 0 1.3rem 0;
  }
}
.trust-wrap .right-block {
  padding: 1.4em 0 0 2em;
}
.trust-wrap .right-block ul {
  list-style: none;
}
.trust-wrap .right-block ul li {
  margin-bottom: 30px;
  color: var(--clr-neutral-420);
}
.trust-wrap .right-block ul li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  margin: 0 10px 0 -28px;
  color: var(--clr-secondary-100);
}

.story-cards .card {
  border-radius: 18px;
  overflow: hidden;
}
.story-cards .card img {
  height: 180px;
  object-fit: cover;
}
.story-cards .card .card-body {
  padding: 1.8em 1.3em 0 1.3em;
}
.story-cards .card .card-footer {
  padding: 1.5em 1.3em 1.8em 1.3em;
}

.faq-sec {
  border-radius: 18px;
  padding: 3em 2em 3em 2em;
}
@media only screen and (max-width: 767px) {
  .faq-sec {
    padding: 2em 0.5em 2em 0.5em;
  }
}
.faq-sec .accordion {
  margin: 1.5em 0 3em 0;
}
.faq-sec .accordion-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--clr-neutral-380);
  padding: 0.5em 0;
}
.faq-sec .accordion-item button {
  background-color: transparent;
  box-shadow: none;
  font-size: 2.4rem;
  color: var(--clr-neutral-450);
  font-weight: var(--fw-semi-bold);
}
@media only screen and (max-width: 767px) {
  .faq-sec .accordion-item button {
    font-size: 1.8rem;
  }
}
.faq-sec .accordion-item button::after {
  background-image: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f067";
  color: var(--clr-primary-100);
  transform: none;
  width: auto;
  height: auto;
}
.faq-sec .accordion-item button:not(.collapsed)::after {
  content: "\f068";
}
.faq-sec .accordion-item .accordion-body {
  line-height: 1.5;
}
@media only screen and (min-width: 768px) {
  .faq-sec .hero-btns {
    width: max-content;
  }
}

.call-wrap h2 {
  line-height: 1.28;
  font-size: 2.68rem;
}
@media only screen and (max-width: 1199px) {
  .call-wrap h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  .call-wrap h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1199px) {
  .call-wrap img {
    max-width: 12%;
  }
}
.call-wrap .left {
  padding: 5rem 3rem 5rem 3rem;
  border-right: 1px solid var(--clr-neutral-100);
}
@media only screen and (max-width: 767px) {
  .call-wrap .left {
    border-bottom: 1px solid var(--clr-neutral-100);
    border-right: none;
  }
  .call-wrap .left h2 {
    order: 2;
  }
  .call-wrap .left img {
    order: 1;
  }
}
.call-wrap .right {
  padding: 5rem 3rem 5rem 3rem;
}
@media only screen and (max-width: 767px) {
  .call-wrap .left,
.call-wrap .right {
    padding: 2rem 2rem 2rem 2rem;
  }
}

/*-----------home page start-----------------*/
/*-----------Modals start-----------------*/
.modal .modal-content {
  border-radius: 10px;
  padding: 0.8em;
}
.modal .modal-header {
  padding: 1rem 0;
  margin: 0 0.5em;
}
.modal .modal-header .pop-user {
  width: 75px;
  height: 75px;
}
.modal .modal-title {
  padding: 0 1rem;
}
.modal .modal-body {
  padding: 0.5em 1.1em;
}
.modal .btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.5rem 0.5rem;
  margin: 0.5rem 0.1rem -0.5rem auto;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
  align-self: flex-start;
}
.modal .form-wrap {
  margin-top: 1.3em;
}
.modal .form-wrap label {
  font-size: 1.4rem;
}
.modal .content-wrap p {
  position: relative;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}
@media only screen and (min-width: 576px) {
  .modal .modal-dialog {
    max-width: 600px;
  }
}

.modal-backdrop.show {
  opacity: 0.6 !important;
}

/*-----------Modals end-----------------*/

/*# sourceMappingURL=main.css.map */
