body {
  margin: 0
}

/* fonts */
.dm-sans {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.montserrat-sans {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.header,
main,
footer {
  margin: 0 0;
  opacity: 0;
  animation: fade 1s linear forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

section {
  margin: 0 auto;
  padding: 1em 0;
  width: calc(100% - 200px - 80px);
}

.first-section-padding-extra {
  padding: 10% 0 8%;
}

.first-section-padding {
  padding: 10% 0 5%;
}

.section-padding-5 {
  padding: 5% 0;
}

.section-padding-8 {
  padding: 8% 0;
}

.columns {
  display: flex;
  margin: 0 auto;
  position: relative;
  width: calc(100% - var(--padding) * 2);
}

.center {
  margin: auto 0;
  text-align: center;
}

.blue-background {
  background-color: #0342eb;
}

.grey-background {
  background-color: #f1f1f1;
}

.white-background {
  background-color: white;
}

.blue-text {
  color: #0342eb;
}

.grey-text {
  color:#595959;
}

.white-text {
  color: white;
}

.break {
  flex-basis: 100%;
  height: 0;
}

h1 {
  font-size: 55px;
  letter-spacing: 2px;
  line-height: 115%;
  margin: 0 0 0.25em;
}

h2 {
  font-size: 45px;
  line-height: 1.25em;
  margin: 0 0 0.5em;
}

h3 {
  font-size: 32px;
  margin: 0 0 1em;
}

h4 {
  font-size: 24px;
  margin: 0.75em 0 0.25em;
}

.subheading {
  font-size: 24px;
  font-weight: 700;
}

button.white {
  background: white;
  border-radius: 5px;
  border: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  height: 40px;
  text-align: center;
  transition: all 0.2s ease, visibility 0s;
  width: 180px;

  a {
    text-decoration: none;
    color: black;
  }
}

button.white:hover {
  color: #0342eb;

  a {
    color: #0342eb;
  }
}

button.blue {
  background-color: #0342eb;
  border-radius: 5px;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 0.5em 1.25em;

  a {
    color: white;
    text-decoration: none;
  }
}

button.blue:hover {
  background: rgba(3, 66, 235, 0.8);
}

.logo {
  align-items: start;
  display: flex;
  flex-grow: 2;
  justify-content: flex-start;

  img {
    height: auto;
    width: 12vw;
  }
}

.image-large {
  background-color: gray;
  height: 400px;
  width: 450px;
}

.section-image {
  display: grid;
  height: auto;
  margin: 0 auto;
  position: relative;

  img {
    height: 500px;
    width: auto;
  }

  img.smaller {
    height: 450px;
  }

  img.smallest {
    height: 400px;
  }
}

/* navigation */
.header {
  background: white;
  border-bottom: 1px solid #595959;
  box-sizing: border-box;
  color: #000000;
  display: block;
  height: auto;
  font-size: 1vw;
  font-weight: 700;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;

  section {
    width: 90%;
  }

  nav {
    display: flex;
    flex-grow: 2;

    ul.nav-links {
      display: grid;
      direction: ltr;
      flex-grow: 1;
      height: auto;
      list-style: none;
      margin: auto;
      padding-inline-start: 0;
      width: calc(100% + 8px);
      align-items: center;

      li {
        text-align: center;

        a {
          color: black;
          text-decoration: none;
        }

        a:hover {
          color: #0342eb;
        }
      }

      li.selected {
        a {
          color: #0342eb;
        }
      }

      li:nth-child(6) {
        grid-column: 6;
      }

      li {
        button {
          a {
            color: white;
          }

          a:hover {
            color: white;
          }
        }
      }
    }
  }
  .hamburger-menu {
    display: none;
  }
}
#mobileNav {
  display: none;
}

/* Team Page */
section#team {
  h2 {
    margin: 0 auto 1em;
  }

  .team-member-content {
    background-color: white;
    border-radius: 10px;
    box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.25);
    padding: 1em;
    height: fit-content;
    margin-bottom: 2em;

    .columns {
      h4, h5 {
        display: none;
      }
    }

    .image {
      height: fit-content;
      width: fit-content;
      margin-right: 1em;
    }

    div.description {
      text-align: left;
      width: 80%;

      h4,
      h5 {
        margin: 0;
        font-weight: 700;
        display: block;
      }

      h5 {
        color: #0342eb;
        font-weight: 800;
        font-size: 14px;
      }

      p {
        color: #595959;
        font-weight: 500;
        margin-bottom: 0;
      }
    }
  }
}

