@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
:root {
  --eden:  #165a64;
  --algae: #088f8f;
  --sunshine: #ffdd04;
  --black:  #000000;
  --white:  #ffffff;

  --gray-1: #f9f9f9;
  --gray-2: #dddddd;
  --gray-3: #999999;

  --swiper-theme-color: #fff;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--black);
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

p,
ul,
ol,
blockquote,
h3,
h4,
h5,
h6,
li {
  line-height: 150%;
}

.ki-container {
  max-width: 71.875rem;
  padding-inline: 1.5rem;
  margin-inline: auto;
}


/* remove?? */
@media (max-width: 991px) {
  .ki-let-together__content {
    grid-template-columns: 1;
    column-gap: 1.25rem;

    .box1 {
      grid-column: 1 / 1;
      grid-row: 1 / 1;
    }

    .box3 {
      grid-column: 1 / 1;
      grid-row: 3 / 3;
    }
  }
}

/* end */

.ki-fs-1 {
  font-size: clamp(6rem, 6vw, 4rem);
}
.ki-fs-2 {
  font-size: clamp(4rem, 4vw, 3rem);
}
.ki-fs-3 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.ki-fs-4 {
  font-size: clamp(2rem, 4vw, 1.5rem);
}
.ki-fs-5 {
  font-size: clamp(1.625rem, 4vw, 1.25rem);
}
.ki-fs-6 {
  font-size: clamp(1.625rem, 3.5vw, 1.125rem);
}

.ki-text-eden {
  color: var(--eden);
}
.ki-text-sunshine {
  color: var(--sunshine);
}
.ki-text-black {
  color: var(--black);
}
.ki-text-white {
  color: var(--white);
}
.ki-text-gray {
  color: var(--gray-3);
}
.ki-bg-eden {
  background: #165a64;
}
.ki-bg-white {
  background-color: var(--white);
}
.ki-bg-sunshine {
  background-color: var(--sunshine);
}
.ki-bg-gray {
  background-color: var(--gray-1);
}

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

/* ========================================================================== */
/* Utilities */
/* ========================================================================== */

.d-flex {
  display: flex;
}
.gap-8 {
  gap: 8px;
}
.text-decoration-none {
  text-decoration: none;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-center {
  text-align: center;
}
.ki-btn {
  padding: 1rem 2rem;
  cursor: pointer;
  transition: all 100ms ease-in-out;
  display: inline-block;
  text-align: center;
  font-weight: 400;
}
.ki-btn-primary {
  background: var(--sunshine);
  color: var(--black);

  &:hover {
    background: var(--algae);
    color: var(--white);
  }
}
.ki-btn-seemore {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  &:hover {
    color: var(--algae);
  }
}
/* Font Weight */

.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

/* Margin */
.mt-8 {
  margin-top: 0.5rem;
}
.mt-24 {
  margin-top: 1.25rem;
}
.mt-32 {
  margin-top: 1.5rem;
}
.mt-48 {
  margin-top: 2.5rem;
}
.mt-96 {
  margin-top: 6rem;
}

.mb-16 {
  margin-bottom: 1rem;
}
.mb-24 {
  margin-bottom: 1.25rem;
}
.mb-32 {
  margin-bottom: 1.75rem;
}
.mb-48 {
  margin-bottom: 3rem;
}
.mb-64 {
  margin-bottom: 4rem !important;
}
.mb-96 {
  margin-bottom: 6rem;
}

.mw-narrow {
  max-width: 560px;
}
.mw-standard {
  max-width: 800px;
}
.mw-wide {
  max-width: 1024px;
}
.mw-extra-wide {
  max-width: 1280px;
}
.mx-auto {
  margin-inline: auto;
}

.ki-py-160 {
  padding-block: clamp(3rem, 8vw, 10rem);
}

/* ========================================================================== */
/* ========================================================================== */

.ki-hr-black {
  border: 0.5px solid var(--black);
  display: block;
  width: 100%;
}

.ki-hr {
  border: 0.5px solid var(--gray-2);
  display: block;
  width: 100%;
}

.ki-def {
  border: 1px solid var(--white);
}

.ki-row {
  display: grid;
}

/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */

.ki-navbar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: background-color 300ms ease-in-out;
  z-index: 1000;
  border-bottom: 0.5px solid var(--gray-2);
  background-color: #fff;
}

.ki-hero__content {
  padding-inline: 0.65rem;
}

.ki-navbar {
  padding-block: 1.375rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.ki-burger {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
}

.ki-navbar__nav {
  display: none;
}


.ki-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 3.5rem;
  padding-left: 0;
  
  li {
   padding-bottom: 0;
  }
}

.reviewSwiper {
  max-width: 71.875rem;
  margin-inline: auto;
}
.swiper-slide {
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--black);

  &:hover {
    color: var(--algae);
  }
}



