@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap);
/**
* Responsive break points
*/
/**
* Preset break points
*/
/**
 * Element        
 */
/**
 * Modifier.       
 */
/**************/
/*****GRID*****/
/**************/
.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-1 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-7 {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-7 {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-8 {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-8 {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-9 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-9 {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-10 {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-11 {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-11 {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}
@media only screen and (max-width: 1472px) {
  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-12 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-1-xlarge {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-1-xlarge {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-1-xlarge {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-1-xlarge {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-1-xlarge {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-2-xlarge {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-2-xlarge {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-2-xlarge {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-2-xlarge {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-2-xlarge {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-3-xlarge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-3-xlarge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-3-xlarge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-3-xlarge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-3-xlarge {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-4-xlarge {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-4-xlarge {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-4-xlarge {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-4-xlarge {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-4-xlarge {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-5-xlarge {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-5-xlarge {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-5-xlarge {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-5-xlarge {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-5-xlarge {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-6-xlarge {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-6-xlarge {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-6-xlarge {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-6-xlarge {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-6-xlarge {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-7-xlarge {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-7-xlarge {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-7-xlarge {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-7-xlarge {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-7-xlarge {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-8-xlarge {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-8-xlarge {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-8-xlarge {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-8-xlarge {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-8-xlarge {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-9-xlarge {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-9-xlarge {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-9-xlarge {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-9-xlarge {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-9-xlarge {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-10-xlarge {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-10-xlarge {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-10-xlarge {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-10-xlarge {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-10-xlarge {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-11-xlarge {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-11-xlarge {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-11-xlarge {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-11-xlarge {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-11-xlarge {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1472px) {
  .grid-12-xlarge {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .grid-12-xlarge {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-12-xlarge {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-12-xlarge {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-12-xlarge {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-1-large {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-1-large {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-1-large {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-1-large {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-2-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-2-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-2-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-2-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-3-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-3-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-3-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-3-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-4-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-4-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-4-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-4-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-5-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-5-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-5-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-5-large {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-6-large {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-6-large {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-6-large {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-6-large {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-7-large {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-7-large {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-7-large {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-7-large {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-8-large {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-8-large {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-8-large {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-8-large {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-9-large {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-9-large {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-9-large {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-9-large {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-10-large {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-10-large {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-10-large {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-10-large {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-11-large {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-11-large {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-11-large {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-11-large {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 1050px) {
  .grid-12-large {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .grid-12-large {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-12-large {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-12-large {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-1-medium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-1-medium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-1-medium {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-2-medium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-2-medium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-2-medium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-3-medium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-3-medium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-3-medium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-4-medium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-4-medium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-4-medium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-5-medium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-5-medium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-5-medium {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-6-medium {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-6-medium {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-6-medium {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-7-medium {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-7-medium {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-7-medium {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-8-medium {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-8-medium {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-8-medium {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-9-medium {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-9-medium {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-9-medium {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-10-medium {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-10-medium {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-10-medium {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-11-medium {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-11-medium {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-11-medium {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 870px) {
  .grid-12-medium {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .grid-12-medium {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-12-medium {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-1-small {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-1-small {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-2-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-2-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-3-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-3-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-4-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-4-small {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-5-small {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-5-small {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-6-small {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-6-small {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-7-small {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-7-small {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-8-small {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-8-small {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-9-small {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-9-small {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-10-small {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-10-small {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-11-small {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-11-small {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .grid-12-small {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}
@media only screen and (max-width: 480px) {
  .grid-12-small {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-1-xsmall {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-2-xsmall {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-3-xsmall {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-4-xsmall {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-5-xsmall {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-6-xsmall {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-7-xsmall {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-8-xsmall {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-9-xsmall {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-10-xsmall {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-11-xsmall {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .grid-12-xsmall {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }
}

@media only print {
  .grid-1-print {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-2-print {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-3-print {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-4-print {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-5-print {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-6-print {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-7-print {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-8-print {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-9-print {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-10-print {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-11-print {
    display: grid;
    grid-template-columns: repeat(11, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

@media only print {
  .grid-12-print {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}

.columns-1 {
  grid-column: span 1;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-1 {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-1 {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 870px) {
  .columns-1 {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 600px) {
  .columns-1 {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 480px) {
  .columns-1 {
    grid-column: span 1;
  }
}

.columns-2 {
  grid-column: span 2;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-2 {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-2 {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 870px) {
  .columns-2 {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 600px) {
  .columns-2 {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 480px) {
  .columns-2 {
    grid-column: span 2;
  }
}

.columns-3 {
  grid-column: span 3;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-3 {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-3 {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 870px) {
  .columns-3 {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 600px) {
  .columns-3 {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 480px) {
  .columns-3 {
    grid-column: span 3;
  }
}

.columns-4 {
  grid-column: span 4;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-4 {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-4 {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 870px) {
  .columns-4 {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 600px) {
  .columns-4 {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 480px) {
  .columns-4 {
    grid-column: span 4;
  }
}

.columns-5 {
  grid-column: span 5;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-5 {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-5 {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 870px) {
  .columns-5 {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 600px) {
  .columns-5 {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 480px) {
  .columns-5 {
    grid-column: span 5;
  }
}

.columns-6 {
  grid-column: span 6;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-6 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-6 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 870px) {
  .columns-6 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 600px) {
  .columns-6 {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 480px) {
  .columns-6 {
    grid-column: span 6;
  }
}

.columns-7 {
  grid-column: span 7;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-7 {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-7 {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 870px) {
  .columns-7 {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 600px) {
  .columns-7 {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 480px) {
  .columns-7 {
    grid-column: span 7;
  }
}

.columns-8 {
  grid-column: span 8;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-8 {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-8 {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 870px) {
  .columns-8 {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 600px) {
  .columns-8 {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 480px) {
  .columns-8 {
    grid-column: span 8;
  }
}

.columns-9 {
  grid-column: span 9;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-9 {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-9 {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 870px) {
  .columns-9 {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 600px) {
  .columns-9 {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 480px) {
  .columns-9 {
    grid-column: span 9;
  }
}

.columns-10 {
  grid-column: span 10;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-10 {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-10 {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 870px) {
  .columns-10 {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 600px) {
  .columns-10 {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 480px) {
  .columns-10 {
    grid-column: span 10;
  }
}

.columns-11 {
  grid-column: span 11;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-11 {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-11 {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 870px) {
  .columns-11 {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 600px) {
  .columns-11 {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 480px) {
  .columns-11 {
    grid-column: span 11;
  }
}

.columns-12 {
  grid-column: span 12;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-12 {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-12 {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 870px) {
  .columns-12 {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 600px) {
  .columns-12 {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 480px) {
  .columns-12 {
    grid-column: span 12;
  }
}

.columns-1-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-1-xlarge {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-1-xlarge {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 870px) {
  .columns-1-xlarge {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 600px) {
  .columns-1-xlarge {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 480px) {
  .columns-1-xlarge {
    grid-column: span 1;
  }
}

.columns-2-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-2-xlarge {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-2-xlarge {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 870px) {
  .columns-2-xlarge {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 600px) {
  .columns-2-xlarge {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 480px) {
  .columns-2-xlarge {
    grid-column: span 2;
  }
}

.columns-3-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-3-xlarge {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-3-xlarge {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 870px) {
  .columns-3-xlarge {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 600px) {
  .columns-3-xlarge {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 480px) {
  .columns-3-xlarge {
    grid-column: span 3;
  }
}

.columns-4-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-4-xlarge {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-4-xlarge {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 870px) {
  .columns-4-xlarge {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 600px) {
  .columns-4-xlarge {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 480px) {
  .columns-4-xlarge {
    grid-column: span 4;
  }
}

.columns-5-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-5-xlarge {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-5-xlarge {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 870px) {
  .columns-5-xlarge {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 600px) {
  .columns-5-xlarge {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 480px) {
  .columns-5-xlarge {
    grid-column: span 5;
  }
}

.columns-6-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-6-xlarge {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-6-xlarge {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 870px) {
  .columns-6-xlarge {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 600px) {
  .columns-6-xlarge {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 480px) {
  .columns-6-xlarge {
    grid-column: span 6;
  }
}

.columns-7-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-7-xlarge {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-7-xlarge {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 870px) {
  .columns-7-xlarge {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 600px) {
  .columns-7-xlarge {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 480px) {
  .columns-7-xlarge {
    grid-column: span 7;
  }
}

.columns-8-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-8-xlarge {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-8-xlarge {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 870px) {
  .columns-8-xlarge {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 600px) {
  .columns-8-xlarge {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 480px) {
  .columns-8-xlarge {
    grid-column: span 8;
  }
}

.columns-9-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-9-xlarge {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-9-xlarge {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 870px) {
  .columns-9-xlarge {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 600px) {
  .columns-9-xlarge {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 480px) {
  .columns-9-xlarge {
    grid-column: span 9;
  }
}

.columns-10-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-10-xlarge {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-10-xlarge {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 870px) {
  .columns-10-xlarge {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 600px) {
  .columns-10-xlarge {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 480px) {
  .columns-10-xlarge {
    grid-column: span 10;
  }
}

.columns-11-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-11-xlarge {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-11-xlarge {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 870px) {
  .columns-11-xlarge {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 600px) {
  .columns-11-xlarge {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 480px) {
  .columns-11-xlarge {
    grid-column: span 11;
  }
}

.columns-12-xlarge {
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  .columns-12-xlarge {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 1050px) {
  .columns-12-xlarge {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 870px) {
  .columns-12-xlarge {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 600px) {
  .columns-12-xlarge {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 480px) {
  .columns-12-xlarge {
    grid-column: span 12;
  }
}

.columns-1-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-1-large {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 870px) {
  .columns-1-large {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 600px) {
  .columns-1-large {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 480px) {
  .columns-1-large {
    grid-column: span 1;
  }
}

.columns-2-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-2-large {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 870px) {
  .columns-2-large {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 600px) {
  .columns-2-large {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 480px) {
  .columns-2-large {
    grid-column: span 2;
  }
}

.columns-3-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-3-large {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 870px) {
  .columns-3-large {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 600px) {
  .columns-3-large {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 480px) {
  .columns-3-large {
    grid-column: span 3;
  }
}

.columns-4-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-4-large {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 870px) {
  .columns-4-large {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 600px) {
  .columns-4-large {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 480px) {
  .columns-4-large {
    grid-column: span 4;
  }
}

.columns-5-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-5-large {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 870px) {
  .columns-5-large {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 600px) {
  .columns-5-large {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 480px) {
  .columns-5-large {
    grid-column: span 5;
  }
}

.columns-6-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-6-large {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 870px) {
  .columns-6-large {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 600px) {
  .columns-6-large {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 480px) {
  .columns-6-large {
    grid-column: span 6;
  }
}

.columns-7-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-7-large {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 870px) {
  .columns-7-large {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 600px) {
  .columns-7-large {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 480px) {
  .columns-7-large {
    grid-column: span 7;
  }
}

.columns-8-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-8-large {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 870px) {
  .columns-8-large {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 600px) {
  .columns-8-large {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 480px) {
  .columns-8-large {
    grid-column: span 8;
  }
}

.columns-9-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-9-large {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 870px) {
  .columns-9-large {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 600px) {
  .columns-9-large {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 480px) {
  .columns-9-large {
    grid-column: span 9;
  }
}

.columns-10-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-10-large {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 870px) {
  .columns-10-large {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 600px) {
  .columns-10-large {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 480px) {
  .columns-10-large {
    grid-column: span 10;
  }
}

.columns-11-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-11-large {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 870px) {
  .columns-11-large {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 600px) {
  .columns-11-large {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 480px) {
  .columns-11-large {
    grid-column: span 11;
  }
}

.columns-12-large {
  max-width: 100%;
}
@media only screen and (max-width: 1050px) {
  .columns-12-large {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 870px) {
  .columns-12-large {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 600px) {
  .columns-12-large {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 480px) {
  .columns-12-large {
    grid-column: span 12;
  }
}

.columns-1-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-1-medium {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 600px) {
  .columns-1-medium {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 480px) {
  .columns-1-medium {
    grid-column: span 1;
  }
}

.columns-2-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-2-medium {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 600px) {
  .columns-2-medium {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 480px) {
  .columns-2-medium {
    grid-column: span 2;
  }
}

.columns-3-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-3-medium {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 600px) {
  .columns-3-medium {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 480px) {
  .columns-3-medium {
    grid-column: span 3;
  }
}

.columns-4-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-4-medium {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 600px) {
  .columns-4-medium {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 480px) {
  .columns-4-medium {
    grid-column: span 4;
  }
}

.columns-5-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-5-medium {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 600px) {
  .columns-5-medium {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 480px) {
  .columns-5-medium {
    grid-column: span 5;
  }
}

.columns-6-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-6-medium {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 600px) {
  .columns-6-medium {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 480px) {
  .columns-6-medium {
    grid-column: span 6;
  }
}

.columns-7-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-7-medium {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 600px) {
  .columns-7-medium {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 480px) {
  .columns-7-medium {
    grid-column: span 7;
  }
}

.columns-8-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-8-medium {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 600px) {
  .columns-8-medium {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 480px) {
  .columns-8-medium {
    grid-column: span 8;
  }
}

.columns-9-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-9-medium {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 600px) {
  .columns-9-medium {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 480px) {
  .columns-9-medium {
    grid-column: span 9;
  }
}

.columns-10-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-10-medium {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 600px) {
  .columns-10-medium {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 480px) {
  .columns-10-medium {
    grid-column: span 10;
  }
}

.columns-11-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-11-medium {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 600px) {
  .columns-11-medium {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 480px) {
  .columns-11-medium {
    grid-column: span 11;
  }
}

.columns-12-medium {
  max-width: 100%;
}
@media only screen and (max-width: 870px) {
  .columns-12-medium {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 600px) {
  .columns-12-medium {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 480px) {
  .columns-12-medium {
    grid-column: span 12;
  }
}

.columns-1-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-1-small {
    grid-column: span 1;
  }
}
@media only screen and (max-width: 480px) {
  .columns-1-small {
    grid-column: span 1;
  }
}

.columns-2-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-2-small {
    grid-column: span 2;
  }
}
@media only screen and (max-width: 480px) {
  .columns-2-small {
    grid-column: span 2;
  }
}

.columns-3-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-3-small {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 480px) {
  .columns-3-small {
    grid-column: span 3;
  }
}

.columns-4-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-4-small {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 480px) {
  .columns-4-small {
    grid-column: span 4;
  }
}

.columns-5-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-5-small {
    grid-column: span 5;
  }
}
@media only screen and (max-width: 480px) {
  .columns-5-small {
    grid-column: span 5;
  }
}

.columns-6-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-6-small {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 480px) {
  .columns-6-small {
    grid-column: span 6;
  }
}

.columns-7-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-7-small {
    grid-column: span 7;
  }
}
@media only screen and (max-width: 480px) {
  .columns-7-small {
    grid-column: span 7;
  }
}

.columns-8-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-8-small {
    grid-column: span 8;
  }
}
@media only screen and (max-width: 480px) {
  .columns-8-small {
    grid-column: span 8;
  }
}

.columns-9-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-9-small {
    grid-column: span 9;
  }
}
@media only screen and (max-width: 480px) {
  .columns-9-small {
    grid-column: span 9;
  }
}

.columns-10-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-10-small {
    grid-column: span 10;
  }
}
@media only screen and (max-width: 480px) {
  .columns-10-small {
    grid-column: span 10;
  }
}

.columns-11-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-11-small {
    grid-column: span 11;
  }
}
@media only screen and (max-width: 480px) {
  .columns-11-small {
    grid-column: span 11;
  }
}

.columns-12-small {
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  .columns-12-small {
    grid-column: span 12;
  }
}
@media only screen and (max-width: 480px) {
  .columns-12-small {
    grid-column: span 12;
  }
}

.columns-1-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-1-xsmall {
    grid-column: span 1;
  }
}

.columns-2-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-2-xsmall {
    grid-column: span 2;
  }
}

.columns-3-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-3-xsmall {
    grid-column: span 3;
  }
}

.columns-4-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-4-xsmall {
    grid-column: span 4;
  }
}

.columns-5-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-5-xsmall {
    grid-column: span 5;
  }
}

.columns-6-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-6-xsmall {
    grid-column: span 6;
  }
}

.columns-7-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-7-xsmall {
    grid-column: span 7;
  }
}

.columns-8-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-8-xsmall {
    grid-column: span 8;
  }
}

.columns-9-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-9-xsmall {
    grid-column: span 9;
  }
}

.columns-10-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-10-xsmall {
    grid-column: span 10;
  }
}

.columns-11-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-11-xsmall {
    grid-column: span 11;
  }
}

.columns-12-xsmall {
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  .columns-12-xsmall {
    grid-column: span 12;
  }
}

.columns-1-print {
  max-width: 100%;
}
@media only print {
  .columns-1-print {
    grid-column: span 1;
  }
}

.columns-2-print {
  max-width: 100%;
}
@media only print {
  .columns-2-print {
    grid-column: span 2;
  }
}

.columns-3-print {
  max-width: 100%;
}
@media only print {
  .columns-3-print {
    grid-column: span 3;
  }
}

.columns-4-print {
  max-width: 100%;
}
@media only print {
  .columns-4-print {
    grid-column: span 4;
  }
}

.columns-5-print {
  max-width: 100%;
}
@media only print {
  .columns-5-print {
    grid-column: span 5;
  }
}

.columns-6-print {
  max-width: 100%;
}
@media only print {
  .columns-6-print {
    grid-column: span 6;
  }
}

.columns-7-print {
  max-width: 100%;
}
@media only print {
  .columns-7-print {
    grid-column: span 7;
  }
}

.columns-8-print {
  max-width: 100%;
}
@media only print {
  .columns-8-print {
    grid-column: span 8;
  }
}

.columns-9-print {
  max-width: 100%;
}
@media only print {
  .columns-9-print {
    grid-column: span 9;
  }
}

.columns-10-print {
  max-width: 100%;
}
@media only print {
  .columns-10-print {
    grid-column: span 10;
  }
}

.columns-11-print {
  max-width: 100%;
}
@media only print {
  .columns-11-print {
    grid-column: span 11;
  }
}

.columns-12-print {
  max-width: 100%;
}
@media only print {
  .columns-12-print {
    grid-column: span 12;
  }
}

.container {
  width: 100%;
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (max-width: 1472px) {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .container {
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media only screen and (max-width: 600px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media only screen and (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media only print {
  .container {
    box-sizing: border-box;
    padding-left: 18px;
    padding-right: 18px;
  }
}
@media only screen and (max-width: 1472px) {
  .container--bleed-xlarge {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 1050px) {
  .container--bleed-large {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 870px) {
  .container--bleed-medium {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 600px) {
  .container--bleed-small {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  .container--bleed-xsmall {
    padding-left: 0;
    padding-right: 0;
  }
}
@media only print {
  .container--bleed-print {
    padding-left: 0;
    padding-right: 0;
  }
}

.hide {
  display: none !important;
}

@media only screen and (max-width: 480px) {
  .hide-xsmall {
    display: none !important;
  }
}
@media only screen and (max-width: 600px) {
  .hide-small {
    display: none !important;
  }
}
@media only screen and (max-width: 870px) {
  .hide-medium {
    display: none !important;
  }
}
@media only screen and (max-width: 1050px) {
  .hide-large {
    display: none !important;
  }
}
@media only screen and (max-width: 1472px) {
  .hide-xlarge {
    display: none !important;
  }
}
@media only print {
  .hide-print {
    display: none !important;
  }
}
.inline-xsmall,
.inline-small,
.inline-medium,
.inline-large,
.inline-xlarge {
  display: none !important;
}

.inline {
  display: inline !important;
}

@media only screen and (max-width: 480px) {
  .inline-xsmall {
    display: inline !important;
  }
}
@media only screen and (max-width: 600px) {
  .inline-small {
    display: inline !important;
  }
}
@media only screen and (max-width: 870px) {
  .inline-medium {
    display: inline !important;
  }
}
@media only screen and (max-width: 1050px) {
  .inline-large {
    display: inline !important;
  }
}
@media only screen and (max-width: 1472px) {
  .inline-xlarge {
    display: inline !important;
  }
}
@media only print {
  .inline-print {
    display: inline !important;
  }
}
.inline-block-xsmall,
.inline-block-small,
.inline-block-medium,
.inline-block-large,
.inline-block-xlarge {
  display: none !important;
}

.inline-block {
  display: inline-block !important;
}

@media only screen and (max-width: 480px) {
  .inline-block-xsmall {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 600px) {
  .inline-block-small {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 870px) {
  .inline-block-medium {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 1050px) {
  .inline-block-large {
    display: inline-block !important;
  }
}
@media only screen and (max-width: 1472px) {
  .inline-block-xlarge {
    display: inline-block !important;
  }
}
@media only print {
  .inline-block-print {
    display: inline-block !important;
  }
}
.block-xsmall,
.block-small,
.block-medium,
.block-large,
.block-xlarge {
  display: none !important;
}

.block {
  display: block !important;
}

@media only screen and (max-width: 480px) {
  .block-xsmall {
    display: block !important;
  }
}
@media only screen and (max-width: 600px) {
  .block-small {
    display: block !important;
  }
}
@media only screen and (max-width: 870px) {
  .block-medium {
    display: block !important;
  }
}
@media only screen and (max-width: 1050px) {
  .block-large {
    display: block !important;
  }
}
@media only screen and (max-width: 1472px) {
  .block-xlarge {
    display: block !important;
  }
}
@media only print {
  .block-print {
    display: block !important;
  }
}
.flex-xsmall,
.flex-small,
.flex-medium,
.flex-large,
.flex-xlarge {
  display: none !important;
}

.flex {
  display: flex !important;
}

@media only screen and (max-width: 480px) {
  .flex-xsmall {
    display: flex !important;
  }
}
@media only screen and (max-width: 600px) {
  .flex-small {
    display: flex !important;
  }
}
@media only screen and (max-width: 870px) {
  .flex-medium {
    display: flex !important;
  }
}
@media only screen and (max-width: 1050px) {
  .flex-large {
    display: flex !important;
  }
}
@media only screen and (max-width: 1472px) {
  .flex-xlarge {
    display: flex !important;
  }
}
@media only print {
  .flex-print {
    display: flex !important;
  }
}
.align-left {
  text-align: left;
}

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

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

@media only screen and (max-width: 1472px) {
  .align-left-xlarge {
    text-align: left;
  }
}

@media only screen and (max-width: 1472px) {
  .align-center-xlarge {
    text-align: center;
  }
}

@media only screen and (max-width: 1472px) {
  .align-right-xlarge {
    text-align: right;
  }
}

@media only screen and (max-width: 1050px) {
  .align-left-large {
    text-align: left;
  }
}

@media only screen and (max-width: 1050px) {
  .align-center-large {
    text-align: center;
  }
}

@media only screen and (max-width: 1050px) {
  .align-right-large {
    text-align: right;
  }
}

@media only screen and (max-width: 870px) {
  .align-left-medium {
    text-align: left;
  }
}

@media only screen and (max-width: 870px) {
  .align-center-medium {
    text-align: center;
  }
}

@media only screen and (max-width: 870px) {
  .align-right-medium {
    text-align: right;
  }
}

@media only screen and (max-width: 600px) {
  .align-left-small {
    text-align: left;
  }
}

@media only screen and (max-width: 600px) {
  .align-center-small {
    text-align: center;
  }
}

@media only screen and (max-width: 600px) {
  .align-right-small {
    text-align: right;
  }
}

@media only screen and (max-width: 480px) {
  .align-left-xsmall {
    text-align: left;
  }
}

@media only screen and (max-width: 480px) {
  .align-center-xsmall {
    text-align: center;
  }
}

@media only screen and (max-width: 480px) {
  .align-right-xsmall {
    text-align: right;
  }
}

@media only print {
  .align-left-print {
    text-align: left;
  }
}

@media only print {
  .align-center-print {
    text-align: center;
  }
}

@media only print {
  .align-right-print {
    text-align: right;
  }
}

.visually-hidden,
.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-size: 1.125rem;
  line-height: 1.5555555556em;
}
@media only screen and (max-width: 1472px) {
  body {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1050px) {
  body {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 870px) {
  body {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 600px) {
  body {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 1.125rem;
  }
}
@media only print {
  body {
    font-size: 1.125rem;
  }
}
.mce-content-body body {
  font-size: 1.125rem;
}

h1 {
  font-size: 3rem;
  line-height: 4.5rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 2.125rem;
}
@media only screen and (max-width: 1472px) {
  h1 {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 1050px) {
  h1 {
    font-size: 2.625rem;
  }
}
@media only screen and (max-width: 870px) {
  h1 {
    font-size: 2.375rem;
    line-height: 3.875rem;
  }
}
@media only screen and (max-width: 600px) {
  h1 {
    font-size: 2.25rem;
    line-height: 3.5rem;
  }
}
@media only screen and (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media only print {
  h1 {
    font-size: 2.25rem;
  }
}
.mce-content-body h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.375rem;
  line-height: 3.5rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 1472px) {
  h2 {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 1050px) {
  h2 {
    font-size: 2.375rem;
  }
}
@media only screen and (max-width: 870px) {
  h2 {
    font-size: 2.125rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 2rem;
  }
}
@media only print {
  h2 {
    font-size: 2rem;
  }
}
.mce-content-body h2 {
  font-size: 2.375rem;
}

h3 {
  font-size: 2rem;
  line-height: 2.75rem;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1472px) {
  h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 1050px) {
  h3 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 870px) {
  h3 {
    font-size: 1.75rem;
    line-height: 2.375rem;
  }
}
@media only screen and (max-width: 600px) {
  h3 {
    font-size: 1.625rem;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 1.625rem;
  }
}
@media only print {
  h3 {
    font-size: 1.625rem;
  }
}
.mce-content-body h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1472px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1050px) {
  h4 {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 870px) {
  h4 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 600px) {
  h4 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 480px) {
  h4 {
    font-size: 1.375rem;
  }
}
@media only print {
  h4 {
    font-size: 1.375rem;
  }
}
.mce-content-body h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.375rem;
  line-height: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 1472px) {
  h5 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 1050px) {
  h5 {
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 870px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 600px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 480px) {
  h5 {
    font-size: 1.25rem;
  }
}
@media only print {
  h5 {
    font-size: 1.25rem;
  }
}
.mce-content-body h5 {
  font-size: 1.375rem;
}

h6 {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.9375rem;
}
@media only screen and (max-width: 1472px) {
  h6 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1050px) {
  h6 {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 870px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 600px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 480px) {
  h6 {
    font-size: 1.125rem;
  }
}
@media only print {
  h6 {
    font-size: 1.125rem;
  }
}
.mce-content-body h6 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
  margin-bottom: 28px;
}
p.extra-large-text {
  font-size: 1.5rem;
  line-height: 1.3333333333em;
  font-weight: 600;
}
@media only screen and (max-width: 1472px) {
  p.extra-large-text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1050px) {
  p.extra-large-text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 870px) {
  p.extra-large-text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 600px) {
  p.extra-large-text {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 480px) {
  p.extra-large-text {
    font-size: 1.5rem;
  }
}
@media only print {
  p.extra-large-text {
    font-size: 1.5rem;
  }
}
.mce-content-body p.extra-large-text {
  font-size: 1.5rem;
}
p.large-text {
  font-size: 1.25rem;
  line-height: 1.6em;
}
@media only screen and (max-width: 1472px) {
  p.large-text {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 1050px) {
  p.large-text {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 870px) {
  p.large-text {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 600px) {
  p.large-text {
    font-size: 1.25rem;
  }
}
@media only screen and (max-width: 480px) {
  p.large-text {
    font-size: 1.25rem;
  }
}
@media only print {
  p.large-text {
    font-size: 1.25rem;
  }
}
.mce-content-body p.large-text {
  font-size: 1.25rem;
}
p.small-text {
  font-size: 1rem;
  line-height: 1.5em;
}
@media only screen and (max-width: 1472px) {
  p.small-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1050px) {
  p.small-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 870px) {
  p.small-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  p.small-text {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  p.small-text {
    font-size: 1rem;
  }
}
@media only print {
  p.small-text {
    font-size: 1rem;
  }
}
.mce-content-body p.small-text {
  font-size: 1rem;
}
p.extra-small-text {
  font-size: 0.75rem;
  line-height: 1.3333333333em;
}
@media only screen and (max-width: 1472px) {
  p.extra-small-text {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 1050px) {
  p.extra-small-text {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 870px) {
  p.extra-small-text {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 600px) {
  p.extra-small-text {
    font-size: 0.75rem;
  }
}
@media only screen and (max-width: 480px) {
  p.extra-small-text {
    font-size: 0.75rem;
  }
}
@media only print {
  p.extra-small-text {
    font-size: 0.75rem;
  }
}
.mce-content-body p.extra-small-text {
  font-size: 0.75rem;
}

a {
  color: #0f4478;
  border-bottom: none;
  text-decoration: underline;
  font-weight: 600;
}
a:hover {
  color: #227e73;
}
a.arrowlink {
  font-size: 1.25rem;
  line-height: 2rem;
  font-weight: 600;
  text-decoration: underline;
  color: #0f4478;
  display: inline;
}
a.arrowlink:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.25rem;
  content: "\f054";
  margin-left: 8px;
  display: inline-block;
  text-decoration: none;
}
a.arrowlink:hover {
  color: #227e73;
}
a.arrowlink:hover:after {
  color: #227e73;
}
a.button {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  margin-bottom: 6px;
  margin-right: 20px;
}
a.button:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
a.button:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
.align-center > a.button, .align-center > p > a.button, p[style*="text-align: center;"] > a.button {
  margin-left: 10px;
  margin-right: 10px;
}
.align-right > a.button, .align-right > p > a.button, p[style*="text-align: right;"] > a.button {
  margin-left: 0;
  margin-right: 20px;
}
a.arrowbutton {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #fffcdf;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 16px;
  text-align: left;
}
a.arrowbutton:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
a.arrowbutton:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
a.arrowbutton:hover {
  background-color: #fff;
  color: #227e73;
}
a.arrowbutton:after {
  margin-left: auto;
  padding-left: 18px;
}
a.arrowbutton:after {
  font-size: 1.125rem;
}
a.arrowbutton-person {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #fffcdf;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 16px;
  text-align: left;
  padding: 12px 24px 12px 12px;
}
a.arrowbutton-person:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
a.arrowbutton-person:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
a.arrowbutton-person:hover {
  background-color: #fff;
  color: #227e73;
}
a.arrowbutton-person:after {
  margin-left: auto;
  padding-left: 18px;
}
a.arrowbutton-person:before {
  content: url("../images/icons/arrowbutton-person.svg");
  margin-right: 18px;
}
a.arrowbutton-person:after {
  font-size: 1.125rem;
}
a.arrowbutton-people {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #fffcdf;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 16px;
  text-align: left;
  padding: 12px 24px 12px 12px;
}
a.arrowbutton-people:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
a.arrowbutton-people:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
a.arrowbutton-people:hover {
  background-color: #fff;
  color: #227e73;
}
a.arrowbutton-people:after {
  margin-left: auto;
  padding-left: 18px;
}
a.arrowbutton-people:before {
  content: url("../images/icons/arrowbutton-people.svg");
  margin-right: 18px;
}
a.arrowbutton-people:after {
  font-size: 1.125rem;
}
a.arrowbutton-person-arrow {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #fffcdf;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 16px;
  text-align: left;
  padding: 12px 24px 12px 12px;
}
a.arrowbutton-person-arrow:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
a.arrowbutton-person-arrow:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
a.arrowbutton-person-arrow:hover {
  background-color: #fff;
  color: #227e73;
}
a.arrowbutton-person-arrow:after {
  margin-left: auto;
  padding-left: 18px;
}
a.arrowbutton-person-arrow:before {
  content: url("../images/icons/arrowbutton-person-arrow.svg");
  margin-right: 18px;
}
a.arrowbutton-person-arrow:after {
  font-size: 1.125rem;
}

ul {
  margin-top: 0;
  padding-left: 1em;
}
ul li {
  padding-bottom: 20px;
}

ol {
  margin-top: 0;
  padding-left: 1em;
}
ol li {
  padding-bottom: 20px;
}

blockquote {
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 600;
  color: #0f4478;
  margin: 0 0 28px 0;
}
blockquote > :last-child {
  margin-bottom: 0;
}
blockquote.mint {
  background-color: #c5e3db;
  padding: 32px 40px 38px 40px;
  border-radius: 24px;
  margin: 62px 0 80px 0;
  position: relative;
}
blockquote.mint:after {
  content: url("../images/blockquote-arrow-mint.svg");
  position: absolute;
  left: 40px;
  bottom: -40px;
}
blockquote.dustyPink {
  background-color: #f0e2e7;
  padding: 32px 40px 38px 40px;
  border-radius: 24px;
  margin: 62px 0 80px 0;
  position: relative;
}
blockquote.dustyPink:after {
  content: url("../images/blockquote-arrow-dustyPink.svg");
  position: absolute;
  left: 40px;
  bottom: -40px;
}

span.highlight {
  background-color: #c5e3db;
  color: #227e73;
  padding: 0px 8px;
  border-radius: 8px;
}
span.semibold {
  font-weight: 600;
}
span.dark-blue-text {
  color: #0f4478;
}

.last-child-no-margin > :last-child {
  margin-bottom: 0;
}

img {
  margin-bottom: 10px;
}
img.img-left {
  float: left;
  clear: left;
  margin: 0 24px 1.75rem 0;
}
@media only screen and (max-width: 870px) {
  img.img-left {
    float: right;
    clear: right;
    margin: 0 0 1.75rem 24px;
  }
}
img.img-right {
  float: right;
  clear: right;
  margin: 0 0 1.75rem 24px;
}
img.img-rounded-corners {
  border-radius: 24px;
}

table {
  margin-top: 0;
  margin-bottom: 32px;
  border-collapse: collapse;
}
table[border]:not([border="0"]) table {
  border: 1px solid #ccc;
}

tr {
  vertical-align: top;
}

th {
  text-align: left;
  padding: 0 2rem 1rem 0;
  font-weight: 600;
}
table[border]:not([border="0"]) th {
  padding: 1rem;
  border: 1px solid #ccc;
}
.mce-content-body th {
  font-family: inherit;
  font-size: inherit;
}
th p:last-child {
  margin-bottom: 0;
}

td {
  text-align: left;
  padding: 0 2rem 1rem 0;
}
table[border]:not([border="0"]) td {
  padding: 1rem;
  border: 1px solid #ccc;
}
.mce-content-body td {
  font-family: inherit;
  font-size: inherit;
}
td p:last-child {
  margin-bottom: 0;
}

table.scrolling-table {
  margin-top: 0;
}

hr {
  height: 0;
  clear: both;
  border-top: solid 4px transparent;
  border-bottom: none;
  border-left: none;
  border-right: none;
  margin: 0.625rem 0;
}
@media only screen and (max-width: 870px) {
  hr {
    border-width: 3px;
  }
}

:root {
  --input-padding-x: 8px;
  --input-padding-y: 8px;
  --input-text-colour: inherit;
  --input-bg-colour: #fff;
  --input-border-colour: #ccc;
  --input-border-colour-focus: #666;
  --input-border-width: 2px;
  --input-border-radius: 8px;
  --input-min-height: 48px;
  --label-padding-y: 10px;
  --label-padding-r: 10px;
  --button-font-size: 1.125rem;
  --button-line-height: 1.375rem;
  --button-font-weight: bold;
  --button-text-colour: inherit;
  --button-text-colour-hover: #fff;
  --button-bg-colour: #ccc;
  --button-bg-colour-hover: #666;
  --button-border-width: 2px;
  --button-border-radius: 8px;
  --button-border-colour: #ccc;
  --button-border-colour-hover: #666;
  --button-border-colour-focus: #666;
  --button-padding-x: 2rem;
  --button-padding-y: 1.0625rem;
  --form-error-colour: #d00;
  --form-error-bg-colour: #fce6e6;
  --form-error-padding-x: 16px;
  --form-error-padding-y: 8px;
}

form {
  font-size: 1.125rem;
  line-height: 1.5555555556em;
}
@media only screen and (max-width: 1472px) {
  form {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 1050px) {
  form {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 870px) {
  form {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 600px) {
  form {
    font-size: 1.125rem;
  }
}
@media only screen and (max-width: 480px) {
  form {
    font-size: 1.125rem;
  }
}
@media only print {
  form {
    font-size: 1.125rem;
  }
}
.mce-content-body form {
  font-size: 1.125rem;
}

label {
  display: inline-block;
  box-sizing: border-box;
  vertical-align: top;
  padding: var(--label-padding-y) var(--label-padding-r) var(--label-padding-y) 0;
}

input[type=text] {
  padding: var(--input-padding-y) var(--input-padding-x);
  border: solid var(--input-border-width) var(--input-border-colour);
  border-radius: var(--input-border-radius);
  box-sizing: border-box;
  transition: border-color 0.1s;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
  color: var(--input-text-colour);
  background-color: var(--input-bg-colour);
}
input[type=text]:focus {
  border-color: var(--input-border-colour-focus);
}

input[type=email] {
  padding: var(--input-padding-y) var(--input-padding-x);
  border: solid var(--input-border-width) var(--input-border-colour);
  border-radius: var(--input-border-radius);
  box-sizing: border-box;
  transition: border-color 0.1s;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
  color: var(--input-text-colour);
  background-color: var(--input-bg-colour);
}
input[type=email]:focus {
  border-color: var(--input-border-colour-focus);
}

input[type=password] {
  padding: var(--input-padding-y) var(--input-padding-x);
  border: solid var(--input-border-width) var(--input-border-colour);
  border-radius: var(--input-border-radius);
  box-sizing: border-box;
  transition: border-color 0.1s;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
  color: var(--input-text-colour);
  background-color: var(--input-bg-colour);
}
input[type=password]:focus {
  border-color: var(--input-border-colour-focus);
}

input[type=radio] {
  margin-right: var(--label-padding-r);
  transform: scale(1.25);
}

input[type=checkbox] {
  margin-right: var(--label-padding-r);
  transform: scale(1.25);
}

textarea {
  padding: var(--input-padding-y) var(--input-padding-x);
  border: solid var(--input-border-width) var(--input-border-colour);
  border-radius: var(--input-border-radius);
  box-sizing: border-box;
  transition: border-color 0.1s;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
  color: var(--input-text-colour);
  background-color: var(--input-bg-colour);
}
textarea:focus {
  border-color: var(--input-border-colour-focus);
}

select {
  padding: var(--input-padding-y) var(--input-padding-x);
  border: solid var(--input-border-width) var(--input-border-colour);
  border-radius: var(--input-border-radius);
  box-sizing: border-box;
  transition: border-color 0.1s;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
  color: var(--input-text-colour);
  background-color: var(--input-bg-colour);
  min-height: var(--input-min-height);
}
select:focus {
  border-color: var(--input-border-colour-focus);
}

button,
input[type=button],
input[type=submit] {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #0f4478;
  color: #fff;
  border: none;
  box-sizing: border-box;
}
button:after,
input[type=button]:after,
input[type=submit]:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
button:hover,
input[type=button]:hover,
input[type=submit]:hover {
  background-color: #227e73;
  color: #fff;
}

a[name]:target {
  scroll-margin-top: 30px;
}

html {
  font-size: 100%;
  font-family: "Poppins", sans-serif;
  color: #212427;
}

a {
  word-wrap: break-word;
}

@media only screen and (max-width: 1472px) {
  table {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1050px) {
  table {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 870px) {
  table {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 600px) {
  table {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 480px) {
  table {
    margin-bottom: 32px;
  }
}
.scroll-wrapper table {
  margin-bottom: 0;
}

@media only screen and (max-width: 1472px) {
  th {
    padding: 0 2rem 1rem 0;
  }
}
@media only screen and (max-width: 1050px) {
  th {
    padding: 0 2rem 1rem 0;
  }
}
@media only screen and (max-width: 870px) {
  th {
    padding: 0 2rem 1rem 0;
  }
}
@media only screen and (max-width: 600px) {
  th {
    padding: 0 1.5rem 1rem 0;
  }
}
@media only screen and (max-width: 480px) {
  th {
    padding: 0 1.5rem 1rem 0;
  }
}
@media only screen and (max-width: 600px) {
  table[border]:not([border="0"]) th {
    padding: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  table[border]:not([border="0"]) th {
    padding: 1rem;
  }
}

@media only screen and (max-width: 1472px) {
  td {
    padding: 0 2rem 1rem 0;
  }
}
@media only screen and (max-width: 1050px) {
  td {
    padding: 0 2rem 1rem 0;
  }
}
@media only screen and (max-width: 870px) {
  td {
    padding: 0 2rem 1rem 0;
  }
}
@media only screen and (max-width: 600px) {
  td {
    padding: 0 1.5rem 1rem 0;
  }
}
@media only screen and (max-width: 480px) {
  td {
    padding: 0 1.5rem 1rem 0;
  }
}
@media only screen and (max-width: 600px) {
  table[border]:not([border="0"]) td {
    padding: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  table[border]:not([border="0"]) td {
    padding: 1rem;
  }
}

.scroll-wrapper {
  width: 100%;
  overflow: auto;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1472px) {
  .scroll-wrapper {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 1050px) {
  .scroll-wrapper {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 870px) {
  .scroll-wrapper {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .scroll-wrapper {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .scroll-wrapper {
    margin-bottom: 32px;
  }
}

img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1472px) {
  img.img-left {
    max-width: 40%;
  }
}
@media only screen and (max-width: 1472px) {
  img.img-right {
    max-width: 40%;
  }
}

@media only screen and (max-width: 1472px) {
  html {
    font-size: 100%;
  }
}
@media only screen and (max-width: 1050px) {
  html {
    font-size: 100%;
  }
}
@media only screen and (max-width: 870px) {
  html {
    font-size: 100%;
  }
}
@media only screen and (max-width: 600px) {
  html {
    font-size: 100%;
  }
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 100%;
  }
}

:root {
  --unicity-form-label-width: 188px;
  --unicity-form-line-height: 1.4em;
  --unicity-form-field-margin-b: 32px;
  --unicity-form-option-group-margin-b: 16px;
}
@media only screen and (max-width: 1472px) {
  :root {
    --unicity-form-label-width: 217.3333333333px;
  }
}
@media only screen and (max-width: 1050px) {
  :root {
    --unicity-form-label-width: 151.6666666667px;
  }
}
@media only screen and (max-width: 870px) {
  :root {
    --unicity-form-label-width: 126.5px;
  }
}
@media only screen and (max-width: 600px) {
  :root {
    --unicity-form-label-width: auto;
  }
}
@media only screen and (max-width: 480px) {
  :root {
    --unicity-form-label-width: auto;
  }
}

.form-field-wrapper {
  margin-bottom: var(--unicity-form-field-margin-b);
}
.form-field-wrapper label {
  width: var(--unicity-form-label-width);
}
@media only screen and (max-width: 600px) {
  .form-field-wrapper label {
    display: block;
    padding-top: 0;
    padding-bottom: 6px;
  }
}
.form-field-wrapper label.label-wide {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
.form-field-wrapper label.label-wide + label {
  display: none;
}
.form-field-wrapper input[type=text],
.form-field-wrapper input[type=email],
.form-field-wrapper input[type=password],
.form-field-wrapper textarea,
.form-field-wrapper select {
  max-width: calc(100% - var(--unicity-form-label-width) - 24px);
}
@media only screen and (max-width: 600px) {
  .form-field-wrapper input[type=text],
  .form-field-wrapper input[type=email],
  .form-field-wrapper input[type=password],
  .form-field-wrapper textarea,
  .form-field-wrapper select {
    max-width: calc(100% - 16px);
  }
}
.form-field-wrapper input[type=text].fieldError,
.form-field-wrapper input[type=email].fieldError,
.form-field-wrapper input[type=password].fieldError,
.form-field-wrapper textarea.fieldError,
.form-field-wrapper select.fieldError {
  border-color: var(--form-error-colour);
}
.form-field-wrapper .input-button {
  margin-left: var(--unicity-form-label-width);
}
@media only screen and (max-width: 600px) {
  .form-field-wrapper .input-button {
    margin-left: 0;
  }
}

.formErrorMessage {
  color: var(--form-error-colour);
  background-color: var(--form-error-bg-colour);
  padding: var(--form-error-padding-y) var(--form-error-padding-x);
}

.input-tiny {
  width: 188px;
}
textarea.input-tiny {
  height: calc(3 * var(--unicity-form-line-height) + 2 * var(--input-padding-y) + 2 * var(--input-border-width));
}

.input-small {
  width: 294px;
}
textarea.input-small {
  height: calc(4 * var(--unicity-form-line-height) + 2 * var(--input-padding-y) + 2 * var(--input-border-width));
}

.input-medium {
  width: 400px;
}
textarea.input-medium {
  height: calc(5 * var(--unicity-form-line-height) + 2 * var(--input-padding-y) + 2 * var(--input-border-width));
}

.input-large {
  width: 506px;
}
textarea.input-large {
  height: calc(6 * var(--unicity-form-line-height) + 2 * var(--input-padding-y) + 2 * var(--input-border-width));
}

.input-extralarge {
  width: 612px;
}
textarea.input-extralarge {
  height: calc(7 * var(--unicity-form-line-height) + 2 * var(--input-padding-y) + 2 * var(--input-border-width));
}

.form-text input,
.form-email input,
.form-password input {
  margin-left: -4px;
}
@media only screen and (max-width: 600px) {
  .form-text input,
  .form-email input,
  .form-password input {
    margin-left: 0;
  }
}

.form-select select {
  margin-left: -4px;
}
@media only screen and (max-width: 600px) {
  .form-select select {
    margin-left: 0;
  }
}

.form-textarea textarea {
  margin-left: -4px;
}
@media only screen and (max-width: 600px) {
  .form-textarea textarea {
    margin-left: 0;
  }
}

.form-checkbox label {
  width: auto;
  min-width: 0;
  max-width: calc(100% - 46px);
  padding: 0;
  display: inline-block;
}
.form-checkbox label.label-wide {
  display: inline-block !important;
}
.form-checkbox input[type=checkbox] {
  vertical-align: top;
  margin-left: 2px;
  margin-top: 6px;
}
.form-checkbox input[type=checkbox].fieldError {
  outline: solid 1px var(--form-error-colour);
  outline-offset: 2px;
}

.form-radio p {
  width: var(--unicity-form-label-width);
  padding-right: var(--label-padding-r);
  box-sizing: border-box;
  float: left;
  margin-bottom: var(--label-padding-y);
}
@media only screen and (max-width: 600px) {
  .form-radio p {
    width: auto;
    float: none;
    margin-bottom: var(--unicity-form-option-group-margin-b);
  }
}
.form-radio p.label-wide {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  float: none;
}
.form-radio .radio-option-wrapper {
  margin-left: var(--unicity-form-label-width);
  margin-bottom: var(--unicity-form-option-group-margin-b);
}
@media only screen and (max-width: 600px) {
  .form-radio .radio-option-wrapper {
    margin-left: 0;
  }
}
.form-radio .label-wide ~ .radio-option-wrapper,
.form-radio .radio-option-wrapper.radio-option-wrapper--no-margin {
  margin-left: 0;
}
.form-radio label {
  width: auto;
  min-width: 0;
  max-width: calc(100% - 46px);
  padding: 0;
  display: inline-block;
}
.form-radio input[type=radio] {
  vertical-align: top;
  margin-left: 2px;
  margin-top: 6px;
}
.form-radio input[type=radio].fieldError {
  outline: solid 1px var(--form-error-colour);
  outline-offset: 2px;
}
.form-radio.fieldErrorDiv input[type=radio] {
  outline: solid 1px var(--form-error-colour);
  outline-offset: 2px;
}

.form-date input[type=text] {
  margin-left: 0;
}
.form-date input[type=text].input-tiny {
  width: 114px;
}
@media only screen and (max-width: 480px) {
  .form-date input[type=text].input-tiny {
    width: 80px;
  }
}
.form-date input[type=text][name$=-year] {
  margin-right: 4px;
}
.form-date select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
  background-image: none;
  padding-right: 20px;
  margin-left: 0;
}
@media only screen and (max-width: 480px) {
  .form-date select {
    padding-right: 14px;
  }
}
.form-date select[name$=-day] {
  margin-left: -4px;
}
@media only screen and (max-width: 600px) {
  .form-date select[name$=-day] {
    margin-left: 0;
  }
}
.form-date select[name$=-year] {
  margin-right: 4px;
}

.form-field-required-star {
  display: inline-block;
  vertical-align: top;
}

.donation-form-amount-option {
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
}
@media only screen and (max-width: 1472px) {
  .donation-form-amount-option {
    margin-right: 24px;
  }
}
@media only screen and (max-width: 1050px) {
  .donation-form-amount-option {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 870px) {
  .donation-form-amount-option {
    margin-right: 15px;
  }
}
@media only screen and (max-width: 600px) {
  .donation-form-amount-option {
    margin-right: 0;
    display: block;
  }
}
.donation-form-amount-option label {
  padding: 0;
  vertical-align: middle;
}
.donation-form-amount-option:last-child {
  margin-right: 0;
}
.donation-form-amount-option input {
  vertical-align: middle;
}
.donation-form-amount-option small {
  display: inline-block;
  vertical-align: middle;
}
.donation-form-amount-option [type=radio]:checked + label:before,
.donation-form-amount-option [type=radio]:not(:checked) + label:before,
.donation-form-amount-option [type=radio]:checked + span + label:before,
.donation-form-amount-option [type=radio]:not(:checked) + span + label:before {
  top: 50%;
  margin-top: -10px;
}
.donation-form-amount-option [type=radio]:checked + label:after,
.donation-form-amount-option [type=radio]:not(:checked) + label:after,
.donation-form-amount-option [type=radio]:checked + span + label:after,
.donation-form-amount-option [type=radio]:not(:checked) + span + label:after {
  top: 50%;
  margin-top: -4px;
}

.donation-form-amount-option-other label {
  width: auto;
  margin: 0;
}
.donation-form-amount-option-other input[type=text] {
  width: 70px;
  background: none;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: solid 2px var(--input-border-colour);
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
  display: inline-block;
}
@media only screen and (max-width: 600px) {
  .donation-form-amount-option-other input[type=text] {
    margin-top: 0;
  }
}

.donation-form-stage {
  margin-top: 24px;
  margin-bottom: 24px;
}

.donation-form-giftaid-smallprint {
  font-size: 80%;
  line-height: 1.5;
}

.pseudo-input {
  padding: var(--input-padding-y) var(--input-padding-x);
  border: solid var(--input-border-width) var(--input-border-colour);
  border-radius: var(--input-border-radius);
  box-sizing: border-box;
  transition: border-color 0.1s;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: inline-block;
  vertical-align: top;
  color: var(--input-text-colour);
  background-color: var(--input-bg-colour);
  width: calc(100% - var(--unicity-form-label-width) - 5px);
  padding-top: 14px;
  padding-bottom: 14px;
}
.pseudo-input:focus {
  border-color: var(--input-border-colour-focus);
}
@media only screen and (max-width: 600px) {
  .pseudo-input {
    width: 100%;
  }
}
.pseudo-input:focus-within {
  border-color: var(--input-border-colour-focus);
}
.pseudo-input.fieldError {
  border-color: var(--form-error-colour);
}

/* Payment Summary - for payment forms */
.payment-summary__label {
  width: var(--unicity-form-label-width);
  display: inline-block;
}
@media only screen and (max-width: 600px) {
  .payment-summary__label {
    display: block;
    width: auto;
  }
}

.payment-summary__amount {
  display: inline-block;
  font-size: 150%;
}

/* Card Details - for payment forms */
.card-logos {
  margin-left: calc(var(--unicity-form-label-width) + 5px);
}
@media only screen and (max-width: 600px) {
  .card-logos {
    margin-left: 0;
  }
}

.card-logo {
  width: 46px;
  border: solid 1px #ccc;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 0.2em;
  margin-bottom: 0.2em;
  color: black;
  display: inline-block;
}

p.card-cvc-explanation {
  float: none;
  width: auto;
  margin-top: 0.2em;
  padding-bottom: 0.75em;
  margin-left: calc(var(--unicity-form-label-width) + 5px);
  max-width: 100%;
}
@media only screen and (max-width: 600px) {
  p.card-cvc-explanation {
    margin-left: 0;
  }
}

.card-cvc-explanation__icon {
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: auto;
  margin-right: 0.2em;
}

.card-cvc-explanation__text {
  display: inline-block;
  vertical-align: middle;
  font-size: 80%;
  line-height: 1.4;
  max-width: calc(100% - 70px);
}

.form-field-wrapper .formErrorMessage {
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 4px;
  margin-left: calc(var(--unicity-form-label-width) + 5px);
  max-width: 100%;
  padding: 0;
  background-color: transparent;
}
@media only screen and (max-width: 1472px) {
  .form-field-wrapper .formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1050px) {
  .form-field-wrapper .formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 870px) {
  .form-field-wrapper .formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .form-field-wrapper .formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  .form-field-wrapper .formErrorMessage {
    font-size: 1rem;
  }
}
@media only print {
  .form-field-wrapper .formErrorMessage {
    font-size: 1rem;
  }
}
.mce-content-body .form-field-wrapper .formErrorMessage {
  font-size: 1rem;
}
.form-field-wrapper .formErrorMessage:empty {
  display: none;
}
@media only screen and (max-width: 600px) {
  .form-field-wrapper .formErrorMessage {
    margin-left: 0;
  }
}

#card-errors.formErrorMessage {
  font-size: 1rem;
  line-height: 1.5em;
  margin-top: 4px;
  margin-left: calc(var(--unicity-form-label-width) + 5px);
  margin-bottom: 24px;
  max-width: 100%;
}
@media only screen and (max-width: 1472px) {
  #card-errors.formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1050px) {
  #card-errors.formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 870px) {
  #card-errors.formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  #card-errors.formErrorMessage {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 480px) {
  #card-errors.formErrorMessage {
    font-size: 1rem;
  }
}
@media only print {
  #card-errors.formErrorMessage {
    font-size: 1rem;
  }
}
.mce-content-body #card-errors.formErrorMessage {
  font-size: 1rem;
}
#card-errors.formErrorMessage:empty {
  display: none;
}
@media only screen and (max-width: 600px) {
  #card-errors.formErrorMessage {
    margin-left: 0;
  }
}

.unicity-popup-gallery a {
  border: none;
}
.unicity-popup-gallery img {
  display: block;
}

#blog .blog-post-summary {
  border-bottom: 1px solid #c5e3db;
  padding: 24px 0;
}
#blog .blog-post-summary__text {
  grid-column: 1/6;
}
#blog .blog-post-summary__text h4 a {
  font-size: 1.5rem;
  line-height: 2.25rem;
  font-weight: 600;
  margin-bottom: 36px;
  color: #0f4478;
  text-decoration: none;
}
#blog .blog-post-summary__text h4 a:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  margin-left: 8px;
  color: #0f4478;
  display: inline-block;
}
#blog .blog-post-summary__text h4 a:hover {
  color: #227e73;
}
#blog .blog-post-summary__text h4 a:hover:after {
  color: #227e73;
}
#blog .blog-post-summary__text.text-only {
  grid-column: 1/9;
}
#blog .blog-post-summary__text .date {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: normal;
  margin-bottom: 0;
}
@media only screen and (max-width: 870px) {
  #blog .blog-post-summary__text {
    grid-column: 1/9;
    order: 2;
  }
}
#blog .blog-post-summary__image {
  grid-column: 6/9;
}
#blog .blog-post-summary__image img {
  border-radius: 16px;
}
@media only screen and (max-width: 870px) {
  #blog .blog-post-summary__image {
    grid-column: 1/9;
    order: 1;
  }
}
#blog .blog-post-summary:first-child {
  padding-top: 0;
}
#blog #more-posts-link {
  margin-top: 42px;
}
#blog #more-posts-link .blog-previous-link,
#blog #more-posts-link .blog-more-link {
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
}
#blog #more-posts-link .blog-previous-link:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f053";
  margin-right: 8px;
  color: #0f4478;
  display: inline-block;
  text-decoration: none;
}
#blog #more-posts-link .blog-previous-link:hover:before {
  color: #227e73;
}
#blog #more-posts-link .blog-more-link {
  float: right;
}
#blog #more-posts-link .blog-more-link:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  margin-left: 8px;
  color: #0f4478;
  display: inline-block;
  text-decoration: none;
}
#blog #more-posts-link .blog-more-link:hover:after {
  color: #227e73;
}

#smartsearch-results ul {
  list-style: none;
  padding: 1.75rem 0 0 0;
  margin: 0;
  border-top: solid 3px #ccc;
}
@media only screen and (max-width: 600px) {
  #smartsearch-results ul {
    border-width: 2px;
  }
}
#smartsearch-results li {
  display: block;
  border-bottom: solid 3px #ccc;
  margin-bottom: 1.75rem;
}
@media only screen and (max-width: 600px) {
  #smartsearch-results li {
    border-width: 2px;
  }
}
#smartsearch-results .pagination {
  margin-top: 40px;
  display: flex;
}
@media only screen and (max-width: 480px) {
  #smartsearch-results .pagination {
    flex-direction: column;
  }
}
#smartsearch-results .prevlink {
  text-decoration: underline;
  color: #0f4478;
  display: inline;
}
#smartsearch-results .prevlink:before {
  font-family: "Font Awesome 6 Pro";
  content: "\f053";
  margin-right: 8px;
  color: #0f4478;
  display: inline-block;
  text-decoration: none;
}
#smartsearch-results .prevlink:hover {
  color: #227e73;
}
#smartsearch-results .prevlink:hover:before {
  color: #227e73;
}
@media only screen and (max-width: 480px) {
  #smartsearch-results .prevlink {
    margin: 0 auto 20px auto;
  }
}
#smartsearch-results .nextlink {
  margin-left: auto;
  text-decoration: underline;
  color: #0f4478;
  display: inline;
}
#smartsearch-results .nextlink:after {
  font-family: "Font Awesome 6 Pro";
  content: "\f054";
  margin-left: 8px;
  color: #0f4478;
  display: inline-block;
  text-decoration: none;
}
#smartsearch-results .nextlink:hover {
  color: #227e73;
}
#smartsearch-results .nextlink:hover:after {
  color: #227e73;
}
@media only screen and (max-width: 480px) {
  #smartsearch-results .nextlink {
    margin: 0 auto;
  }
}

#cookie-message {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 10;
  max-width: calc(100% - 48px);
}
@media only screen and (max-width: 870px) {
  #cookie-message {
    left: 18px;
    bottom: 18px;
    max-width: calc(100% - 36px);
  }
}
@media only screen and (max-width: 600px) {
  #cookie-message {
    text-align: center;
    left: 0;
    bottom: 0;
    max-width: none;
    width: 100%;
  }
}

#cookie-message-inner {
  background: #ccc;
  padding: 24px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 870px) {
  #cookie-message-inner {
    padding: 20px;
  }
}
#cookie-message-inner p {
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.875rem;
}
#cookie-message-inner p.cookie-heading {
  font-weight: 600;
  font-size: 1.125rem;
}
#cookie-message-inner a {
  font-weight: 600;
  display: inline-block;
  margin-right: 8px;
}
#cookie-message-inner a:hover {
  color: #fff;
}
#cookie-message-inner > :last-child {
  margin-bottom: 0;
}

iframe {
  max-width: 100%;
}

.youtube-player {
  margin: 60px 0;
}
.youtube-player:first-child {
  margin-top: 0;
}
.youtube-player:last-child {
  margin-bottom: 0;
}

.responsive-video-container {
  margin: 60px 0;
  position: relative;
  height: 0;
  padding-top: 56.25%;
}
@media only screen and (max-width: 600px) {
  .responsive-video-container {
    margin: 40px 0;
  }
}
.responsive-video-container:first-child {
  margin-top: 0;
}
.responsive-video-container:last-child {
  margin-bottom: 0;
}
.responsive-video-container iframe {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.faq-set {
  margin-bottom: 66px;
}

.faq-question.open .faq-heading a {
  color: #227e73;
}
.faq-question.open .faq-heading span::before {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.375rem;
  content: "\f077";
  float: right;
  margin-left: 12px;
}

.faq-answer {
  margin-top: 28px;
  width: 90%;
}
@media only screen and (max-width: 480px) {
  .faq-answer {
    width: 100%;
  }
}
.faq-answer > *:last-child {
  margin-bottom: 0;
}
.faq-answer > *:last-child a {
  margin-bottom: 0;
}

.faq-heading {
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 2rem;
}

.faq-heading a:hover {
  color: #227e73;
}

.faq-heading a {
  text-decoration: none;
  display: block;
}

.faq-question.closed:hover .faq-heading span::before {
  color: #227e73;
}

.faq-question.closed .faq-heading span::before {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.375rem;
  content: "\f078";
  float: right;
  margin-left: 12px;
}

.faq-wrapper {
  border: none;
  text-align: left;
  border-radius: 8px;
  padding: 22px 24px;
  margin-bottom: 16px;
  background-color: #fffcdf;
}
.faq-wrapper:last-child {
  margin-bottom: 0;
}

.gmap-canvas {
  margin: 40px 0;
}
.gmap-canvas:first-child {
  margin-top: 0;
}
.gmap-canvas:last-child {
  margin-bottom: 0;
}
.gmap-canvas button {
  border-radius: 0;
}

.responsive-gmap-canvas-container {
  margin: 40px 0;
}
@media only screen and (max-width: 1050px) {
  .responsive-gmap-canvas-container {
    position: relative;
    height: 0;
    padding-top: 56.25%;
  }
}
@media only screen and (max-width: 600px) {
  .responsive-gmap-canvas-container {
    padding-top: 75%;
  }
}
.responsive-gmap-canvas-container:first-child {
  margin-top: 0;
}
.responsive-gmap-canvas-container:last-child {
  margin-bottom: 0;
}
.responsive-gmap-canvas-container .gmap-canvas {
  margin: 0;
}
@media only screen and (max-width: 1050px) {
  .responsive-gmap-canvas-container .gmap-canvas {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
  }
}

.cookieControlOption label {
  padding: 0;
  margin: 0;
}

/* dev guides css */
/* screen size */
#screen-size {
  width: 38px;
  height: 38px;
  border: 2px solid black;
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  border-radius: 5rem;
  background-color: white;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  opacity: 0.5;
}

/* media queries for screen sizes */
@media only screen and (min-width: 0px) {
  #screen-size:after {
    content: "XS";
  }
}
@media only screen and (min-width: 480px) {
  #screen-size:after {
    content: "S";
  }
}
@media only screen and (min-width: 600px) {
  #screen-size:after {
    content: "M";
  }
}
@media only screen and (min-width: 870px) {
  #screen-size:after {
    content: "L";
  }
}
@media only screen and (min-width: 1050px) {
  #screen-size:after {
    content: "XL";
  }
}
@media only screen and (min-width: 1472px) {
  #screen-size:after {
    content: "XXL";
  }
}
body {
  background-color: #fff;
}

.body-wrapper {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 870px) {
  .mobile-nav-opening .body-wrapper, .mobile-nav-open .body-wrapper, .mobile-nav-closing .body-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
  }
}

.masthead {
  min-height: 152px;
  width: 100%;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}
.masthead__inner-container {
  display: flex;
  justify-content: space-between;
}
.masthead__logo {
  position: relative;
  z-index: 3000;
  margin-top: 32px;
  flex-shrink: 0;
}
@media only screen and (max-width: 1050px) {
  .masthead__logo {
    width: 120px;
    height: auto;
  }
}
@media only screen and (max-width: 870px) {
  .masthead__logo {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
.masthead__right {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  justify-content: flex-end;
  margin-bottom: 28px;
}
@media only screen and (max-width: 870px) {
  .masthead__right {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    align-content: center;
  }
}
.masthead__right .top-nav {
  display: flex;
  font-size: 1.125rem;
  font-weight: normal;
  justify-content: flex-end;
  color: #0f4478;
}
.masthead__right .top-nav a {
  text-decoration: none;
}
.masthead__right .top-nav__left {
  margin-right: 4px;
  padding: 10px 24px;
}
.masthead__right .top-nav__right {
  background-color: #c5e3db;
  padding: 10px 24px;
  border-radius: 0 0 8px 8px;
}
.masthead__right .top-nav__right:hover {
  background-color: #227e73;
  color: #fff;
}
@media only screen and (max-width: 870px) {
  .masthead__right .top-nav {
    display: none;
  }
}
@media only screen and (max-width: 870px) {
  .masthead {
    min-height: 100px;
  }
}
@media only screen and (max-width: 600px) {
  .site-search-open .masthead {
    padding-top: 70px;
  }
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 4px;
  width: 100%;
}
.main-nav__links {
  display: flex;
}
.site-search-opening .main-nav__links, .site-search-open .main-nav__links, .site-search-closing .main-nav__links {
  opacity: 0;
  display: none;
  pointer-events: none;
}
.main-nav__links ul {
  padding: 0;
  margin: 0;
  text-decoration: none;
  text-align: center;
  display: flex;
}
.main-nav__links li {
  display: inline-block;
  color: #0f4478;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.875rem;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 0;
}
@media only screen and (max-width: 1050px) {
  .main-nav__links li {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.main-nav__links li a {
  display: inline-block;
  border: none;
  position: relative;
  border-bottom: solid 4px transparent;
  text-decoration: none;
}
.main-nav__links li a:hover {
  color: #227e73;
  border-bottom: solid 4px #227e73;
  background: none;
}
@media only screen and (max-width: 870px) {
  .main-nav__links {
    display: none;
  }
}
.main-nav__donate {
  display: flex;
  align-items: center;
  padding-left: 14px;
}
.main-nav__donate .donate-button {
  margin-left: 14px;
  margin-right: 0;
  margin-bottom: 0;
  min-width: 80px;
}
.main-nav__donate .button-yellow {
  font-size: 1.1875rem;
  padding: 0.75rem 1.5rem;
}
@media only screen and (max-width: 870px) {
  .main-nav {
    width: auto;
  }
}

.main-nav .selected a {
  color: #227e73;
  border-bottom: solid 4px #227e73;
}

.main-nav #activeSection a {
  color: #227e73;
  border-bottom: solid 4px #227e73;
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
}

.mobile-nav-toggle {
  margin-left: 20px;
  text-decoration: none;
  box-sizing: border-box;
  display: none;
  border: none;
  color: #0f4478;
}
@media only screen and (max-width: 870px) {
  .mobile-nav-toggle {
    display: block;
  }
}
.mobile-nav-toggle__icon::before {
  content: "\f0c9";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.625rem;
}
.mobile-nav-open .mobile-nav-toggle__icon::before, .mobile-nav-opening .mobile-nav-toggle__icon::before, .mobile-nav-closing .mobile-nav-toggle__icon::before {
  content: "\f00d";
  padding: 0 2px;
}

.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: 102px;
  bottom: 0;
  display: none;
  transition: opacity 0.2s;
  background-color: #fff;
  z-index: 2001;
  overflow: hidden;
}
@media only screen and (max-width: 870px) {
  .mobile-nav {
    left: calc(100% - 400px);
  }
  .mobile-nav-opening .mobile-nav {
    display: block;
    opacity: 0;
  }
  .mobile-nav-open .mobile-nav {
    display: block;
    opacity: 1;
  }
  .mobile-nav-closing .mobile-nav {
    display: block;
    opacity: 0;
  }
}
@media only screen and (max-width: 600px) {
  .site-search-open .mobile-nav {
    top: 166px;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-nav {
    left: 0;
  }
}
.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 32px 32px 48px;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.7777777778em;
  transition: opacity 0.2s, transform 0.2s;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  overflow-y: auto;
  z-index: 0;
  transform: translateX(56px);
}
.mobile-nav-open .mobile-nav ul.active {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}
.mobile-nav ul.pull-left {
  z-index: 0;
  transform: translateX(-56px);
}
.mobile-nav ul.mobile-nav--level-0 {
  font-size: 1.5rem;
  line-height: 1.3333333333em;
}
@media only screen and (max-width: 480px) {
  .mobile-nav ul {
    padding: 32px 18px;
  }
}
.mobile-nav li {
  margin: 0 0 16px 0;
  padding: 0;
}
.mobile-nav li a {
  padding: 3px 0 0;
  color: #0f4478;
}
.mobile-nav li::before {
  content: none;
  display: none;
  font-family: "Font Awesome 6 Pro";
  display: block;
  border: none;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}
.mobile-nav li.selected::before, .mobile-nav li.expanded::before, .mobile-nav li#activeSection::before {
  transform: rotate(15deg);
}
.mobile-nav li.selected a, .mobile-nav li.expanded a, .mobile-nav li#activeSection a {
  color: #227e73;
  border-bottom: 4px solid #227e73;
}
.mobile-nav li.mobile-nav__section-title {
  font-size: 1.5rem;
  line-height: 1.3333333333em;
  color: #0f4478;
}
.mobile-nav li.mobile-nav__home-link {
  display: none;
}
.mobile-nav li.mobile-nav__back {
  font-size: 1rem;
  line-height: 2em;
  margin-top: 32px;
}
.mobile-nav li.mobile-nav__back::before {
  content: "\f053";
  margin-right: 8px;
  position: static;
  display: inline;
}
.mobile-nav li.mobile-nav__button::before {
  content: none;
  display: none;
}
.mobile-nav li.mobile-nav__button a {
  color: #fff;
  background-color: #0f4478;
  padding: 8px 16px;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: center;
}
.mobile-nav li.mobile-nav__button.selected a, .mobile-nav li.mobile-nav__button.expanded a, .mobile-nav li.mobile-nav__button#activeSection a {
  background-color: #227e73;
}
@media only screen and (max-width: 480px) {
  .mobile-nav li {
    padding: 0;
  }
}
.mobile-nav a {
  text-decoration: none;
  border: none;
}
.mobile-nav a:hover {
  color: #0f4478;
}
.mobile-nav__secondary-item {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 32px !important;
  display: none;
}
@media only screen and (max-width: 870px) {
  .mobile-nav__secondary-item {
    display: block;
  }
}
.mobile-nav__secondary-item.selected .mobile-button {
  border: none;
  background-color: #227e73;
  color: #fff;
}
.mobile-nav__button .mobile-button {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #c5e3db;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
  margin: 10px 0;
}
.mobile-nav__button .mobile-button:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
.mobile-nav__button .mobile-button:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
.mobile-nav__button .mobile-button:hover {
  background-color: #227e73;
  color: #fff;
}
.mobile-nav__button .mobile-button:after {
  content: none;
}
.mobile-nav__phone {
  font-size: 1.125rem;
  line-height: 1.6875rem;
}

.mobile-nav-site-overlay {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  z-index: 2000;
  left: 0;
  right: 0;
  top: 102px;
  bottom: 0;
  display: none;
  opacity: 0;
  transition: opacity 0.2s;
}
@media only screen and (max-width: 870px) {
  .mobile-nav-opening .mobile-nav-site-overlay {
    display: block;
    opacity: 0;
  }
  .mobile-nav-open .mobile-nav-site-overlay {
    display: block;
    opacity: 1;
  }
  .mobile-nav-closing .mobile-nav-site-overlay {
    display: block;
    opacity: 0;
  }
}
@media only screen and (max-width: 600px) {
  .site-search-open .mobile-nav-site-overlay {
    top: 166px;
  }
}

.site-search-toggle {
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  line-height: 1;
  transition: opacity 0.2s;
  margin-left: 20px;
  font-size: 1.5rem;
  line-height: 1.8125rem;
}
.site-search-toggle:hover {
  color: #fff;
}
.site-search-toggle:hover::before {
  color: #227e73;
}
@media only screen and (max-width: 870px) {
  .site-search-toggle:hover::before {
    color: #0f4478;
  }
}
.site-search-toggle::before {
  content: "\f002";
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  font-size: 1.375rem;
  display: block;
}
.site-search-open .site-search-toggle::before, .site-search-closing .site-search-toggle::before {
  content: "\f00d";
}
@media only screen and (max-width: 600px) {
  .site-search-open .site-search-toggle::before, .site-search-closing .site-search-toggle::before {
    position: relative;
    top: 0;
    right: 3px;
    font-size: 1.375rem;
  }
}
@media only screen and (max-width: 600px) {
  .site-search-opening .site-search-toggle, .site-search-closing .site-search-toggle {
    opacity: 0;
  }
}
@media only screen and (max-width: 600px) {
  .site-search-open .site-search-toggle, .site-search-closing .site-search-toggle {
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    right: 20px;
    top: -48px;
    z-index: 2;
  }
}
@media only screen and (max-width: 480px) {
  .site-search-open .site-search-toggle, .site-search-closing .site-search-toggle {
    top: 0px;
  }
}
.mobile-nav-opening .site-search-toggle, .mobile-nav-open .site-search-toggle {
  opacity: 0;
  pointer-events: none;
}

.site-search {
  opacity: 0;
  display: none;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  overflow: hidden;
  transform: translateY(20px);
  position: absolute;
  right: 30px;
}
@media only screen and (max-width: 1472px) {
  .site-search {
    right: 50px;
  }
}
@media only screen and (max-width: 870px) {
  .site-search {
    right: 98px;
  }
}
@media only screen and (max-width: 600px) {
  .site-search {
    top: -60px;
    margin-top: 0;
    width: 100%;
    left: 0;
    right: auto;
    padding: 0px;
    box-sizing: border-box;
    z-index: 1;
    transform: translateX(20px);
    display: flex;
    justify-content: center;
  }
}
.site-search-open .site-search {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  display: block;
}
.site-search-opening .site-search {
  display: block;
}
.site-search-closing .site-search {
  display: block;
  opacity: 0;
  transform: translateY(20px);
}
.site-search__form {
  font-size: 1rem;
  display: flex;
  align-items: center;
  border: solid 2px #227e73;
  border-radius: 8px;
  padding-right: 16px;
  width: 360px;
  transition: border-color 0.2s;
  line-height: 1.5625rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 870px) {
  .site-search__form {
    width: 260px;
  }
}
@media only screen and (max-width: 600px) {
  .site-search__form {
    width: 60%;
    margin-left: 19px;
    justify-self: center;
  }
}
.site-search__form input[type=text] {
  background: none;
  border-radius: 0;
  border: none;
  padding: 6px 6px 6px 10px;
  flex-grow: 1;
  flex-shrink: 1;
  width: calc(100% - 30px);
  color: #0f4478;
  font-size: 1rem;
  margin-right: 16px;
  margin: 6px 10px 6px 6px;
}
.site-search__form input[type=text]::-moz-placeholder {
  color: #0f4478;
}
.site-search__form input[type=text]::placeholder {
  color: #0f4478;
}
.site-search__form input[type=text]:focus {
  outline: none;
}
.site-search__form button {
  padding: 0;
  background: none;
  color: #0f4478;
  font-size: 1.375rem;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  flex-grow: 0;
  flex-shrink: 0;
  border-radius: 0;
  border: none;
}
.site-search__form button:after {
  display: none;
}
.site-search__submit {
  color: white;
}

.footer .grid-12 {
  row-gap: 0;
}
.footer__curve {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 46px;
  position: relative;
  bottom: -1px;
}
.footer__inner {
  background-color: #fffcdf;
  color: #212427;
}
.footer__top {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding-top: 98px;
  padding-bottom: 68px;
}
.footer__top h4 {
  color: #0f4478 !important;
}
@media only screen and (max-width: 870px) {
  .footer__top {
    padding-top: 32px;
    padding-bottom: 0;
  }
}
.footer__top--contact-us {
  grid-column: 1/9;
}
@media only screen and (max-width: 870px) {
  .footer__top--contact-us {
    grid-column: 1/13;
    text-align: center;
  }
}
.footer__top--column1 {
  grid-column: 1/5;
}
@media only screen and (max-width: 870px) {
  .footer__top--column1 {
    grid-column: 1/13;
    text-align: center;
    margin-bottom: 32px;
  }
}
.footer__top--column2 {
  grid-column: 5/9;
}
@media only screen and (max-width: 870px) {
  .footer__top--column2 {
    grid-column: 1/13;
    text-align: center;
    margin-bottom: 32px;
  }
}
.footer__top--find-out-more {
  grid-column: 10/13;
  grid-row: 1/3;
}
@media only screen and (max-width: 1472px) {
  .footer__top--find-out-more {
    grid-column: 9/13;
  }
}
@media only screen and (max-width: 870px) {
  .footer__top--find-out-more {
    grid-column: 4/10;
    grid-row: auto;
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 600px) {
  .footer__top--find-out-more {
    grid-column: 3/11;
  }
}
@media only screen and (max-width: 480px) {
  .footer__top--find-out-more {
    grid-column: 1/13;
  }
}
.footer__top--find-out-more .find-out-more-box {
  background-color: #c5e3db;
  padding: 24px 32px;
  border-radius: 24px;
  top: -24px;
  position: relative;
  margin-bottom: -24px;
}
.footer__top--find-out-more .find-out-more-box .unicity-sectionmenu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__top--find-out-more .find-out-more-box .unicity-sectionmenu li {
  margin-bottom: 24px;
  padding-bottom: 0;
}
.footer__top--find-out-more .find-out-more-box .unicity-sectionmenu li a {
  text-decoration: none;
}
.footer__top--find-out-more .find-out-more-box .unicity-sectionmenu li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 870px) {
  .footer__top--find-out-more {
    display: none;
  }
}
.footer__bottom {
  border-top: 1px solid #0f4478;
  padding-top: 64px;
  padding-bottom: 42px;
}
@media only screen and (max-width: 870px) {
  .footer__bottom {
    border-top: none;
    padding-top: 10px;
  }
}
.footer__bottom--left {
  grid-column: 1/11;
  font-size: 0.875rem;
  line-height: 1.5rem;
  margin-bottom: 26px;
}
@media only screen and (max-width: 1472px) {
  .footer__bottom--left {
    grid-column: 1/10;
  }
}
@media only screen and (max-width: 870px) {
  .footer__bottom--left {
    grid-column: 1/13;
    margin-bottom: 32px;
    order: 2;
    text-align: center;
  }
}
.footer__bottom--left .provided-text {
  margin-bottom: 18px;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--left .provided-text {
    text-align: center;
  }
}
.footer__bottom--left .provided-images {
  display: flex;
  margin-bottom: 40px;
  align-items: center;
}
.footer__bottom--left .provided-images a {
  margin: 0;
  display: inline-block;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--left .provided-images a img {
    margin-bottom: 32px;
  }
}
.footer__bottom--left .provided-images .image-border {
  width: 1.56px;
  height: 66px;
  background-color: #0f4478;
  margin: 0 22px;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--left .provided-images .image-border {
    display: none;
  }
}
@media only screen and (max-width: 870px) {
  .footer__bottom--left .provided-images {
    flex-direction: column;
    margin-bottom: 0px;
  }
}
.footer__bottom--right {
  grid-column: 11/13;
  font-size: 0.875rem;
  line-height: 1.5rem;
  text-align: center;
  margin-bottom: 26px;
}
@media only screen and (max-width: 1472px) {
  .footer__bottom--right {
    grid-column: 10/13;
  }
}
.footer__bottom--right .city-logo a {
  display: inline-block;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--right {
    grid-column: 1/13;
    margin-bottom: 32px;
    order: 2;
  }
}
.footer__bottom--links {
  grid-column: 1/10;
  display: flex;
  font-size: 0.875rem;
  line-height: 1.5rem;
}
.footer__bottom--links .social-icon {
  font-size: 1.125rem;
}
.footer__bottom--links ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
.footer__bottom--links ul .social-icon {
  font-size: 1.125rem;
}
.footer__bottom--links ul .social-icon a:hover {
  color: #0f4478;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--links ul .social-icon {
    font-size: 2.625rem;
  }
}
.footer__bottom--links ul li {
  margin-right: 20px;
  padding-bottom: 0;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--links ul {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer__bottom--links ul li {
    margin-right: 0;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 870px) {
  .footer__bottom--links {
    grid-column: 1/13;
    justify-content: center;
    order: 3;
  }
}
.footer__bottom--adept-design {
  grid-column: 10/13;
  font-size: 0.875rem;
  line-height: 1.5rem;
  justify-self: end;
}
@media only screen and (max-width: 870px) {
  .footer__bottom--adept-design {
    grid-column: 1/13;
    justify-self: center;
    order: 4;
  }
}

.bg-white,
.bg-inner-white {
  background-color: #fff;
}

.bg-dustyPink,
.bg-inner-dustyPink {
  background-color: #f0e2e7;
}

.bg-mustard,
.bg-inner-mustard {
  background-color: #fdd75a;
}

.bg-softCream,
.bg-inner-softCream {
  background-color: #fffcdf;
  color: #212427;
}

.bg-lightPink,
.bg-inner-lightPink {
  background-color: #f9f3f5;
}

.bg-mint,
.bg-inner-mint {
  background-color: #c5e3db;
}

.bg-green,
.bg-inner-green {
  background-color: #227e73;
  color: #fff;
}

.bg-darkBlue,
.bg-inner-darkBlue {
  background-color: #0f4478;
  color: #fff;
}

.bg-white,
.bg-dustyPink,
.bg-mustard,
.bg-softCream,
.bg-lightPink,
.bg-mint {
  color: #212427;
}
.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-dustyPink h1,
.bg-dustyPink h2,
.bg-dustyPink h3,
.bg-dustyPink h4,
.bg-dustyPink h5,
.bg-dustyPink h6,
.bg-mustard h1,
.bg-mustard h2,
.bg-mustard h3,
.bg-mustard h4,
.bg-mustard h5,
.bg-mustard h6,
.bg-softCream h1,
.bg-softCream h2,
.bg-softCream h3,
.bg-softCream h4,
.bg-softCream h5,
.bg-softCream h6,
.bg-lightPink h1,
.bg-lightPink h2,
.bg-lightPink h3,
.bg-lightPink h4,
.bg-lightPink h5,
.bg-lightPink h6,
.bg-mint h1,
.bg-mint h2,
.bg-mint h3,
.bg-mint h4,
.bg-mint h5,
.bg-mint h6 {
  color: #0f4478;
}
.bg-white h1 a,
.bg-white h2 a,
.bg-white h3 a,
.bg-white h4 a,
.bg-white h5 a,
.bg-white h6 a,
.bg-dustyPink h1 a,
.bg-dustyPink h2 a,
.bg-dustyPink h3 a,
.bg-dustyPink h4 a,
.bg-dustyPink h5 a,
.bg-dustyPink h6 a,
.bg-mustard h1 a,
.bg-mustard h2 a,
.bg-mustard h3 a,
.bg-mustard h4 a,
.bg-mustard h5 a,
.bg-mustard h6 a,
.bg-softCream h1 a,
.bg-softCream h2 a,
.bg-softCream h3 a,
.bg-softCream h4 a,
.bg-softCream h5 a,
.bg-softCream h6 a,
.bg-lightPink h1 a,
.bg-lightPink h2 a,
.bg-lightPink h3 a,
.bg-lightPink h4 a,
.bg-lightPink h5 a,
.bg-lightPink h6 a,
.bg-mint h1 a,
.bg-mint h2 a,
.bg-mint h3 a,
.bg-mint h4 a,
.bg-mint h5 a,
.bg-mint h6 a {
  color: #0f4478;
}
.bg-white h1 a:hover,
.bg-white h2 a:hover,
.bg-white h3 a:hover,
.bg-white h4 a:hover,
.bg-white h5 a:hover,
.bg-white h6 a:hover,
.bg-dustyPink h1 a:hover,
.bg-dustyPink h2 a:hover,
.bg-dustyPink h3 a:hover,
.bg-dustyPink h4 a:hover,
.bg-dustyPink h5 a:hover,
.bg-dustyPink h6 a:hover,
.bg-mustard h1 a:hover,
.bg-mustard h2 a:hover,
.bg-mustard h3 a:hover,
.bg-mustard h4 a:hover,
.bg-mustard h5 a:hover,
.bg-mustard h6 a:hover,
.bg-softCream h1 a:hover,
.bg-softCream h2 a:hover,
.bg-softCream h3 a:hover,
.bg-softCream h4 a:hover,
.bg-softCream h5 a:hover,
.bg-softCream h6 a:hover,
.bg-lightPink h1 a:hover,
.bg-lightPink h2 a:hover,
.bg-lightPink h3 a:hover,
.bg-lightPink h4 a:hover,
.bg-lightPink h5 a:hover,
.bg-lightPink h6 a:hover,
.bg-mint h1 a:hover,
.bg-mint h2 a:hover,
.bg-mint h3 a:hover,
.bg-mint h4 a:hover,
.bg-mint h5 a:hover,
.bg-mint h6 a:hover {
  color: #227e73;
}
.bg-white .button,
.bg-dustyPink .button,
.bg-mustard .button,
.bg-softCream .button,
.bg-lightPink .button,
.bg-mint .button {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #0f4478;
  color: #fff;
  border: none;
  box-sizing: border-box;
}
.bg-white .button:after,
.bg-dustyPink .button:after,
.bg-mustard .button:after,
.bg-softCream .button:after,
.bg-lightPink .button:after,
.bg-mint .button:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
.bg-white .button:hover,
.bg-dustyPink .button:hover,
.bg-mustard .button:hover,
.bg-softCream .button:hover,
.bg-lightPink .button:hover,
.bg-mint .button:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
.bg-white .button:hover,
.bg-dustyPink .button:hover,
.bg-mustard .button:hover,
.bg-softCream .button:hover,
.bg-lightPink .button:hover,
.bg-mint .button:hover {
  background-color: #227e73;
  color: #fff;
}
.bg-white p a,
.bg-dustyPink p a,
.bg-mustard p a,
.bg-softCream p a,
.bg-lightPink p a,
.bg-mint p a {
  color: #0f4478;
  text-decoration: underline;
}
.bg-white p a:hover,
.bg-dustyPink p a:hover,
.bg-mustard p a:hover,
.bg-softCream p a:hover,
.bg-lightPink p a:hover,
.bg-mint p a:hover {
  color: #227e73;
}

.bg-green,
.bg-darkBlue {
  color: #fff;
}
.bg-green h1,
.bg-green h2,
.bg-green h3,
.bg-green h4,
.bg-green h5,
.bg-green h6,
.bg-darkBlue h1,
.bg-darkBlue h2,
.bg-darkBlue h3,
.bg-darkBlue h4,
.bg-darkBlue h5,
.bg-darkBlue h6 {
  color: #fff;
}
.bg-green h1 a,
.bg-green h2 a,
.bg-green h3 a,
.bg-green h4 a,
.bg-green h5 a,
.bg-green h6 a,
.bg-darkBlue h1 a,
.bg-darkBlue h2 a,
.bg-darkBlue h3 a,
.bg-darkBlue h4 a,
.bg-darkBlue h5 a,
.bg-darkBlue h6 a {
  color: #fff;
}
.bg-green h1 a:hover,
.bg-green h2 a:hover,
.bg-green h3 a:hover,
.bg-green h4 a:hover,
.bg-green h5 a:hover,
.bg-green h6 a:hover,
.bg-darkBlue h1 a:hover,
.bg-darkBlue h2 a:hover,
.bg-darkBlue h3 a:hover,
.bg-darkBlue h4 a:hover,
.bg-darkBlue h5 a:hover,
.bg-darkBlue h6 a:hover {
  color: #fffcdf;
}
.bg-green .button,
.bg-darkBlue .button {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #fdd75a;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
}
.bg-green .button:after,
.bg-darkBlue .button:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
.bg-green .button:hover,
.bg-darkBlue .button:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
.bg-green .button:hover,
.bg-darkBlue .button:hover {
  background-color: #fffcdf;
  color: #0f4478;
}
.bg-green .arrowlink,
.bg-darkBlue .arrowlink {
  color: #fff;
}
.bg-green .arrowlink:hover,
.bg-darkBlue .arrowlink:hover {
  color: #c5e3db;
}
.bg-green .arrowbutton,
.bg-darkBlue .arrowbutton {
  background-color: #c5e3db;
  color: #0f4478;
  text-decoration: none;
}
.bg-green .arrowbutton:hover,
.bg-darkBlue .arrowbutton:hover {
  color: #227e73;
}
.bg-green p a,
.bg-darkBlue p a {
  color: #fff;
  text-decoration: underline;
}
.bg-green p a:hover,
.bg-darkBlue p a:hover {
  color: #c5e3db;
}
.bg-green .social-share__inner,
.bg-darkBlue .social-share__inner {
  border-top: 1px solid #fff;
}

.bg-inner-white,
.bg-inner-dustyPink,
.bg-inner-mustard,
.bg-inner-softCream,
.bg-inner-lightPink,
.bg-inner-mint {
  color: #212427;
}
.bg-inner-white h1,
.bg-inner-white h2,
.bg-inner-white h3,
.bg-inner-white h4,
.bg-inner-white h5,
.bg-inner-white h6,
.bg-inner-dustyPink h1,
.bg-inner-dustyPink h2,
.bg-inner-dustyPink h3,
.bg-inner-dustyPink h4,
.bg-inner-dustyPink h5,
.bg-inner-dustyPink h6,
.bg-inner-mustard h1,
.bg-inner-mustard h2,
.bg-inner-mustard h3,
.bg-inner-mustard h4,
.bg-inner-mustard h5,
.bg-inner-mustard h6,
.bg-inner-softCream h1,
.bg-inner-softCream h2,
.bg-inner-softCream h3,
.bg-inner-softCream h4,
.bg-inner-softCream h5,
.bg-inner-softCream h6,
.bg-inner-lightPink h1,
.bg-inner-lightPink h2,
.bg-inner-lightPink h3,
.bg-inner-lightPink h4,
.bg-inner-lightPink h5,
.bg-inner-lightPink h6,
.bg-inner-mint h1,
.bg-inner-mint h2,
.bg-inner-mint h3,
.bg-inner-mint h4,
.bg-inner-mint h5,
.bg-inner-mint h6 {
  color: #0f4478;
}
.bg-inner-white h1 a,
.bg-inner-white h2 a,
.bg-inner-white h3 a,
.bg-inner-white h4 a,
.bg-inner-white h5 a,
.bg-inner-white h6 a,
.bg-inner-dustyPink h1 a,
.bg-inner-dustyPink h2 a,
.bg-inner-dustyPink h3 a,
.bg-inner-dustyPink h4 a,
.bg-inner-dustyPink h5 a,
.bg-inner-dustyPink h6 a,
.bg-inner-mustard h1 a,
.bg-inner-mustard h2 a,
.bg-inner-mustard h3 a,
.bg-inner-mustard h4 a,
.bg-inner-mustard h5 a,
.bg-inner-mustard h6 a,
.bg-inner-softCream h1 a,
.bg-inner-softCream h2 a,
.bg-inner-softCream h3 a,
.bg-inner-softCream h4 a,
.bg-inner-softCream h5 a,
.bg-inner-softCream h6 a,
.bg-inner-lightPink h1 a,
.bg-inner-lightPink h2 a,
.bg-inner-lightPink h3 a,
.bg-inner-lightPink h4 a,
.bg-inner-lightPink h5 a,
.bg-inner-lightPink h6 a,
.bg-inner-mint h1 a,
.bg-inner-mint h2 a,
.bg-inner-mint h3 a,
.bg-inner-mint h4 a,
.bg-inner-mint h5 a,
.bg-inner-mint h6 a {
  color: #0f4478;
}
.bg-inner-white h1 a:hover,
.bg-inner-white h2 a:hover,
.bg-inner-white h3 a:hover,
.bg-inner-white h4 a:hover,
.bg-inner-white h5 a:hover,
.bg-inner-white h6 a:hover,
.bg-inner-dustyPink h1 a:hover,
.bg-inner-dustyPink h2 a:hover,
.bg-inner-dustyPink h3 a:hover,
.bg-inner-dustyPink h4 a:hover,
.bg-inner-dustyPink h5 a:hover,
.bg-inner-dustyPink h6 a:hover,
.bg-inner-mustard h1 a:hover,
.bg-inner-mustard h2 a:hover,
.bg-inner-mustard h3 a:hover,
.bg-inner-mustard h4 a:hover,
.bg-inner-mustard h5 a:hover,
.bg-inner-mustard h6 a:hover,
.bg-inner-softCream h1 a:hover,
.bg-inner-softCream h2 a:hover,
.bg-inner-softCream h3 a:hover,
.bg-inner-softCream h4 a:hover,
.bg-inner-softCream h5 a:hover,
.bg-inner-softCream h6 a:hover,
.bg-inner-lightPink h1 a:hover,
.bg-inner-lightPink h2 a:hover,
.bg-inner-lightPink h3 a:hover,
.bg-inner-lightPink h4 a:hover,
.bg-inner-lightPink h5 a:hover,
.bg-inner-lightPink h6 a:hover,
.bg-inner-mint h1 a:hover,
.bg-inner-mint h2 a:hover,
.bg-inner-mint h3 a:hover,
.bg-inner-mint h4 a:hover,
.bg-inner-mint h5 a:hover,
.bg-inner-mint h6 a:hover {
  color: #227e73;
}
.bg-inner-white .button,
.bg-inner-dustyPink .button,
.bg-inner-mustard .button,
.bg-inner-softCream .button,
.bg-inner-lightPink .button,
.bg-inner-mint .button {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #0f4478;
  color: #fff;
  border: none;
  box-sizing: border-box;
}
.bg-inner-white .button:after,
.bg-inner-dustyPink .button:after,
.bg-inner-mustard .button:after,
.bg-inner-softCream .button:after,
.bg-inner-lightPink .button:after,
.bg-inner-mint .button:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
.bg-inner-white .button:hover,
.bg-inner-dustyPink .button:hover,
.bg-inner-mustard .button:hover,
.bg-inner-softCream .button:hover,
.bg-inner-lightPink .button:hover,
.bg-inner-mint .button:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
.bg-inner-white .button:hover,
.bg-inner-dustyPink .button:hover,
.bg-inner-mustard .button:hover,
.bg-inner-softCream .button:hover,
.bg-inner-lightPink .button:hover,
.bg-inner-mint .button:hover {
  background-color: #227e73;
  color: #fff;
}
.bg-inner-white p a,
.bg-inner-dustyPink p a,
.bg-inner-mustard p a,
.bg-inner-softCream p a,
.bg-inner-lightPink p a,
.bg-inner-mint p a {
  color: #0f4478;
  text-decoration: underline;
}
.bg-inner-white p a:hover,
.bg-inner-dustyPink p a:hover,
.bg-inner-mustard p a:hover,
.bg-inner-softCream p a:hover,
.bg-inner-lightPink p a:hover,
.bg-inner-mint p a:hover {
  color: #227e73;
}

.bg-inner-green,
.bg-inner-darkBlue {
  color: #fff;
}
.bg-inner-green h1,
.bg-inner-green h2,
.bg-inner-green h3,
.bg-inner-green h4,
.bg-inner-green h5,
.bg-inner-green h6,
.bg-inner-darkBlue h1,
.bg-inner-darkBlue h2,
.bg-inner-darkBlue h3,
.bg-inner-darkBlue h4,
.bg-inner-darkBlue h5,
.bg-inner-darkBlue h6 {
  color: #fff;
}
.bg-inner-green h1 a,
.bg-inner-green h2 a,
.bg-inner-green h3 a,
.bg-inner-green h4 a,
.bg-inner-green h5 a,
.bg-inner-green h6 a,
.bg-inner-darkBlue h1 a,
.bg-inner-darkBlue h2 a,
.bg-inner-darkBlue h3 a,
.bg-inner-darkBlue h4 a,
.bg-inner-darkBlue h5 a,
.bg-inner-darkBlue h6 a {
  color: #fff;
}
.bg-inner-green h1 a:hover,
.bg-inner-green h2 a:hover,
.bg-inner-green h3 a:hover,
.bg-inner-green h4 a:hover,
.bg-inner-green h5 a:hover,
.bg-inner-green h6 a:hover,
.bg-inner-darkBlue h1 a:hover,
.bg-inner-darkBlue h2 a:hover,
.bg-inner-darkBlue h3 a:hover,
.bg-inner-darkBlue h4 a:hover,
.bg-inner-darkBlue h5 a:hover,
.bg-inner-darkBlue h6 a:hover {
  color: #fffcdf;
}
.bg-inner-green .button,
.bg-inner-darkBlue .button {
  display: inline-flex;
  padding: 16px 32px;
  box-sizing: border-box;
  border-radius: 8px;
  transition: color 0.1s, background-color 0.1s, border-color 0.1s;
  background: transparent;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  position: relative;
  text-align: center;
  color: inherit;
  text-decoration: none;
  align-items: center;
  background-color: #fdd75a;
  color: #0f4478;
  border: none;
  box-sizing: border-box;
}
.bg-inner-green .button:after,
.bg-inner-darkBlue .button:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
.bg-inner-green .button:hover,
.bg-inner-darkBlue .button:hover {
  color: inherit;
  background: #ccc;
  border-color: #ccc;
}
.bg-inner-green .button:hover,
.bg-inner-darkBlue .button:hover {
  background-color: #fffcdf;
  color: #0f4478;
}
.bg-inner-green .arrowlink,
.bg-inner-darkBlue .arrowlink {
  color: #fff;
}
.bg-inner-green .arrowlink:hover,
.bg-inner-darkBlue .arrowlink:hover {
  color: #c5e3db;
}
.bg-inner-green .arrowbutton,
.bg-inner-darkBlue .arrowbutton {
  background-color: #c5e3db;
  color: #0f4478;
  text-decoration: none;
}
.bg-inner-green .arrowbutton:hover,
.bg-inner-darkBlue .arrowbutton:hover {
  color: #227e73;
}
.bg-inner-green p a,
.bg-inner-darkBlue p a {
  color: #fff;
  text-decoration: underline;
}
.bg-inner-green p a:hover,
.bg-inner-darkBlue p a:hover {
  color: #c5e3db;
}

.bg-darkBlue span.highlight,
.bg-inner-darkBlue span.highlight {
  color: #0f4478;
}

.full-width-section {
  padding-top: 104px;
  position: relative;
}
@media only screen and (max-width: 1472px) {
  .full-width-section {
    padding-top: 104px;
  }
}
@media only screen and (max-width: 1050px) {
  .full-width-section {
    padding-top: 84px;
  }
}
@media only screen and (max-width: 870px) {
  .full-width-section {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .full-width-section {
    padding-top: 46px;
  }
}
@media only screen and (max-width: 480px) {
  .full-width-section {
    padding-top: 46px;
  }
}
.full-width-section__curve {
  position: relative;
  bottom: -1px;
  margin-top: -1px;
  height: 56px;
}
@media only screen and (max-width: 870px) {
  .full-width-section__curve {
    height: 40px;
  }
}
.full-width-section__curve svg {
  position: absolute;
  height: 56px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 870px) {
  .full-width-section__curve svg {
    height: 40px;
  }
}

.full-width-section__curve + .full-width-section {
  padding-top: 66px;
  position: relative;
}
@media only screen and (max-width: 1472px) {
  .full-width-section__curve + .full-width-section {
    padding-top: 66px;
  }
}
@media only screen and (max-width: 1050px) {
  .full-width-section__curve + .full-width-section {
    padding-top: 52px;
  }
}
@media only screen and (max-width: 870px) {
  .full-width-section__curve + .full-width-section {
    padding-top: 36px;
  }
}
@media only screen and (max-width: 600px) {
  .full-width-section__curve + .full-width-section {
    padding-top: 28px;
  }
}
@media only screen and (max-width: 480px) {
  .full-width-section__curve + .full-width-section {
    padding-top: 36px;
  }
}

.content-page,
.news-listing {
  padding-bottom: 46px;
}
@media only screen and (max-width: 870px) {
  .content-page,
  .news-listing {
    padding-bottom: 0px;
  }
}

.full-width-strip {
  padding-bottom: 104px;
  position: relative;
}
@media only screen and (max-width: 1472px) {
  .full-width-strip {
    padding-bottom: 104px;
  }
}
@media only screen and (max-width: 1050px) {
  .full-width-strip {
    padding-bottom: 84px;
  }
}
@media only screen and (max-width: 870px) {
  .full-width-strip {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 600px) {
  .full-width-strip {
    padding-bottom: 46px;
  }
}
@media only screen and (max-width: 480px) {
  .full-width-strip {
    padding-bottom: 46px;
  }
}

.template1 .main-body > section:last-of-type > .group:last-of-type .full-width-strip {
  padding-bottom: 0;
}

.template2 .main-body > section:last-of-type > .group:last-of-type .full-width-strip {
  padding-bottom: 0;
}

.content-page__main {
  grid-column: span 8;
}
@media only screen and (max-width: 1050px) {
  .content-page__main {
    grid-column: span 9;
    padding-right: 15px;
  }
}
@media only screen and (max-width: 870px) {
  .content-page__main {
    padding-right: 0;
    grid-column: span 4;
  }
}
.content-page__spacer {
  grid-column: span 1;
}
@media only screen and (max-width: 1050px) {
  .content-page__spacer {
    display: none;
  }
}
.content-page__sidebar {
  grid-column: span 3;
}
@media only screen and (max-width: 870px) {
  .content-page__sidebar {
    grid-column: span 4;
  }
}
@media only screen and (max-width: 870px) {
  .content-page__sidebar .sub-nav {
    display: none;
  }
}
.content-page__sidebar h4 a {
  text-decoration: none;
}
.content-page__sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 600;
}
.content-page__sidebar ul li {
  margin-bottom: 20px;
  padding: 0;
}
.content-page__sidebar ul li a {
  text-decoration: none;
}
.content-page__sidebar ul li.selected a {
  color: #227e73;
}

.hero-breadcrumbs {
  padding: 16px 0;
}
.hero-breadcrumbs__strip {
  grid-column: 1/13;
  display: flex;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 1.3125rem;
}
.hero-breadcrumbs__strip a {
  color: #fff;
}
.hero-breadcrumbs__strip .fa-chevron-right {
  font-size: 0.875rem;
  margin-right: 6px;
  margin-left: 6px;
  font-weight: normal;
}
@media only screen and (max-width: 870px) {
  .hero-breadcrumbs {
    display: none;
  }
}

.hero-homepage {
  min-height: 840px;
  position: relative;
}
.hero-homepage__image-container {
  position: absolute;
  height: 100%;
}
.hero-homepage__image-container--image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.hero-homepage__image-container--curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}
.hero-homepage__image-container--curve path {
  fill: #fff;
}
@media only screen and (max-width: 870px) {
  .hero-homepage__image-container--curve path {
    fill: #fdd75a;
  }
}
@media only screen and (max-width: 870px) {
  .hero-homepage__image-container {
    position: relative;
    background-color: #fdd75a;
    height: 400px;
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .hero-homepage__image-container {
    height: 300px;
  }
}
.hero-homepage__text {
  z-index: 10;
  background-color: #fdd75a;
  padding: 40px;
  grid-column: 1/7;
  border-radius: 24px;
  margin-top: 86px;
}
.hero-homepage__text h1 {
  color: #0f4478;
  font-size: 2.5rem;
  line-height: 3.5rem;
  margin-bottom: 24px;
}
@media only screen and (max-width: 870px) {
  .hero-homepage__text h1 {
    font-size: 2.25rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 870px) {
  .hero-homepage__text {
    grid-column: 1/13;
    padding: 0 0 18px;
    margin-top: 32px;
    border-radius: 0;
  }
}
@media only screen and (max-width: 870px) {
  .hero-homepage {
    background-color: #fdd75a;
    min-height: auto;
  }
}

.hero-landing {
  position: relative;
}
.hero-landing__inner {
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 134px;
}
@media only screen and (max-width: 870px) {
  .hero-landing__inner {
    padding-top: 32px;
    margin-bottom: 180px;
  }
}
@media only screen and (max-width: 870px) {
  .hero-landing__inner.img-illustration {
    margin-bottom: 0;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 600px) {
  .hero-landing__inner.img-illustration {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 480px) {
  .hero-landing__inner.img-illustration {
    padding-bottom: 60px;
  }
}
.hero-landing__text {
  z-index: 10;
  grid-column: 1/7;
}
@media only screen and (max-width: 870px) {
  .hero-landing__text {
    grid-column: 1/13;
  }
}
@media only screen and (max-width: 600px) {
  .hero-landing__text {
    grid-column: 1/13;
    padding: 18px 0;
    order: 2;
  }
}
.img-illustration .hero-landing__text {
  grid-column: 1/9;
}
@media only screen and (max-width: 600px) {
  .img-illustration .hero-landing__text {
    grid-column: 1/13;
  }
  .img-illustration .hero-landing__text .hero-landing__inner {
    margin-bottom: 0;
  }
}
.hero-landing__image {
  grid-column: 8/13;
  position: absolute;
  z-index: 10;
  border-radius: 24px;
}
@media only screen and (max-width: 870px) {
  .hero-landing__image {
    grid-column: 1/13;
    position: relative;
    order: 3;
    margin-bottom: -320px;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    max-height: 500px;
  }
  .hero-landing__image img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    max-height: 500px;
  }
}
.hero-landing__illustration {
  grid-column: 10/13;
  z-index: 10;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 870px) {
  .hero-landing__illustration {
    grid-column: 10/13;
  }
}
@media only screen and (max-width: 600px) {
  .hero-landing__illustration {
    display: none;
    grid-column: 1/5;
    position: relative;
    order: 3;
    margin: 32px 0 0 0;
    padding: 0;
  }
}
@media only screen and (max-width: 600px) {
  .hero-landing__illustration {
    grid-column: 1/6;
  }
}
@media only screen and (max-width: 480px) {
  .hero-landing__illustration {
    grid-column: 1/7;
  }
}
.hero-landing__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}
.hero-landing__curve path {
  fill: #fff;
}
.hero-landing:not(:has(.hero-landing__image)) .hero-landing__inner {
  margin-bottom: 0;
}
@media only screen and (max-width: 870px) {
  .hero-landing:not(:has(.hero-landing__image)) .hero-landing__inner {
    padding-bottom: 54px;
  }
}

.text__content {
  grid-column: 1/9;
}
.text__content.align-centre {
  grid-column: 3/11;
}
@media only screen and (max-width: 870px) {
  .text__content.align-centre {
    grid-column: 1/13;
  }
}
@media only screen and (max-width: 870px) {
  .text__content {
    grid-column: 1/13;
  }
}

.heading__text {
  grid-column: span 12;
}
.heading__text h2 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 870px) {
  .heading__text h2 {
    margin-bottom: 32px;
  }
}

.text-card {
  grid-column: span 4;
  padding: 32px;
  text-decoration: none;
  border-radius: 24px;
}
.text-card h5:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.375rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
}
.text-card p {
  color: #212427;
  font-weight: normal;
}
.text-card:hover {
  background-color: #fff;
}
.text-card:hover h5 {
  color: #227e73;
}
.bg-white .text-card.bg-inner-softCream:hover {
  background-color: #fffcdf;
}
.bg-white .text-card.bg-inner-lightPink:hover {
  background-color: #f9f3f5;
}
@media only screen and (max-width: 870px) {
  .text-card {
    grid-column: span 6;
    padding: 24px;
  }
}
@media only screen and (max-width: 600px) {
  .text-card {
    grid-column: span 12;
  }
}

.text-block__inner {
  grid-column: 3/11;
  border-radius: 24px;
  position: relative;
}
.text-block__inner--icon {
  position: relative;
  top: -30px;
  right: 40px;
}
.text-block__inner--icon img {
  float: right;
  clear: right;
  margin: 0 0 28px 64px;
}
@media only screen and (max-width: 600px) {
  .text-block__inner--icon img {
    width: 60px;
    height: auto;
  }
}
@media only screen and (max-width: 600px) {
  .text-block__inner--icon {
    position: absolute;
  }
}
.text-block__inner--text {
  padding: 32px 40px 40px;
}
@media only screen and (max-width: 870px) {
  .text-block__inner--text {
    padding: 24px;
  }
}
@media only screen and (max-width: 870px) {
  .text-block__inner {
    grid-column: 1/13;
  }
}
.text-block__inner:has(.text-block__inner--icon) {
  margin-top: 30px;
}

.image-card {
  grid-column: span 4;
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
}
.image-card__image img {
  border-radius: 16px;
}
.image-card__title {
  padding: 24px 8px 0;
}
.image-card__title:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 1.5rem;
  line-height: 2rem;
  content: "\f054";
  margin-left: 8px;
  right: 20px;
}
.image-card:hover .image-card__title {
  color: #227e73;
}
@media only screen and (max-width: 870px) {
  .image-card {
    grid-column: span 6;
  }
}
@media only screen and (max-width: 600px) {
  .image-card {
    grid-column: span 12;
  }
}

.text-and-image__text {
  grid-column: 1/6;
  order: 1;
  align-content: center;
}
@media only screen and (max-width: 870px) {
  .text-and-image__text {
    grid-column: 1/13;
    order: 2;
  }
}
.text-and-image__image {
  grid-column: 7/13;
  order: 2;
  position: relative;
}
.text-and-image__image--img {
  border-radius: 24px;
  width: 100%;
}
@media only screen and (max-width: 870px) {
  .text-and-image__image--img {
    border-radius: 0;
  }
}
@media only screen and (max-width: 870px) {
  .text-and-image__image {
    grid-column: 1/13;
    order: 1;
    margin-left: -18px;
    margin-right: -18px;
  }
}
.text-and-image__quote {
  padding: 32px;
  border-radius: 24px;
  position: relative;
  margin-top: -78px;
  margin-left: -40px;
  margin-right: 0;
  width: calc(100% - 106px);
  box-sizing: border-box;
}
@media only screen and (max-width: 1472px) {
  .text-and-image__quote {
    width: calc(100% - 26px);
  }
}
@media only screen and (max-width: 1050px) {
  .text-and-image__quote {
    width: calc(100% - 0px);
  }
}
@media only screen and (max-width: 870px) {
  .text-and-image__quote {
    padding: 24px;
    margin-left: 33%;
    width: calc(100% - (18px + 33%));
  }
}
.text-and-image__quote--arrow {
  border-radius: 0;
  position: absolute;
  top: -32px;
  align-self: flex-end;
  right: 40px;
  left: auto;
  background-size: cover;
  width: 43px;
  height: 32px;
}
.bg-inner-dustyPink .text-and-image__quote--arrow {
  background-image: url("../images/speech-arrow-small-dustyPink.svg");
}
.bg-inner-mint .text-and-image__quote--arrow {
  background-image: url("../images/speech-arrow-small-mint.svg");
}
.text-and-image__quote--text {
  color: #0f4478;
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 2rem;
}
.text-and-image__quote--author {
  color: #0f4478;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 2rem;
}
.text-and-image.reversed .text-and-image__image {
  order: 1;
  grid-column: 1/6;
}
@media only screen and (max-width: 870px) {
  .text-and-image.reversed .text-and-image__image {
    grid-column: 1/13;
    order: 1;
    margin-left: -18px;
    margin-right: -18px;
  }
}
.text-and-image.reversed .text-and-image__quote {
  justify-self: flex-end;
  margin-right: -40px;
  margin-left: 18px;
}
@media only screen and (max-width: 870px) {
  .text-and-image.reversed .text-and-image__quote {
    margin-right: 33%;
    width: calc(100% - (18px + 33%));
  }
}
.text-and-image.reversed .text-and-image__quote--arrow {
  right: auto;
  left: 40px;
  transform: scaleX(-1);
}
.text-and-image.reversed .text-and-image__text {
  order: 2;
  grid-column: 7/13;
}
@media only screen and (max-width: 870px) {
  .text-and-image.reversed .text-and-image__text {
    grid-column: 1/13;
  }
}

.text-and-image-block__inner {
  border-radius: 24px;
  padding: 24px;
  text-decoration: none;
}
.text-and-image-block__inner--image {
  grid-column: 1/5;
}
.text-and-image-block__inner--image img {
  border-radius: 16px;
  margin: 0;
}
@media only screen and (max-width: 870px) {
  .text-and-image-block__inner--image {
    grid-column: 1/13;
  }
}
.text-and-image-block__inner--text {
  grid-column: 5/13;
  padding: 0 40px;
  display: flex;
  align-self: center;
  flex-wrap: wrap;
}
.text-and-image-block__inner--text p {
  font-weight: normal;
}
.text-and-image-block__inner--text h3 {
  line-height: 3rem;
}
.text-and-image-block__inner--text h3:after {
  font-family: "Font Awesome 6 Pro";
  font-size: 2rem;
  line-height: 3rem;
  content: "\f054";
  margin-left: 8px;
}
@media only screen and (max-width: 870px) {
  .text-and-image-block__inner--text h3 {
    line-height: 2.625rem;
  }
}
@media only screen and (max-width: 600px) {
  .text-and-image-block__inner--text h3 {
    line-height: 2rem;
  }
}
@media only screen and (max-width: 870px) {
  .text-and-image-block__inner--text {
    grid-column: 1/13;
    padding: 0;
    margin: 0 8px;
  }
}
.text-and-image-block__inner:hover {
  color: #212427;
}
.text-and-image-block__inner:hover h3 {
  color: #227e73;
}

.quote-and-image .grid-12 {
  row-gap: 0;
}
.quote-and-image__text {
  grid-column: 1/7;
  grid-row: 1;
  z-index: 10;
}
@media only screen and (max-width: 870px) {
  .quote-and-image__text {
    grid-column: 1/13;
    order: 2;
    grid-row: auto;
  }
}
.quote-and-image__quote {
  margin-top: 64px;
  padding: 64px;
  border-radius: 24px;
  position: relative;
  box-sizing: border-box;
  margin-bottom: 68px;
}
.quote-and-image__quote--arrow {
  width: 56px;
  height: 40px;
  position: absolute;
  bottom: -40px;
}
.bg-inner-dustyPink .quote-and-image__quote--arrow {
  background-image: url("../images/speech-arrow-big-dustyPink.svg");
}
.bg-inner-mint .quote-and-image__quote--arrow {
  background-image: url("../images/speech-arrow-big-mint.svg");
}
@media only screen and (max-width: 870px) {
  .quote-and-image__quote--arrow {
    left: 32px;
  }
}
.quote-and-image__quote--text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 2.75rem;
  color: #0f4478;
}
@media only screen and (max-width: 870px) {
  .quote-and-image__quote--text {
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}
.quote-and-image__quote--author {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.75rem;
  color: #0f4478;
  margin-top: 26px;
}
@media only screen and (max-width: 870px) {
  .quote-and-image__quote {
    padding: 24px;
    margin-top: -78px;
    margin-bottom: -78px;
  }
}
.quote-and-image__link {
  grid-column: 1/5;
  margin-bottom: 8px;
  margin-left: 62px;
  align-self: flex-end;
}
@media only screen and (max-width: 870px) {
  .quote-and-image__link {
    grid-column: 1/13;
    grid-row: auto;
    order: 3;
    margin: 140px 32px 0 32px;
    align-self: flex-start;
    margin-bottom: 0;
  }
}
.quote-and-image__image {
  grid-column: 5/13;
  grid-row: 1/3;
}
.quote-and-image__image img {
  border-radius: 24px;
}
@media only screen and (max-width: 870px) {
  .quote-and-image__image img {
    border-radius: 0;
  }
}
@media only screen and (max-width: 870px) {
  .quote-and-image__image {
    grid-column: 1/13;
    grid-row: auto;
    order: 1;
    margin-left: -18px;
    margin-right: -18px;
  }
}

.two-column-block__inner {
  padding: 54px 64px 64px;
  border-radius: 24px;
}
@media only screen and (max-width: 870px) {
  .two-column-block__inner {
    padding: 24px;
  }
}
.two-column-block__inner.bg-inner-none {
  padding: 0;
  border-radius: 0;
}
.two-column-block__inner--content-left {
  grid-column: 1/7;
  align-content: center;
}
@media only screen and (max-width: 870px) {
  .two-column-block__inner--content-left {
    grid-column: 1/13;
    order: 2;
  }
}
.two-column-block__inner--content-right {
  grid-column: 8/12;
  align-content: center;
}
@media only screen and (max-width: 870px) {
  .two-column-block__inner--content-right {
    grid-column: 3/11;
    order: 1;
  }
}

.social-share {
  margin-top: -24px;
}
.social-share__inner {
  grid-column: 3/11;
  display: flex;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid #0f4478;
}
.social-share__inner--label {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  margin-right: 20px;
}
@media only screen and (max-width: 870px) {
  .social-share__inner {
    grid-column: 1/13;
  }
}
.news-listing .social-share__inner {
  grid-column: 1/13;
}
.news-listing .social-share .container {
  padding: 0;
}

.cp-cta-block {
  margin-top: -24px;
}
.cp-cta-block__inner {
  box-sizing: border-box;
  padding: 32px 40px 48px;
  border-radius: 24px;
}

.cp-social-share {
  margin-top: -24px;
}
.cp-social-share__inner {
  display: flex;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid #0f4478;
}
.cp-social-share__inner--label {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.6875rem;
  margin-right: 20px;
  color: #0f4478;
}