/* Clients Page */
main {
  section#clients {
    align-items: center;
    display: flex;
    flex-direction: column;
    width: 100%;

    h2 {
      margin: 0.5em auto 1em;
    }
  
    .client-content {
      text-align: center;
      background-color: white;
      border-radius: 10px;
      box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.25);
      padding: 2em;
      height: fit-content;
      margin-bottom: 2.5em;
      width: 75%;
  
      .image {
        margin-right: 2em;
        img {
          height: auto;
          width: 250px;
        }
      }
  
      div.description {
        text-align: left;
        width: 80%;
  
        h4,
        h5 {
          margin: 0;
          font-weight: 700;
        }
  
        h5 {
          color: #0342eb;
          font-weight: 700;
          font-size: 14px;
        }
  
        p {
          color: #595959;
          font-weight: 500;
          margin-bottom: 0;
        }
      }
    }
  }

  section#previousExperience {
    text-align: center;
    width: 100%;
  
    h2 {
      margin: 0 0 0.25em;
    }
  
    p {
      color: #595959;
      font-weight: 400;
      margin-bottom: 2em;
      padding: 0 1em;
    }
  
    .columns {
      gap: 4em 10em;
      width: 75%;
      padding: 3em;
      /* background: white;
      border-radius: 10px; */
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      flex-direction: row;
  
      .logo {
        max-height: 100px;
        width: auto;
        flex-grow: 0;
  
        img {
          max-height: 100px;
          width: auto;
        }
      }
    }
  }
}

/* Home Page > intro section */
section#intro {
  .columns {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
  }
  div.section-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 600px;
    flex-grow: 0;

    p {
      color: #595959;
      font-size: 22px;
      font-weight: 500;
      line-height: 150%;
      margin-top: 0;
    }
  }

  div.section-image {
    display: flex;
    margin: unset;
  }
}

section#aboutUs,
section#ourMission,
section#offeringDataCapture,
section#customerSupport {
  width: 100%;
  .columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
  }

  div.section-image {
    display: flex;
    margin: unset;
  }

  div.section-text {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 700px;
    flex-grow: 0;

    h4 {
      margin-top: 0;
    }

    p {
      font-size: 18px;
      font-weight: 500;
      line-height: 150%;
      margin-top: 0;
    }
  }

  button {
    a {
      color: black;
      text-decoration: none;
    }

    a:hover {
      color: #0342eb;
    }
  }

  .box-rows {
    width: 75%;
    margin: 4em auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2em;

    .box {
      background-color: white;
      border-radius: 10px;
      display: flex;
      height: fit-content;
      padding: 1em;
      width: 85%;

      .icon {
        display: flex;
        flex-direction: column;
        height: 80px;
        margin-right: 1em;
        width: 80px;
      }

      .content {
        margin-right: 2em;
        text-align: left;
        width: 85%;

        h4 {
          margin: 0 0 0.25em;
        }

        p {
          color: #595959;
          font-size: 18px;
          font-weight: 500;
          line-height: 1.35em;
          margin: 0 0 0.5em;
        }
      }
    }
  }

  div.white-background {
    color: #595959;
    margin: 0 auto;
    width: 75%;
    padding: 1.25em;
    border-radius: 10px;
    margin-top: 5em;

    p,
    ul {
      font-size: 18px;
      font-weight: 500;
      margin-top: 0;
    }

    p {
      margin-bottom: 0.25em;
    }

    h4 {
      margin-top: 2em;
    }
  }
}

section#offeringDataCapture {
  .columns {
    .section-text {
      width: 730px;
    }
  }
}

/* Index page > Services section */
section#services {
  width: 100%;

  span {
    color: #0342eb;
  }

  .columns {
    align-items: center;
    flex-flow: wrap;
    gap: 2em;
    justify-content: center;
    margin: 0 auto;
    width: 75%;

    .box {
      border: 1px solid #e8e6e6;
      border-radius: 10px;
      box-shadow: 10px 15px 25px rgba(3, 66, 235, 0.1);
      display: flex;
      height: 250px;
      width: 570px;

      .icon {
        display: flex;
        flex-direction: column;
        height: 80px;
        margin: 1.5em;
        width: 80px;
      }

      .content {
        margin-right: 2em;
        text-align: left;
        width: 75%;

        p {
          color: #595959;
          font-size: 18px;
          font-weight: 500;
          line-height: 1.35em;
          margin: 0 0 0.5em;
        }

        button.align-bottom {
          margin-top: 1.15em;
        }
      }
    }
  }
}

