.button {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: "manrope-semibold", sans-serif;
  color: #ffffff;
  padding: 4px 12px;
  background: linear-gradient(93.46deg, #ff7f00 -0.47%, #fba959 100.92%);
  border: 0;
  outline: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .button {
    min-height: 48px;
    font-size: 18px;
    line-height: 28px;
    padding: 6px 14px;
  }
}
.button-sm {
  min-width: 140px;
}
.button-md {
  min-width: 160px;
}
@media (max-width: 767px) {
  .button-mobile-full {
    width: 100%;
  }
}

.cardGrids {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cardGrids li {
  width: 100%;
}
@media (width >= 768px) {
  .cardGrids li {
    width: calc(50% - 15px);
  }
}
@media (width >= 992px) {
  .cardGrids li {
    width: calc(33.3333333333% - 15px);
  }
}
@media (width >= 1200px) {
  .cardGrids li {
    width: calc(20% - 15px);
  }
}
.cardGrids__box {
  height: 100%;
  padding: 12px 16px;
}
.cardGrids__box h3 {
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 20px;
}
.cardGrids__box p {
  font-size: 14px;
  line-height: 22px;
}

.cardGrids2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.cardGrids2 li {
  width: 100%;
}
@media (width >= 768px) {
  .cardGrids2 li {
    width: calc(50% - 28px);
  }
}
@media (width >= 992px) {
  .cardGrids2 li {
    width: calc(33.3333333333% - 28px);
  }
}
@media (width >= 1200px) {
  .cardGrids2 li {
    width: calc(16.6666666667% - 28px);
  }
}
.cardGrids2 li:last-child .cardGrids2__box::after {
  display: none;
}
.cardGrids2__box {
  height: 100%;
  padding: 40px 16px;
  border: 2px solid #fff;
  border-radius: 6px;
  position: relative;
}
@media (width >= 1200px) {
  .cardGrids2__box::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 25px solid #fff;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -25px;
    margin: auto;
  }
}
.cardGrids2__box h3 {
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  margin-bottom: 0;
}

.cardGrids3__box {
  height: 100%;
  display: flex;
  gap: 20px;
  padding: 36px 16px;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  position: relative;
}
@media (width >= 1200px) {
  .cardGrids3__box {
    padding: 36px;
  }
}
@media (width >= 1680px) {
  .cardGrids3__box {
    min-height: 276px;
  }
}
.cardGrids3__box h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 20px;
}
.cardGrids3__box p {
  font-size: 14px;
  line-height: 22px;
}

.cardGrids4 {
  height: 100%;
  padding: 24px 16px;
}
@media (width >= 768px) {
  .cardGrids4 {
    padding: 40px 30px;
  }
}
.cardGrids4 .icon {
  border-radius: 4px;
  margin-top: -70px;
  margin-bottom: 20px;
}
.cardGrids4 h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 12px;
}
.cardGrids4 p {
  font-size: 14px;
  line-height: 22px;
  color: #707070;
}

.form {
  background: #209493;
}
.form__body {
  max-width: 855px;
  margin: auto;
}
.form__button {
  height: 42px;
  color: #000;
  border-radius: 4px;
  background: #fff;
}
.form__button:hover {
  background: #fdd106 !important;
}
.form__heading {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .form__heading {
    font-size: 20px;
    line-height: 28px;
  }
}
.form-group {
  max-width: 100%;
  position: relative;
  margin-bottom: 28px;
}
.form-control {
  width: 100%;
  height: 52px;
  font-size: 14px;
  line-height: 16px;
  border: 1px solid #000;
  text-overflow: ellipsis;
  background-color: rgba(255, 255, 255, 0.23);
  border-color: rgba(255, 255, 255, 0.23);
  border-bottom: 1px solid #fff;
  color: #fff !important;
  border-radius: 0 !important;
}
.form-control:focus {
  box-shadow: none !important;
  border: 1px solid #000 !important;
  outline: none !important;
  background-color: rgba(255, 255, 255, 0.23) !important;
}
.form-control::-moz-placeholder {
  color: #fff !important;
}
.form-control::placeholder {
  color: #fff !important;
}
.form__title {
  border-bottom: 2px solid #fff;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .form__title {
    padding-bottom: 32px;
  }
}

