* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    --primary-color: #3a3f44; /*slate*/
    --secondary-color: #c2de45; /*acid lime*/
    --alternative-color: #b2b2b3; /*gunther grey*/
    --nav-color: var(--primary-color);
    --secondary-tint: #e4f0a9;
    --main-background: #ffffff;
    --heading-colour: #95ab35;
    --alternate-background: #414552;
    --light-background: #f4f4f4;
    --small-heading-colour: #c5e043;
    --shadow: #eeeeee;
    --light-text: #e5e5e5;
    --secondary-heading: #616775;
}
/*
* {
  outline: 1px solid #f00 !important;
}
*/
:root{
  --100vw: 100vw;
  --px-width: calc(10000 * tan(atan2(var(--100vw), 10000px)));
  --screen-size: calc(var(--100vw) / 1920);
  --box-height: calc(var(--screen-size) * 600px);
  --test: calc(100 / 5);
}
body, html {
  height: 100%;
  width: 100vw;
  margin: 0 auto;
  color: var(--primary-color);
  background: var(--main-background);
  line-height: 1.8;
  font-size: 1rem;
  font-family: "Source Sans 3", sans-serif;
}
body{
  max-width: 1920px;
}
h1,h2,h3,h4,h5,h6 {
  font-family: "Orbitron", sans-serif;
}
h1,h2{
   color: var(--heading-colour);
  font-weight: 400;
}
section {
  display: flex;
  flex-direction: column;
  padding: 2em 1em;
}
.top-strip{
    background-color: var(--secondary-color);
}
.logo img{
  height: 65px;
  padding: .5em 1em;
}
section.intro, section.partner_intro, section.blog_title{
    background-color: var(--alternate-background);
}
section.partner_text{
  background-color: var(--main-background);
}
section.partner_text p,section.partner_text li, section.our-story p,section.our-story li{
  color: var(--primary-color);
}
section.intro .section-content:first-child > p{
    background-color: var(--secondary-color);
}
section.intro .section-content.html, section.partner_intro .section-content.html{
  color: var(--main-background);
}
section.intro h2{
    color: var(--main-background);
}
section.partners{
    background-color: var(--light-background);
    }
section.signup{
    background-color: var(--secondary-color);
    color: var(--secondary-heading);
}
section.team{
  background-color: var(--light-background);
}
section.banner{
  padding: 0;
  display: block;
}
section.banner img{
  border-radius: 0 !important;
}
section.partner_logo{
  padding-right: clamp(1em, calc((100% - 1280px) * .6) ,20%);
  justify-content: center;
}
h3{
  font-size: clamp(1rem, 1vw, 1.5rem);
}
p{
  margin-bottom: 1rem;
}
footer{
  background-color: var(--alternate-background);
  color: var(--main-background);
}
footer a{
  color: var(--main-background);
  text-decoration: none;
}
section.navigation ul:not(.dropdown) {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
section.navigation ul li {
  position: relative;
}
section.navigation > ul > li {
  padding: 15px 20px;
}
section.navigation a {
  /*color: var(--alternate-background);*/
  text-decoration: none;
  display: block;
}
section.navigation a:hover {
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /*border: 1px solid rgba(255, 255, 255, 0.3);*/
}
.section-content.image img{
  border-radius: 1em;
}
.gunther-background{
  background-image: url('/gunther/images/background-repeat.png');
  background-repeat: repeat;
  background-position: center center;
  margin-top: 2em;
}
figure.post img{
  border-radius: 1em;
  margin: auto;
}
.centre{
  justify-content: center !important;
}
.full{
  flex-basis: 75% !important;
}
.full img{
  border-radius: 0 !important;
}
/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 180px;
  top: 100%;
  left: 0;
  flex-direction: column;
  z-index: 999;
}
.dropdown li {
  width: 100%;
}
.dropdown li a {
  padding: 10px 15px;
}
/* 3rd level dropdown */
.dropdown .dropdown {
  list-style-type: none;
  left: 100%;
  top: 0;
}
/* Show dropdown when active */
.show {
  display: flex;
}
li:not([data-level]):hover > ul{
  display: flex;
}
/* Hamburger Menu for mobile */
.menu-toggle {
    display:none;
    flex-direction:column;
    cursor:pointer;
    gap:4px;
    padding:8px;
  }
  .menu-toggle span {
    display:block; 
    width:26px; 
    height:3px; 
    background: var(--alternate-background); 
    border-radius:2px;
  }
  section.partner_intro .section-content.heading h2{
    margin: 0;
  }
