/* CSS variables */

:root {
    --primary-color-green: #000000;
    --secondary-color-green: #288466;
    --third-color-green: #296664;
    --fourth-color-green: #e3edea;
    --fifth-color-green:#f8f8f8;
    
    --light-gray:#ebebec;
    --feint-gray: #f8f8f8;
    --dark-gray:#353640;
    --dim-gray: #62636b;

    --text-color-black: #57646c;        
    --horizontal-margin: 20px;


    --max-width-desktop: 1272px;
  }

/* body and pages */

body {
    background-color: var(--primary-color-green);
    color: var(--dim-gray);

    margin-left: 0px;/* by default 8px on most browsers */
    margin-right: 0px;

    font-family: DM Sans, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-family: DM Serif Display, sans-serif;
  color: var(--dark-gray);
  font-size: 68px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0px;
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-family: DM Serif Display, sans-serif;
  font-size: 54px;
  font-weight: 400;
  line-height: 1.15;
  margin: 0px;
  margin-bottom: 20px;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 28px;
  }
}

h5 {
  color: var(--dark-gray);
  font-family: DM Serif Display, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  margin-top: 0;
  margin-bottom: 16px;
}

@media screen and (max-width: 479px) {
  h5 {
    font-size: 24px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}

input {
/* remove input highlight */
  outline-width: 0;
}

.text-large {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}

.text-huge {
  font-family: DM Serif Display, sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 72px;
}

.text-small {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .text-large {
    font-size: 16px;
    line-height: 24px;
  }

  .text-huge {
    font-size: 40px;
    line-height: 48px;
  }
}

.clearfix:before, .clearfix:after {
    content: " ";
    grid-area: 1 / 1 / 2 / 2;
    display: table;
}

a {
  color: white;
  text-decoration: none;
}

.underline {
  position: relative;
}

ul {
  padding-left: 0;
  list-style: none;
}

li {
  list-style: none;
}

.underline::after {
  content: '';
  width: 100%;
  height: 15px;
  position: absolute;
  left: 0px;
  bottom: -12px;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-image: url(images/underline.svg);
}

.disabled {
  opacity: 0.5;
}

.enabled {
  opacity: 1;
}

/* CSS helpers  */
.center-horizontally {
  margin-left: auto;
  margin-right: auto;
}

.center-horizontally-text {
  text-align: center;
}

.center-horizontally-flex {
  display: flex;
  justify-content: center;
}

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

/* Careful Bootstrap overrides "flex-row-reverse" and causes problems with mobile view*/
.flex-row-reverse-custom {
  flex-direction: row-reverse;
}

.white {
  background-color: white;
}

.black {
  background-color: black;
}

.feint-gray {
  background-color: var(--feint-gray);
}

.text-white {
  color: white;
}

.text-black {
  color: var(--text-color-black);
}

/* Needed to set the full-width bg color */
.page {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Needed to limit and center content on large desktops*/
.page-width-adjust {
    max-width: var(--max-width-desktop);
    margin-left: auto;
    margin-right: auto;
}

/* Needed to apply padding - could not be done in .page-width-adjust since it centers content*/
.page-container {
  padding-left: var(--horizontal-margin);
  padding-right: var(--horizontal-margin);
}

.page-container.no-margin {
  padding-left: 0;
  padding-right: 0;
}

.section-subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

/* @media screen and (max-width: 991px) { 
  .page {
    padding-top: 40px;
    padding-bottom: 40px;
  }
} */

/* Components */

.button {
  text-decoration: none;
  display: inline-block;
  padding: 10px 24px;
  letter-spacing: 2px;
  text-align: center;
  justify-content: center;

  border-top-style: solid;
  border-top-width: 1px;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-left-style: solid;
  border-left-width: 1px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;

  transition-property: all;
  transition-duration: 200ms;
  transition-timing-function: ease;
}

@media screen and (max-width: 479px) { 
  .button {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.button-primary {
    border-color: hsla(0, 0.00%, 100.00%, 0.00);
    background-color: hsla(0, 0.00%, 100.00%, 0.00);
    color:white;
  }
  
  .button-primary:hover {
    border-color: white;
    background-color: white;
    color: black;
  }

  .button-primary.white-theme {
    border-color: black;
    background-color: hsla(0, 0.00%, 100.00%, 0.00);
    color:black;
  }


  .button-primary.white-theme:hover {
    border-color: white;
    background-color: black;
    color: white;
  }

  .button-secondary {
    border-color: white;
    background-color: hsla(0, 0.00%, 100.00%, 0.00);
    color: hsla(0, 0.00%, 100.00%, 1.00);
  }
  
  .button-secondary:hover {
    background-color: hsla(0, 0.00%, 100.00%, 1.00);
    color: black;
  }
  
  .button-secondary:active {
    background-color: #43464d;
  }
  
  .button-secondary:tiny {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  /* Labels */

  .label-with-background-green-bg {
    font-size: 14px;
    display: inline-block;
    background-color: white;
    border-radius: 4px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-top: 4px;
    text-align: center;
    color: black;
    font-weight: bold;
  }

  .label-with-background-white-bg {
    font-size: 14px;
    display: inline-block;
    background-color: black;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 4px;
    padding-top: 4px;
    border-radius: 4px;
    text-align: center;
    color: white;
    font-weight: bold;
  }

  /* Card */

  .card {
    position: relative;
    width: 100%;
    text-align: left;
    border: 1px solid #e9eef1;
    border-radius: 5px;
    box-sizing: border-box;
    background-color: white;
  }

    .card-body {
        padding: 20px;
    }

  .shadow-small {
    box-shadow: 0 4px 6px rgba(0, 0, 0, .05);
  }

  /* Spacers */

  .spacer-one {
    margin-top: 20px;
  }

  .spacer-two {
    margin-top: 40px;
  }

  .spacer-three {
    margin-top: 60px;
  }

  /* Advantages comparison */
 .advantages-stack {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  row-gap: 20px;
 }

 .advantages-stack-cell {
  border-radius: 8px;
  overflow: hidden;
  background-color: black;
  color: white;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5);
 }

 .advantages-stack-cell.white {
  background-color: white;
  color: black;
 }

 .advantages-stack-cell-wrapper {
  padding: 40px 40px;
 }

 .advantages-image {
  width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
 }

 .advantages-title {
  font-size: 30px;
  margin-bottom: 20px;
 }

 .advantages-list-item {
  padding-bottom: 12px;
  font-size: 14px;
 }

 @media screen and (max-width: 767px) {
  .advantages-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
 }

 @media screen and (max-width: 479px) {
  .advantages-stack {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
 }

/* Testimonials No image */

.testimonial-no-image-stack {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 20px;
}

.testimonial-no-image-cell {
  padding: 24px;
  border: 1px #032528;
  border-top-left-radius: 11px;
  border-top-right-radius: 11px;
  border-bottom-left-radius: 11px;
  border-bottom-right-radius: 11px;
  background-color: hsla(0, 0.00%, 100.00%, 1.00);

  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); 
}

.testimonial-no-image-cell-text {
  color: var(--dark-gray);
  line-height: 1.4;
}

.testimonial-no-image-cell-quote {    
  font-family: DM Serif Display, sans-serif;
  font-size: 50px;    
  text-align: left;
  color: black;
}

.testimonial-no-image-cell-reviewer {
  margin-top: 10px;
  color: #4f5c65;
  line-height: 1.4;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .testimonial-no-image-stack {
    grid-template-columns: 2fr;
    grid-template-rows: auto;
  }

  .testimonial-no-image-cell.hide-in-mobile {
    display: none;
  }
}


  /* Testimonials 2 */

  .home-page-testimonials-title {
    margin-top: 20px; 
    margin-bottom: 40px;
  }

  .testimonial2-stack-wrapper {
    display: flex;
    justify-content: center;
  }

  .testimonial2-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 20px;
  }

  .testimonial2-cell {
    min-width: 0; /* Fix Safari overflow on small screen */
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    padding-right: 20px;
    column-gap: 20px;
    flex-direction: row;
    border: 1px #032528;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    background-color: hsla(0, 0.00%, 100.00%, 1.00);

    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.5); 
  }

  /* To fix the image/pixels showing issue */
  .testimonial2-avatar-image-desktop-wrapper {
    height: 191px
  }

  .testimonial2-avatar-image-desktop {
    /* This seems to do it along with the object-fit */
    height: calc(100% + 4px);
    margin-top: -2px;
    display: block;
  }

  .testimonial2-avatar-image-mobile {
    display: none;
  }

  .testimonial2-review-wrapper {
    padding: 30px 20px;
  }

  .testimonial2-quotes {
    padding-top: 5px;
    font-family: DM Serif Display, sans-serif;
    font-size: 50px;    
    text-align: left;
    color: black;
    display: none;
  }

  .testimonial2-reviewer-name { 
    font-size: 20px;
  }

  .testimonial2-review-text {
    color: var(--text-color-black);
    line-height: 1.4;
  }
  
  .testimonial2-review-text:tiny {
    font-size: 12px;
  }

  .testimonial2-reviewer-name {
    margin-bottom: 0px;
    color: hsla(202.85714285714286, 10.77%, 38.24%, 1.00);
    line-height: 1.4;
  }

  .testimonial2-reviewer-role {
    margin-top: -8px;
  }

  @media screen and (max-width: 991px) {
    .testimonial2-stack {
      grid-template-columns: 1fr;
      grid-template-rows: 191px;

      max-width: 486px;
    }
  }

  @media screen and (max-width: 767px) {
    .testimonial2-stack {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
    }

    .testimonial2-cell { 
      flex-direction: column;
      padding-right: 0px;
    }

    .testimonial2-review-wrapper {
      padding: 35x 20px;
    }

    .testimonial2-avatar-image {
      width: calc(100% + 4px);
      height: auto;
      display: block;
      position: relative;
    }


    .testimonial2-avatar-image-mobile {
      width: calc(100% + 4px);
      margin-left: -2px;
      height: auto;
      margin-top: -2px;
      display: block;
    }

    .testimonial2-avatar-image-desktop-wrapper {
      display: none;
    }

    .testimonial2-avatar-image-desktop {
      display: none;
    }

    .testimonial2-reviewer-role {
      margin-top: -8px;
      font-size: 16px;
      font-weight: 500;
    }

    .testimonial2-quotes { 
      display: block;
    }

    #fourth-testimonial {
      display: none;
    }
  }

  /* Testimonials */

  .testimonial-stack-wrapper {
    display: flex;
    justify-content: center;
  }

  .testimonial-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    column-gap: 20px;
    row-gap: 20px;
  }

  @media screen and (max-width: 991px) {
    .testimonial-stack {
      grid-template-columns: 1fr;
      grid-template-rows: auto;

      max-width: 486px;
      row-gap: 36px;
    }
  }

  .testimonial-cell {
    min-width: 0; /* Fix Safari overflow on small screen */

    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    column-gap: 20px;
    flex-direction: row;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    background-color: hsla(0, 0.00%, 100.00%, 1.00);
  }

  .testimonial-avatar-image {
    border-radius: 50%;
    max-width: 80px;
  }

  .testimonial-review-wrapper {
    padding-top: 10px;
  }

  .testimonial-quotes {
    padding-top: 5px;
    font-family: DM Serif Display, sans-serif;
    font-size: 50px;    
    text-align: left;
    color: black;
  }

  .testimonial-review-text {
    margin-top: -8px;
    color: var(--text-color-black);
    line-height: 1.4;
  }
  
  .testimonial-review-text:tiny {
    font-size: 12px;
  }

  .testimonial-reviewer-name {
    margin-top: 10px;
    color: hsla(202.85714285714286, 10.77%, 38.24%, 1.00);
    line-height: 1.4;
  }

    /* Image text component */
    .image-text-container {
        display: flex;
        justify-content: space-around;
        background-color: white;
        margin-bottom: 60px;
    }

    @media screen and (max-width: 991px) {
      .image-text-container {
        flex-direction: column;
      }
    }


    .image-text-container-title {
      color: var(--dark-gray);
    }      

    .image-text-container-text {
        max-width: 486px;
        display: flex;
        align-items: center;
        justify-content: center;
        
    }

    /* For small screens to always keep text under image */
    @media screen and (max-width: 991px) {
      .image-text-container-container-row-direction {
        flex-direction: row;
      }

      .image-text-container-text { 
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
      }

    }

    .image-text-container-image {  
        /* Add some padding for when you start resizing down and until the small screen break point */
        padding-left: 12px;
        padding-right: 12px;
        overflow: none;
    }

    .image-text-container-title-desktop {
      margin-bottom: 40px;
    }

    .image-text-container-title-mobile {
      display: none;
    }

    .image-text-container-image img {
      /* Avoid layout shifts */
      width: 460px;
      height: 691px;
      border-radius: 8px;
    }

    @media screen and (max-width: 991px) { 
      .image-text-container-image  {
        padding-left: 0;
        padding-right: 0;

        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
      }

      .image-text-container-image img  { 
        box-sizing: border-box;
        max-width: 100%;
        height: initial;
      }

      .image-text-container-title-mobile {
        display: block;
      }

      .image-text-container-title-desktop {
        display: none;
      }
    }
    

    @media screen and (max-width: 991px) {
      .image-text-container-title {
        text-align: center;
      }      
    }

    .image-text-container-subtitle {
        line-height: 1.2;
        color: var(--dark-gray);

        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }

    .image-text-container-step {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;

        max-width: 384px;
    }

    .image-text-container-step-text {
      padding-right: 40px;
      font-size: 16px;
      font-weight: 500;
      line-height: 24px;
      color: var(--dim-gray);
    }

    .image-text-container-step-footnote {
      padding-right: 40px;
      font-size: 14px;
      font-weight: 500;
      line-height: 24px;
      color: var(--dim-gray);
    }

    .image-text-container-step-image {
        max-width: 20px;
    }

    /* Steps component */
    .steps-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        max-width: 768px;
        margin-left: auto;
        margin-right: auto;
        column-gap: 40px;
        row-gap: 60px;
        background-color: var(--primary-color-green);
    }

    .steps-stack-cell {
     display: flex;   
     justify-content: center;
     align-items: center;
     flex-direction: column;
     row-gap: 20px;
     padding-top: 30px;
    }

    .steps-stack-cell-number {
        display: flex;   
        justify-content: center;
        align-items: center;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background-color: white;
    }

    .steps-stack-cell-number-text {
        color: black;
        font-size: 40px;
        font-weight: 700;
        text-align: center;
    }

    .steps-stack-cell-text {
        color: white;
        font-family: DM Sans, sans-serif;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
    }

    /* Stats component */
    .stats-stack {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;        
        column-gap: 8px;
        padding-bottom: 20px;
        padding-left: 8px;
        padding-right: 8px;
        background-color: white;
    }

    .stats-stack-cell {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-left: 100px;
        padding-right: 100px;
        padding-top: 100px;
        padding-bottom: 100px;
        background-color: var(--fifth-color-green);
    }

    .stats-stack-cell-center-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
    }

    .stats-stack-cell-number {
        color: black;
    }

    .stats-stack-cell-text {
        text-align: center;
    }

    /* timeline component */
    .timeline-container {
      opacity: 0;
    }

    .timeline {
        /* position for the absolut line */
        position: relative;
        padding-top: 40px;
        padding-bottom: 40px;        
        background-color: white;        
    }

    .timeline-item {
        /* to account for padding for the 50% */
        box-sizing: border-box;
        width: 50%;
        /* height: 300px; */
        clear: right;
        padding-right: 20px;      
        color: var(--text-color-black);
        /* background-color: red; */
    }

    /* Comment: Define like that to show that the second class is complementary */
    .timeline-item.timeline-item-right {
        float: right;
        clear: left;
        margin-bottom: -24px;
        padding-left: 20px;
        padding-right: 0px;
    }
    
    .timeline-item-header {
        display: flex;
        column-gap: 20px;
        align-items: center;
        padding-bottom: 10px;
    }

    .timeline-item-header-image {
        width: 80px;
        border-radius: 50%;
    }

    .timeline-item-header-date {
        color: var(--text-color-black);
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .timeline-item-header-title {
        margin-top: 0;
    }
    
    .timeline-item-text {
        margin-bottom: 20px;
    }

    .timeline-item-image {
        width: 100%;
    }

    .timeline-line {
        clear: both;
        position: absolute;
        top: 0;
        left: 50%;
        width: 1px;
        height: 100%;
        background-color: var(--light-gray);
    }

    @media screen and (max-width: 767px) { 
      .timeline-item {
        width: 100%;
        float: none;
        clear: none;
        margin-bottom: 20px;
      }

      .timeline-item.timeline-item-right {
        float: none;
        clear: left;
        margin-bottom: 20px;
        padding-left: 0px;
      }

      .timeline-line {
        display: none;
      }
    }

    /* Services */
    .services-stack {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto auto auto;
      column-gap: 20px;
    }

    .services-stack-cell {

    }

    .services-stack-cell-image {
      max-width: 100%;
    }

    h5.services-stack-cell-title {
      margin-top: 20px;
      margin-bottom: 6px;
    }

    .services-stack-cell-subtitle {
      color: var(--dim-grey);      
    }


    @media screen and (max-width: 991px) { 
      .services-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;        
        row-gap: 20px;
      }
    }

    /* Submisson Form */
    .form-stack {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;        
      column-gap: 60px;      
    }

    .form-wrapper {
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        row-gap: 10px;
        width: 100%;
    }
    

    .form-wrapper .button-primary {
        width: auto;
    }

    .field-label {
        display: block;
        margin-top: 4px;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 500;
        color: white;
    }

    .form-input {
        display: block;
        box-sizing: border-box;
        height: 48px;
        background-color: #fff;
        border: 1px solid #e9eef1;
        border-radius: 3px;
        margin-bottom: 12px;
        padding: 10px 9px 10px 16px;
    }

    .form-stack-image {
      padding: 40px 100px;
      /* Need to be careful with overflow when setting fixed width 
      and keep any extra paddings in mind*/
      width: 260px;
      box-sizing: content-box;
    }

    /* Employee */
    /* .employee-stack {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto;        
        column-gap: 8px;
        row-gap: 60px;
        margin-top: 80px;
        background-color: black;
    }

    .employee-stack-cell-image {
      max-width: 240px;
      border-radius: 50%;
      margin-bottom: 24px;
  }

    @media screen and (max-width: 991px) { 
      .employee-stack {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;        
      }

      .employee-stack-cell-image {
        max-width: 200px;
      }
    }

    .employee-stack-cell {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .employee-stack-cell-name {
        text-align: center;
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 20px;
        font-weight: 700;
        line-height: 30px;
        color: white;
    }

    .employee-stack-cell-title {
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        color: white;
    } */

    .employee-container {
      opacity: 0;
    }

    .employee-stack {
      display: grid;
      grid-template-columns: 280px 280px;
      /* Don't like when resizing that it resizes the elements - would prefer fixed size width grid but elements don't work */
      /* grid-template-columns: 1fr 1fr 1fr; */
      grid-template-rows: auto auto;        
      column-gap: 40px;
      row-gap: 30px;
      margin-top: 40px;
      background-color: black;
      /* max-width: 800px; */
      margin-left: auto;
      margin-right: auto;
  }

  .employee-stack-cell-image {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    /* background-image: cover; */
    /* border-radius: 50%; */
  }

  @media screen and (max-width: 991px) { 
    .employee-stack {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;        
    }

    .employee-stack-cell-image {
      max-width: 200px;      
    }
  }

  @media screen and (max-width: 479px) { 
    .employee-stack {
      grid-template-columns: 1fr ;      
    }

    .employee-stack-cell-image {
      max-width: 280px;      
    }
  }

  .employee-stack-cell {
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background-color: white;
      overflow: hidden;
  }

  .employee-stack-cell-name {
      padding-left: 20px;
      font-size: 16px;
      font-weight: 700;
      line-height: 30px;
      color: black;
  }

  .employee-stack-cell-title {
      padding-left: 20px;
      font-size: 14px;
      font-weight: 500;
      line-height: 24px;
      margin-bottom: 40px;
      color: black;
  }

  /* Footer component */
  .footer-container {
    padding: 20px;
 }

  .footer-quote-author {
    margin-bottom: 3;
  }

  .footer-quote-author-black-theme {
    color: var(--light-gray);
  }

  .footer-quote-author-white-theme {
    color: var(--text-color-black);
  }

    /* Nav bar component */
    .nav-container {
      display: flex;
      align-items: center;
      background-color: var(--primary-color-green);
      position: relative;
    }
    
    .nav-brand {
      position: relative;
      float: left;
      width: 180px;
      margin-top: auto;
      margin-bottom: auto;
    }
    
    .nav-logo-image {
      margin-top: auto;
      max-width: 100%;
    }

    .navbar-content {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding-right: 20px;
    }

    .nav-link {
      text-decoration: none;
      padding: 0 0 0 20px;
      color: white;
      font-size: 18px;
      font-weight: 500;
      line-height: 30px;
      transition: opacity .2s;
    }

    .nav-link:hover {
      opacity: 1;
    }

    .nav-link.selected {
      opacity: 1;
    }

    .nav-menu-image {
      display: none;
      padding-left: 20px;
    }

    #nav-mobile-overlay {
      position: absolute;
      top: 100%;
      left: 0px;
      right: 0px;
      padding: 40px 30px;
      /* background-color: white; */
      overflow: hidden;
      display: none;
      border-radius: 5px;
      margin-left: 20px;
      margin-right: 20px;
      margin-top: -4px;
      border: 1px solid var(--light-gray);
    }

    .nav-mobile-overlay-title {
      color: var(--dim-gray);
      font-size: 18px;
      font-weight: 600;
      padding-bottom: 20px;
    }

    #nav-mobile-overlay a {
      display: block;
      color: var(--dim-gray);
      font-size: 20px;
      padding-bottom: 10px;
    }

    #nav-mobile-overlay a:hover {
      text-decoration: underline;
    }

    @media screen and (max-width: 991px) { 
      .nav-link {
        display: none;   
      }  

      .nav-menu-image {
        display: block;
      }
    }

    .nav-link:hover {
      opacity: 1;
    }

      /* Style the dropdown menu */
    .navbar-dropdown {
      position: absolute;
      top: 100%;
      display: none;
    }

    .navbar-dropdown-link {
      display: block;
    }

    .nav-container:hover.navbar-dropdown {
      display: block;
    }

    /* Change the background color of dropdown links on hover */
    .navbar-dropdown-link:hover {
      background-color: #555;
    }

  /* Home page */
  .agency-nav-container {
    position: sticky;
    /* To avoid overlap of relatively positions elements */
    z-index: 3; 
    top: 0;
    width: 100%;
    background-color: var(--primary-color-green);
    padding-top: 20px;
    padding-bottom: 20px;
  }





  .home-page-top-section-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-right: auto;
    margin-right: auto;
  }

  .home-page-title {
    text-align: center;
    color: white;
    text-align: center;
  }

  @media screen and (max-width: 767px) {
    .home-page-title br {
      display: none;
    } 
  }
  

  .home-page-subtitle {
    margin-top: 40px;
    color: hsla(0, 0.00%, 100.00%, 1.00);
    text-align: center;
    letter-spacing: 1px;
  }

  .home-page-button-stack {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 20px;
  }

  @media screen and (max-width: 479px) {
    .home-page-button-stack {
      grid-template-columns: 1fr;      
    }
  }

  .home-page-products-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
  }

  .home-page-products-container-title {
    color: var(--dark-gray);
  }
  
  .home-page-products-container-title.white-bg {
    color: white;
  }

  .home-page-products-container-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    display: block;
  }

  .home-page-download-guide-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 40px;
  }

  .home-page-download-guide-stack-left {
    /* To use it inside flex with 2 columns */
    max-width: 478px;
  }

  .home-page-download-guide-stack-title {
    margin-bottom: 20px;
  }

  .home-page-download-guide-stack-subtitle {
    margin-bottom: 48px;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
  }

  @media screen and (max-width: 991px) {
    .home-page-download-guide-stack {
      grid-template-columns: 1fr;
    }

    .home-page-download-guide-stack-title {
     text-align: center;
    }

    .home-page-download-guide-stack-subtitle {
      text-align: center;
     }

     /* Center when shown full width alone */
     .form-stack-image {
      box-sizing: border-box;
      width: 240px;
      padding: 0;
      margin-left: auto;
      margin-right: auto;
      margin-top: 60px;
    }
  }

  /* Animations */
  @keyframes upwards {
    from { transform: translateY(60px); }
    to { transform: translateY(-60px); }
  }

  .animate-upwards {
    /* animation: grow-progress auto linear;
    animation-timeline: scroll(); */

    animation: auto linear upwards both;
    animation-timeline: view();
    animation-range: entry 0% cover 100%;
  }

  /* Case studies */
  .case-study-container {
    display: flex;
  }

  .case-study-container-text-container {
    width: 40%;
    padding-right: 20px;
    padding-bottom: 40px;
  }

  .case-study-container-text-container-title {
    margin-bottom: 40px;
  }

  .case-study-container-text-container-text {
    line-height: 36px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
  }

  .case-study-container-images-container {
    width: 60%;
    position: relative;
    padding-left: 20px;
  }

  .case-study-container-text-container-title {
    margin-bottom: 20px;
  }


  .case-study-container-images-phone-image-absolute-wrapper {
    position: absolute;
    top: 8rem;
    left: -1rem;    
    border: 6px #1f1b1b;
    border-radius: 8px;
    overflow: hidden
  }

  .case-study-container-images-phone-image {
    z-index: 2;
    max-width: 100%;    
  }

  .case-study-container-images-desktop-image-wrapper {
    border: 6px #1f1b1b;
    border-radius: 8px;
    overflow: hidden;
  }

  .case-study-container-images-desktop-image {
    max-width: 100%;
  }

  @media screen and (max-width: 991px) {
    
    .case-study-container {
      flex-direction: column;      
    }

    .case-study-container-text-container {
      width: 100%;
    }

    .case-study-container-images-container {
      width: 100%;
      padding: 0 40px;
      display: flex;
      justify-content: center;      
    }
    

    .case-study-container-images-desktop-image {
      max-width: 100%;
    }

    .case-study-container-images-phone-image-absolute-wrapper {      
      max-width: 208px;
      top: 6rem;
      left: 4rem;
    }


    .case-study-container-images-phone-image {
      object-fit: cover;
    }
  }

  @media screen and (max-width: 479px) {    

    .case-study-container-images-container {
      padding: 20px 0px;
    }

    .case-study-container-images-phone-image-absolute-wrapper {      
      max-width: 140px;
      top: 11rem;
    }
  }

  /* About us page */
    .agency-nav-container.white {
      background-color: white;
    }

    .nav-container.white {
      background-color: rgba(0,0,0,0.0);
    }

    .nav-link.white {
      color: #222;      
      opacity: 0.5;
    }

    .nav-link.white.selected {      
      opacity: 1;
    }

    @media screen and (max-width: 991px) {
      .stats-stack {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;        
        background-color: white;
        row-gap: 8px;      
      }

      .stats-stack-cell { 
        padding-top: 50px;
        padding-bottom: 50px;
      }

    }

    .about-story-container {
      padding-left: var(--horizontal-margin);
      padding-right: var(--horizontal-margin);
      padding-bottom: 60px;      
    }

    .about-story-subtitle {      
      padding-bottom: 20px;
      color: var(--text-color-black);
    }

    .about-story-text {
      margin-left: auto;
      margin-right: auto;
      max-width: 850px;
      font-size: 18px;
      font-weight: 400;
      line-height: 30px;
    }

    /* Blog page */

    .blog-container {
      margin: 12px 108px;
    }
    
    .blog-title {
      margin-bottom: 40px;
    }    

    .blog-list {
      margin-top: 60px;
    }

    .blog-list-article {
      border-bottom: 2px solid black;
    }

    .blog-list li {
      margin-bottom: 16px;
    }

    @media screen and (max-width: 767px) { 
      .blog-container {
        margin: 12px 10px;
      }
    }
    

