.container {
  max-width: 1100px;
  margin: 0 auto;
  overflow: auto;
  padding: 0 40px;
  overflow: hidden !important;
}
.container-2 {
  max-width: 1200px;
  margin: 0 auto;
  overflow: auto;
  padding: 0 40px;
  overflow: hidden !important;
}
/* card */
.card {
  background-color: #fff;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  padding: 20px 15px;
  /* margin: 20px; */
  margin: 20px 10px;
}
/* buttons */
.btn {
  display: inline-block;
  padding: 5px 30px;
  cursor: pointer;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 5px;
}
.btn-outline {
  background-color: transparent;
  border: 1px var(--dark-color) solid;
  color: var(--dark-color) !important;
}
.btn-outline:hover {
  background-color: var(--dark-color);
  color: var(--primary-color) !important;
  border: none;
}
.btn-big {
  font-size: 16px;
}
.btn:hover {
  transform: scale(0.98);
}
.btn-service {
  border: none;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  padding: 30px;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.1px;
}

/* background & colored buttons do */
.bg-primary,
.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.bg-secondary,
.btn-secondary {
  background-color: var(--secondary-color);
  color: #fff;
}
.bg-dark,
.btn-dark {
  background-color: var(--dark-color);
  color: #fff;
}
.bg-footer,
.btn-footer {
  background-color: #181201;
  color: #fff;
  background-image: url('images/footer-bg.png');
  background-size: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
}

.bg-dark-blue,
.btn-dark-blue {
  background-color: var(--dark-blue);
  color: #fff;
}