a {
  text-decoration: underline;
  color: var(--gray-2);

  &:hover {
    color: var(--algae);
  }
}

.ki-navbar__link {
  text-decoration: none;
  color: var(--black);
  position: relative;
  transition: color 300ms ease-in-out;
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
}

.ki-navbar__link.ki-navbar-active {
    color: var(--sunshine);
  }

.ki-navbar__link-active,
.ki-navbar__link:hover {
  color: var(--algae) !important;
}

.ki-navbar__link-active::after,
.ki-navbar__link:hover::after {
  width: 100%;
}

.ki-links a li {
  font-size: 1.2rem;
  display: inline-block;
  padding: 2px;
  position: relative;
}

.ki-links a li:hover::after {
  transform: scaleX(1);
}

@media screen and (min-width: 768px) {
  .ki-def {
    padding: 5rem;
  }
  .ki-hero {
    min-height: 600px;
  }
  .ki-navbar--light .ki-navbar__link {
    color: var(--white);;
  }
}
.ki-navbar-fade-in .ki-navbar__link {
  color: var(--black);
}
.ki-navbar-fade-in .ki-burger {
  color: var(--black) !important;
}

@media screen and (min-width: 768px) {
  .ki-burger {
    display: none;
  }

  .ki-how-pagination {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next,
  .ki-hr-black {
    display: block;
  }

  header {
    justify-content: space-between;
    p {
      margin: 0 12rem;
    }
  }

  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .links {
    flex-direction: row;
    margin-right: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .framework-img {
    padding: 5rem 0 !important;
  }
  .ki-def {
    padding: 1.5rem;
  }
  .quote-img {
    position: absolute;
  }
  .circle {
    float: none !important;
    margin-bottom: 3rem;
  }
  .ki-hero {
    min-height: 400px;
  }
  .subtagline {
    width: 300px;
  }
  .ki-how-pagination {
    display: block;
  }
  .swiper-button-prev,
  .swiper-button-next,
  .ki-hr-black {
    display: none;
  }

  .ki-partners {
    display: grid;
    gap: 5.25rem;
  }
  .ki-partners-img {
    width: 100%;
  }

  .ki-fs-1 {
    font-size: clamp(4rem, 6vw, 4rem);
  }
  .ki-fs-2 {
    font-size: clamp(3rem, 4vw, 3rem);
  }
  .ki-fs-3 {
    font-size: clamp(1.675rem, 3vw, 2.5rem);
  }
  .ki-fs-4 {
    font-size: clamp(2rem, 4vw, 1.5rem);
  }
  .ki-fs-5 {
    font-size: clamp(1.625rem, 4vw, 1.25rem);
  }
  .ki-fs-6 {
    font-size: clamp(1.5rem, 3.5vw, 1.125rem);
  }

  .ki-navbar__navbar {
    background-color: #fff;
    position: absolute;
    width: calc(100vw - 3rem);
    height: calc(100vh - 73px);
    top: 73px;
    left: 0;
    z-index: -1;
    padding-inline: 1.5rem;
    display: none;
    flex-direction: column;
    padding-top: 2.5rem;
  }

  .ki-links {
    gap: 2rem;
    flex-direction: column;
    align-items: start;
  }

  .ki-nav-footer {
    display: block;
    margin-top: auto;
    margin-bottom: 2.5rem;
  }
  .ki-navbar-active {
    background-color: #fff;
    position: fixed;
  }
  .ki-navbar-active .ki-burger {
    color: var(--black) !important;
  }
  .ki-navbar-active .ki-open {
    display: none;
  }
  .ki-navbar-active .ki-close {
    display: block;
  }
  .ki-navbar-active .ki-navbar__navbar {
    display: flex;
  }
  .ki-close {
    display: none;
  }
  .row {
    display: block !important;
  }
  .ki-faq__content {
    padding: 0;
  }
}

.ki-navbar-fade-in {
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* ========================================================================== */
/* ========================================================================== */
/* ========================================================================== */

/* Hero Section Start */
.ki-hero {
  margin-top: 80px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
}


/* Hero Section  End*/


.ki-experience {
  margin: auto;
  position: relative;
}

.ki-contact {
  .ki-email {
    padding-top: 5rem;
  }
}

/* Footer */
.ki-footer {
  padding-block: 2.5rem;
}

.ki-footer__content {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .ki-footer__content {
    flex-direction: column;
    justify-content: center;
  }
  .ki-btn-primary {
    width: auto;
  }

}
@media (min-width: 992px) {
  .tagline {
    line-height: 150%;
  }
  .subtagline {
    width: 500px;
  }

  .ki-footer {
    padding-block: 2.5rem;
  }
}

ol {
  padding-left: 2rem;
}

ul {
  list-style-type: none;
}

@media (min-width: 992px) {
  .ki-work__content {
    grid-template-columns: fit-content(65ch) fit-content(344px);
    justify-content: space-between;
  }
  .ki-what__content {
    grid-template-columns: 1.35fr 1fr;
    padding: 0 3.5rem;
  }
}
@media (max-width: 991px) {
  .ki-what__content {
    padding: 48px 24px;
    gap: 0;
  }
}

.ki-review__content {
  max-width: 560px;
  margin: auto;
  position: relative;
  isolation: isolate;
}
.ki-review__content .bg-quote {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: clamp(3rem, 3vw, 8.75rem);
}

.framework-img {
  padding: 10rem 0;
  width: 100%;
  content:url(../assets/images/framework.png);
  text-align: center;
}
.quote-img {
  width: 40px;
  content:url(../assets/images/quote.png);
}
.swiper-pagination {
  position: relative;
  padding-bottom: 0;
  width: auto !important;
}

/* Swiper */

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  transition: all 300ms ease-in-out;
  margin: 8px !important;
  background: var(--gray-3);

  &:hover {
    opacity: 1;
    background: var(--algae);
  }
}
.swiper-pagination-bullet-active {
  background: var(--eden);
}
.ki-process,
.ki-impact {
  display: grid;
  gap: 1.25rem;
}
.partner-about,
.impact-about {
  display: grid;
}

.circle {
  background: var(--white);
  height: 240px;
  width: 240px;
  border: 10px solid #eee;
  border-radius: 50%;
  padding: 16px;
  float: right;
}

.circle-rational {
  transform: translate(0%, 50%)
}
.circle-emotional {
  transform: translate(0%, 35%)
}

.ki-process,
.ki-impact {
  display; grid;
  gap: 2em;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  flex: 1;
}

#solution {
  background-color: var(--eden);
}

#how {
  background-color: var(--sunshine);
}

@media (min-width: 992px) {
  .ki-partners-img {
    width: 70%;
  }
  .ki-partners {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 5rem;
  }
  .ki-process,
  .ki-impact {
    grid-template-columns: auto auto;
    column-gap: 5rem;
  }
}
