@charset "utf-8";

:root {
  --mwidth: 1120px;
  --centerWidth: 960px;
  --centerWidthNarrow: 720px;
  --vwide: calc(100vw - 80px);
  --shadow-color: 0deg 0% 0%;
  --backgroundGrey: hsl(0, 0%, 95%);
  --backgroundGreyLight: hsl(0, 0%, 97.5%);
  --backgroundWhite: hsl(0, 0%, 97%);
  --greenDark: hsl(150, 100%, 17%);
  --greenLight: hsl(150, 100%, 27%);
  --gold: hsl(29, 44%, 48%);
  --shadow-elevation-low:
    0px 0.1px 0.2px hsl(var(--shadow-color) / 0.11),
    0px 0.9px 2px -0.8px hsl(var(--shadow-color) / 0.11);
  --shadow-elevation-medium:
    0px 0.2px 0.2px hsl(var(--shadow-color) / 0.11),
    0px 1.8px 2px -0.8px hsl(var(--shadow-color) / 0.11),
    0px 5.3px 6px -1.7px hsl(var(--shadow-color) / 0.11);
  --shadow-elevation-high: 0px 0.2px 0.2px hsl(var(--shadow-color) / 0.14),
    0px 1.8px 2px -0.8px hsl(var(--shadow-color) / 0.14),
    0px 5.3px 6px -1.7px hsl(var(--shadow-color) / 0.14),
    0px 13.6px 15.3px -2.5px hsl(var(--shadow-color) / 0.14);
}

html {
  scroll-behavior: smooth;
}


.separatorUpWhite {
  max-width: var(--mwidth);
  height: 30px;
  margin: auto;
  background-image: url(../images/separatorUpWhite.svg);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}

.separatorDownBlack {
  max-width: var(--mwidth);
  height: 30px;
  margin: auto;
  background-image: url(../images/separatorDownBlack.svg);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}

.separatorLine {
  width: 100%;
  height: 1px;
  margin: auto;
  background-image: url(../images/separatorLine.svg);
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto;
}

.separatorRightBlack {
  background-image: url(../images/sideRightBlack.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 100%;
}

.separatorLeftWhite {
  background-image: url(../images/sideLeftWhite.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

.separatorSideFull {
  background-image:
    url(../images/sideLeftWhite.svg),
    url(../images/sideRightBlack.svg);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: auto 100%, auto 100%;
  box-sizing: border-box;
}

body {
  background-color: var(--backgroundGrey);
  font-family: "Work Sans", system-ui;
}

section {
  scroll-margin-top: 60px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.4;
  color: rgb(0, 0, 0, 0.9);
}

h1 {
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--greenDark);
}

h2 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--gold);
}

h3 {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--greenDark);
}

h4 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
}

p {
  color: rgb(0, 0, 0, 0.85);
  font-size: 1.0em;
  line-height: 1.5;
  font-weight: 350;
  font-style: normal;
  margin-bottom: 0.9rem;
}