/* Blog page */
section#allPosts {
  min-height: 90vh;
  .columns {
    flex-direction: column;
    .page-title {
      width: 75%;
      margin: 0 auto;
    }
  }
  .box-rows {
    margin: 2em auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3em;

    .box {
      background-color: white;
      border-radius: 10px;
      box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.25);
      display: flex;
      gap: 2em;
      height: fit-content;
      padding: 1em;
      text-align: center;
      width: 75%;

      align-items: center;

      .icon {
        height: auto;
        margin: auto 0.5em auto 0;
        width: 33%;

        img {
          height: auto;
          width: 300px;
        }
      }

      .content {
        margin-right: 2em;
        text-align: left;
        width: 85%;

        .written-by-date {
          display: flex;
          flex-direction: row;
          gap: 0.5em;
          align-items: center;
          margin-bottom: 1.25em;

          img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
          }

          .written-by-info {
            p {
              color: #595959;
              font-size: 14px;
              margin: 0;
            }

            .date-published {
              font-style: italic;
            }
          }
        }

        h4 {
          margin: 0 0 0.75em;
        }

        p {
          color: #595959;
          font-size: 16px;
          font-weight: 400;
          line-height: 1.35em;
          margin: 0 0 0.5em;
        }
      }
    }

    .box:hover {
      cursor: pointer;

      h4 {
        color: #0342eb;
      }
    }
  }
}

/* Blog > post page */
section#blogPost {
  .columns {
    flex-direction: column;
    width: 75%;

    .back-link {
      a {
        text-decoration: none;

        h4 {
          margin: 1em auto;

          i {
            font-size: 0.65em;
          }
        }
      }

      a:hover {
        h4 {
          color: #0342eb;
        }
      }
    }

    .blog-content {
      .illustration {
        text-align: center;
        img {
          width: 50%;
          height: auto;
        }
      }
      .written-by-info {
        font-size: 14px;
        color: #595959;
        p {
          span {
            font-style: italic;
          }
        }
      }
    }
  }
}

/* Index, Services, About, Clients pages */
section#contactUs {
  color: white;
  height: 175px;
  margin: 0 auto;
  padding: 3% 0;
  text-align: center;
  width: 100%;

  h2 {
    margin-bottom: 0;
  }

  p {
    font-size: 22px;
    font-weight: 500;
    line-height: 150%;
    margin-top: 0;
  }
}

section#providingData {
  .columns  {
    align-items: flex-start !important;

    .section-image {
      margin: 0;
      padding-right: 5%;
    }
  }
}

section#distributionData {
  div.section-image {
    padding-right: 5%;
  }
}

/* About > Our History section */
/* Services > Providing Clean And Accurate Data section */
/* Services > Building Final Distribution Data section */
section#ourHistory,
section#providingData,
section#distributionData {
  width: 100%;

  .columns  {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  div.section-image {
    display: block;
  }

  #ourHistoryIllustration.section-image {
    padding-right: 5%;
  }

  div.section-text.wide {
    /* padding: 0 5%; */
    width: 900px;
    p {
      width: 75%;
    }

    ul {
      margin: 1em 0 2em !important;
    }

    .box {
      background-color: white;
      border-radius: 10px;
      box-shadow: 10px 15px 25px rgba(3, 66, 235, 0.1);
      display: flex;
      height: fit-content;
      padding: 1em;
      width: 100%;
      margin-bottom: 2em;

      .icon {
        background-color: #595959;
        display: flex;
        flex-direction: column;
        height: 80px;
        margin: 1.5em;
        width: 80px;
      }

      .content {
        margin-right: 2em;
        text-align: left;
        width: 75%;

        p {
          color: #595959;
          font-size: 18px;
          font-weight: 500;
          line-height: 1.35em;
          margin: 0 0 0.5em;
          width: 100%;
        }
      }
    }
  }

  div.section-text {
    align-self: start;
    color: black;
    position: relative;
    width: 100%;
    padding: 0 5%;

    p {
      color: #595959;
      font-size: 18px;
      font-weight: 500;
      line-height: 150%;
      margin: 0;
      width: 90%;
    }

    ul {
      color: #595959 !important;
      font-size: 18px;
      font-weight: 500;
      margin-top: 0;
    }
  }

  div.center-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    margin-top: 3em;

    h3 {
      flex-basis: 100%;
      margin-bottom: 0;
      text-align: center;
    }

    div.box {
      background-color: white;
      border-radius: 10px;
      box-shadow: 10px 15px 25px rgba(3, 66, 235, 0.1);
      display: flex;
      height: fit-content;
      padding: 1em;
      width: 25%;
      margin-bottom: 2em;

      .icon {
        display: flex;
        flex-direction: column;
        height: 80px;
        margin-right: 1em;
        width: 80px;
      }

      .content {
        margin-right: 2em;
        text-align: left;
        width: 75%;

        h4 {
          margin: 0 0 0.25em;
        }

        p {
          color: #595959;
          font-size: 18px;
          font-weight: 500;
          line-height: 1.35em;
          margin: 0 0 0.5em;
          width: 100%;
        }
      }
    }
  }

  .box-rows {
    width: 100%;
    margin: 3em auto 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 2em;

    .box {
      background-color: white;
      border-radius: 10px;
      box-shadow: 10px 15px 25px rgba(3, 66, 235, 0.25);
      display: flex;
      height: fit-content;
      padding: 1em;
      width: 85%;

      .icon {
        display: flex;
        flex-direction: column;
        height: 80px;
        margin-right: 1em;
        width: 80px;
      }

      .content {
        margin-right: 2em;
        text-align: left;
        width: 85%;

        h4 {
          margin: 0 0 0.25em;
        }

        p {
          color: #595959;
          font-size: 18px;
          font-weight: 500;
          line-height: 1.35em;
          margin: 0 0 0.5em;
        }
      }
    }
  }

  p.full-width {
    padding: 0 5%;
    margin-top: 3em;
    color: #595959;
    font-size: 18px;
    font-weight: 500;
  }

  div.white-background {
    color: #595959;
    margin: 0 auto;
    width: 80%;
    padding: 1.25em;
    border-radius: 10px;
    margin-top: 3em;

    p,
    ul {
      font-size: 18px;
      font-weight: 500;
      margin-top: 0;
      width: 90%;
    }

    p {
      margin-bottom: 0.25em;
    }

    h4 {
      margin: 0 0 0.25em;
    }
  }

  button {
    a {
      color: black;
      text-decoration: none;
    }

    a:hover {
      color: #0342eb;
    }
  }
}