.bg-grey,
.btn-grey {
  background-color: #0000007d;
  color: #fff;
}
.centres {
  background-image: linear-gradient(#fbf8ef, #f2efe6, #eae0bc);
}
.centre1 {
  border-bottom: 1px solid #cccccc7d;
  padding-bottom: 15px;
}

.bg-light-blue,
.btn-light-blue {
  background-color: var(--light-blue);
  color: #fff;
}

.btn-white {
  background-color: white;
  color: var(--dark-color);
}
.bg-primary a,
.btn-primary a,
.bg-secondary a,
.btn-secondary a,
.bg-dark a,
.btn-dark a {
  color: #fff;
}

/* Text colors */
.text-primary {
  color: var(--primary-color);
}
.text-secondary {
  color: var(--secondary-color);
}
.text-dark {
  color: var(--dark-color);
}
.text-black {
  color: black;
}

/* text sizes */
.lead {
  font-size: 20px;
}
.sm {
  font-size: 1rem;
}
.md {
  font-size: 2rem;
}
.lg {
  font-size: 3rem;
}
.xl {
  font-size: 4rem;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.bold {
  font-weight: bold;
}
.slider-head {
  font-size: 48px;
  letter-spacing: 1.6px;
  line-height: 1.3;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.slider-content {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1024px) {
  .slider-head {
    font-size: 36px;
    letter-spacing: 1.2px;
  }
  
  .slider-content {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .slider-head {
    font-size: 24px;
    letter-spacing: 1px;
  }
  
  .slider-content {
    font-size: 15px;
    margin-bottom: 15px;
  }
}
.title-up {
  text-transform: none;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 3px;
  color: var(--dark-blue);
}
/* flex & grid */
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: start;
  height: 100%;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 2px !important;
}

/* margin */
.my-1 {
  margin: 1rem 0;
}
.my-2 {
  margin: 1.5rem 0;
}
.my-3 {
  margin: 2rem 0;
}
.my-4 {
  margin: 3rem 0;
}
.my-5 {
  margin: 4rem 0;
}
.m-1 {
  margin: 1rem;
}
.m-2 {
  margin: 1.5rem;
}
.m-3 {
  margin: 2rem;
}
.m-4 {
  margin: 3rem;
}
.m-5 {
  margin: 4rem;
}
/* padding */
.py-1 {
  padding: 1rem 0;
}
.py-2 {
  padding: 1.5rem 0;
}
.py-3 {
  padding: 2rem 0;
}
.py-4 {
  padding: 3rem 0;
}
.py-5 {
  padding: 4rem 0;
}
.p-1 {
  padding: 1rem;
}
.p-2 {
  padding: 1.5rem;
}
.p-3 {
  padding: 2rem;
}
.p-4 {
  padding: 3rem;
}
.p-5 {
  padding: 4rem;
}

.push-right {
  float: right;
}
.who-we .grid {
  grid-template-columns: 1fr 8fr;
  align-items: center;
}

.service-head-section {
  max-width: 600px;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.icon-class {
  color: #fff;
  background-color: #524f67;
  padding: 2px;
  border-radius: 10px;
  font-size: 12px;
  margin-right: 5px;
}
.stats ul li {
  list-style: none;
  border: 0px;
  border-bottom: 1px;
  border-style: dotted;
  border-color: #524f67;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  color: #222;
  font-size: 12px;
}
/* Equal Heights for OwlCarousel 2 */
.owl-carousel-2 {
  .owl-stage {
    display: flex;
  }
  .owl-item {
    display: flex;
    flex: 1 0 auto;
  }
  .thumbnail {
    display: flex;
    flex-direction: column;
    margin: 0 15px;
    .caption {
      display: flex;
      flex: 1 0 auto;
      flex-direction: column;
      padding: 10px 0;
      .flex-text {
        flex-grow: 1;
        padding: 10px 0;
      }
    }
  }
}
.owl-carousel-2 .owl-nav button.owl-prev,
.owl-carousel-2 .owl-nav button.owl-next {
  position: absolute;
  color: red !important;
}
.owl-carousel-2 .owl-item img {
  border-radius: 50%;
  width: 200px;
  border: 2px solid #e4e7ed !important;
}
.owl-carousel-2 .owl-dots {
  display: none !important;
}
.btn_go {
  padding: 0.53333rem;
  color: #222;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
  padding: 3px 10px;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.3);
}

#howItWorks .cls-1,
#howItWorks .cls-10,
#howItWorks .cls-11,
#howItWorks .cls-12,
#howItWorks .cls-13,
#howItWorks .cls-14,
#howItWorks .cls-16,
#howItWorks .cls-18,
#howItWorks .cls-19,
#howItWorks .cls-6,
#howItWorks .cls-8 {
  fill: #fff;
}

#howItWorks .cls-1,
#howItWorks .cls-10,
#howItWorks .cls-11,
#howItWorks .cls-12,
#howItWorks .cls-13,
#howItWorks .cls-14,
#howItWorks .cls-18,
#howItWorks .cls-6,
#howItWorks .cls-8 {
  stroke: #dec697;
  stroke-dasharray: 4 2;
}

#howItWorks .cls-1,
#howItWorks .cls-10,
#howItWorks .cls-11,
#howItWorks .cls-12,
#howItWorks .cls-13,
#howItWorks .cls-14,
#howItWorks .cls-16,
#howItWorks .cls-17,
#howItWorks .cls-18,
#howItWorks .cls-6,
#howItWorks .cls-8 {
  stroke-width: 1px;
}

#howItWorks .cls-1 {
  -webkit-filter: url(#filter);
  filter: url(#filter);
}

#howItWorks .cls-2 {
  fill: #c1930d;
}

#howItWorks .cls-15,
#howItWorks .cls-16,
#howItWorks .cls-17,
#howItWorks .cls-2,
#howItWorks .cls-3,
#howItWorks .cls-4,
#howItWorks .cls-5 {
  fill-rule: evenodd;
}

#howItWorks .cls-3,
#howItWorks .cls-4,
#howItWorks .cls-5 {
  fill: #f4d69d;
}

