:root {
  --color-primary: #263159;
  --color-secondary: #019EC1;
  --color-tertiary: #24A37B;
  --color-black-1: #000000;
  --color-black-2: #1D1D1D;
  --color-black-3: #282828;
  --color-gray-1: #333333;
  --color-gray-2: #4F4F4F;
  --color-gray-3: #828282;
  --color-gray-4: #BDBDBD;
  --color-gray-5: #E0E0E0;
  --color-background: #F0FCFF;
  --font-main: 'Source Sans 3', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

h1 {
  font-family: var(--font-main);
  font-size: 60px;
  line-height: 60px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px;

  @media (max-width: 1024px) {
    font-size: 50px;
    line-height: 50px;
  }

  @media (max-width: 768px) {
    font-size: 34px;
    line-height: 34px;
  }
}

h2 {
  font-family: var(--font-main);
  font-size: 48px;
  line-height: 54px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px;

  @media (max-width: 1024px) {
    font-size: 38px;
    line-height: 46px;
  }

  @media (max-width: 768px) {
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 15px;
  }
}

h3 {
  font-family: var(--font-main);
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px;

  @media (max-width: 1024px) {
    font-size: 34px;
    line-height: 40px;
  }
  
  @media (max-width: 768px) {
    font-size: 26px;
    line-height: 32px;
  }
}

h4 {
  font-family: var(--font-main);
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 20px;
}

h5 {
  font-family: var(--font-main);
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 15px;

  &.underline {
    display: inline-block;
    position: relative;
    z-index: 1;

    &:after {
      content: '';
      display: block;
      width: 100%;
      height: 8px;
      background-color: var(--color-tertiary);
      opacity: .3;
      position: relative;
      z-index: -1;
      top: -10px;
      left: 7px;
    }
  }
}

h6 {
  font-family: var(--font-main);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 15px;

  @media (max-width: 1024px) {
    font-size: 18px;
    line-height: 26px;
  }
}

p {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-black-1);
  margin: 0 0 16px;

  &.large {
    font-size: 20px;
    line-height: 28px;
  }

  &.medium {
    font-size: 18px;
    line-height: 26px;
  }

  &.small {
    font-size: 14px;
    line-height: 20px;
  }
}

ul, ol {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--color-black-1);
  margin: 0 0 10px;
  padding-left: 20px;

  li {
    padding-left: 4px;
  }
}

a {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--color-primary);
}

a.btn {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: center;
  color: white;
  background-color: var(--color-secondary);
  padding: 9px 14px;
  border: solid 2px var(--color-secondary);
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;

  &:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
  }

  &.btn-white-solid {
    background: white;
    border: solid 2px white;
    color: var(--color-primary);

    &:hover {
      background: var(--color-primary);
      color: white;
    }
  }

  &.btn-white {
    background: transparent;
    border: solid 2px white;

    &:hover {
      color: var(--color-primary);
      background: white;
    }
  }

  &.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: solid 2px var(--color-secondary);

    &:hover {
      color: white;
      background-color: var(--color-primary);
      border-color: var(--color-primary);
    }
  }
}

img {
  width: 100%;
  display: block;
}

.swiper {

  .swiper-scrollbar {
    width: 80%;
    position: relative;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 550px;
    background-color: var(--color-gray-5);
    height: 6px;
    .swiper-scrollbar-drag {
      background-color: var(--color-primary);
    }
  }
}


/* Colors */
.white {
  color: white;
}

.site {
  background-color: var(--color-background);
}

.announcement-bar {
  background-color: var(--color-primary);
  padding: 10px 25px;
  .content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 !important;
    p {
      color: white;
      margin: 0 !important;
      text-align: center;
    }

    a {
      color: white;
    }
  }

  @media (max-width: 768px) {
    padding: 5px 25px;
    .content-wrapper {
      p {
        font-size: 12px;
        line-height: 16px;
      }

      a {
        font-size: 12px;
      }
    }
  }
}

