
  section.oneColumn {
    row-gap: 3em;
  }

  #sectionHeader {
    display: flex;
    flex-flow: column nowrap;
    gap: 1em;
    align-items: center;
    padding: 3rem 1rem;
    padding-bottom: 0em;
  }
  
  #sectionHeader  h2 {
    font-size: 1.875em;
    text-align: center;
  }
  
  #sectionHeader  span {
    font-size: 0.925em;
    text-align: center;
  }
  
  #sectionHeader .inRow {
    gap: 2.5em;
  }
  
  #sectionHeader .inRow > a {
    font-family: HEADING;
    font-size: 0.875em;
    font-weight: 700;
    
    position: relative;
    
    color: #237ae4;
  }
  
  #sectionHeader .inRow > a:after {
    content: "";
    background-image: url("https://chint.al/pub/file/eac749c6/arrow-down.svg");
    width: 1em;
    height: 1.25em;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: -1.5em;
    transition: 100ms all linear;
  }
  
  #sectionHeader .inRow > a:hover:after {
    margin-top: 0.75em;
  }

  section#products > h2,
  section#services > h2 {
    font-size: 1.5em;
    text-align: center;
    padding: 3rem 0em;
    color: #ffffff;
    background-color: #00114a;
    margin-bottom: 2em;
  }

  section#products > h2::before,
  section#services > h2::before {
  
    background-color: #00114a;
  }

  section#products > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2em;
    
  }
  
  section#products > div > a {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1em;
  }
  
  section#products > div > a:nth-child(3n+1) {
    background-color: #237ae4;
  }
  
  section#products > div > a:nth-child(3n+2) {
    background-color: #25c1ff;
  }
  
  section#products > div > a:nth-child(3n) {
    background-color: #666464;
  }
  
  section#products > div > a:nth-of-type(2n+1):last-child {
    grid-column: 1 / -1;
  }
  
  section#products > div h3 {
    font-size: 2em;
    color: #ffffff;
  }
  
  section#products > div img {
    height: 12.5em;
    justify-self: center;
  }
  
  section#products > div > a .arrow {
    width: 3.215em;
    height: 2em;
    margin: 0em;
  }

  section#products > div > a:hover .arrow {
    margin-left: 1em;
    transition: 0.3s;
  }

  .servicesContainer {
    display: grid;
    grid-template-columns: 1fr;
  }
  
  .servicesContainer > div {
    display: flex;
    flex-flow: column nowrap;
    gap: 1em;
    padding: 1.25em 1.25em;
    
    background-color: #f4f4f4;
    transition: 0.3s;
  }
  
  .servicesContainer > div:hover,
  .servicesContainer > div:nth-of-type(2):hover,
  .servicesContainer > div:nth-of-type(3):hover {
    color: #ffffff;
    background-color: #237ae4;
  }
  
  .servicesContainer > div:nth-of-type(2),
  .servicesContainer > div:nth-of-type(3) {
    background-color: #e8e8e8;
  }
  
  .servicesContainer > div > img {
    height: 6.875em;
    width: 6.5em;
  }
  
  .servicesContainer > div:hover > img,
  .servicesContainer > div:nth-of-type(2):hover > img,
  .servicesContainer > div:nth-of-type(3):hover > img {
  
    filter:  brightness(0) invert(1);
  }
  
  .servicesContainer > div > h3 {
    font-size: 1.25em;
  }
  
  .servicesContainer > div > p {
    font-size: 0.925em;
  }
  
  section#certificationLogos {
    grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
    gap: 2em;
  }
  

  
  @media screen and (min-width: 767px) {
    
    #sectionHeader {
      padding-bottom: 3em;
    }
    
    #sectionHeader .inRow {
      gap: 3.5em;
    }
    
    #sectionHeader .inRow > a {
      font-size: 1.1em;
    }
    
    section#products > h2,
    section#services > h2 {
      font-size: 2.625em;
    }
    
    section#products > div {
      
      grid-template-columns: 1fr 1fr;
    }
    
    section#products > div > a {
      display: grid;
      grid-template-columns: 2fr 1fr;
      padding: 1.5em 2em;
    }
    
    section#products > div img {
      margin-top: 3.75em;
      justify-self: start;
    }
    
    .servicesContainer {
      grid-template-columns: 1fr 1fr;
    }
    
    .servicesContainer > div {
      padding: 1.562em 1.875em;
    }
    
    .servicesContainer > div > h3 {
      font-size: 1.5em;
    }
  }

  
  @media screen and (min-width: 1200px) {
    
    section#products > div h3 {
      font-size: 2.625em;
    }
    
    section#certificationLogos {
      max-width: 60em;
      margin: auto;
    }
  }