/* Contact page > Contact Us section */
section#contact {
  .columns {
    padding-bottom: 5%;
    .contact-info {
      flex-grow: 1;
      padding-left: 3%;

      h2 {
        margin: 0;
      }

      p {
        margin: 1em 0;
        font-size: 18px;
        font-weight: 500;
      }

      .contact-items {
        display: flex;
        flex-direction: column;

        p {
          margin: 0.25em 0;
          i {
            color:#0342eb;
            margin-right: 0.5em;
          }
        }
      }
      
      .hours {
        margin-top: 4em;
        
        h3 {
          margin-bottom: 0.5em;
        }
        
        p {
          margin: 0.25em 0 0;
          line-height: 1.75em;
        } 
      }
    }
    .contact-form {
      flex-grow: 1;
      form {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        width: 600px;
        
        .form-row {
          display: flex;
          flex-direction: row;
          gap: 1em;

          .form-group {
            width: 48%;

            input {
              width: 100%;
            }
          }
        }
        
        label {
          display: block;
          padding-bottom: 0.25em;
          font-size: 18px;
        }
        
        input {
          height: 2em;
          margin-bottom: 1em;
        }

        input, textarea {
          padding: 0.5em 0.25em;
          font-family: "DM Sans", sans-serif;
          font-optical-sizing: auto;
          font-style: normal;
          font-size: 16px;
          font-weight: 500;
        }

        ::placeholder {
          font-family: "DM Sans", sans-serif;
          font-optical-sizing: auto;
          font-style: normal;
        }

        button {
          margin-top: 1em;
        }
      }
    }
  }
}

/* Contact page > Payment Information */
section#paymentInformation {
  width: 100%;
  color: white;

  h2 {
    text-align: center;
    margin-bottom: 0;
  }


  .columns {
    align-items: baseline;
    flex-direction: row;
    gap: 10em;
    justify-content: center;

    p {
      margin-bottom: 0;
    }
    
    .address-row {
      margin-top: 1em;
      text-align: left;
      .office-address {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0;
      }
    }

    .buttons-row {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 1em;

      button {
        width: fit-content;
        a {
          text-decoration: none;
          color: black;
        }
  
        a:hover {
          color: #0342eb;
        }
      }
    }
  }
}

/* Thank you page */
section#thankYou {
  width: 100%;
  .columns {
    align-items: baseline;
    flex-direction: row;
    gap: 10em;
    justify-content: center;
    text-align: center;

    .section-content {
      img {
        max-width: 30%;
        height: auto;
        margin: 4em auto 2em;
      }
    }
  }
}

footer {
  background-color: white;
  height: 150px;
  padding: 1em 6em;

  .columns {
    justify-content: space-evenly;

    .footer-items {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      width: 100%;
      align-items: center;

      .logo {
        display: flex;
        flex-direction: column;

        p {
          color: #595959;
          font-size: 16px;
          font-weight: 500;
          margin-top: 5px;
        }

        p.copyright {
          font-size: 14px;
          font-weight: 300;
        }
      }

      .contact-info {
        display: flex;
        flex-direction: column;
        div.address, div.phone, div.email {
          display: flex;
          flex-direction: row;
          gap: 0.25em;
          align-items: baseline;
        }

        i {
          color: #0342eb;
          margin-right: 5px;
        }

        p {
          color: #595959;
          font-size: 16px;
          font-weight: 500;
          line-height: 1.4em;
          margin: 0 0 0.75em;
        }

        a {
          text-decoration: none;
        }

        a:hover {
          text-decoration: underline;
        }
      }
    }
  }
}