header.site-header {  
  background-color: white;
  padding: 0 45px;
  position: relative;

  .header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 0;

    .site-branding {
      a.custom-logo-link {
        img.custom-logo {
          width: 250px;
        }
      }
    }

    nav.main-navigation {
      ul.nav-menu {
        display: flex;
        margin: 0;
        padding: 0;
        gap: 30px;

        li.menu-item {
          list-style: none;
          padding: 0;
          position: relative;
          
          a {
            text-decoration: none;
            font-size: 18px;
            white-space: nowrap;
            padding: 12px 15px;
            transition: color 0.4s;
            &:hover {
              color: var(--color-secondary);
            }

          }

          &.btn {
            a {
              font-family: var(--font-main);
              font-size: 16px;
              line-height: 22px;
              font-weight: 500;
              text-align: center;
              color: white;
              background-color: var(--color-secondary);
              padding: 9px 14px;
              border: solid 2px var(--color-secondary);
              border-radius: 6px;
              text-decoration: none;
              transition: 0.3s;

              &:hover {
                background-color: var(--color-primary);
                border-color: var(--color-primary);
              }
            }
          }

          &.menu-item-has-children.focus {
            background-color: var(--color-secondary);

            a {
              color: white;
              background-color: var(--color-secondary);
              border-top-left-radius: 6px;
              border-top-right-radius: 6px;
              transition: none;
            }

            ul.sub-menu {
              display: flex;

              a {
                color: white;

                &:hover {
                  color: var(--color-primary) !important;
                }
              }
            }
          }
        }

        ul.sub-menu { 
          display: none;
          position: absolute;
          top: 35px;
          left: 0;
          margin: 0;
          z-index: 1;
          background-color: var(--color-secondary);
          border-bottom-left-radius: 6px;
          border-bottom-right-radius: 6px;
          border-top-right-radius: 6px;
          padding: 20px 25px;
          flex-direction: column;
          gap: 10px;
          min-width: 250px;


          li {
            a {
              color: white;
              padding: 0;
              background-color: var(--color-secondary);

              &:hover {
                color: var(--color-secondary) !important;
              }
            }
          }
        }
      }
    }

    .mobile-nav-wrapper {
      display: none;
    }

    button.mobile-menu-toggle {
      display: none;
    }
  }

  @media(max-width: 1200px) {
    .header-wrapper {

      nav.main-navigation {
        ul.nav-menu {
          gap: 0;
          li.menu-item {
            a {
              font-size: 16px;
            }

            &.btn {
              a {
                padding: 6px 10px;
              }
            }
          }
        }
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 0 25px; 
    
    .header-wrapper {
      .site-branding {        
        a.custom-logo-link {
          img.custom-logo {
            width: 225px;
          }
        }
      }

      nav.main-navigation {
        display: none;
      }   

      .mobile-nav-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        padding: 25px 25px;
        z-index: 10;
        overflow-y: auto;
        transform: translateY(-100%);
        transition: 0.2s;

        &.active {
          transform: none;
        }

        .site-branding {
          margin-bottom: 20px;
        }

        ul.menu {
          padding: 0;
          margin: 0;

          li.menu-item {
            list-style: none;
            padding: 0;
            margin-bottom: 20px;

            a {
              text-decoration: none;
              font-size: 18px;
            }

            ul.sub-menu {
              display: none;
              padding: 0;
              margin: 10px 0 0 10px;

              li.menu-item {
                margin-bottom: 5px;                
                a {
                  &:after {
                    display: none;
                  }
                }
              }
            }

            &.open {
              &.menu-item-has-children {
                a {
                  &:after {
                    transform: rotate(-90deg);
                  }
                }

              }

              ul.sub-menu {
                display: block;
              }

              & > a:after {
                transform: rotate(180deg);
              }
            }

            &.menu-item-has-children {
              a {
                &:after {
                  content: '';
                  display: inline-block;
                  position: relative;
                  width: 13px;
                  height: 13px;
                  background-image: url('/wp-content/themes/saltbone/public/svg/icon-chevron-right-darkblue.svg');
                  background-size: contain;
                  transform: rotate(90deg);
                  transition: 0.2s;
                  margin-left: 5px;
                }
              }

            }

            &.btn {
              a {
                display: block;
                font-family: var(--font-main);
                font-size: 16px;
                line-height: 22px;
                font-weight: 500;
                text-align: center;
                color: white;
                background-color: var(--color-secondary);
                padding: 6px 9px;
                border: solid 2px var(--color-secondary);
                border-radius: 6px;
                margin: 20px 0 25px;
                text-decoration: none;
                transition: 0.3s;
              }
            }
          }
        }
      }

      button.mobile-menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 11;
        
        .bar {
          width: 25px;
          height: 3px;
          background-color: var(--color-secondary);
          margin: 5px 0;
          transition: 0.3s;
        }

        &.active {
          position: fixed;
          top: 25px;
          right: 25px;
          .bar:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
          }

          .bar:nth-child(2) {
            opacity: 0;
          }

          .bar:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    .header-wrapper {
      .site-branding {
        a.custom-logo-link {
          img.custom-logo {
            width: 175px;
          }
        }
      }
      .mobile-nav-wrapper {
        .site-branding {
          a.custom-logo-link {
            img.custom-logo {
              width: 175px;
            }
          }
        }
      }
    }
  }

  

}

footer.site-footer {
  background-color: var(--color-primary);
  padding: 85px 45px 0;

  .content-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 65px;
    padding-bottom: 85px;


    .info {
      width: 33.33%;
      a.logo {
        img {
          filter: brightness(0) invert(1);
          max-width: 300px;
        }
      }

      .address {
        margin: 35px 0 25px;
        p {
          color: white;
          font-size: 18px;
        }
      }

      .contact {
        margin-bottom: 25px;
        a {
          color: white;
          display: flex;
          align-items: center;
          gap: 5px;
          margin-bottom: 10px;
          text-decoration: none;
          font-size: 18px;
          img {
            filter: brightness(0) invert(1);
            height: 30px;
            width: auto;
          }
        }
      }

      .socials {
        a {
          color: white;
          display: flex;
          text-decoration: none;
          font-size: 18px;
          align-items: center;
          gap: 5px;

          img {
            width: 35px;
            height: 35px;
            filter: brightness(0) invert(1);
          }
        }
      }
    }

    .nav-wrapper {
      width: 66.66%;

      .footer-menu {
        ul.menu {
          display: flex;
          justify-content: space-between;
          gap: 35px;
          margin: 0;
          padding: 0;
          li {
            list-style: none;
            padding: 0;
            flex: 1;

            a {
              color: white;
              text-decoration: none;
              font-size: 22px;
              font-weight: 700;
              margin-bottom: 15px;
              display: inline-block;
            }

            ul.sub-menu {
              padding: 0;
              margin: 0;

              li {
                a {
                  font-size: 18px;
                  font-weight: 500;
                  margin-bottom: 10px;
                  white-space: nowrap;
                }
              }
            }
          }
        }
      }

      .button-wrapper {
        display: flex;
        gap: 20px;
        margin-top: 25px;
      }
    }


  }

  .legal {
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-top: solid 1px white;
    text-align: center;
    p {
      color: white;
      margin: 0;
      font-size: 14px;
      font-weight: 400;
    }

    a {
      color: white;
      margin: 0;
      font-size: 14px;
      font-weight: 400;
      text-decoration: none;
    }

    img {
      margin-top: 15px;
      max-width: 75px;
    }
  }

  @media (max-width: 1024px) {
    padding: 65px 25px 0;

    .content-wrapper {
      padding-bottom: 45px;
      flex-direction: column;
      .info {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        .address {
          p {
            text-align: center;
          }
        }

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

      .nav-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column-reverse;
        gap: 45px;
        .footer-menu {
          ul.menu {
            flex-direction: column;
            align-items: center;

            li {
              display: flex;
              flex-direction: column;
              align-items: center;

              ul.sub-menu {
                text-align: center;
              }
            }
          }
        }

        .button-wrapper {
          justify-content: center;
          margin: 0;
        }
      }
    }
  }

  @media (max-width: 768px) {

  }
}

.page-template-default {
  main.site-main {
    padding: 0 25px;
  }
  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 65px 0;

    h3 {
      margin: 35px 0 10px;
    }

    p, li {
      margin: 0 0 10px;
    }
  }

  @media (max-width: 768px) {
    .content-wrapper {
      padding: 45px 0;
    }
  }
}

.post-template-default {
  main.site-main {
    padding: 0 25px;
    background-color: white;
  }
  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 65px 0;

    h2, h3 {
      margin: 35px 0 10px;
    }

    p, li {
      margin: 0 0 10px;
    }

    img, figure {
      display: block;
      margin: 25px auto;
      width: 100%;
      height: auto;      

      &.small {
        max-width: 500px;
      }

      &.medium {
        max-width: 750px;
      }

      &.large {
        max-width: none;
      }
    }

    hr {
      border: none;
      border-bottom: solid 3px #263159;
      opacity: 0.25;
      margin: 25px 0;
    }

    iframe {
      width: 100%;
      aspect-ratio: 16/9;
      display: block;
      margin: 0 auto;
    }
  }

  @media (max-width: 768px) {
    .content-wrapper {
      padding: 45px 0;
    }
  }
}