/* Responsive Styles */
@media (max-width: 768px) {
  section.navigation ul {
    flex-direction: column;
    display: none;
    width: 100%;
  }
  section.navigation ul.active {
    display: flex;
  }
  section.navigation > ul > li {
    width: 100%;
    padding: 5px 20px;
  }
  section.navigation a{
    background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  }
  section.navigation a:visited, section.navigation a:active {
    color: var(--alternate-background);
  }
  .dropdown {
    position: static;
    display: none;
    width: 100%;
  }
  .dropdown.show {
    display: flex;
  }
  .menu-toggle { display:flex; }
  section.navigation li.has-dropdown:hover ul, section.navigation li.has-dropdown:active ul{
    display: flex;
  }
}
/* Indicate submenu */
.has-dropdown > a::after {
  content: " \25BC";
  font-size: 0.7em;
}
.has-dropdown .has-dropdown > a:after{
  content: " \25BA";
}
.form-error{
    display: none;
}
.ml-form-embedWrapper.embedForm{
  background: transparent !important;
}
.ml-form-embedWrapper.embedForm h4{
  display: none;
}
.ml-form-embedWrapper.embedForm .ml-form-embedSubmit button.primary{
  background-color: var(--alternate-background) !important;
}
.partner-top-bar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, var(--alternate-background) 0%, white 100%);
    padding: 0 0 0 10%;
    height: 31vw;
  }
  .section-content.green-top p:first-of-type{
      border-top: 3px solid var(--secondary-color);
      padding-top: 1em;    
    }
    .section-content.green-bottom p:last-of-type{
      border-bottom: 3px solid var(--secondary-color);
      padding-bottom: 1em;    
    }
  .bio, .blog{
    color: var(--light-text);
    font-size: clamp(1em, 1vw, 1.25em);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--alternate-background);
    color: var(--secondary-color);
    border-radius: 1em;
  }
  .blog h3{
    flex-grow: 1;
  }
  .bio a, .blog a{
    color: var(--secondary-color);
    text-align: center;
  }
  .bio img{
    object-fit: cover;
    height: 300px;
    width: 100%;
  }
  .gallery, .downloads{
    display: grid;
  }
  .download{
  background: var(--alternate-background);
  border: 1px solid var(--alternate-background);
}
.download a{
  color: var(--secondary-color);
}
.download figure{
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}
img{
  max-width: 100%;
  display: block;
}
.top-bar img{
  border-radius: 0 !important;
}
section:has(.section-content.watermark){
position: relative;
}
section:has(.section-content.watermark) .section-content:not(.watermark){
z-index: 2;
}
.section-content.watermark{
  position: absolute;
  bottom: 0;
  right:0;
  z-index: 0;
}
section.signup .section-content.watermark{
  left: 0
}
section.signup .section-content.watermark p{
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
  color: rgba(194, 222, 69,1);
}
@media all and (min-width: 1281px) {
    section {
  flex-direction: row;
}
.section-content.html ul{
  margin: 1em 0;
  list-style-type: disc;
}
.section-content.html ul li{
  margin-left: 1em;
}
h1,h2{
  font-size: 3.125rem;
  margin-bottom: 1em;
}
img{
  max-width: 100%;
  display: block;
}
section.navigation {
  background: var(--main-background);
  padding: 0;
  width: 60%;
  margin: 0 20%;
  position: absolute;
  top: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: .5em;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.menu > ul > li {
  padding: 20px 15px;
}
li a{
  color: var(--alternate-background);
  font-size: 1.4em;
}
  header{
    position: relative;
  }
  header img{
    display: block;
    position: relative;
    max-width: 100%;
  }
  .top-strip{
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: .5em 20%;
  }
  .top-strip p{
    font-size: 1.3em;
    margin: 0;
  }
  .top-bar{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 0;
  }
  .top-bar .tel{
    font-size: 2em;
    padding: 0 1em;
  }
  .partner-top-bar .image:nth-child(2) img{
    position: unset;
    max-width: unset;
    max-height: 31vw;
  }
    section{
    padding: 5em 0 5em 20%;
    }
    section h1:first-child, section h2:first-child, footer h2:first-child{
    text-align: left;
    } 
    /* Partners */
    section.partners{
    display: block;
    color: #fff;
    padding-left: 20%;
    padding-right: 0;
    }
    section.intro{
        flex-direction: column;
        padding-bottom: 2em;
    }
    section.intro .section-content:first-child > p{
    font-size: 1.8em;
    margin: 0;
    width: fit-content;
    }
    section.partner_intro{
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between;
      padding-right: 20%;
    }
    section.partner_intro .section-content.html p{
      color: var(--main-background);
      font-size: 1.4em;
      margin: 0;
    }
    section.partner_intro .section-content.heading p{
      font-size: 1.8em;
      width: fit-content;
      color: var(--secondary-heading);
      background-color: var(--secondary-color);
    }
    section.partner_intro .section-content.image img{
      border-radius: 1em;
    }
    section.partner_text{
      padding-right: 20%;
      color: var(--main-background);
      font-size: 1.3em;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 1em;
      padding-bottom: 2.5em;
      padding-top: 2.5em
    }
    section.partner_text .section-content.html{
      flex-basis: 55%;
    }
    section.partner_text .section-content.image{
      flex-basis: 40%;
    }
    section.partner_images{
      padding-right: 20%;
      align-items: center;
    }
    section.partner_images img{
      max-width: 100%;
      object-fit: cover;
    }
    section.partner_images {
      display: grid;
      grid-template-columns: 1fr 1fr; /* two columns */
      grid-auto-rows: auto;           /* rows grow as needed */
      gap: 1rem;
    }
    /* child1: column 1, row 1 only */
    section.partner_images > :nth-child(1) {
      grid-column: 1;
      grid-row: 1 /3;
    }
    /* child2: column 2, row 1 */
    section.partner_images > :nth-child(2) {
      grid-column: 2;
      grid-row: 1;
    }
    /* child3: column 2, row 2 */
    section.partner_images > :nth-child(3) {
      grid-column: 2;
      grid-row: 2;
    }

    section.about{
        flex-direction: column;
    margin-top: -15em;
    background-color: var(--main-background);
    padding-top: 20em;
    }
    section.about .section-content:nth-child(2){
    display: flex;
    justify-content: space-between;
    gap: 5%;
    width: 75%;
    aspect-ratio: 1.7;
    }
    section.about .section-content p{
    font-size: 1.45em;
    padding: .5em;
    }
    section.about .section-content:nth-child(2) p:first-child{
    border-top: 3px solid var(--secondary-color);
    align-self: flex-start;
    }
    section.about .section-content:nth-child(2) p:nth-child(2){
    border-bottom: 3px solid var(--secondary-color);
    align-self: flex-end;
    }
    section:has(.slider){
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    width: 75%;
    }
    section:has(.slider) .section-content:first-child{
        width: 30%;
    }
    section:has(.slider) p{
    font-size: 1.45em;
    padding: .5em;
    border-top: 3px solid var(--secondary-color);
    }
    section:has(.card.horizontal), section:has(.card.rounded){
    display: flex;
    justify-content: center;
    background: linear-gradient(white,orange);
    }
    section:has(.testimonials){
        display: block;
    text-align: center;
    background-color: var(--light-background);
    position: relative;
    }
    section:has(.card.standard){
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    }
    section:has(.services){
        display: block;
    padding-bottom: 10em;
    }
    section.signup{
    padding-right: 25%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    }
    section.signup .section-content:first-child{
    position: absolute;
    top: 5em;
    left: 25%;
    /*width: 100%;*/
    }
    section.signup .section-content:not(:first-child):not(.watermark){
    margin-top: 8em;
    }
    section.signup h2{
    color: var(--secondary-heading);
    text-decoration: underline;
    }
    .section-content.hero{
    background-color: transparent;
    width: 75%;
    position: relative;
    aspect-ratio: 2.15;
    }
    .section-content.hero figcaption{
    /*z-index: 2;*/
    position: absolute;
    right: 0;
    width: 58%;
    height: 90%;
    top: 5%;
    color: var(--light-text);
    background-color: var(--alternate-background);
    opacity: .7;
    padding: 1em;
    font-size: 1.5vw;
    border-top: 3px solid var(--secondary-color);
    }
    .section-content.hero img{
    width: 62.5%;
    border-radius: 1em;
    position: absolute;
    left: 0;
    border-left: 3px solid var(--secondary-color);
    }
    section.partner_intro .section-content.heading h2{
    margin: 0;
  }
  section.our-story{
    padding-right: clamp(1em, calc((100% - 1280px) * .6) ,20%);
    align-items: flex-start;
    column-gap: 5em;
    flex-wrap: wrap;
    background-image: url('/gunther/images/our-story.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 75%;
    font-size: 1.3em;
  }
  section .section-content:first-child:has(h1,h2,h3){
    width: 100%;
  }
  section.partner_text .section-content.image{
    width: 45%;
  }
  section.our-story .section-content:first-child:has(h1,h2,h3){
    width: 100%;
  }
  section.our-story .section-content:not(.heading){
    width: 45%;
  }
  section.blog_title{
    padding-top: 10em;
    padding-right: clamp(1em, calc((100% - 1280px) * .6) ,20%);
  }
  section.blog_title :is(h1,h2,h3){
    text-wrap: balance;
  }
    .slider{
  width: 70%;
}
    .logos{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 75%;
}
.logos figure{
  width: 20%;
}
.logos img{
  max-width: 100%;
}
/*
.services{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  margin-top: 5em;
  width: 75%;
}
*/
.services {
    width: 75%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* three columns */
    grid-auto-rows: auto;           /* rows grow as needed */
    gap: 2rem;
    row-gap: 5em;
  }
  /*
  .services > :nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .services > :nth-child(2) {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }
  .services > :nth-child(3) {
    grid-column: 3;
    grid-row: 1;
  }
  .services > :nth-child(4) {
    grid-column: 1;
    grid-row: 2;
  }
  .services > :nth-child(5) {
    grid-column: 3;
    grid-row: 2;
  }
  */  
.card{
  /*width: 30%;*/
}
.testimonials{
  /*
  display: flex;
  justify-content: center;
  align-content: space-between;
  */
  width: 75%;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.testimonial_inner{
  display: flex;
  justify-content: center;
  align-content: space-between;
  position: absolute;
  top:0;
  /*left: -530px;*/
}
.testimonial_overlay{
  position: absolute;
  top: 0;
  height: 600px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(244,244,244) 0%,
    transparent 20%,
    transparent 80%,
    rgba(244,244,244) 100%);
}
.testimonial {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  /*color: #9e9e9e;*/
  display: inline-block;
  margin: 2px 10px;
  width: 40vw;
  aspect-ratio: 1.24;
  position: relative;
  text-align: left;
  background-color: var(--main-background);
  border-radius: 5px;
  padding-left: 5em;
}
.testimonial *,
.testimonial *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.testimonial figcaption {
  padding: 13% 0;
  background-color: transparent;
}
.testimonial figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  color: var(--secondary-color);
  content: "\f10e";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  font-size: 32px;
  font-style: normal;
  left: 1.5em;
  line-height: 60px;
  position: absolute;
  top: 2em;
  width: 60px;
}

.testimonial h3 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--secondary-color);
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 24px;
}