.error {
  display: block;
  position: static !important;
  font-size: 12px;
  line-height: 20px;
  color: red;
}

.type-checkbox .checkbox {
  width: 0;
  height: 0;
  position: absolute;
  opacity: 0;
}
.type-checkbox .checkbox:focus {
  width: 16px;
  height: 16px;
  border: 0;
  left: 0;
  outline: auto;
}
.type-checkbox .checkbox + span + label, .type-checkbox .checkbox + label {
  display: block;
  font-size: 14px;
  font-family: "manrope-medium", sans-serif;
  line-height: 20px;
  padding-left: 26px;
  cursor: pointer;
  position: relative;
  top: 0;
  left: 0;
  transform: initial;
  pointer-events: initial;
  color: #696984;
}
@media (min-width: 768px) {
  .type-checkbox .checkbox + span + label, .type-checkbox .checkbox + label {
    font-size: 16px;
    line-height: 22px;
  }
}
.type-checkbox .checkbox + span + label:before, .type-checkbox .checkbox + label:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #FFF7EC;
  border: 1px solid #D9D9D9;
  position: absolute;
  top: 1px;
  left: 0;
}
.type-checkbox .checkbox:checked + span + label:before, .type-checkbox .checkbox:checked + label:before {
  background: #ff7f00;
  border-color: #ff7f00;
}
.type-checkbox .checkbox:checked + span + label:after, .type-checkbox .checkbox:checked + label:after {
  content: "";
  width: 2px;
  height: 2px;
  background: #fff;
  box-shadow: 2px 0 0 #fff, 4px 0 0 #fff, 4px -2px 0 #fff, 4px -4px 0 #fff, 4px -6px 0 #fff, 4px -8px 0 #fff;
  position: absolute;
  top: 8px;
  left: 3px;
  transform: rotate(45deg);
}

.listCard {
  background: #209493;
}
.listCard .listCard__items-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 0 0 24px 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .listCard .listCard__items-wrapper {
    gap: 12px;
    margin: 0 0 0 0;
  }
}
@media (min-width: 992px) {
  .listCard .listCard__items-wrapper {
    gap: 32px;
  }
}
@media (min-width: 1200px) {
  .listCard .listCard__items-wrapper {
    gap: 60px;
  }
}
.listCard .listCard__col {
  list-style: none;
  padding: 0;
  margin: 0;
}
.listCard .listCard__col li {
  font-size: 20px;
  line-height: 1.15;
  position: relative;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .listCard .listCard__col li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .listCard .listCard__col li {
    font-size: 26px;
    margin-bottom: 32px;
  }
}
.listCard .listCard__col li::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-left: 12px solid #ffc733;
  border-bottom: 8px solid transparent;
  position: absolute;
  top: 0;
  border-radius: 2px;
  left: 0;
  margin: auto;
}
@media (min-width: 992px) {
  .listCard__left {
    max-width: 676px;
  }
}
@media (min-width: 1200px) {
  .listCard__col--left {
    width: 265px;
  }
}
@media (min-width: 1200px) {
  .listCard__col--right {
    width: 344px;
  }
}
.listCard__right img {
  width: 150px !important;
}
@media (min-width: 1200px) {
  .listCard__right img {
    width: 250px !important;
    margin-right: 25px;
  }
}

.keyIndustries {
  height: 100%;
  text-align: center;
  background: #fff;
  padding: 27px 36px;
  border-radius: 16px;
}
.keyIndustries__heading {
  font-size: 20px;
  line-height: 24px;
}

