/* https://coolors.co/19535f-94a187-ffb30f-95190c-bea7e5 */

:root {
  --body: #666666;
  --primary: #29535e;
  --primary: #114958;
  --green: #96a088;
  --yellow: #e3ff21;
  --lilac: #f4c8ff;
  --pink: #ff80cc;
  --purple: #b956ff;
  --brown: #875635;
  --heading: "Koulen", cursive;
}

body {
  font-family: "Nunito Sans", sans-serif;

  margin: 0;

  padding: 0;
  font-size: 18px;
  color: var(--body);

  font-weight: 200;
}

a {
  color: var(--body);
}

ul.nolist {
  margin: 40px 0;
  padding: 0;
  list-style-type: none;
}

h1 {
  font-size: 48px;
  line-height: 55px;

  text-align: center;

  color: var(--primary);
  font-weight: 600;
  margin: 0 0 0.5em 0;
  font-family: var(--heading);
}

.holder.left h1 {
  text-align: left;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 1.5em 0;
  font-family: var(--heading);
}

h3 {
  font-size: 25px;
  font-weight: 600;
  font-family: var(--heading);
  margin: 0 0 0.5em 0;
}

h4 {
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 0.5em 0;
}

input,
textarea,
select {
  border-radius: 4px;
  font-family: Arial;
  font-size: 20px;
  line-height: 30px;
  padding: 5px 10px;
  display: inline-block;
  margin: 10px;
  border: 0;
}

.top-bar {
  position: fixed;
  padding: 10px 0;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 1000;
  background-color: #000000;
}

.top-bar .mobile-logo {
  display: none;
}

.home .top-bar {
  background: rgba(0, 0, 0, 0.6);
}

.top-bar .logo img,
.top-bar .logo svg {
  height: 75px;
  width: auto;
  display: inline-block;
  fill: var(--brown);
}

.home .top-bar .logo svg {
  fill: #ffffff;
}

.top-bar nav {
}

.top-bar nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  text-align: center;
}

.top-bar nav ul li {
  display: inline-block;
  width: 15%;
  text-align: center;
  height: 75px;
  vertical-align: top;
  position: relative;
}

.top-bar nav ul li:not(.logo) a {
  font-size: 30px;
  text-transform: uppercase;
  color: #ffffff;
  display: block;
  line-height: 30px;
  padding-top: 27px;
  text-decoration: none;
  font-weight: 400;
  font-family: var(--heading);
}

.home .top-bar nav ul li:not(.logo) a {
  /*color:  #000000;*/
}

.top-bar nav ul li.sub-nav a span {
  display: none;
}

.top-bar nav ul li > ul {
  display: none;
  position: absolute;
  background: #999999;
  top: 100%;
  padding: 10px 0;
  left: 50%;
  transform: translateX(-50%);
}

.top-bar nav ul li:hover > ul {
  display: block;
}

.top-bar nav ul li > ul li {
  display: block;
  width: auto;
  height: auto;
}

.top-bar nav ul li > ul li a {
  padding: 10px 20px !important;
  line-height: 35px;
  white-space: nowrap;
}

.menu__btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 1;
  display: none;
}
.menu__btn > span,
.menu__btn > span::before,
.menu__btn > span::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  transition-duration: 0.25s;
}
.menu__btn > span::before {
  content: "";
  top: 10px;
}
.menu__btn > span::after {
  content: "";
  top: 20px;
}

.menu__btn.active > span {
  top: 8px;
  transform: rotate(45deg);
}
.menu__btn.active > span::before {
  top: 0px;
  transform: rotate(0deg);
}
.menu__btn.active > span::after {
  top: 0px;
  transform: rotate(90deg);
}