/* ACF Sections */
section.home-hero {
  background: linear-gradient(to bottom, white 5%, var(--color-background));
  padding: 65px 45px 85px;
  position: relative;
  overflow: hidden;

  .content-wrapper {
    display: flex;
    align-items: center;
    gap: 65px;
    max-width: 1600px;
    margin: 0 auto;

    .content {
      width: 45%;

      h6.eyebrow-text {
        display: inline-block;
        color: var(--color-tertiary);
        border: solid 1px var(--color-tertiary);
        border-radius: 15px;
        padding: 7px 15px;
        line-height: 20px;
        font-weight: 600;
        margin-bottom: 25px;
      }

      .link-wrapper {
        margin-top: 35px;
        display: flex;
        gap: 20px;
      }
    }

    .image-wrapper {
      width: 55%;
      position: relative;

      video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px 65px;

    .content-wrapper {
      gap: 35px;

      .content {
        width: 60%;

        h6.eyebrow-text {
          padding: 6px 10px;
        }

      }

      .image-wrapper {
        width: 40%;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;
    .content-wrapper {
      flex-direction: column;
      gap: 35px;

      .content {
        width: 100%;
        text-align: center;

        h6.eyebrow-text {
          margin-bottom: 20px;
          font-size: 14px;
        }

        .link-wrapper {
          margin-top: 25px;
          justify-content: center;
        }
      }

      .image-wrapper {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
      }
    }
  }
}

section.logo-slider {
  background-color: var(--color-primary);
  overflow: hidden;
  padding: 35px 0 25px;

  .content-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    
    h3 {
      text-align: center; 
      font-size: 20px;
      line-height: 24px;
      margin-bottom: 10px;
    }    

    .slide-wrapper {
    }
  }
}

section.difference {
  padding: 85px 45px;
  background-color: var(--color-background);

  .heading {
    max-width: 900px;
    margin: 0 auto 45px;

    h2 {
      text-align: center;
    }

    h3 {
      text-align: center;
      color: var(--color-primary);
      font-size: 20px;
      line-height: 30px;
      font-weight: 700;
    }

    .text {
      text-align: center;
    }
  }

  .card-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;

    .card {
      background-color: white; 
      flex: 1;
      border-radius: 8px;
      box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.05);
      padding: 35px 25px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; 

      img {
        height: 80px;
        width: auto;
        margin-bottom: 15px;
      }

      h3 {
        text-align: center;
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px;
      }

      p {
        text-align: center;
        color: black;
      }
    } 
  }

  .bottom-text {
    text-align: center;
    margin: 45px 0 0;
  }

  .link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
  }

  @media (max-width: 1200px) {
    .card-wrapper {
      .card {
        padding: 25px 15px;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 65px 25px;
    .heading {
      max-width: 650px;
    }
    .card-wrapper {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr);
      max-width: 650px;

      .card {
        img {
          height: 50px;
        }

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

  @media (max-width: 768px) {
    padding: 45px 25px;

    .heading {
      margin-bottom: 35px;

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

    .card-wrapper {
      grid-template-columns: minmax(0,1fr);
      max-width: 350px;

      .card {
        padding: 35px 25px;
      }
    }
  }
}

section.counters {
  padding: 45px 45px;
  background-color: var(--color-primary); 

  .content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);

    .counter {
      .counter-wrapper {
        text-align: center;
        display: flex;
        justify-content: center;
        font-size: 50px;
        line-height: 50px;
        font-weight: 600;
        font-family: var(--font-main);
        color: white;
        margin-bottom: 3px;
      }

      h3 {
        margin: 0;
        text-align: center; 
        font-weight: 400; 
        font-size: 20px;
        line-height: 26px;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px;
  }

  @media (max-width: 768px) {
    .content-wrapper {
      .counter {
        .counter-wrapper {
          font-size: 34px;
          line-height: 30px;
        }

        h3 {
          font-size: 18px;
          line-height: 24px;
        }
      }
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      grid-template-columns: minmax(0,1fr);
      gap: 35px;
    }
  }
}

section.solutions {
  background-color: var(--color-background);
  padding: 65px 45px;
  overflow: hidden;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .heading {
      max-width: 900px;
      margin: 0 auto 45px;

      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .grid {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr);
      gap: 30px;

      .grid-item { 
        display: flex;
        gap: 25px;
        border: solid 3px var(--color-primary);
        border-radius: 10px;
        background-color: white;
        padding: 45px 35px;
        box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.1);
        .image {
          width: 85px;
          img {
            width: auto;
            height: 60px; 
          }
        }

        .content {
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          .link-wrapper {
            margin-top: 35px;
          }
        }
      }
    }

    .swiper {
      display: none;
    }
  }

  @media (max-width: 1200px) {
    .content-wrapper {
      .grid {
        gap: 20px;

        .grid-item {
          gap: 15px;
          .image {
            width: 65px;
            img {
              height: 40px;
            }
          }
        }
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px 65px;
    .content-wrapper {
      .grid {
        display: none;
      }

      h2 {
        margin-bottom: 25px; 
      }

      .swiper {
        display: block;
        overflow: visible;
        .slide-wrapper { 
          display: flex;
          gap: 25px;
          border: solid 3px var(--color-primary);
          border-radius: 10px;
          background-color: white;
          padding: 45px 35px;
          box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.1);
          .image {
            width: 85px;
            img {
              width: auto;
              height: 60px; 
            }
          }

          .content {
            .link-wrapper {
              margin-top: 35px;
            }
          }
        }
      }


    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      .swiper {
        .slide-wrapper {
          padding: 35px 25px;
          .image {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 50px;
            display: flex;
            justify-content: center;

            img {
              height: 30px;
            }
          }

          .content {
            width: 100%;
          }
        }
      }
    }
  }
}

section.tabbed-cards {
  background-color: var(--color-background);
  padding: 65px 45px;
  overflow: hidden;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .tabs {
      display: flex;
      justify-content: center;
      margin-bottom: 45px;

      .tabs-wrapper {
        background-color: var(--color-primary);
        border-radius: 100px;
        padding: 4px;
      }

      .tab-btn {
        background: none;
        padding: 6px 45px 9px;
        border-radius: 50px;
        cursor: pointer;
        font-size: 20px;
        font-weight: 600;
        color: white;
        border: none;
      }

      .tab-btn.active {
        background-color: white;
        color: var(--color-primary);;
      }
    }

    /* Each tab panel */
    .tab-panel {
      display: none;

      &.active {
        display: block;
      }

      h2 {
        text-align: center;
        margin-bottom: 20px;
      }

      .tab-paragraph {
        max-width: 850px;
        margin: 0 auto 45px auto;
        text-align: center;
        line-height: 1.6;
      }

      .grid {
        display: grid;
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
        gap: 30px;

        .grid-item {
          display: flex;
          gap: 25px;
          border: solid 3px var(--color-primary);
          border-radius: 10px;
          background-color: white;
          padding: 45px 35px;
          box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.1);

          .image {
            width: 85px;

            img {
              width: auto;
              height: 60px;
            }
          }

          .content {
            h5 {
              margin-bottom: 10px;
            }
          }
        }
      }
    }
  }

  /* 1200px */
  @media (max-width: 1200px) {
    .content-wrapper {
      .tab-panel {
        .grid {
          gap: 20px;

          .grid-item {
            gap: 15px;

            .image {
              width: 65px;

              img {
                height: 40px;
              }
            }
          }
        }
      }
    }
  }

  /* 1024px */
  @media (max-width: 1024px) {
    padding: 45px 25px 65px;

    .content-wrapper {
      .tabs {
        flex-wrap: wrap;
        gap: 15px;
      }

      .tab-panel {
        .grid {
          grid-template-columns: 1fr;
          gap: 25px;

          .grid-item {
            padding: 35px 25px;

            .image {
              width: 65px;

              img {
                height: 40px;
              }
            }
          }
        }
      }
    }
  }

  /* 768px */
  @media (max-width: 768px) {
    padding: 45px 25px;
    .content-wrapper {
      .tabs {
        margin-bottom: 35px;
        .tabs-wrapper {
          .tab-btn {
            font-size: 14px;
            padding: 6px 10px 7px;
          }
        }
      }
      .tab-panel {
        .grid {
          .grid-item {
            padding: 30px 20px;
            position: relative;

            .image {
              position: absolute;
              top: 15px;
              right: 15px;
              width: 50px;
              display: flex;
              justify-content: center;

              img {
                height: 30px;
              }
            }

            .content {
              width: 100%;
              h5 {
                padding-right: 55px;
                &:after {
                  display: none;
                }
              }
            }
          }
        }
      }
    }
  }
}

section.text-cta-banner {
  background-color: var(--color-primary);
  padding: 65px 45px;

  .content-wrapper {
    max-width: 900px;
    margin: 0 auto;

    h2 {
      text-align: center;
      margin-bottom: 25px;
      font-weight: 600;
    }

    h4 {
      text-align: center;
      font-size: 20px;
      line-height: 26px;
      font-weight: 400;
    }

    .link-wrapper {
       display: flex;
       justify-content: center;
       gap: 25px;
       margin-top: 35px;
    }
  }

  @media (max-width: 1024px) {
    padding: 65px 25px; 

    .content-wrapper {
      max-width: 650px;
      h3 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 15px;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;

    .content-wrapper {
      h3 {
        font-size: 24px;
        line-height: 28px;
      }

      h4 {
        font-size: 18px;
        line-height: 24px;
      }

      .link-wrapper {
        flex-wrap: wrap;
        justify-content: center;
      }
    }
  }
}

section.testimonials {
  background-color: var(--color-background);
  padding: 65px 45px;
  overflow: hidden;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .heading {
      max-width: 900px;
      margin: 0 auto 45px;

      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .swiper {
      overflow: visible; 

      .slide-wrapper {
        border-radius: 8px;
        box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.1);
        background: white;
        padding: 15px 35px 35px;
        min-height: 325px;

        .quote-icon {
          img {
            width: 64px;
            height: 64px;
            margin-bottom: 25px;
          }
        }

        .quote-wrapper {
          border-bottom: solid 1px black;
          padding-bottom: 10px;
          margin-bottom: 20px;
        }

        p.organization {
          color: var(--color-tertiary);
        }


      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px 65px;

    .content-wrapper {
      h2 {
        margin-bottom: 25px;
      }
    }
  }




}

section.page-hero {
  background: linear-gradient(to bottom, white 5%, var(--color-background));
  padding: 65px 45px 85px;
  position: relative;
  overflow: hidden;

  .content-wrapper {
    display: flex;
    align-items: center;
    gap: 65px;
    max-width: 1600px;
    margin: 0 auto;

    .content {
      width: 55%;

      h3 {
        font-size: 30px;
        line-height: 36px;
        font-weight: 400;
      }



      .link-wrapper {
        margin-top: 35px;
        display: flex;
        gap: 20px;
      }
    }

    .image-wrapper {
      width: 45%;
      position: relative;

      video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px 65px;

    .content-wrapper {
      gap: 35px;

      .content {
        width: 60%;

        h6.eyebrow-text {
          padding: 6px 10px;
        }

      }

      .image-wrapper {
        width: 40%;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;
    .content-wrapper {
      flex-direction: column;
      gap: 35px;

      .content {
        width: 100%;

        h6.eyebrow-text {
          margin-bottom: 20px;
        }

        .link-wrapper {
          margin-top: 25px;
        }

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

      .image-wrapper {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
      }
    }
  }
}

section.fifty-fifty-text-image {
  padding: 65px 45px;
  background-color: white;
  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 65px;

    .image {
      width: 40%;

      img {
        max-height: 600px;
        margin: 0 auto;
        display: block;
      }
    }

    .content {
      width: 60%;
      h2 {
        text-align: right;
      }

      .text {
        text-align: right;
        margin: 0 0 25px auto;
      }

      .link-wrapper {
        display: flex;
        justify-content: flex-end;
        gap: 20px;
        flex-wrap: wrap;
      }
    }


  }  

  &.left {
    .content-wrapper {
      flex-direction: row-reverse;
      .content {
        h2 {
          text-align: left;
        }

        .text {
          text-align: left;
          margin: 0 0 25px;
          max-width: 700px;
        }

        .link-wrapper {
          justify-content: flex-start;
        }
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px;

    .content-wrapper {
      gap: 35px;
    }
  }

  @media (max-width: 768px) {
    .content-wrapper {
      flex-direction: column-reverse !important;
      gap: 45px;
      .content {
        width: 100%;
        h2 {
          text-align: left;
        }

        .text {
          text-align: left;
          margin: 0 0 25px;
        }

        .link-wrapper {
          justify-content: flex-start;
        }
      }

      .image {
        width: 100%;
      }
    }
  }
}

section.image-slider {
  background-color: var(--color-background);
  padding: 65px 100px 85px;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;

    .heading {
      margin-bottom: 45px;
      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .swiper {
      overflow: visible;
      .swiper-slide {
        display: flex;
        justify-content: center; 

        img {
          width: 100%;
          height: 100%; 
          object-fit: contain;
        }
      }

      .swiper-button-prev {
        left: -75px;
        .swiper-navigation-icon {
          display: none;
        }
      }

      .swiper-button-next {
        right: -75px;
        .swiper-navigation-icon {
          display: none;
        }
      }

      .swiper-pagination {
        bottom: -45px;
        .swiper-pagination-bullet {
          width: 11px;
          height: 11px;
          background-color: #D9D9D9;
          opacity: 1;

          &.swiper-pagination-bullet-active {
            background-color: var(--color-secondary);
          }
        }
      }
    }



  }

  @media (max-width: 768px) {
    padding: 45px 25px 75px;

    .content-wrapper {
      .heading {
        margin-bottom: 25px;
      }

      .swiper {
        .swiper-button-next {
          display: none;
        }

        .swiper-button-prev {
          display: none;
        }
      }
    }
  }
}

section.content-slider {
  background-color: var(--color-background);
  padding: 65px 100px 85px;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;

    .heading {
      margin-bottom: 45px;
      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .swiper {
      overflow: visible;
      .swiper-slide {
        display: flex;
        justify-content: center; 

        .slide-wrapper {
          background-color: white;
          border: solid 3px var(--color-primary);
          border-radius: 15px;
          padding: 65px 85px;

          h2, h3, h4, h5, h6 {
            color: var(--color-secondary);
            margin-bottom: 10px;
          }
        }
      }

      .swiper-button-prev {
        left: -75px;
        .swiper-navigation-icon {
          display: none;
        }
      }

      .swiper-button-next {
        right: -75px;
        .swiper-navigation-icon {
          display: none;
        }
      }

      .swiper-pagination {
        bottom: -45px;
        .swiper-pagination-bullet {
          background-color: #D9D9D9;
          opacity: 1;

          &.swiper-pagination-bullet-active {
            background-color: var(--color-secondary);
          }
        }
      }
    }



  }

  @media (max-width: 1024px) {
    .content-wrapper {
      .swiper {
        .swiper-slide {
          .slide-wrapper {
            padding: 45px 25px;
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px 75px;

    .content-wrapper {
      .heading {
        margin-bottom: 25px;
      }

      .swiper {
        .swiper-button-next {
          display: none;
        }

        .swiper-button-prev {
          display: none;
        }
      }
    }
  }
}

section.content-image-slider {
  background-color: var(--color-background);
  padding: 65px 100px 85px;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;

    .heading {
      margin-bottom: 45px;
      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .swiper {
      overflow: visible;
      .swiper-slide {
        display: flex;
        justify-content: center; 

        .slide-wrapper {
          background-color: white;
          border: solid 3px var(--color-primary);
          border-radius: 15px;
          padding: 65px 85px;
          display: flex;
          align-items: center;
          gap: 45px;


          .content {
            width: 50%;
          }

          .image {
            width: 50%;
          }

          h2, h3, h4, h5, h6 {
            color: var(--color-secondary);
            margin-bottom: 10px;
          }
        }
      }

      .swiper-button-prev {
        left: -75px;
        .swiper-navigation-icon {
          display: none;
        }
      }

      .swiper-button-next {
        right: -75px;
        .swiper-navigation-icon {
          display: none;
        }
      }

      .swiper-pagination {
        bottom: -45px;
        .swiper-pagination-bullet {
          background-color: #D9D9D9;
          opacity: 1;

          &.swiper-pagination-bullet-active {
            background-color: var(--color-secondary);
          }
        }
      }
    }



  }

  @media (max-width: 1024px) {
    .content-wrapper {
      .swiper {
        .swiper-slide {
          .slide-wrapper {
            padding: 45px 25px;
            flex-direction: column;

            .content {
              width: 100%;
            }

            .image {
              width: 100%;
            }
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px 75px;

    .content-wrapper {
      .heading {
        margin-bottom: 25px;
      }

      .swiper {
        .swiper-button-next {
          display: none;
        }

        .swiper-button-prev {
          display: none;
        }
      }
    }
  }
}

section.timeline {
  padding: 85px 45px;
  background-color: var(--color-primary);
  overflow: hidden;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .heading {
      max-width: 900px;
      margin: 0 auto 85px;

      h2 {
        text-align: center;
        color: white;
      }

      h4 {
        text-align: center;
        color: white;
      }

      .text {
        text-align: center;
        p {
          color: white;
        }
      }
    }

    .timeline-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 85px;
      position: relative;

      .timeline-bar {
        position: absolute;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 5px;
        height: 97%;
        background-color: var(--color-secondary);
        z-index: 0;
      }

      .timeline-card {
        position: relative;
        width: 450px;
        background-color: white;
        padding: 45px;
        border-radius: 15px;

        &:nth-of-type(odd) {
          margin-right: 535px;
        }

        &:nth-of-type(even) {
          margin-left: 535px;
        }

        h3 {
          color: var(--color-secondary);
          font-size: 45px;
          line-height: 45px;
          margin-bottom: 15px;
        }

        p {
          font-size: 22px;
          color: var(--color-primary);
        }




        .image-wrapper {
          position: absolute;
          top: -30px;
          right: -30px;
          width: 75px;
          height: 75px;
          background-color: white;
          border-radius: 100px;
          display: flex;
          justify-content: center;
          align-items: center;
          border: solid 6px var(--color-secondary);

          img.icon {
            width: 40px;
            height: 40px;
          }
        }
      }
    }
  }

  @media (max-width: 1200px) {
    .content-wrapper {
      .timeline-wrapper {
        .timeline-card {
          &:nth-of-type(odd) {
            margin-right: 110px;
          }

          &:nth-of-type(even) {
            margin-left: 110px;
          }
        }
      }
    }
  }

  @media (max-width: 1024px) {
    .content-wrapper {
      .timeline-wrapper {
        gap: 85px;

        .timeline-card {
          padding: 35px;

          h3 {
            font-size: 35px;
            margin-bottom: 10px;
          }
        }
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;

    .content-wrapper {
      .heading {
        margin-bottom: 65px;
      }

      .timeline-wrapper {
        gap: 65px;

        .timeline-card {
          width: 300px;
          padding: 25px;

          h3 {
            font-size: 35px;
            margin-bottom: 10px;
          }

          p {
            font-size: 18px;
          }

          .image-wrapper {
            width: 60px;
            height: 60px;
          }
        }
      }
    }
  }

  @media (max-width: 550px) {

    .content-wrapper {
      .timeline-wrapper {
        gap: 45px;

        .timeline-card {
          width: 275px;
          padding: 25px;

          &:nth-of-type(odd) {
            margin-right: 0;
          }

          &:nth-of-type(even) {
            margin-left: 0;
          } 

          .image-wrapper {
            width: 50px;
            height: 50px;
            top: -20px;
            right: -20px;
            border-width: 4px;

            img.icon {
              width: 30px; 
              height: 30px; 
            }
          }
        }
      }
    }
  }


}

section.values {
  padding: 85px 45px;
  background-color: var(--color-background);

  .heading {
    max-width: 900px;
    margin: 0 auto 45px;

    h2 {
      text-align: center;
    }

    h3 {
      text-align: center;
      color: black;
      font-size: 20px;
      line-height: 30px;
      font-weight: 400;
    }

    .text {
      text-align: center;
    }
  }

  .card-wrapper {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;

    .card {
      background-color: white; 
      flex: 1;
      border-radius: 8px;
      box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.05);
      padding: 35px 25px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center; 

      img {
        height: 80px;
        width: auto;
        margin-bottom: 15px;
      }

      h3 {
        text-align: center;
        font-size: 24px;
        line-height: 30px;
        margin-bottom: 10px;
      }

      p {
        text-align: center;
        color: black;
      }
    } 
  }

  .link-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 45px;
  }

  @media (max-width: 1200px) {
    .card-wrapper {
      .card {
        padding: 25px 15px;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 65px 25px;
    .heading {
      max-width: 650px;
    }
    .card-wrapper {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr);
      max-width: 650px;

      .card {
        img {
          height: 50px;
        }

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

  @media (max-width: 768px) {
    padding: 45px 25px;

    .heading {
      margin-bottom: 35px;
      h3 {
        font-size: 18px;
        line-height: 28px;
      }
    }

    .card-wrapper {
      grid-template-columns: minmax(0,1fr);
      max-width: 350px;

      .card {
        padding: 35px 25px;
      }
    }
  }
}

section.leadership {
  padding: 65px 45px;
  background-color: var(--color-background);

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .heading {
      max-width: 900px;
      margin: 0 auto 45px;

      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .grid {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
      gap: 85px;
      max-width: 1200px;
      margin: 0 auto;

      .grid-item {
        .image {
          img {
            border-radius: 50%;
          }
        }

        .content {
          margin-top: 25px;
          h3 {
            font-size: 24px;
            line-height: 24px;
            text-align: center;
            margin-bottom: 5px;
          }

          h4 {
            font-size: 18px;
            line-height: 24px;
            text-align: center;
            color: var(--color-gray-1);
            margin-bottom: 10px;
          }

          .link-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            a.linkedin {
              img {
                width: 30px;
                height: 30px;
              }
            }
          }
        }
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px;
    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
        gap: 65px;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;
    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0,1fr);
        gap: 45px 25px;

        .grid-item {
          max-width: 350px;
          margin: 0 auto;
          .content {
            h3 {
              font-size: 20px;
            }

            h4 {
              font-size: 16px;
              line-height: 20px;
            }
          }
        }
      }
    }
  }
}

section.careers {
  padding: 85px 45px;

  .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;

    .heading {
      max-width: 900px;
      margin: 0 auto 45px;

      h2 {
        text-align: center;
      }

      .text {
        text-align: center;
      }
    }

    .careers-wrapper {
      .career-single {
        background-color: white;
        padding: 45px;
        margin-bottom: 25px;
        box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.05);
        position: relative;
        border-radius: 8px;

        .top {
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 25px;

          a {
            text-decoration: none;

            h3 {
              font-size: 24px;
              line-height: 30px;
              margin-bottom: 0; 
            }
          }

          a.btn {
            white-space: nowrap;
          }
        }



        .details {
          display: flex;
          gap: 5px 25px;
          flex-wrap: wrap;


          p {
            margin: 0;
          }
        }

        .excerpt {
          padding-top: 15px;
          margin-bottom: 15px;
          p {
            margin: 0;
          }
        }
      }

      h4.no-results {
        font-size: 20px;
        line-height: 26px;
        text-align: center;
        margin: 0;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 65px 45px;

    .content-wrapper {
      .careers-wrapper {
        .career-single {
          padding: 25px;
        }
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;
    .content-wrapper {
      .careers-wrapper {
        .career-single {
          .top {
            a {
              h3 {
                font-size: 20px;
                line-height: 26px; 
              }
            }
            a.btn {
              display: none;
            }
          }

          .excerpt {
            padding-top: 10px;
          }
        }
      }
    }
  }
}

section.posts-slider {
  padding: 65px 45px;
  overflow: hidden;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;


    .heading {
      margin-bottom: 25px;
      .text {
        max-width: 900px;
      }
    }

    .swiper {
      overflow: visible;
      .slide-wrapper {
        box-shadow: 4px 6px 15px 0 rgba(0,0,0,0.05);
        .media {
          aspect-ratio: 1.5;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
          }
        }

        .content {
          background-color: var(--color-primary);
          padding: 20px 25px 35px;
          border-bottom-left-radius: 15px;
          border-bottom-right-radius: 15px;

          a {
            text-decoration: none;

            h3 {
              font-size: 20px;
              line-height: 26px;
              color: white;
              margin-bottom: 10px;
            }
          }

          p {
            color: white; 
          }

          .link-wrapper {
            margin-top: 35px;
            a.btn {
              width: 100px; 
              display: inline-block;
            }
          }


        }
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px;
  }

  @media (max-width: 768px) {
    padding: 45px 25px 65px;
  }
}

section.posts-grid {
  padding: 45px 45px 65px;
  background: linear-gradient(to bottom, white 5%, var(--color-background));


  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;

    .filters {
      display: flex;
      gap: 20px;
      margin-bottom: 25px;
      margin: 25px 0 25px;

      .search-filter-component-combobox-base {
        border: solid 1px var(--color-primary);
      }

      .search-filter-component-combobox__actions-input {
        font-family: var(--font-main);
        color: var(--color-primary);
        &::placeholder {
          color: var(--color-primary);  
        }
      }

      .search-filter-component-combobox__selection {
        font-family: var(--font-main);
      }

      .search-filter-input-button {
        background-color: var(--color-primary);
        color: white;
        font-family: var(--font-main);
      }

      .search-filter-input-text {
        border-color: var(--color-primary);
        font-family: var(--font-main);
      }
    }

    .grid {
      display: grid;
      grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
      gap: 45px;
      padding: 15px 0;

      .grid-item {
        border-radius: 12px;
        box-shadow: 2px 2px 5px 5px rgba(0,0,0,0.05);

        .media-wrapper {
          aspect-ratio: 2;
          img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
          }
        }

        .content {
          padding: 25px;
          background-color: white;
          min-height: 150px;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          align-items: flex-start;
          border-bottom-left-radius: 12px;
          border-bottom-right-radius: 12px;
          position: relative;

          .top {
            a {
              text-decoration: none;
              h6 {
                text-transform: capitalize;
                transition: 0.4s;
              }
            }

          }

          .bottom {
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            width: 100%;
            gap: 2px 12px;
          }

          span.content-type {
            font-family: var(--font-main);
            color: var(--color-secondary);
            font-size: 15px;
            font-weight: 600;
            text-transform: uppercase;
            margin-right: 12px;
          }

          span.topic {
            font-family: var(--font-main);
            font-size: 15px;
            font-weight: 600;
            color: var(--color-secondary);
          }


        }

        &:hover {
          .content {
            .top {
              a {
                h6 {
                  color:  #019EC1;
                }
              }
            }
          }
        }
      }
    }
  }

  @media (max-width: 1400px) {
    .content-wrapper {
      .grid {
        gap: 35px 35px;
      }
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 25px 65px;
    .content-wrapper {
      .grid {
        grid-template-columns: minmax(0,1fr) minmax(0,1fr);
      }
    }
  }

  @media (max-width: 768px) {
    padding: 25px 25px 45px;
    .content-wrapper {
      .filters {
        flex-direction: column;
        gap: 15px;
        margin: 20px 0; 
      }
      .grid {
        grid-template-columns: minmax(0,1fr);

        .grid-item {
          .content {
            min-height: 0;
          }
        }
      }
    }
  }
}

section.embed {
  padding: 0 0 45px;
  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;    
  }
}

section.fifty-fifty-content-embed {
  background: linear-gradient(to bottom, white 5%, var(--color-background));
  padding: 65px 45px;
  .heading {
    max-width: 1600px;
    margin: 0 auto 45px;
  }

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    gap: 45px;

    .content {
      width: 45%;
    }

    .embed {
      width: 55%;
    }
  }

  @media (max-width: 1024px) {
    padding: 45px 0;
    .heading {
      padding: 0 25px;
      margin: 0 auto 25px;
      h1 {
        text-align: center;
      }
    }
    .content-wrapper {
      flex-direction: column;
      justify-content: center;
      gap: 15px;


      .content {
        width: auto;
        padding: 0 25px;
      }

      .embed {
        width: 100%;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 25px 0;

    .content-wrapper {
      gap: 0;
    }
  }
}

section.fifty-fifty-text-slider {
  padding: 65px 45px;
  background-color: white;

  .content-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 65px;

    .slider {
      width: 55%;

      .slide-wrapper {
        h5 {
          text-align: center;
          margin: 15px 0 0;
        }
      }

      .swiper-pagination {
        position: relative;
        top: 0;
        bottom: 0;
        margin-top: 15px;
      }
    }

    .content {
      width: 45%;
    }
  }

  @media(max-width: 1024px) {
    padding: 45px 25px;

    .content-wrapper {
      flex-direction: column-reverse;
      gap: 15px;

      .slider {
        width: 100%;
      }

      .content {
        width: 100%;
        h2 {
          text-align: center;
        }

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

}

section.fifty-fifty-counters-image {
  padding: 65px 65px;
  background-color: white;

  .content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 65px;

    .content {
      width: 50%;

      .counter-wrapper {
        display: grid;
        grid-template-columns: minmax(0,1fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1fr);
        gap: 15px;
        .counter-single {
          border: solid 2px var(--color-tertiary);
          border-radius: 10px;
          display: flex;
          flex-direction: column;
          gap: 5px;
          padding: 25px 15px;

          .number-wrapper {
            font-family: var(--font-main);
            font-size: 34px;
            font-weight: 700;
            line-height: 34px;
            color: var(--color-tertiary);
            display: flex;
            justify-content: center;
          }

          p {
            color: var(--color-tertiary);
            text-align: center;
            margin: 0;
            font-weight: 600;
            line-height: 18px;
          }

        }
      }

      .link-wrapper {
        margin-top: 45px;
      }
    }

    .image {
      width: 50%;

      video {
        width: 100%;
        border-radius: 15px;
        max-width: 600px;
        margin: 0 auto;
        display: block;
      }
    }
  }

  @media (max-width: 1200px) {
    .content-wrapper {
      .content {
        width: 60%;
        .counter-wrapper {
          .counter-single {
            padding: 25px 5px;
            .number-wrapper {
              font-size: 24px;
              line-height: 24px;
            }

            p {
              font-size: 14px;
            }
          }
        }
      }

      .image {
        width: 40%;
      }
    }
  } 

  @media (max-width: 1024px) {
    padding: 45px 25px;
    .content-wrapper {
      flex-direction: column;
      .content {
        width: 100%;
        .counter-wrapper {
          .counter-single {
            padding: 25px 5px;
            .number-wrapper {
              font-size: 24px;
              line-height: 24px;
            }

            p {
              font-size: 14px;
            }
          }
        }
      }

      .image {
        width: 100%;
        img {
          max-width: 600px;
          display: block;
          margin: 0 auto;
        }
      }
    }
  }

  @media (max-width: 600px) {
    .content-wrapper {
      gap: 45px;
      .content {
        .counter-wrapper {
          grid-template-columns: minmax(0,1fr) minmax(0,1fr);
        }
      }
    }
  }
}

/* Page specific overrides */

.zoho-form iframe, iframe[src*="forms.zohopublic.com"] {
  height: 1200px !important;
  min-height: 1200px !important;
  border: 0 !important;
}

#formContainer {
  padding-top: 0;
}

@media (max-width: 768px) {
  .zoho-form iframe,
  iframe[src*="forms.zohopublic.com"] {
    height: 1600px !important;
    min-height: 1600px !important;
  }
}


.about-us {
  section.logo-slider {
    background-color: var(--color-secondary);
  }
}

#what-we-do {
  background-color: var(--color-primary); 
  li {
    color: white;
  }
}

.single-case-study, .single-post, .single-news {

  .hero {
    padding: 0 45px;


    .content-wrapper {
      max-width: 1600px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      min-height: 250px;
    }

    h1 {
      margin: 0;
      color: white;
    }
  }

  .main-wrapper {
    padding: 65px 45px;
    background-color: white;

    .content-wrapper {
      display: flex;
      max-width: 1600px;
      margin: 0 auto;
      padding: 0;

      .content {
        width: 75%;
        padding-right: 45px;
        border-right: solid 1px var(--color-gray-5);
        flex: 1;

        img.featured-image {
          width: 100%;
        }

        .share-links {
          display: flex;
          justify-content: flex-end;
          align-items: center;
          padding: 25px 0;

          h5 {
            font-size: 20px;
            line-height: 20px;
            padding-right: 10px;
            border-right: solid 2px var(--color-primary);
            margin: 0;
          }

          a {
            margin-left: 10px;
          }

          &.share-links-bottom {
            border-top: solid 1px var(--color-gray-5);
            margin-top: 45px;
          }
        }

        .overview {
          display: grid;
          grid-template-columns: minmax(0,1fr) minmax(0,1fr);
          gap: 25px;

          .grid-item {
            border: solid 3px var(--color-primary);
            border-radius: 13px;
            background-color: white;
            box-shadow: 4px 6px 15px 0 rgba(0,0,0,.1);
            padding: 20px;

            .item-wrapper {
              display: flex;
              gap: 25px;
              img.icon {
                width: 40px;
                height: 40px;
              }

              .text {
                flex: 1;

                h5.underline {
                  margin-bottom: 3px;
                }

                p {
                  margin: 0;
                }
              }
            }

          }
        }

        .cta {
          margin-top: 35px;
          .content {
            padding-right: 0;
            border-right: none;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 10px;
            margin: 0 auto;
            p {
              text-align: center;

            }
          }
        }

        .main-content {
          margin-top: 25px;
        }

        .text-section {
          margin-top: 35px;
        }

        .quote {
          padding: 45px 65px;
          background-color: var(--color-primary);
          position: relative;
          margin-top: 45px;

          img.opening-quote {
            position: absolute;
            top: 15px;
            left: 15px;
            width: 30px;
            margin: 0;
          }

          img.closing-quote {
            position: absolute;
            bottom: 15px;
            right: 15px;
            transform: scaleX(-1);
            width: 30px;
            margin: 0;
          }

          .quote-wrapper {
            h5 {
              color: white;

              &.author {
                margin-bottom: 0;
              }
            }
          }
        }
      }

      .related {
        width: 25%;
        padding-left: 45px;

        h4 {
          color: var(--color-secondary);
        }

        .related-single {
          margin-bottom: 55px;
          display: block;
          text-decoration: none;

          .image-wrapper {
            aspect-ratio: 1.8;
            margin-bottom: 15px;

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          } 
        }

        .tags {
          .tags-wrapper {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;

            a.tag {
              text-decoration: none;
              background-color: var(--color-gray-5);
              padding: 1px 10px;
              border-radius: 50px;
              color: var(--color-primary);
              font-size: 14px;
              font-weight: 500;
              transition: 0.4s;
              &:hover {
                background-color: var(--color-primary);
                color: white;
              }
            }
          }
        }
      }
    }
  }

  @media (max-width: 1024px) {
    .hero {
      padding: 0 25px;
      .content-wrapper {
        min-height: 200px;
      }
    }

    .main-wrapper {
      padding: 25px; 
      .content-wrapper {
        flex-direction: column;

        .content {
          width: 100%;
          padding-right: 0;
          border-right: 0;
        }

        .related {
          width: 100%;
          padding-left: 0;
        }

      }
    }
  }

  @media (max-width: 768px) {
    .main-wrapper {
      .content-wrapper {
        .content {
          .overview {
            grid-template-columns: minmax(0,1fr);
          }

          .quote {
            padding: 45px 25px;

            img.opening-quote {
              width: 20px;
              top: 10px;
              left: 10px;
            }

            img.closing-quote {
              width: 20px;
              bottom: 10px;
              right: 10px;
            }
          }
        }
      }
    }
  }
}

.quote {
  padding: 45px 65px;
  background-color: var(--color-primary);
  position: relative;
  margin-top: 45px;

  img.opening-quote {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
  }

  img.closing-quote {
    position: absolute;
    bottom: 15px;
    right: 15px;
    transform: scaleX(-1);
    width: 30px;
  }

  .quote-wrapper {
    h5 {
      color: white;

      &.author {
        margin-bottom: 0;
      }
    }
  }

  @media (max-width: 768px) {
    padding: 45px 25px;
    img.opening-quote {
      width: 20px;
      top: 10px;
      left: 10px;
    }

    img.closing-quote {
      width: 20px;
      bottom: 10px;
      right: 10px;
    }
  }
}

main.not-found {
  padding: 0 45px;
  .content-wrapper {
    min-height: 60vh;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    .link-wrapper {
      margin-top: 45px;
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
  }

  @media (max-width: 1024px) {
    padding: 0 25px;
  }
}

.posts-grid {
  .pagination {
    display: flex;
    justify-content: center;
    gap: 7px; 
    margin-top: 25px;
    
    a {
      font-size: 20px;
      text-decoration: none;

      &.prev {
        margin-right: 10px;
      }

      &.next {
        margin-left: 10px;
      }
    }

    span.current, span.dots {
      font-family: var(--font-main);
      font-size: 20px;
      line-height: 24px;
      font-weight: 600;
      color: var(--color-secondary);
    }

    span.dots {
      color: var(--color-primary); 
    }
  }
}

#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;

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

  .lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
  }
}

#lightbox-overlay.active {
  display: flex;
}