.brouchers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: auto;
  padding: 15px;
  height: 100%;
  transition: all 0.6s ease;
}
.brouchers > * {
  flex: 1;
}
.brouchers:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.brouchers__button {
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  padding: 0 15px;
  text-align: center;
  background-color: #ffe9c5;
  text-decoration: none;
  color: black;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.brouchers__button:hover {
  background-color: #f7921f;
  color: rgb(255, 255, 255);
}
.brouchers__img {
  max-width: 215px;
  margin: auto;
}
.brouchers__heading {
  font-size: 28px;
  line-height: 28px;
}
.brouchers__content {
  font-size: 16px;
  line-height: 24px;
  color: #636363;
}

.client-x .title1:hover {
  color: #f5911f;
}

.client-x .awards-carousel-2 .owl-nav button:hover {
  background-color: #f3f4f5;
  color: white;
}

.client-x .row {
  margin: 0 auto;
  width: 990px;
}

.client-x .awards-carousel-2 .owl-nav button {
  top: 50%;
  font-size: 25px;
  border: none;
  border-radius: 50%;
  height: 43px;
  width: 43px;
  left: -65px;
}

.client-x .awards-carousel-2 .owl-nav button.owl-next {
  left: auto;
  right: -65px;
}

.client-x .t-sec-thoughts {
  border-radius: 10px;
  overflow: hidden;
}

.services-cont {
  background-color: #ffffff;
  text-align: center;
  font-weight: 600;
  /* padding: 40px 10px; */
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.client-x .t-cont-thoughts {
  padding: 10px 20px;
  height: 200px;
}

.client-x .title1 {
  text-align: left;
  color: #000000;
  margin-bottom: 15px;
  margin-top: 10px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

.client-x .row {
  width: auto;
  margin: 0 auto;
}

.client-x .col-md-4 {
  padding: 30px;
}

.client-x .thought-title {
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #a5a5a5;
  font-size: 14px;
}

@media (min-width: 768px) {
  .client-x .row {
    margin: 0 auto;
    width: auto;
  }
  .client-x .t-cont-thoughts {
    padding: 10px 20px;
    height: auto;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .client-x .item {
    padding: 0px 8px;
  }
  .client-x .awards-carousel-2 .owl-nav button {
    position: absolute;
    top: 50%;
    font-size: 25px;
    border: none;
    border-radius: 50%;
    height: 43px;
    width: 43px;
    left: -38px;
  }
  .client-x .thrives-bsm p {
    max-width: 190px;
    margin-left: auto;
    margin-right: auto;
  }
  .clients-sec {
    padding: 40px 0;
  }
  .client-x .awards-carousel-2 .owl-nav button.owl-next {
    left: auto;
    right: -38px;
  }
}
@media (min-width: 768px) {
  .client-x .awards-carousel-2 .owl-nav button {
    position: absolute;
    -webkit-transform: translate(0, -50%);
  }
}

.learning-carosuel .owl-carousel .owl-stage {
  display: flex;
}
.learning-carosuel .owl-item.cloned {
  height: inherit;
}
.learning-carosuel .owl-item > * {
  height: 100%;
  border: 1px solid #dae4fe;
  border-radius: 10px;
}
.learning-carosuel .client-x .item {
  padding: 0;
}
.learning-carosuel .owl-nav {
  padding-bottom: 0 !important;
  text-align: center;
}
.learning-carosuel .owl-carousel.owl-drag .owl-item {
  margin: 1px;
}

.brouchers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: auto;
  padding: 15px;
  height: 100%;
  transition: all 0.6s ease;
}
.brouchers > * {
  flex: 1;
}
.brouchers:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.brouchers__button {
  width: 100%;
  height: 50px;
  font-size: 16px;
  line-height: 50px;
  padding: 0 15px;
  text-align: center;
  background-color: #ffe9c5;
  text-decoration: none;
  color: black;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}
.brouchers__button:hover {
  background-color: #f7921f;
  color: rgb(255, 255, 255);
}
.brouchers__img {
  max-width: 215px;
  margin: auto;
}
.brouchers__heading {
  font-size: 28px;
  line-height: 28px;
}
.brouchers__content {
  font-size: 16px;
  line-height: 24px;
  color: #636363;
}

.user-testimonials {
  padding-top: 60px;
  background-image: url("/assets/img/Kazito-CTO/testimonial-doted-lines.png");
  background-repeat: no-repeat;
  background-position: 280px top;
}

@media only screen and (min-width: 320px) and (max-width: 991px) {
  .user-testimonials {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
.user-testimonials .custom-container {
  margin: 0px auto;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .user-testimonials .custom-container {
    overflow: hidden;
  }
}
.user-content {
  max-width: 630px;
  overflow: auto;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .user-content {
    padding: 0px 15px;
  }
}
.testimonial-head h2 {
  margin-left: 45px !important;
}

.testimonial-content p::after {
  content: "";
  background-image: url("/assets/img/CFO-img/Testimonial-double-quote2.png");
  position: absolute;
  height: 40px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(4px, 15px);
}

body {
  font-size: 14px;
  font-family: Helvetica, sans-serif;
  line-height: 22px;
  color: #000;
}
@media (width >= 768px) {
  body {
    font-size: 16px;
    line-height: 24px;
  }
}
body * {
  font-weight: inherit;
}

p {
  margin-bottom: 24px;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  width: auto;
  height: auto;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1270px !important;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1370px !important;
  }
}
@media (min-width: 1680px) {
  .container {
    max-width: 1470px !important;
  }
}

header.navbar img {
  max-width: 179px;
}

.spacer-pt-space {
  padding-top: 40px;
}
@media (width >= 768px) {
  .spacer-pt-space {
    padding-top: 60px;
  }
}
@media (width >= 1200px) {
  .spacer-pt-space {
    padding-top: 70px;
  }
}
.spacer-pb-space {
  padding-bottom: 40px;
}
@media (width >= 768px) {
  .spacer-pb-space {
    padding-bottom: 60px;
  }
}
@media (width >= 1200px) {
  .spacer-pb-space {
    padding-bottom: 70px;
  }
}

.intro-block {
  margin-bottom: 32px;
}
@media (width >= 768px) {
  .intro-block {
    margin-bottom: 50px;
  }
}
.intro-text {
  margin-top: 24px;
}
.intro-text * {
  font-size: 16px;
  line-height: 24px;
}
.intro-text > *:last-child {
  margin-bottom: 0;
}

.heading-primary-11xl {
  font-size: 24px;
  line-height: 36px;
}
@media (width >= 768px) {
  .heading-primary-11xl {
    font-size: 32px;
    line-height: 44px;
  }
}
.heading-rgb-blue span {
  background: linear-gradient(90deg, #2ebdb9 35%, #000000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.editor-content > * {
  margin-bottom: 24px;
}
.editor-content > *:last-child {
  margin-bottom: 0;
}

.remove-space-last > *:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.header-top-space {
  margin-top: 70px;
}
@media (width >= 992px) {
  .header-top-space {
    margin-top: 80px;
  }
}

.text-22 {
  font-size: 18px;
  line-height: 26px;
}
@media (width >= 768px) {
  .text-22 {
    font-size: 22px;
    line-height: 30px;
  }
}

.bg-light-grey {
  background-color: #f9f9f9;
}
.bg-grey {
  background-color: #e8e8e8;
}
.bg-green {
  background-color: #209493;
}
.bg-light-green {
  background-color: #f4ffff;
}

.icon {
  max-width: 64px;
  min-width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
@media (width >= 768px) {
  .icon-md {
    max-width: 80px;
    min-width: 80px;
    height: 80px;
  }
}

.gap-y-3 {
  row-gap: 30px;
}

.gap-y-8 {
  row-gap: 80px;
}

.gap-y-6 {
  row-gap: 24px;
}
@media (width >= 1200px) {
  .gap-y-6 {
    row-gap: 60px;
  }
}

.merge-block {
  display: none;
}
@media (width >= 1200px) {
  .merge-block {
    display: block;
  }
}
.merge-rgb-green-grey {
  background: linear-gradient(to bottom, #209493 50%, #e8e8e8 0);
}
.merge-text {
  font-size: 156px;
  font-weight: 700;
  line-height: 100%;
  color: #00afb9;
  opacity: 0.5;
  position: relative;
  top: 5px;
}/*# sourceMappingURL=style.css.map */