#howItWorks .cls-3 {
  -webkit-filter: url(#filter-2);
  filter: url(#filter-2);
}

#howItWorks .cls-4 {
  -webkit-filter: url(#filter-3);
  filter: url(#filter-3);
}

#howItWorks .cls-5 {
  -webkit-filter: url(#filter-4);
  filter: url(#filter-4);
}

#howItWorks .cls-6 {
  -webkit-filter: url(#filter-5);
  filter: url(#filter-5);
}

#howItWorks .cls-7,
#howItWorks .cls-9 {
  font-size: 15px;
}

#howItWorks .cls-7 {
  text-anchor: middle;
}

#howItWorks .cls-19,
#howItWorks .cls-7,
#howItWorks .cls-9 {
  font-family: Roboto;
}

#howItWorks .cls-8 {
  -webkit-filter: url(#filter-6);
  filter: url(#filter-6);
}

#howItWorks .cls-10 {
  -webkit-filter: url(#filter-7);
  filter: url(#filter-7);
}

#howItWorks .cls-11 {
  -webkit-filter: url(#filter-8);
  filter: url(#filter-8);
}

#howItWorks .cls-12 {
  -webkit-filter: url(#filter-9);
  filter: url(#filter-9);
}

#howItWorks .cls-13 {
  -webkit-filter: url(#filter-10);
  filter: url(#filter-10);
}

#howItWorks .cls-14 {
  -webkit-filter: url(#filter-11);
  filter: url(#filter-11);
}

#howItWorks .cls-15 {
  fill: #a9810b;
}

#howItWorks .cls-16,
#howItWorks .cls-17 {
  stroke: #a28449;
}

#howItWorks .cls-17 {
  fill: #ffe1a7;
}

#howItWorks .cls-18 {
  -webkit-filter: url(#filter-12);
  filter: url(#filter-12);
}

#howItWorks .cls-19 {
  font-size: 24px;
  font-weight: 800;
}

#howItWorks .cls-20 {
  fill: #ffd991;
}

#howItWorks .cls-21 {
  fill: #feda94;
}

#whychoos {
  margin-left: 10%;
}
#whychoos .cls-1,
#whychoos .cls-2,
#whychoos .cls-6 {
  fill: none;
  stroke: #dab46b;
  stroke-width: 1px;
}
#whychoos .cls-1,
#whychoos .cls-2 {
  stroke-dasharray: 4 2;
}
#whychoos .cls-1,
#whychoos .cls-2,
#whychoos .cls-3,
#whychoos .cls-5,
#whychoos .cls-6 {
  fill-rule: evenodd;
}
#whychoos .cls-1 {
  opacity: 0.3;
}
#whychoos .cls-2 {
  opacity: 0.6;
}
#whychoos .cls-3 {
  fill: #34314c;
}
#whychoos .cls-4 {
  opacity: 0.8;
}
#whychoos .cls-5 {
  fill: #ffda75;
}
#whychoos .cls-10,
#whychoos .cls-11,
#whychoos .cls-12,
#whychoos .cls-13,
#whychoos .cls-14,
#whychoos .cls-7,
#whychoos .cls-8,
#whychoos .cls-9 {
  fill: #fff;
}
#whychoos .cls-7 {
  -webkit-filter: url(#filter);
  filter: url(#filter);
}
#whychoos .cls-8 {
  -webkit-filter: url(#filter-2);
  filter: url(#filter-2);
}
#whychoos .cls-9 {
  -webkit-filter: url(#filter-3);
  filter: url(#filter-3);
}
#whychoos .cls-10 {
  -webkit-filter: url(#filter-4);
  filter: url(#filter-4);
}
#whychoos .cls-11 {
  -webkit-filter: url(#filter-5);
  filter: url(#filter-5);
}
#whychoos .cls-12 {
  -webkit-filter: url(#filter-6);
  filter: url(#filter-6);
}
#whychoos .cls-13 {
  -webkit-filter: url(#filter-7);
  filter: url(#filter-7);
}
#whychoos .cls-14 {
  -webkit-filter: url(#filter-8);
  filter: url(#filter-8);
}
#whychoos .cls-15 {
  font-size: 20px;
  fill: #b99757;
  font-weight: 800;
}
#whychoos .cls-15,
#whychoos .cls-16,
#whychoos .cls-17 {
  font-family: Roboto;
}
#whychoos .cls-16,
#whychoos .cls-17 {
  font-size: 18px;
  fill: #222;
  font-weight: 500;
}
#whychoos .cls-16 {
  text-anchor: end;
}