/* Responsive Styling */
@media only screen and (max-width: 1500px) {
  .header,
  #payNowButton {
    font-size: 1.2vw;
    section {
      width: calc(100% - 0px - 80px);
    }
  }

  

  section#intro {
    padding: 8% 0;

    .columns {
      flex-wrap: wrap-reverse;

      div.section-text {
        margin: auto;
        text-align: center;
        width: 900px;
      }

      div.section-image {
        img {
          height: 450px;
        }
      }
    }
  }

  section#aboutUs,
  section#customerSupport,
  section#ourMission {
    .columns {
      flex-wrap: wrap;
      flex-direction: column;
      align-items: center;
      
      div.section-image {
        margin: 0 auto;
        text-align: center;
      }

      div.section-text {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        width: 75% !important;
      }
    }

    .white-background {
      margin-top: 2em !important;
    }
  }

  section#providingData {
    .columns  {
      .section-image {
        padding-right: 0;
      }
    }
  }
  
  section#distributionData {
    div.section-image {
      padding-right: 0;
    }
  }

  section#providingData,
  section#distributionData,
  section#ourHistory {
    .columns  {
      flex-wrap: wrap-reverse;
      align-items: flex-start !important;

      #ourHistoryIllustration {
        padding-right: 0;
      }

      div.section-text.wide,
      div.section-text {
        align-items: center;  
        display: flex;
        flex-direction: column;
        margin-top: 1em;
        text-align: center;
        width: 75%;
        
        p {
          width: 100%;
        }

        br {
          display: none;
        }

        ul {
          text-align: left;
        }
      }
    }

    .box-rows {
      align-items: center;

      ul {
        font-size: 16px !important;
      }
    }

    p.full-width {
      text-align: center;
      width: 75%;
      margin: 2em auto 0;
    }
  }

  section#allPosts {
    .box-rows {
      .box {
        width: 85%;
      }
    }
  }

  section#contact {
    .columns {
      .contact-info {
        padding: 0 3%;
      }
    }
  }
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .header,
  #payNowButton {
    font-size: 1.5vw;

    .logo {
      img {
        width: 14vw;
      }
    }
    section {
      width: calc(100% - 0px - 80px);
    }
  }

  section#intro {
    padding: 15% 0 5%;

    .columns {
      flex-wrap: wrap-reverse;

      div.section-text {
        margin: auto;
        text-align: center;
        width: 900px;
        align-items: center;

        h1 {
          line-height: 110%;
          margin: 0.25em;
        }

        button {
          width: fit-content;
        }
      }

      div.section-image {
        img {
          height: 425px;
          padding-bottom: 2em;
        }
      }
    }
  }

  section#aboutUs,
  section#offeringDataCapture,
  section#customerSupport {
    .columns {
      flex-wrap: wrap;

      div.section-image {
        margin: 0 auto;
      }

      div.section-text {
        margin: 0 auto;
        text-align: center;
        width: 750px;
        align-items: center;
      }

      div.section-image {
        img {
          height: 425px;
          padding-bottom: 2em;
        }
      }
    }
  }

  section#providingData {
    .center-columns {
      flex-direction: column;
      align-items: center;

      .box {
        width: 75% !important;
      }
    }
  }

  section#allPosts {
    .columns {
      .page-title {
        width: 90%;
      }
    }
    .box-rows {
      .box {
        width: 90%;
        flex-direction: column;
        gap: 0;

        .icon {
          width: unset;
          margin: 0 auto;
        }

        .content {
          width: 90%;
        }
      }
    }
  }

  section#contact {
    .columns {
      flex-direction: column;
      align-items: center;
      padding-bottom: 0;

      .contact-info {
        text-align: center;
        padding-left: 0;

        p {
          margin: 0.5em 0;
        }

        .contact-items {
          p {
            margin: 0.1em 0;
          }
        }

        .hours {
          margin: 2em 0 3em;
        }
      }
    }
  }

  /* Thank you page */
  section#thankYou {
    .columns {
      .section-content {
        img {
          max-width: 40%;
          margin: 3em auto 2em;
        }
      }
    }
  }

  footer {
    padding: 1em 5em;
    height: fit-content;

    .contact-info {
      p, i {
        font-size: 14px;
      }
    }
  }
}