header {
  padding-top: 95px;
  height: 50vh;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

header.no-height {
  height: auto;
}

.home header {
  padding-top: 0px;
  height: 100vh;
}

header .cycle-slideshow {
  width: 100%;
  height: 100%;
  display: block;
}

header .cycle-slideshow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header .strapline {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: rotate(-4deg) translate(-50%, -50%);
  font-family: var(--heading);
  font-size: 90px;
  color: #ffffff;
  opacity: 0.8;
  line-height: 1.1em;
  white-space: nowrap;
}

header > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

header.top-img > img {
  object-position: center -50px;
}

header > video {
  width: auto;
  height: auto;
  min-height: 100vh;
  min-width: 100vw;
  margin-left: 50vw;
  transform: translate(-50%);
}

header.home .header-video {
  width: 100vw;
  height: 100vh;
}

header.home .header-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-aspect-ratio: 16/9) {
  header.home .header-video iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}

@media (max-aspect-ratio: 16/9) {
  header.home .header-video iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}

.btn {
  background: var(--lilac);
  color: #000000;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 20px;
  font-size: 16px;
  line-height: 30px;
  border-radius: 4px;
  transition: opacity 0.5s ease-in-out;
  display: inline-block;
  font-family: var(--heading);
  letter-spacing: 2px;
}

.btn:hover {
  opacity: 0.7;
}