.testimonial h4 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--secondary-color);
  font-size: .9vw;
  font-weight: 400;
}

.testimonial p {
  font-size: 1.3vw;
  flex-grow: 1;
  border-top: 3px solid var(--secondary-color);
  text-align: left;
  padding-right: 1em;
}
.testimonial figcaption{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial figcaption h3, .testimonial figcaption h4{
  justify-self: flex-end;
}
.nav-btns{
  width: 75%;
}
footer{
  background-color: var(--alternate-background);
  color: var(--main-background);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1em;
  padding: 0;
}
footer section{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5em 25% 5em 20%;
}
footer .section-content:last-child{
  min-width: 100%;
  text-align: center;
  margin-top: 2em;
}
footer .section-content:nth-child(3){
  min-width: 20%;
}
.gunther{
  background-color: var(--main-background);
  background-image: url('/gunther/images/guenther.png');
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 75%;
}
.bios{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 3em;
  row-gap: 5em;
}
.bios .bio, .bios .blog{
  width: 30%;
}
.bio figure, .bio figure img, .blog figure, .blog figure img{
  border-top-left-radius: 1em;
   border-top-right-radius: 1em;
}
.blog figure img{
  aspect-ratio: 1.777;
  object-fit: cover;
}
.bio h3, .blog h3{
  text-wrap: balance;
  text-align: center;
}
.bio h3, .bio p, .blog h3, .blog p{
  padding: .5em;
  font-weight: 400;
}
.gallery{
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  align-items: center;
}
.gallerypic figure{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--heading-colour);
  border-radius: 1em;
  justify-content: space-between;
  align-items: stretch;
}
.gallerypic figure img{
  border-bottom-left-radius: 1em;
  border-bottom-right-radius: 1em;
  max-width: 100%;
  object-fit: cover;
}
.gallerypic figure figcaption{
  color: var(--heading-colour);
  font-style: italic;
  font-weight: bold;
  text-align: center;
}
.downloads{
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  align-items: center;
}
.section-content.watermark p{
  color: rgba(194, 222, 69,.3);
  font-family: Orbitron;
  font-size: 7em !important;
  line-height: 1;  
  width: 100%;
  padding: 0 !important;
}
.list.logos figure:first-child{
  min-width: 245px;
}
}
@media all and (min-width: 769px) and (max-width: 1280px) {
  section {
    flex-direction: row;
  }
  h1, h2{
    font-size: 3.125rem;
    margin-bottom: 1em;
  }
section.navigation {
  background: var(--main-background);
  padding: 0;
  width: 80%;
  margin: 0 10%;
  position: absolute;
  top: 5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: .5em;
  background: rgba(255, 255, 255, 0.43);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}
  .menu > ul > li {
    padding: 20px 20px;
  }
li a{
  color: var(--alternate-background);
  font-size: 1.4em;
}
  header{
    position: relative;
  }
  header img{
    display: block;
    position: relative;
  }
  .top-strip{
    display: flex;
    align-content: center;
    justify-content: space-between;
    padding: .5em 10%;
  }
  .top-strip p{
    font-size: 1.3em;
    margin: 0;
  }
  .top-bar{
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 0;
  }
  .top-bar .tel{
    font-size: 2em;
    padding: 0 1em;
  }
  .partner_text{
    padding: 5em 5% 0 10%;
    font-size: 1.1em;
    gap: 1em;
    flex-wrap: wrap;
  }
  section.partner_text .section-content.image{
    width: 42.5%;
  }
  section.partner_text .section-content.html{
    width: 52.5%;
  }
  section{
    padding: 5em 0 5em 10%;
    }
    section h1:first-child, section h2:first-child, footer h2:first-child{
    text-align: left;
    } 
    /* Partners */
    section.partners{
    display: block;
    color: #fff;
    padding-left: 10%;
    padding-right: 0;
    }
    section.intro{
        flex-direction: column;
    padding-bottom: 0;
    }
    section.intro .section-content:first-child > p{
    font-size: 1.8em;
    margin: 0;
    width: fit-content;
    }
    section.about{
        flex-direction: column;
    margin-top: -15em;
    background-color: var(--main-background);
    background-image: url('/gunther/images/about-us.png');
    background-repeat: no-repeat;
    background-position: 0 22em;
    background-size: 50%;
    padding-top: 20em;
    }
    section.about .section-content:nth-child(2){
    display: flex;
    justify-content: space-between;
    gap: 5%;
    width: 85%;
    aspect-ratio: 2.2;
    }
    section.about .section-content p{
    font-size: 1.45em;
    padding: .5em;
    }
    section.about .section-content:nth-child(2) p:first-child{
    border-top: 3px solid var(--secondary-color);
    align-self: flex-start;
    }
    section.about .section-content:nth-child(2) p:nth-child(2){
    border-bottom: 3px solid var(--secondary-color);
    align-self: flex-end;
    }
    section:has(.slider){
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    width: 85%;
    }
    section:has(.slider) .section-content:first-child{
        width: 40%;
    }
    section:has(.slider) p{
    font-size: 1.45em;
    padding: .5em;
    border-top: 3px solid var(--secondary-color);
    }
    section:has(.card.horizontal), section:has(.card.rounded){
    display: flex;
    justify-content: center;
    background: linear-gradient(white,orange);
    }
    section:has(.testimonials){
        display: block;
    text-align: center;
    background-color: var(--light-background);
    position: relative;
    }
    section:has(.card.standard){
    display: flex;
    flex-wrap: wrap;
    gap: 3em;
    }
    section:has(.services){
      display: block;
      padding-bottom: 10em;
    }
    section.signup{
    padding-right: 10%;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: flex-end;
    }
    section.signup .section-content:first-child{
    position: absolute;
    top: 5em;
    /*width: 100%;*/
    }
    section.signup .section-content:not(:first-child){
    margin-top: 8em;
    }
    section.signup .section-content:nth-child(2){
    margin-left: 5em;
    }
    section.signup h2{
    color: var(--secondary-heading);
    text-decoration: underline;
    }
    section.our-story{
    align-items: flex-start;
    column-gap: 5em;
    flex-wrap: wrap;
    background-image: url('/gunther/images/our-story.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 50%;
    font-size: 1em;
  }
  section .section-content:first-child:has(h1,h2,h3){
    width: 100%;
  }
  section.our-story .section-content:first-child{
    width: 100%;
  }
  section.our-story .section-content:nth-child(n+2){
    width: 40%;
  }
    .section-content.hero{
    background-color: transparent;
    width: 85%;
    position: relative;
    aspect-ratio: 2.35;
    }
    .section-content.hero figcaption{
    /*z-index: 2;*/
    position: absolute;
    right: 0;
    width: 58%;
    height: 90%;
    top: 5%;
    color: var(--light-text);
    background-color: var(--alternate-background);
    opacity: .7;
    padding: 1em;
    font-size: 1.9vw;
    border-top: 3px solid var(--secondary-color);
    }
    .section-content.hero img{
    width: 60%;
    border-radius: 1em;
    position: absolute;
    left: 0;
    border-left: 3px solid var(--secondary-color);
    }
    .section-content.watermark p{
      font-size: 5em;
      line-height: 1;
    }
    .slider{
  width: 60%;
}
    .logos{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 85%;
}
.logos figure{
  width: 20%;
}
.logos img{
  max-width: 100%;
}
.services{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 5em;
  width: 85%;
  gap: 5em;
}
.card{
  width: 40%;
}
.testimonials{
  /*
  display: flex;
  justify-content: center;
  align-content: space-between;
  */
  width: 85%;
  height: 600px;
  overflow: hidden;
  position: relative;
}
.testimonial_inner{
  display: flex;
  justify-content: center;
  align-content: space-between;
  position: absolute;
  top:0;
  /*left: -530px;*/
}
.testimonial_overlay{
  position: absolute;
  top: 0;
  height: 600px;
  width: 100%;
  background: linear-gradient(
    to right,
    rgba(244,244,244) 0%,
    transparent 20%,
    transparent 80%,
    rgba(244,244,244) 100%);
}
.testimonial {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  /*color: #9e9e9e;*/
  display: inline-block;
  margin: 2px 10px;
  width: 40vw;
  aspect-ratio: 1.24;
  position: relative;
  text-align: left;
  background-color: var(--main-background);
  border-radius: 5px;
  padding-left: 5em;
}
.testimonial *,
.testimonial *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.testimonial figcaption {
  padding: 13% 0;
  background-color: transparent;
}
.testimonial figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  color: var(--secondary-color);
  content: "\f10e";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  font-size: 32px;
  font-style: normal;
  left: 1.5em;
  line-height: 60px;
  position: absolute;
  top: 2em;
  width: 60px;
}

.testimonial h3 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--secondary-color);
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 24px;
}