@media only screen and (max-width: 992px) {
  button {
    font-size: 16px !important;
    height: 35px !important;
    width: 140px !important;
  }

  h2 {
    font-size: 40px !important;
    line-height: 1.25em;
  }

  h4 {
    font-size: 22px !important;
  }

  p {
    font-size: 16px !important;
  }

  ul {
    font-size: 16px;
  }

  .image-large {
    height: 300px;
    width: 350px;
  }

  .header,
  #payNowButton {
    font-size: 1.75vw;
    min-height: unset;

    section {
      width: calc(100% - 0px - 80px);

      .columns {
        .logo {
          img {
            width: 16vw;
          }
        }
      }
    }
  }

  div.section-image {
    img {
      height: 400px;
    }
  }

  section#intro {
    padding: 18% 5% 5%;

    .columns {
      flex-wrap: wrap-reverse;

      div.section-text {
        left: 0;
        margin: 0 auto;
        text-align: center;
        flex-basis: 100%;
        align-items: center;

        h1 {
          font-size: 50px;
          line-height: 110%;
          margin: 0.25em;
        }

        p {
          font-size: 20px;
        }

        button {
          font-size: 16px;
        }
      }
    }
  }

  section#aboutUs,
  section#offeringDataCapture,
  section#customerSupport {
    .columns {
      flex-wrap: wrap;

      div.section-image {
        img {
          height: 400px;
        }
      }

      div.section-text {
        margin: 0 auto;
        text-align: center;
        width: 650px;
        align-items: center;

        h4 {
          margin: 0.75em 0 0;
        }

        h2 {
          line-height: 1.25em;
          margin: 0 0 0.25em;
        }
      }
    }

    .box-rows {
      margin: 2em auto 0;
    }

    .white-background {
      ul {
        font-size: 16px !important;
      }
    }
  }

  section#services {
    width: 85%;

    .subheading {
      font-size: 20px;
    }

    h3 {
      font-size: 36px;
    }

    .columns {
      .box {
        height: unset;
        width: 525px;
        padding-bottom: 1.25em;

        .content {
          h4 {
            font-size: 20px;
            margin: 1em 0 0.25em;
          }

          p {
            font-size: 16px;
          }

          button.align-bottom {
            margin-top: 0.25em;
          }
        }
      }
    }
  }

  section#providingData {
    .center-columns {
      flex-direction: column;
      align-items: center;
      margin-top: 2em !important;

      .box {
        margin-bottom: 0 !important;
      }
    }

    .section-text {
      h2 {
        margin-top: 0.75em;
      }
      ul {
        font-size: 16px !important;
      }
    }
  }

  section#ourHistory {
    div.section-text {
      ul {
        margin-top: 1em;
        font-size: 16px;
      }
    }
  }

  section#distributionData {
    .section-text {
      h2 {
        margin-top: 0.75em;
      }
    }
  }

  section#team {
    .team-member-content {
      padding: 2em;

      .columns {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;

        h5 {
          color: #0342eb;
        }

        h4, h5 {
          display: block;
          flex-basis: 100%;
          text-align: center;
        }

        h5 {
          margin: 0;
        }

        h4 {
          margin: 0 0 0.5em;
        }

        div.description {
          text-align: center;
          width: 90%;

          h4, h5 {
            display: none;
          }
        }
      }
    }
  }

  section#contactUs {
    height: unset;

    h2 {
      font-size: 40px;
      margin: 0 2em;
    }

    p {
      font-size: 18px;
      margin: 0 3em 1em;

      br {
        display: none;
      }
    }
  }

  section#contact {
    .columns {
      .contact-form {
        form {
          width: 75vw;

          label {
            font-size: 16px;
          }

          button {
            width: 100% !important;
          }
        }
      }
    }
  }

  section#paymentInformation {
    .columns {
      gap: 5em;
      .buttons-row {
        button {
          width: fit-content !important;
        }
      }
    }
  }

  section#blogPost {
    width: 100%;
    .columns {
      .blog-content {
        .illustration {
          img {
            width: 75%;
          }
        }
        .written-by-info {
          p {
            font-size: 14px !important;
          }
        }
      }
    }
  }

  footer {
    padding: 1em 2em;
    height: fit-content;

    .contact-info {
      p, i {
        font-size: 14px;
      }
    }
  }
}

