@import url("./bootstrap.min.css");

@font-face {
  font-family: ClashGrotesk;
  src: url("../assets/fonts/ClashGrotesk/ClashGrotesk-Extralight.otf");
  font-weight: 200;
}
@font-face {
  font-family: ClashGrotesk;
  src: url("../assets/fonts/ClashGrotesk/ClashGrotesk-Light.otf");
  font-weight: 300;
}
@font-face {
  font-family: ClashGrotesk;
  src: url("../assets/fonts/ClashGrotesk/ClashGrotesk-Regular.otf");
  font-weight: 400;
}
@font-face {
  font-family: ClashGrotesk;
  src: url("../assets/fonts/ClashGrotesk/ClashGrotesk-Medium.otf");
  font-weight: 500;
}
@font-face {
  font-family: ClashGrotesk;
  src: url("../assets/fonts/ClashGrotesk/ClashGrotesk-Semibold.otf");
  font-weight: 600;
}
@font-face {
  font-family: ClashGrotesk;
  src: url("../assets/fonts/ClashGrotesk/ClashGrotesk-Bold.otf");
  font-weight: 700;
}
:root {
  --horizontal-gutter: 3.5rem;
  --vertical-gutter: 3.5rem;
  --color-primary-green: #034638;
  --color-primary-brown: #97694c;
  --color-black: #000000;
  --color-dark-grey: #8c8a88;
  --color-grey: #f5f5f5;
}
body {
  font-family: "ClashGrotesk";
}
main {
  min-height: 100dvh;
}
.section {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 30vh;
  padding: var(--vertical-gutter) calc(var(--horizontal-gutter) * 5);
}
.section.fixed {
  height: 100vh;
}
.section.block {
  min-height: 100vh;
}
.brown {
  background-color: var(--color-primary-brown);
  color: #fff !important;
}
.brown * {
  color: #fff;
}
.green {
  background-color: var(--color-primary-green);
  color: #fff !important;
}
.hero-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  background-color: var(--color-primary-green);
  color: #fff !important;
}
.hero-banner > h2 {
  margin: 0px;
}
.hero-banner > h1 {
  font-size: 400%;
  margin: 0;
  width: 100%;
}
.hero-banner > img {
  margin-top: 1.5rem;
  width: 60px;
  height: 60px;
}
.img-text-section {
  display: flex;
  align-items: stretch;
}
.img-text-section.vertical {
  flex-direction: column;
}
.img-text-section > div {
  flex: 1 1 50%;
}
.img-text-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-text-section__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: var(--vertical-gutter) var(--horizontal-gutter);
  text-align: left; /* dk */
}
.img-text-section__content.left {
  align-items: flex-start;
}
.img-text-section__content > p,ul {
  color: var(--color-dark-grey);
}
.brown .img-text-section__content > p,
.green .img-text-section__content > p,
.img-text-section__content.green > p,
.img-text-section__content.brown > p {
  color: #fff;
}
.img-text-section__content.large-pad {
  padding: var(--vertical-gutter) calc(var(--horizontal-gutter) * 5);
}
.img-text-section__content > ul{
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.img-text-section__content.small-content > * {
  width: 50%;
}
.img-text-section__content > * {
  margin: 0px;
}
.text-dark-grey {
  color: #8c8a88 !important;
}
.section-action-btn {
  color: #fff;
  background-color: var(--color-primary-green);
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  transition: 0.3s;
}
.section-action-btn:hover {
  background-color: #fff;
  color: var(--color-primary-green);
  border: 1px solid var(--color-primary-green);
}
.section-action-btn.white {
  border: 1px solid #fff;
  background-color: transparent;
}
.section-action-btn.white:hover {
  color: var(--color-primary-brown);
  background-color: #fff;
}

/*================================================*\
    Media Query
\*================================================*/
@media only screen and (min-width: 877px) {
  .desktop-view {
    display: inherit !important;
  }
  .mobile-view {
    display: none !important;
  }
}
@media only screen and (max-width: 876px) {
  :root {
    --horizontal-gutter: 0.9rem;
    --vertical-gutter: 0.9rem;
  }
  .desktop-view {
    display: none !important;
  }
  .mobile-view {
    display: inherit !important;
  }
  .hero-banner > h1 {
    font-size: 6vw;
  }
  .img-text-section {
    flex-direction: column;
  }
  .img-text-section.reversed {
    flex-direction: column-reverse;
  }
  .section.fixed {
    height: auto;
  }
  .img-text-section__content.large-pad,
  .section {
    padding: calc(var(--vertical-gutter) * 5) calc(var(--horizontal-gutter) * 5);
  }
  .img-text-section__content.small-content > * {
    width: 75%;
  }
}
@media only screen and (max-width: 603px) {
  .img-text-section__content.large-pad,
  .section {
    padding: calc(var(--vertical-gutter) * 2) var(--horizontal-gutter);
  }
  .img-text-section__content.small-content > * {
    width: 100%;
  }
  .hero-banner > h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 10vw;
  }
  #heroBannerService {
    display: block !important;
  }
  .section-action-btn {
    padding: 6px 24px;
  }
}