.testimonial h4 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--secondary-color);
  font-size: .9vw;
  font-weight: 400;
}

.testimonial p {
  font-size: 1.3vw;
  flex-grow: 1;
  border-top: 3px solid var(--secondary-color);
  text-align: left;
  padding-right: 1em;
}
.testimonial figcaption{
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial figcaption h3, .testimonial figcaption h4{
  justify-self: flex-end;
}
.nav-btns{
  width: 85%;
}
footer{
  background-color: var(--alternate-background);
  color: var(--main-background);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1em;
  display: flex;
  flex-wrap: wrap;
  padding: 5em 15% 5em 10%;
  justify-content: space-between
}
footer section{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0;
}
footer .section-content:last-child{
  min-width: 100%;
  text-align: center;
  margin-top: 2em;
}
footer .section-content.form{
  width: 100%;
  padding: 0 clamp(5em, 12.5vw, 10em);
}
section.team{
  padding-right: 2em;
  padding-left: 2em;
}
.bios{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  row-gap: 2em;;
}
.bios .bio{
  width: 45%;
}
.bio figure, .bio figure img{
  border-top-left-radius: 1em;
   border-top-right-radius: 1em;
}
.bio img{
  max-width: 100%;
  display: block;
}
.bio h3{
  text-wrap: balance;
  text-align: center;
}
.bio h3, .bio p{
  padding: .5em;
}
.team .bios .blog{
  width: calc(50% - 3em);
}
.team .bios .blog img{
  width: 100%;
  aspect-ratio: 1.777;
  object-fit: cover;
}
.team .bios .blog h3{
  padding: .5em;
}
}
@media all and (min-width: 769px) and (max-width: 1080px) {
  .navigation{
    flex-direction: column;
  }
  .menu > ul > li {
    padding: 10px 10px;
   }
}
/* Team */
.team{
  padding-right: 20%;
}
.team_pic{
  width: 62.5%;
}
.team_pic img{
  border-radius: 1em;
  border-right: 3px solid var(--secondary-color);
  z-index: -1;
}
/*
.team{
  padding: 5em 0;
  margin: 0;
  background-color: var(--secondary-color);
  position: relative;
  text-align: center;
}
.team h2{
  text-decoration-line: underline;
  text-decoration-color: var(--primary-color) !important;
}
*/
.profiles{
  margin: 0 5em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
}
.profiles figure{
  width: 24%;
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
.profiles figure .container{
  position: relative;
}
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0,0,0,0.5);
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}
.overlay .text{
  padding: 1em;
  color: #fff;
}
.container:hover .overlay {
  height: 100%;
}
.profiles img{
  max-width: 100%;
}
.profiles figure figcaption{
  padding: 2em 5em;
  font-size: 1.5em;
}
.card{
  margin: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  height: auto;
  border-radius: 5px;
  box-shadow: #eeeeee 0px 0px 10px;
  position: relative;
}
.card:not(:has(.card-text)){
  padding: 5em 0.5em 0.5em 0.5em;
}
.card figure {
  margin: 0;
  display: flex;
  background-color: var(--alternate-background);
  padding: 1em;
  border-radius: 50%;
  position: absolute;
  top: -4em;
}
.card img{
  width: 100%;
}
.card h3{
  color: var(--small-heading-colour);
  font-weight: 400;
}
.card p{
  font-size: 1.2em;
  text-align: center;
}
.card a{
  background-color: var(--alternative-color);
  color: #fff;
  padding: 1em;
  text-decoration: none;
  text-transform: uppercase;
}
.card.horizontal{
  width: 50%;
  flex-direction: row;
  /*border: 1px solid var(--primary-color);*/
  background-color: #fff;
}
.card.horizontal figure{
  width: 50%;
  margin: 0;
}
.card.horizontal .card-text{
  width: 50%;
  height: 100%;
  padding: 2em;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.card.horizontal img{
  width: auto;
  border-radius: 0% 100% 62% 38% / 100% 0% 100% 0%;
  max-width: 100%;
}
.card.horizontal.reverse{
  flex-direction: row-reverse;
}
.card.horizontal.reverse img{
  border-radius: 0% 100% 0% 62% / 0% 0% 38% 100%;
}
.card.horizontal.reverse .card-text{
  align-items: flex-start;
  text-align: left;
}
.card.rounded{
  width: 50%;
  flex-direction: row;
  border: 1px solid var(--primary-color);
  border-radius: 500px 0px 0px 500px;
  justify-content: space-between;
  background-color: #fff;
}
.card.rounded figure{
  margin: 0;
}
.card.rounded img{
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  width: 200px;
}
.card.rounded .card-text{
  height: 100%;
  padding: 2em;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.card.standard{
  width: 100%;
  flex-direction: row;
}
.card.standard figure{
  width:50%;
  margin: 0;
}
.card.standard .card-text{
  width: 50%;
  height: 100%;
  padding: 2em;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.card.standard .card-text h3{
  font-size: 3em;
  font-weight: bold;
}
.card.standard .card-text h4{
  font-size: 1.5em;
  font-weight: bold;
  color: var(--alternative-color);
}
.card.standard:nth-child(2){
  flex-direction: row-reverse;
}
/*
.banner{
  background-image: url('../images/guenther-banner.webp');
  aspect-ratio: 3.33;
  display: flex;
  margin: 0 -5em;
  position: relative;
}
.banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 3.33;
  background-color: rgba(0, 0, 0, 0.5); 
}
.banner-text{
  color: #fff;
  height: 100%;
  padding: 3em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
}
.banner-text h3{
  font-size: 3em;
  font-weight: bold;
  text-shadow: #111 0 0 10px;
}
.banner-text h4{
  font-size: 1.5em;
  font-weight: bold;
  text-shadow: #111 0 0 10px;
}
.banner-text a{
  background-color: #4183c4;
  color: #fff;
  font-size: 1.25rem;
  padding-inline: 2em;
  padding-block: 0.8em;
  line-height: 1.25;
  border-radius: 999em; 
  text-decoration: none;
}
  */
.section-content form{
  display: flex;
  flex-direction: column;
  gap: .5em;
  min-width: 20em;
}
.section-content form input, .section-content form textarea, .section-content form button{
  width: 100%;
  padding: .5em;
  border-radius: 3px;
  border: none;
}
.section-content form textarea{
  height: 10em;
}
.section-content form button{
  background-color: var(--secondary-color);
  font-family: "Source Sans 3", sans-serif;
}
.section-content:has(.contact) form{
  min-width: 25em;
}
input::placeholder, textarea::placeholder, input:moz-placeholder, textarea:moz-placeholder{
  font-family: "Source Sans 3", sans-serif;
  font-size: 1em
}
.contact form, .contact .details{
  width: 40%;
}
.contact .details{
  width: 20%;
  text-align: left;
}
.stripe-1 {
  background: linear-gradient(
    to top, 
    var(--secondary-color),
    #fff 90%,
    #fff 100%
  );
}
.stripe-5 {
  background: linear-gradient(
    to top, 
    var(--secondary-color),
    var(--secondary-color) 50%,
    #fff 50%,
    #fff
  );
}
/*
section :is(h1,h2,h3,h4,h5,h6):first-of-type{
  background-color: green;
}
*/
/*testimonials*/
.slider__nav{
  /*position: absolute;
  bottom: 0;*/
}
.slider__nav {
  width: 12px;
  height: 12px;
  margin: 0 12px 0 12px;
  border-radius: 50%;
  z-index: 10;
  outline: 6px solid #ccc;
  outline-offset: -6px;
  box-shadow: 0 0 0 0 #333, 0 0 0 0 rgba(51, 51, 51, 0);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.slider__nav:checked {
  outline: 6px solid #000;
}


.fade-overlay {
position: absolute;
top: 0;
bottom: 0;
width: 15%;
pointer-events: none;
}


.fade-left {
left: 0;
background: linear-gradient(to right, rgba(245,245,245,1), rgba(245,245,245,0));
}


.fade-right {
right: 0;
background: linear-gradient(to left, rgba(245,245,245,1), rgba(245,245,245,0));
}
.slides {
  text-align: center;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.6;
  border-radius: 1.5em;
}
/*
.slides {
  display: flex;  
  overflow-x: auto;
  scroll-snap-type: x mandatory;  
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 1em;
}
.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: 400px;
  margin-right: 50px;
  border-radius: 10px;
  background: #eee;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 100px;
}
*/
.slide img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active img{
    opacity: 1;
  }
.slider > a {
 display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--alternative-color);
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}
.slider > a:active {
  /*top: 1px;*/
}
.slider > a:focus {
  background: #000;
}
/* Navigation buttons */
  .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.7);
    border: none;
    cursor: pointer;
    padding: 10px 14px;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bold;
    user-select: none;
    z-index: 10;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }

  .nav-btn:hover {
    background-color: rgba(255,255,255,0.9);
  }

  /* Pagination dots */
  .dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
  }

  .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .dot.active {
    background: white;
  }

  /* Responsive font */
  @media (max-width: 500px) {
    #menu{
      display: none;
    }
    #menu.active{
      display: flex;
    }
    h1, h2{
      font-size: 2.5rem;
      margin-bottom: 0;
      text-align: center;
    }
    .section-content.watermark{
      display: none;
    }
    .slide {
      font-size: 1.5rem;
    }
    .nav-btn {
      padding: 8px 10px;
      font-size: 16px;
    }
    .top-strip p {
      text-align: center;
    }
    .top-strip p:nth-child(2){
        font-weight: bold;
    }
    .top-bar{
        display: none;
    }
    section.navigation{
        padding: .5em;
    }
    section.navigation img{
        max-width: 100%;
}    
section.about{
        padding-bottom: 0;
    }
    section.intro .section-content:first-child > p{
    text-align: center;
    padding: .5em;
    }
    section:has(.slider){
        padding-top: 0;
    }
    .section-content.hero figcaption{
        color: var(--light-text);
        padding: 1em;
        font-size: 1.1em;
        border-top: 3px solid var(--secondary-color);
    }
    .section-content.hero img{
    width: 100%;
    border-radius: 1em;
    }
    .partners h2{
        text-align: center;
    }
    .logos, .services{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .logos figure{
        width: 100%;
        text-align: center;
    }
    .card{
        width: 100%;
        margin: 3em 1em;        
    }
    .card:first-child{
        margin-top: 4em;
    }
    /*
    .card img{
        width: 80%;
        height: 80%;
    }
    */
    .signup img{
        display: none;
    }
    .signup h2{
        color: inherit;
    }
    .signup .section-content:nth-child(3){
        margin-left: -.5em;
    }
    .testimonials{
        width: 100%;
        aspect-ratio: .65;
        overflow: hidden;
        position: relative;
    }
    .testimonial_overlay{
        width: 100%;
        display: none;;
    }
.testimonial_inner{
  display: flex;
  justify-content: center;
  align-content: space-between;
  position: absolute;
  top:0;
  /*left: -530px;*/
}
.testimonial {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  /*color: #9e9e9e;*/
  display: inline-block;
  margin: 2px 5px;
  width: 89vw;
  aspect-ratio: .75;
  position: relative;
  text-align: left;
  background-color: var(--main-background);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding-left: 4em;
}
.testimonial *,
.testimonial *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}
.testimonial figcaption {
  padding: 13% 0;
  background-color: transparent;
}

    .testimonial figcaption:before {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #fff;
  border-radius: 50%;
  color: var(--secondary-color);
  content: "\f10e";
  font-family: 'Font Awesome\ 5 Free';
  font-weight: 900;
  font-size: 1.5em;
  font-style: normal;
  left: 1.5em;
  line-height: 2;
  position: absolute;
  top: 1em;
  width: 2em;
}
    .testimonial h3 {
        font-family: "Source Sans 3", sans-serif;
        color: var(--secondary-color);
        font-size: 1em;
        font-weight: 600;
        line-height: 22px;
    }