@media only screen and (max-width: 768px) {
  button {
    font-size: 16px !important;
    height: 35px !important;
    width: 140px !important;
  }

  .first-section-padding {
    padding: 15% 0 8%;
  }

  .section-padding-5 {
    padding: 8% 0;
  }

  .image-large {
    height: 300px;
    width: 350px;
  }

  div.section-image {
    img {
      height: 375px;
    }
  }

  div.section-image {
    img.smallest {
      height: 325px;
    }
  }

  .header,
  #payNowButton {
    font-size: 2vw;
    min-height: unset;

    section {
      width: calc(100% - 0px - 80px);

      .columns {
        .logo {
          img {
            width: 18vw;
          }
        }

        nav {
          display: none;
        }
        .hamburger-menu {
          display: block;
          margin: auto;
          font-size: 16px;
        }
      }
    }
  }

  .mobile-navigation {
    width: 100%;
    height: 100%;
    background: white;
    z-index: 101;
    position: fixed;
    top: 0;

    a.icon {
      display: block;
      text-align: right;
      padding: 1em 1em 0 0;

      i {
        font-size: 18px;
      }
    }

    .nav-links {
      list-style: none;
      text-align: center;
      padding-left: 0;

      li {
        padding: 1em 0;

        a {
          text-decoration: none;
          color: #0342eb;
          font-weight: 500;
        }
      }

      li:hover {
        background-color: #0342eb;

        a {
          color: white;
        }
      }
    }
  }

  section#intro {
    padding: 15% 5% 5%;
    width: 75%;

    .columns {
      flex-wrap: wrap-reverse;

      div.section-text {
        align-items: center;
        flex-basis: 100%;
        left: 0;
        margin: 0 auto;
        text-align: center;

        h1 {
          font-size: 40px;
          line-height: 110%;
          margin: 0.25em;
        }

        p {
          font-size: 20px;
        }

        button {
          font-size: 16px;
        }
      }
    }
  }

  section#aboutUs,
  section#offeringDataCapture {
    .columns {
      flex-wrap: wrap;

      div.section-image {
        img {
          height: 350px;
        }
      }

      div.section-text {
        left: 0;
        margin: 0 auto;
        text-align: center;
        width: 575px;
        align-items: center;

        h4 {
          font-size: 22px;
          margin: 0.75em 0 0;
        }

        h2 {
          font-size: 40px;
          line-height: 1.25em;
          margin: 0 0 0.25em;
        }

        p {
          font-size: 16px;
        }
      }
    }

    .box-rows {
      margin: 2em auto 0;

      h4 {
        font-size: 20px;
      }

      p {
        font-size: 16px !important;
      }
    }
  }

  section#services {
    width: 85%;

    .subheading {
      font-size: 20px;
    }

    h3 {
      font-size: 36px;
    }

    .columns {
      .box {
        height: unset;
        width: 525px;
        padding-bottom: 1.25em;

        .content {
          h4 {
            font-size: 20px;
            margin: 1em 0 0.25em;
          }

          p {
            font-size: 16px;
          }

          button.align-bottom {
            margin-top: 0.25em;
          }
        }
      }
    }
  }

  section#contactUs {
    height: unset;

    h2 {
      font-size: 40px;
      margin: 0 2em;
    }

    p {
      font-size: 18px;
      margin: 0 3em 1em;

      br {
        display: none;
      }
    }
  }

  section#team {
    width: 85%;
    h2 {
      margin: 0 auto 0.5em;
    }
    .team-member-content {
      .columns {
        .image {
          margin: 0 auto;
          text-align: center;

          img {
            height: 75%;
            width: 75%;
          }
        }
      }
    }
  }

  section#clients {
    .client-content {
      .columns {
        flex-direction: column;
        align-items: center;

        div.description {
          text-align: center;
          width: 100%;
        }

        .image {
          margin-right: 0;
        }
      }
      
    }
  }

  main {
    section#previousExperience {
      .columns {
        padding: 1em;

        .logo {
          img {
            max-height: 75px;
          }
        }
      }
    }
  }

  section#paymentInformation {
    .columns {
      flex-wrap: wrap;
      flex-direction: column;
      gap: 1em;
      align-items: center;
      
      .buttons-row {
        align-items: center;
        gap: 0.5em;
      }

      .address-row {
        margin-top: 0;
        text-align: center;

        .office-address {
          margin-top: 0.5em;
        }
      }
    }
  }

  /* Thank you page */
  section#thankYou {
    .columns {
      .section-content {
        img {
          max-width: 50%;
          margin: 3em auto 2em;
        }
      }
    }
  }

  section#contact {
    .columns {
      .contact-form {
        form {
          .form-row {
            .form-group {
              input {
                width: 98%;
              }
            }
          }
        }
      }
    }
  }

  
  
  footer {
    padding: 1em 2em;
    height: fit-content;

    .contact-info {
      p, i {
        font-size: 14px;
      }
    }
  }
}