.pSmall {
  font-weight: 300;
  font-size: 0.7rem;
  margin-top: 0.5rem;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

li {
  color: rgb(0, 0, 0, 0.75);
  font-weight: 380;
  font-size: 1.0rem;
  font-style: normal;
  line-height: 1.5rem;
  padding: 0.3rem 0;
}

strong {
  font-weight: 400;
  color: rgb(0, 0, 0, 1.0);

}

.onlyDesk {
  display: flex;
}

.onlyMob {
  display: none !important;
}


.header {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
  box-shadow: var(--shadow-elevation-high);
  top: -100px;
  transition: top 0.5s ease;
  z-index: 1000;
}

.header.visible {
  top: 0;
  transition: top 0.5s ease;
}

.headerContent {
  width: var(--mwidth);
  height: 90px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.headerLogo {
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.headerLogo img {
  height: 100%;
}

.headerHamburger {
  display: flex;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.headerHamburger a {
  height: 100%;
  width: 40px;
  font-size: .1rem;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.25s;
  transition-timing-function: ease-out;
  background-color: var(--greenDark);
  background-image: url(../images/menu.svg);
  background-position: center center;
  background-size: 25px;
  background-repeat: no-repeat;
}

.headerHamburgerOff a {
  background-image: url("../images/email.svg");
}

.headerHamburger a:hover {
  background-color: rgba(0, 0, 0, 0.4);
}

.headerSub {
  position: fixed;
  width: 100%;
  padding: 100px 0px 10px 0px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  pointer-events: auto;
  box-shadow: var(--shadow-elevation-high);
  top: -400px;
  transition: top 0.5s ease;
  z-index: 900;
}

.headerSubContent {
  width: var(--mwidth);
  margin-left: auto;
  margin-right: auto;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.headerSubContent a {
  color: white;
  background-color: var(--greenDark);
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  border-radius: 20px;
}

.headerSubContent a:hover {
  background-color: var(--greenLight);
}

.headerSub.visible {
  top: 0;
  transition: top 0.5s ease;
}


.heroContainer {
  width: 100%;
  padding-top: 120px;
}

.hero {
  display: flex;
  box-sizing: border-box;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  aspect-ratio: 16 / 8;
  background-color: #af8e2c;
  background-image: url(../images/hero/kenya.jpg);
  background-size: cover;
  background-position: center center;
}

.heroItem {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
}

.heroItem h1 {
  color: rgba(255, 255, 255, 1.90);
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow:
    0px 0px 2px rgba(0, 0, 0, 1.0),
    0px 0px 4px rgba(0, 0, 0, 0.8),
    0px 0px 8px rgba(0, 0, 0, 0.6),
    0px 0px 16px rgba(0, 0, 0, 0.4);
}

.heroItem h2 {
  color: rgba(255, 255, 255, 1.90);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  text-shadow:
    0px 0px 2px rgba(0, 0, 0, 1.0),
    0px 0px 4px rgba(0, 0, 0, 0.8),
    0px 0px 8px rgba(0, 0, 0, 0.6),
    0px 0px 16px rgba(0, 0, 0, 0.4);
}

.heroLogo img {
  width: 260px;
  height: auto;
  /* filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.8)); */
}

.heroNgamia {
  aspect-ratio: 16 / 6;
  background-color: yellowgreen;
  background-image: url(../images/hero/ngamia.jpg);
  background-size: cover;
  background-position: center center;
  padding: 20px;
}

.heroSeparator {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  aspect-ratio: 16 / 3;
  background-color: yellowgreen;
  background-image: url(../images/hero/kilimanjaro.jpg);
  background-size: cover;
  background-position: center center;
  padding: 20px;
}

.heroSeparator h1 {
  color: rgba(255, 255, 255, 1.90);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  text-shadow:
    0px 0px 2px rgba(0, 0, 0, 1.0),
    0px 0px 4px rgba(0, 0, 0, 0.8),
    0px 0px 8px rgba(0, 0, 0, 0.6),
    0px 0px 16px rgba(0, 0, 0, 0.4);
}

.heroServices {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: #172121;
  background-image: url(../images/hero/waves.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 20px;
}

.heroServices h1 {
  color: rgba(255, 255, 255, 1.90);
  font-size: 2.5rem;
  font-weight: 400;
  text-align: center;
  text-shadow:
    0px 0px 2px rgba(0, 0, 0, 1.0),
    0px 0px 4px rgba(0, 0, 0, 0.8),
    0px 0px 8px rgba(0, 0, 0, 0.6),
    0px 0px 16px rgba(0, 0, 0, 0.4);
}

.heroContact {
  aspect-ratio: 16 / 6;
  background-color: yellowgreen;
  background-image: url(../images/hero/contact.jpg);
  background-size: cover;
  background-position: center center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.heroContact a {
  color: var(--greenDark);
  background-color: white;
  font-size: 1.1rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-elevation-high);
}

.heroContact a:hover {
  color: var(--gold);
  box-shadow: var(--shadow-elevation-low);
}

.heroItem {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px;
  border-radius: 10px;
}

.servicesList {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  padding: 0px 0px 60px 0px;
}

.servicesListItem {
  display: flex;
  align-items: center;
  background-color: var(--backgroundWhite);
  padding: 20px;
  border-radius: 10px;
  box-shadow: var(--shadow-elevation-medium);
  transition: all 0.3s ease-in-out;
  text-align: center;
}

.main {
  display: flex;
  justify-content: space-evenly;
  max-width: var(--mwidth);
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  align-items: center;
}

.mainAlignTop {
  align-items: flex-start;
}

.mainItem {
  width: 100%;
  padding: 40px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.padding20 {
  padding: 30px 60px;
}

.padding20Left {
  padding: 30px 30px 30px 60px;
}

.padding20Right {
  padding: 30px 60px 30px 30px;
}

.mainItem img {
  width: 100%;
  border-radius: 5px;
  box-shadow: var(--shadow-elevation-high);
}

.mainItem70 {
  width: 70%;
  box-sizing: border-box;
}

.mainItem60 {
  width: 60%;
  box-sizing: border-box;
}

.mainItem50 {
  width: 50%;
  box-sizing: border-box;
}

.mainItem40 {
  width: 40%;
  box-sizing: border-box;
}

.mainItem30 {
  width: 30%;
  box-sizing: border-box;
}

.mainFooter {
  display: block;
  margin: 0px auto;
  max-width: 100%;
  background-color: var(--greenDark);
  background-image: url(../images/wideBigShadowDark.svg);
  background-repeat: repeat-x;
  background-position: top center;
  background-size: 80px auto;
  padding: 0px 0px 0px 0px;
}

.footer {
  display: flex;
  margin: 0px auto;
  max-width: var(--mwidth);
  padding: 0px 20px 0px 20px;
  align-items: center;
  justify-content: space-between;
}

.footerLogo {
  width: 120px;
  height: auto;
}

.footerLogo img {
  width: 100%;
  height: auto;
}

.footerLogoLink {
  display: block;
  filter: opacity(90%) drop-shadow(0px 0px 0px hsl(0deg 0% 0% / 0.00));
}

.footerLogoLink:hover {
  filter: opacity(100%) drop-shadow(0px 5px 3px hsl(0deg 0% 0% / 0.70));
  transition: filter 350ms;
}

.footerSocial {
  display: flex;
}

.footerSocialLinkedIn {
  display: block;
  width: 40px;
  height: 40px;
  background-image: url(../images/linkedin.svg);
  filter: opacity(90%) drop-shadow(0px 0px 0px hsl(0deg 0% 0% / 0.00));
  transition: filter 750ms;
}

.footerSocialLinkedIn:hover {
  filter: opacity(100%) drop-shadow(0px 5px 3px hsl(0deg 0% 0% / 0.70));
  transition: filter 250ms;
}

.footerText {
  color: hsl(0deg 0% 100% / 0.80);
}

.footerText p {
  color: white;
  font-size: 0.8rem;
  font-weight: 400;
}

.footerLegal {
  max-width: var(--mwidth);
  margin: 0px auto;
  padding: 60px 20px;
  text-align: right;
}

.footerLegal p {
  color: hsl(0deg 0% 100% / 0.40);
  font-size: 0.8rem;
}


@media only screen and (max-width: 1080px) {}

@media only screen and (max-width: 780px) {

  section {
    scroll-margin-top: 60px;
  }

  .onlyDesk {
    display: none;
  }

  .onlyMob {
    display: block;
  }

  .noPaddingMobile {
    padding: 0px;
  }

  .headerContent {
    width: calc(100% - 20px);
    height: 90px;
  }

  .headerSubContent {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
  }

  .separatorRightBlack {
    background-image: none;
  }

  .separatorLeftWhite {
    background-image: none;
  }

  .separatorSideFull {
    background-image: none;
  }

  .heroContact {
    aspect-ratio: 16 / 12;
    flex-direction: column;
    gap: 40px;
  }

  .servicesList {
    grid-template-columns: 1fr;
  }

  .main {
    flex-direction: column;
    max-width: 100%;
  }

  .mainItem70 {
    width: 100%;
  }

  .mainItem60 {
    width: 100%;
  }

  .mainItem50 {
    width: 100%;
  }

  .mainItem40 {
    width: 100%;
  }

  .mainItem30 {
    width: 100%;
  }

  .padding20 {
    padding: 10px 20px 10px 20px;
  }

  .padding20Left {
    padding: 10px 20px 10px 20px;
  }

  .padding20Right {
    padding: 10px 20px 10px 20px;
  }

  .footerText {
    padding: 0px 30px;
    text-align: center;
  }

  .footerText p {
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 400;
  }

  .footerLegal {
    text-align: center;
  }

}



@media only screen and (max-width: 320px) {}