.testimonial h4 {
  font-family: "Source Sans 3", sans-serif;
  color: var(--secondary-color);
  font-size: .9em;
  font-weight: 400;
}

.testimonial p {
  font-size: 1.1em;
  padding: .2em;
  flex-grow: 1;
  border-top: 3px solid var(--secondary-color);
  text-align: left;
}
.nav-btns{
  width: 100%;
  text-align: center;
}
    footer{
        padding: 1em;
        text-align: center;
    }
    footer section{
      align-items: center;
    }
    footer p{
        text-wrap: balance;
    }
    .section-content.form{
      width: 100%;
    }
    .section-content:has(.contact) form{
      min-width: unset;
    }
    .team{
      padding-right: 1em;
    }
    .team .bios{
      display: flex;
      flex-direction: column;
      gap: 2em;;
    }
  }
  /* Tablet menu */
@media all and (min-width: 700px) {
  .menu {
    justify-content: center;
    gap: 1em;
  }
}
/* Don't need button navigation */
@supports (scroll-snap-type) {
  .slider > a {
    display: none;
  }
}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1600px) {
  .bgimg-1, .bgimg-2, .bgimg-3 {
    background-attachment: scroll;
    min-height: 400px;
  }
}
/*css for equal spaced items in a container and filling whole width
.container {
  display: flex;
}

.item {
  flex-grow: 1;
  height: 100px;
}

.item + .item {
  margin-left: 2%;
}
*/