@media only screen and (max-width: 600px) {
  h2 {
    font-size: 28px !important;
  }

  h3 {
    font-size: 22px !important;
  }

  h4 {
    font-size: 18px !important;
  }

  p {
    font-size: 14px !important;
  }

  ul {
    font-size: 14px !important;
  }

  .first-section-padding-extra {
    padding: 20% 0 10%;
  }

  .first-section-padding {
    padding: 15% 0 10%;
  }

  .section-padding-5 {
    padding: 10% 0;
  }

  button {
    font-size: 14px !important;
    height: unset !important;
    width: unset !important;
    padding: 0.5em 1.25em;
  }

  div.section-image#ourMissionIllustration {
    img {
      height: 325px;
    }
  }

  div.section-image {
    img.smallest {
      height: auto;
      width: 75%;
      margin: 0 auto;
      display: flex;
    }
  }

  .image-large {
    height: 200px;
    width: 225px;
  }

  .header,
  #payNowButton {
    font-size: 14px;
    min-height: unset;

    section {
      width: 85%;

      .columns {
        .logo {
          img {
            width: 150px;
            height: auto;
          }
        }
      }
    }
  }

  section#intro {
    padding: 20% 0 5%;
    width: 90%;

    .columns {
      flex-wrap: wrap-reverse;

      div.section-text {
        left: 0;
        margin: 0 auto;
        text-align: center;
        flex-basis: 100%;

        h1 {
          font-size: 30px;
          line-height: 100%;
          margin: 0.25em;
        }

        p {
          font-size: 16px;
        }

        button {
          font-size: 14px;
        }
      }

      div.section-image {
        img {
          height: 300px;
        }
      }
    }
  }

  section#aboutUs,
  section#offeringDataCapture {
    .columns {
      flex-wrap: wrap;

      div.section-image {
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        img {
          width: 75%;
          height: auto;
        }
      }

      div.section-text {
        margin: 0 auto;
        text-align: center;
        width: 85%;

        h4 {
          font-size: 18px;
          margin: 0.75em 0 0;
          font-weight: 500;
        }

        h2 {
          font-size: 28px;
          line-height: 1.25em;
          margin: 0 0 0.25em;
        }

        p {
          font-size: 14px;
          font-weight: 500;
        }
      }
    }

    .box-rows {
      margin: 2em auto 0;

      h4 {
        font-size: 18px;
      }

      p {
        font-size: 14px !important;
      }
    }
  }

  section#providingData {
    .columns {
      .section-text {
        ul {
          font-size: 14px !important;
        }
      }
    }
  }

  section#distributionData {
    .box-rows {
      margin-top: 2em;

      .box {
        flex-direction: column;

        .icon {
          margin: 0 auto;
        }

        .content {
          width: 90%;
          margin-right: 0;
          text-align: center;

          h4 {
            margin: 0.5em auto;
          }

          ul {
            font-size: 14px !important;
          }
        }
      }
    }
  }

  section#customerSupport {
    .white-background {
      ul {
        font-size: 14px !important;
      }
    }
  }

  section#services {
    padding: 5% 0;
    width: 90%;

    .subheading {
      font-size: 18px;
    }

    h3 {
      font-size: 26px;
      line-height: 1.1em;
      margin: 0 0 0.5em;
    }

    .columns {
      width: 85%;
      .box {
        height: unset;
        width: 525px;
        padding-bottom: 1.25em;
        display: flex;
        flex-direction: column;

        .icon {
          margin: 1em auto;
        }

        .content {
          text-align: center;
          width: 85%;
          margin: 0 auto;

          h4 {
            font-size: 18px;
            margin: 0 0 0.25em;
          }

          p {
            font-size: 14px;
            margin-bottom: 0.75em;
          }

          button.align-bottom {
            margin-top: 0.25em;
          }
        }
      }
    }
  }

  main {
    section#previousExperience {
      .columns {
        gap: 4em 6em;
        width: 90%;
        .logo {
          img {
            max-height: 50px;
          }
        }
      }
    }
  }

  section#clients {
    .client-content {
      .columns {
        .image {
          img {
            width: 200px;
          }
        }
      }
      
    }
  }

  section#allPosts {
    width: 90%;
  }

  section#contact {
    .columns {
      .contact-info {
        .hours {
          margin: 2em 0;

          h3 {
            margin-bottom: 0.25em;
          }
        }
      }
      .contact-form {
        form {
          label, input, textarea {
            font-size: 14px;
          }

          button {
            width: 100% !important;
          }
          
          .form-row {
            .form-group {
              input {
                width: 95%;
              }
            }
          }
        }
      }
    }
  }

  section#blogPost {
    .columns {
      .blog-content {
        .written-by-info {
          p {
            font-size: 12px !important;
          }
        }

      }
    }
  }

  /* Thank you page */
  section#thankYou {
    .columns {
      .section-content {
        img {
          margin: 3em auto 1em;
        }
      }
    }
  }

  section#contactUs {
    height: unset;
    padding: 7% 0;

    h2 {
      font-size: 32px;
      line-height: 1.1em;
      margin: 0em 1em 0.25em;
    }

    p {
      font-size: 14px;
      margin: 0 1.5em 1em;

      br {
        display: none;
      }
    }
  }

  footer {
    padding: 1em 0 0;
    height: fit-content;
    .columns {
      .footer-items {
        width: 75%;
        .logo {
          align-items: center;
          text-align: center;
          img {
            width: 150px;
            height: auto;
          }
          p {
            font-size: 14px;

            br {
              display: none;
            }
          }
          p.copyright {
            font-size: 12px;
          }
        }

        .contact-info {
          display: none;
        }
      }
    }
  }
}