.b-right {
  float: right;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.holder {
  background: #ffffff;
  padding: 80px 60px;
  text-align: center;
}

.holder.left {
  text-align: left;
}

.products {
  padding: 80px 30px;
  background: url(images/bg-6.jpg);
  background-attachment: fixed;
  box-shadow: inset 0px 11px 8px -10px #bdbdbd,
    inset 0px -11px 8px -10px #bdbdbd;
}

.products h2 {
  color: var(--primary);
  text-align: center;
}

.product-holder {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.product-holder .product,
.product-choose {
  background: #ffffff;
  padding: 30px;
  border-radius: 5px;
}

.p-gallery {
  width: calc(100% + 60px);
  margin-top: -30px;
  margin-left: -30px;
  height: auto;
  position: relative;
}

.p-gallery .coming-soon {
  position: absolute;
  background: rgba(255, 255, 255, 0.7);
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  display: grid;
  align-items: center;
  text-align: center;
}

.p-gallery .coming-soon span {
  color: var(--body);
  font-family: var(--heading);
  font-size: 40px;
}

.p-gallery .main {
  width: 100%;
  height: auto;
  display: block;
}

.p-gallery .p-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 10px 0 20px 0;
}

.p-gallery .p-thumbs img {
  width: 100%;
  display: block;
  cursor: pointer;
}

.clear {
  line-height: 0px;
  height: 0px;
  display: block;
  clear: both;
}

.banner {
  position: relative;
}

.banner img {
  display: block;
  width: 100%;
  height: auto;
}

.banner .overlay {
  position: absolute;
  right: 0px;
  top: 0px;
  bottom: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 35%;
  color: #ffffff;
  font-size: 20px;
  padding: 20px 40px;
  background: rgb(41, 83, 94);
  background: linear-gradient(
    90deg,
    rgba(41, 83, 94, 0) 0%,
    rgba(41, 83, 94, 1) 11%,
    rgba(41, 83, 94, 1) 100%
  );
}

.banner .overlay h3 {
  color: #ffffff;
}

.more-story {
}

.story-more {
  display: none;
}

.panels {
  margin-top: 60px;
}

.panels .panel {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  background-size: 70% auto;
  background-position: right top;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.panels .panel:nth-child(odd) {
  background-position: left top;
  background-color: #a5b5b9;
}

.panels .panel .overlay {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  box-shadow: 0px 0px 5px #c9c9c9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  width: 60%;
  z-index: 500;
}

.panels .panel:nth-child(odd) .overlay {
  left: auto;
  right: 10%;
}

.panels .panel img {
  position: absolute;
  top: 0px;
  right: 0px;
}

.video {
  background-color: var(--lilac);
  padding: 60px 0;
  text-align: center;
}

.video video,
.video .video-frame {
  width: 640px;
  max-width: 90%;
  border: 10px solid #ffffff;
  box-shadow: 0px 0px 5px #999;
  margin: 20px;
  display: inline-block;
}

.video .video-frame iframe {
  width: 100%;
  height: auto;
  min-height: 300px;
  margin: 0;
  display: block;
  aspect-ratio: 16/9;
}

.contact {
  background: var(--primary);
  padding: 0;
  color: #ffffff;
  box-shadow: inset 0px 11px 8px -10px #363636,
    inset 0px -11px 8px -10px #363636;
}

.contact .holder {
  background: none;
}

.contact .holder h2 {
  color: #ffffff;
}

.contact a {
  text-decoration: none;
  color: #ffffff;
}

.more-trees {
  background-color: #ebf0ea;
  padding: 30px 0;
  text-align: center;
}

.more-trees .holding {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

.more-trees iframe {
  width: 100%;
  margin: 30px 0;
  border-top: 1px solid #b9b9b9;
  border-bottom: 1px solid #b9b9b9;
}

.signs {
  display: block;
  margin: 40px 0;
  padding: 0;
}

.signs li {
  display: inline-block;
  width: 27%;
  margin: 0 20px;
  aspect-ratio: 1/1;
  min-height: 150px;
  background-color: #000000;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.signs li a {
  display: grid;
  height: 100%;
  align-content: center;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 0 #ffffff;
  transition: text-shadow 0.4s ease-in-out;
}

.signs li:hover a {
  text-shadow: 0 0 5px #000000;
}

.signs li img {
  position: absolute;
  z-index: 1;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

.signs li:hover img {
  transform: scale(1.4) rotate(5deg);
  opacity: 0.6;
}

.signs li h3 {
  margin: 0;
}

.icon-holder {
  background-color: #e1cfc3;
  padding: 80px 0 40px 0;
}

.icons {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  text-align: left;
  align-content: center;
  max-width: min(80%, 700px);
  margin: 40px auto;
}

.icons.first {
  margin-top: 0px;
}

.icons > div:first-child {
  text-align: center;
  position: relative;
}

.icons > div:first-child:before {
  display: block;
  content: "";
  position: absolute;
  background: var(--lilac);
  width: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  z-index: 1;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100%;
}

.icons > div:first-child img {
  width: 100px;
  position: relative;
  z-index: 10;
}

.icons > div {
  font-weight: 400;
}

.icons h3 {
  color: var(--primary);
}

.insta,
.email,
.facebook {
  line-height: 40px;
  font-family: var(--heading);
}

.insta span,
.email span,
.facebook span {
  width: 40px;
  height: 40px;
  display: inline-block;
  color: #000000;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: var(--lilac);
  margin-right: 5px;
}

.mission-holder {
  background: var(--primary);
}

.mission-holder .holder {
  background: transparent;
  color: #ffffff;
  padding: 80px 0px;
}

.mission-holder h3.title {
  color: #ffffff;
  margin-bottom: 80px;
}

.mission {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-content: center;
}

.mission > div {
  text-align: center;
}

.mission > div i {
  font-size: 90px;
  margin-bottom: 10px;
  --fa-primary-color: var(--lilac);
  --fa-secondary-color: #ffffff;
}

.mission > div h3 {
  font-family: var(--heading);
  font-size: 25px;
  letter-spacing: 2px;
}

.mission > div span {
  /*font-size:  14px;*/
}

.img-holder {
  padding: 10px;
  background: #ffffff;
  box-shadow: 0 2px 5px #818181;
  max-width: 300px;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
}

.img-holder.right {
  float: right;
  margin-left: 20px;
  margin-top: 20px;
  transform: rotate(4deg);
}

.img-holder.left {
  float: left;
  margin-right: 20px;
  margin-top: 20px;
  transform: rotate(-4deg);
}

.img-holder img {
  width: 100%;
  display: block;
  margin-bottom: 10px;
  height: auto;
}

.centered-img {
  text-align: center;
  padding: 20px 0;
}

.centered-img > * {
  display: inline-block;
  margin: 0 20px;
  max-width: 40%;
}

.mailing {
  max-width: 600px;
  padding: 20px;
  margin: 40px auto 40px auto;
}

@media only screen and (max-width: 950px) {
  .top-bar nav ul li a {
    font-size: 16px;
  }

  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    font-size: 28px;
    line-height: 35px;
  }

  h3,
  h4 {
    font-size: 20px;
    line-height: 28px;
  }

  header .strapline {
    font-size: 60px;
  }
}

@media only screen and (max-width: 600px) {
  .menu__btn {
    display: block;
    z-index: 1500;
  }

  header {
    height: 30vh;
    padding-top: 64px;
  }

  header > video {
    width: auto;
  }

  header .strapline {
    font-size: 45px;
    line-height: 68px;
    white-space: normal;
  }

  .top-bar {
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
  }

  .top-bar .mobile-logo {
    display: block;
    height: 100%;
  }

  .top-bar .mobile-logo svg {
    fill: #ffffff;
    height: 100%;
    margin-left: 10px;
  }

  .top-bar nav > ul {
    display: none;
    position: fixed;
    right: 0px;
    top: 63px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 1000;
    width: 100%;
    padding: 20px 0;
  }

  .top-bar nav.open > ul {
    display: block;
  }

  .top-bar nav ul {
    margin: 0;
  }

  .top-bar nav ul li {
    display: block;
    width: auto;
    padding: 0 20px;
    height: auto;
  }

  .top-bar nav ul li.logo {
    display: none;
  }

  .top-bar nav ul li a {
    text-align: right;
    line-height: 40px;
    color: #000000 !important;
  }

  .top-bar nav ul li:hover > ul {
    display: block;
  }

  .top-bar nav ul li.sub-nav a span {
    display: block;
    float: left;
    width: 50px;
    text-align: center;
  }

  .top-bar nav ul li:hover > ul {
    display: none;
  }

  .top-bar nav ul li > ul {
    position: relative;
    left: auto;
    top: auto;
    background: rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    transform: none;
    margin-top: 10px;
    margin-left: -20px;
    margin-right: -20px;
  }

  .top-bar nav ul li > ul li a {
    padding: 10px 0 !important;
    font-size: 25px !important;
  }

  h1 {
    font-size: 35px;
    line-height: 40px;
  }

  h2 {
    font-size: 28px;
    line-height: 35px;
  }

  h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .holder {
    padding: 30px 20px;
  }

  .rounded {
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
  }

  .products {
    background-attachment: scroll;
    padding: 30px 20px;
  }

  .product-holder {
    grid-template-columns: 1fr;
  }

  .product-holder .product {
  }

  .panels .panel {
    min-height: auto;
    padding: 60px 0;
    background-attachment: scroll;
    background-size: 90% auto;
  }

  .panels .panel .overlay {
    position: relative;
    margin: 20px;
    width: auto;
    left: auto;
    top: auto;
    right: auto !important;
    transform: translateY(0);
  }

  .banner .overlay {
    position: relative;
    width: auto;
    background: rgb(41, 83, 94);
  }

  .more-trees iframe {
    height: 205px;
  }

  .signs li {
    width: 100%;
    margin: 10px 0;
  }

  .icon-holder {
    padding: 80px 20px 40px 20px;
  }

  .img-holder.right,
  .img-holder.left {
    float: none;
    margin: 20px 0px;
    /*transform: rotate(4deg);*/
  }

  .centered-img > * {
    max-width: 100%;
    margin: 20px 0;
  }

  .mission {
    grid-template-columns: 1fr;
    height: auto;
  }

  .icons {
    margin: 40px 0;
    max-width: 100%;
  }

  .video video,
  .video .video-frame {
    margin: 10px 0;
    min-height: 180px;
  }

  .video .video-frame iframe {
    min-height: 180px;
  }

  header.top-img > img {
    object-position: center center;
  }
}
