/* Backgrounds */

.bg p:last-of-type {
    margin-bottom: 0;
}

.bg > h2:first-of-type, .bg > h3:first-of-type {
    margin-top: 0;
}

.bg-yellow, .bg-yellow::before, .bg-yellow::after {
    background: #ffd060 !important;
}

.bg-purple, .bg-purple::before, .bg-purple::after {
    background: #484495 !important;
    color: #fff;
}

.bg-pale-purple, .bg-pale-purple::before, .bg-pale-purple::after {
    background: #a6a1d1 !important;
}

.bg-orange, .bg-orange::before, .bg-orange::after {
    background: #f49645 !important;
}

.bg-red, .bg-red::before, .bg-red::after {
    background: #ec6743 !important;
    color: #fff;
}

.bg-green, .bg-green::before, .bg-green::after {
    background: #36ada9 !important;
    color: #fff;
}

.bg-grey, .bg-grey::before, .bg-grey::after {
    background: #9f9f9f !important;
}

.bg-light-grey, .bg-light-grey::before, .bg-light-grey::after {
    background: #f7f7f7 !important;
}

.bg-black, .bg-black::before, .bg-black::after {
    background: #353535 !important;
    color: #fff;
}

.bg-white, .bg-white::before, .bg-white::after {
    background: #fff !important;
}

.bg-purple a, a.bg-purple, .bg-black a, a.bg-black, .bg-red a, a.bg-red {
    color: #fff !important;
}

h2.bg-yellow, h2.bg-orange, h2.bg-red, h2.bg-purple, h2.bg-pale-purple, h2.bg-green, h2.bg-grey, h2.bg-black, h2.bg-white {
    display: inline;
}

h2.bg-yellow:after, h2.bg-orange:after, h2.bg-red:after, h2.bg-purple:after, h2.bg-pale-purple:after, h2.bg-green:after, h2.bg-grey:after, h2.bg-black:after, h2.bg-white:after {
    display: block;
    content: "";
    height: 1.5rem;
}

p.bg-yellow, p.bg-orange, p.bg-red, p.bg-purple, p.bg-pale-purple, p.bg-green, p.bg-grey, p.bg-black, p.bg-white {
    display: block;
    padding: 1rem;
}

.main div.bg-yellow, .main div.bg-orange, .main div.bg-red, .main div.bg-purple, .main div.bg-pale-purple, .main div.bg-green, .main div.bg-light-grey, .main div.bg-grey, .main div.bg-black, .main div.bg-white {
    display: block;
    padding: 1.5rem;
}

#main div.bg-yellow h2, #main div.bg-orange h2, #main div.bg-pale-purple h2, #main div.bg-grey h2 {
    color: #484495;
}

#main div.bg-red h2, #main div.bg-purple h2, #main div.bg-green h2, #main div.bg-black h2 {
    color: #fff;
}

/* Background gradient */

.bg-purple-grey {
    background: #484495;
    background-image: linear-gradient(180deg, #484495 50%, #f7f7f7 50%);
}

.bg-grey-purple {
    background: #f7f7f7;
    background-image: linear-gradient(180deg, #f7f7f7 50%, #484495 50%);
}

/* Slant background */

@media (min-width: 992px) {
    .slant-right {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
        margin-bottom: -15rem;
        position: relative;
        z-index: 2;
    }
    
    .slant-left {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
        margin-bottom: -15rem;
        position: relative;
        z-index: 1;
    }
    
    .slant-right + div, .slant-left + div {
        padding-top: 15rem !important;
    }
}


/* Colours */

.clr-yellow {
    color: #ffd060;
}

.clr-purple {
    color: #484495;
}

.clr-pale-purple {
    color: #a6a1d1;
}

.clr-orange {
    color: #f49645;
}

.clr-red {
    color: #ec6743;
}

.clr-green {
    color: #36ada9;
}

.clr-grey {
    color: #9f9f9f;
}

.clr-black {
    color: #353535;
}

.clr-white {
    color: #fff;
}

/* Hover */

.hvr-yellow:hover {
    color: #ffd060;
}

.hvr-purple:hover {
    color: #484495;
}

.hvr-pale-purple:hover {
    color: #a6a1d1;
}

.hvr-orange:hover {
    color: #f49645;
}

.hvr-red:hover {
    color: #ec6743;
}

.hvr-green:hover {
    color: #36ada9;
}

.hvr-grey:hover {
    color: #9f9f9f;
}

.hvr-black:hover {
    color: #353535;
}

.hvr-white:hover {
    color: #fff;
}

/* Page info grids */

.align-items-stretch > div {
    margin-bottom: 2rem;
}

/* Icon transition hover effect */

.icon-switch {
    display: flex;
    justify-content: center;
}

.icon-switch span.switch {
    position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 0.75rem;
	margin-left: 0.5rem;
}

.icon-switch i {
    position: absolute;
    transition: 0.3s all;
}

.icon-switch .icon-hover {
    opacity: 0;
    transform: rotate(-180deg);
}

.icon-switch:hover .icon-default, .icon-switch a:focus .icon-default {
    transform: rotate(180deg);
    opacity: 0;
}

.icon-switch:hover .icon-hover, .icon-switch a:focus .icon-hover {
    transform: rotate(0deg);
    opacity: 1;
}

/* Hamburger */

.hamburger {
    padding: 20px 15px 15px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
}

.hamburger:hover {
    opacity: 0.7;
}

.hamburger.is-active:hover {
    opacity: 0.7;
}
.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #fff; /* Edit */
}

.hamburger-box {
    width: 40px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #fff; /* Edit */
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-duration: 0.275s;
    transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
    transform: translate3d(0, 10px, 0) rotate(135deg);
    transition-delay: 0.075s;
}
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0;
}
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s;
}

/* Search */

#search, #search div {
    height: 100%;
    background: #ffd060;
    padding-right: 0.2rem;
}

#search input {
    height: 100%;
    border: 0;
    background: #ffd060;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

#search .textbox::placeholder {
    color: #484495;
    overflow: visible;
}

#search input:focus {
    outline: none;
}

#search input:-webkit-autofill {
    border-color: #484495;
    -webkit-box-shadow: 0 0 0 50px #f4983b inset;
    -webkit-text-fill-color: #484495;
}

#search .button {
    display: none;
}

#ctl00_search_pnlSearch {
    display: flex;
}

#ctl00_search_btnSubmit {
    background: transparent;
    border: 0;
    width: 3rem;
    position: relative;
    overflow: hidden;
}

#search .icon-switch {
    align-items: center;
}

#mobile-search-container {
    position: relative;
}

#mobile-search-container div, #mobile-search-container input {
    width: 100%;
}

#mobile-search-container .search-button {
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0.25rem;
}

@media (min-width: 768px) {

    #search-container {
        align-self: stretch;
        margin-right: -1rem;
    }
    
}

/* Hero */

#child-hero {
    padding-top: 3rem;
}

@media (min-width: 992px) {
    #child-hero {
        padding-top: 6rem;
    }
}

#child-hero h1 div {
    display: inline;
    font-size: 2.5rem;
    line-height: 4rem;
}

@media (min-width: 768px) {
    

    #child-hero h1 div {
        font-size: 3.5rem;
        line-height: 6rem;
    }
    
}

#child-hero h1:after {
    content: "";
    display: block;
    height: 3rem;
}

/* Image below hero */

.child-image-inner img {
    display: none;
}

/* Main */

#main {
    margin-top: 2rem;
}

.main p, .main ul, .main ol {
}

.main a {
    background-color: #ffd060;
    color: #484495;
}

.main a:hover, .main a:focus {
    background: #f49642;
    color: #484495;
}

.main .transparent-a a {
    background: transparent;
    color: #36ada9;
}

.main .transparent-a a:hover, .main .transparent-a a:focus {
    background: transparent;
    color: #484495;
}

/* Grid navigation */

#grid-nav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-right: -1rem;
}

#grid-nav ul li {
    position: relative;
    flex: 0 0 100%;
    padding: 1rem;
}

#grid-nav img {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
}

#grid-nav ul li a:before {
    content: "";
    display: block;
    border: 3px solid #484495;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 2rem;
    right: 2rem;
    z-index: -1;
}

#grid-nav ul li a:after {
    content: "\f054";
    font-family: 'Font Awesome 5 Free';
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    font-weight: 900;
    background: #fff;
    color: #484495;
    transition: 0.2s font-size ease;
}

#grid-nav ul li .msl-imagenav-title {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: #ffffff;
    color: #484495;
    font-weight: 700;
    font-size: 1.2rem;
    transition: 0.2s padding ease;
    z-index: 5;
}

#grid-nav ul li a {
    display: block;
    overflow: hidden;
    padding-top: 56.25%;
    background: #484495;
}

#grid-nav ul li a:hover:before {
    background: #484495;
    border-color: #484495;
}

#grid-nav ul li a:hover:after {
    color: #f49644;
    font-size: 1.5rem;
}

#grid-nav ul li a:hover .grid-nav-text {
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    
    #grid-nav ul li .msl-imagenav-title {
        font-size: 1.5rem;
    }
    
    #grid-nav ul li {
        flex: 0 0 50%;
    }
    
}

/* Icon classes */

.warning:not(.button), .email:not(.button), .phone:not(.button), .search:not(.button), .tickets:not(.button), .basket:not(.button) {
  padding: 0;
  background: none;
}

.facebook::before, .instagram::before, .twitter::before, .youtube::before, .linkedin::before, .snapchat::before, .tiktok::before {
  font-family: "Font Awesome 5 Brands";
  font-weight: 800;
  margin-right: 1rem;
}

.facebook::before {
  content: '\f39e';
}

.instagram::before {
  content: '\f16d';
}

.twitter::before {
  content: '\f099';
}

.tiktok::before {
  content: '\e07b';
}

.youtube::before {
  content: '\f167';
}

.linkedin::before {
  content: '\f0e1';
}

.snapchat::before {
  content: '\f2ac';
}

.phone::before, .email::before, .location::before, .calendar::before, .clock::before, .download::before, .profile::before, .warning::before, .question::before, .image::before, .search::before, .tick::before, .cross::before, .basket::before, .tickets::before, .award::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
  margin-right: 1rem;
}

.phone::before {
  content: '\f095';
}

.email::before {
  content: "\f0e0";
  font-weight: 400;
}

.location::before {
  content: "\f3c5";
}

.calendar::before {
  content: "\f073";
  font-weight: 400;
}

.clock::before {
  content: "\f017";
  font-weight: 400;
}

.download::before {
  content: "\f56d";
}

.profile::before {
  content: "\f007";
}

.warning::before {
  content: "\f06a";
}

.question::before {
  content: "\f128";
}

.image::before {
  content: "\f03e";
}

.search::before {
  content: "\f002";
}

.tick::before {
  content: "\f00c";
}

.cross::before {
  content: "\f00d";
}

.basket::before {
  content: "\f291";
}

.tickets::before {
  content: "\f3ff";
}

.award::before {
  content: '\f559';
}

/* Teams */

#main ul.team-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

#main ul.team-list li {
    flex: 0 0 100%;
    margin: 0.5rem 0;
}

#main ul.team-list li a {
    display: flex;
    flex-direction: column;
    margin: 0.5rem;
    padding: 1rem;
    background: #f7f7f7;
    height: 100%;
}

#main ul.team-list li a:hover .email {
    color: #36ada9;
}

#main ul.team-list li a:not([href]):hover {
  color: inherit;
}

#main ul.team-list li a > .h3:first-of-type {
    margin-top: 0;
}

#main ul.team-list li a .body {
    flex-grow: 1;
}

@media (min-width: 768px) {
    #main ul.team-list li {
        flex: 0 0 50%;
    }
}

@media (min-width: 1200px) {
    #main ul.team-list li {
        flex: 0 0 33.33333%;
    }
}

/* Officer pages */

.officer-socials {
    display: flex;
    justify-content: space-evenly;
}

#main .officer-socials a {
    background: transparent;
}

#main .officer-socials a:focus, #main .officer-socials a:hover {
    background: transparent;
    color: #36ada9;
}

/* Flex classes */

.flex-100, .flex-66, .flex-50 {
    flex: 0 0 100%;
}

@media (min-width: 992px) {
    .flex-66 {
        flex: 0 0 66.666666%;
    }
    .flex-50 {
        flex: 0 0 50%;
    }
}

/* Slideshows */

.slideshow {
    display: flex;
    margin-bottom: 3rem;
}

/* MSL Notifications */

.msl_notification {
    background: #ffd060;
    padding: 0.5rem 1rem;
    margin: 0;
}

.msl_info {
    background: transparent;
    padding: 0;
    margin: 0;
}

/* Login */

.login label {
    font-weight: 700;
}

.login input.textbox {
    font-size: 1em;
    width: 100%;
    background: #484495;
    color: #fff;
    border: 0;
    padding: 1rem;
    font-weight: 700;
}

.login input.button, .msl-sso-login-link {
    font-size: 1em;
    width: 100%;
    background: #ffd060;
    border: 0;
    padding: 1rem;
    font-weight: 700;
    margin: 1rem 0;
    display: block;
    text-align: center;
}

.login + .login {
    display: flex;
    justify-content: space-between;
}

.login + .login a {
    font-size: 1rem;
    background: transparent;
}

.login + .login a:hover, .login + .login a:focus {
    color: #36ada9;
}

.msl_warning, .error {
    background: #f49645;
    border: 0;
    padding: 1rem;
    color: inherit;
    margin: 0;
    font-weight: 700;
    margin: 1rem 0;
}

.error h1, .error h2, .error h3, .error h4, .error h5, .error h6, .error a {
    color: inherit;
}

.error p:last-of-type {
    margin-bottom: 0;
}

/* Load more items */

.expand-items .event_item {
    display: none;
}

/* Videos */

.videoWrapper, .video-wrapper {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.videoWrapper iframe, .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Accordion */

#accordion-container .question {
    align-items: center;
    font-weight: 900;
    line-height: 1.2;
    display: flex;
    padding: 1rem 0;
    cursor: pointer;
}

#accordion-container .question::before  {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 800;
    font-size: 1rem;
    color: #36ada9;
    margin-right: 1rem;
    transition: 0.2s transform ease-in-out;
}

#accordion-container .question:focus {
    outline: none;
}

#accordion-container .question.active::before {
    content: '\f068';
    transform: rotate(180deg);
}

#accordion-container .question p {
    margin: 0;
}

#accordion-container .answer {
    display: none;
    padding: 2rem;
    background: #f7f7f7;
    border-radius: 0;
    transition: 0.4s border-radius ease-in-out;
}

#accordion-container .question.active ~ .answer {
    border-radius: 2rem;
}

#accordion-container + * {
    margin-top: 2rem;
}

/* Cards */

.cards-container {
    display: flex !important;
    flex-wrap: wrap;
    margin: -0.5rem;
    padding: 0 !important;
}

.cards-container + h2 {
    margin-top: 2rem;
}

.cards-container.bg-white, .cards-container.bg-black, .cards-container.bg-yellow, .cards-container.bg-purple, .cards-container.bg-pale-purple, .cards-container.bg-green, .cards-container.bg-red, .cards-container.bg-orange {
    background: transparent;
}

.card {
    flex: 0 0 100%;
    flex: 0 0 calc(100% - 1rem);
    margin: 0.5rem;
    padding: 1.5rem;
    background: #a6a1d1;
}

.card > h3:first-child {
    margin-top: 0;
}

.card > *:last-child {
    margin-bottom: 0;
}

.card .email {
    font-size: 1rem;
}

.bg-white .card {
    background: #fff;
}

.bg-black .card {
    background: #353535;
}

.bg-yellow .card {
    background: #ffd060;
}

.bg-blue .card {
    background: #0099a7;
}

.bg-pink .card {
    background: #ea4d7f;
}

.card .answer {
    background: transparent;
    padding: 0;
    font-size: 1rem;
}

@media (min-width: 992px) {
    .card {
        flex: 0 0 50%;
        flex: 0 0 calc(50% - 1rem);
    }
}

/* Gallery */

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.image-gallery:first-child {
  margin-top: 0;
}

.image-gallery:last-child {
  margin-bottom: 0;
}

.image-gallery > li {
  flex: 1 1 auto;
  height: 300px;
  cursor: pointer;
  position: relative;
}

.image-gallery li img {
  object-fit: cover;
  width: 100%;
  height: 100% !important;
  vertical-align: middle;
}

/* Blockquotes */

blockquote {
  position: relative;
  font-weight: 500;
  padding: 6rem 0;
  margin-left: 0;
  font-size: calc(2rem + 2vw);
  line-height: 1.25;
  overflow: hidden;
  text-align: center;
}

blockquote span {
  display: block;
  color: #a6a1d1;
  font-size: calc(4rem + 12vw);
  font-weight: 900;
  pointer-events: none;
  text-align: left;
}

.blockquote-open {
  margin-bottom: calc(-2rem - 7vw);
}

.blockquote-close {
  text-align: right;
  margin-top: -2vw;
  margin-bottom: calc(-2rem - 8vw);
}

.bg-orange blockquote, .bg-red blockquote, .bg-green blockquote {
  color: inherit;
}

.bg-yellow blockquote span, .bg-pale-purple blockquote span, .bg-orange blockquote span, .bg-red blockquote span, .bg-green blockquote span {
  color: inherit;
}

/* Feature lists */

.feature {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.feature > li {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  padding-left: 4rem;
  flex: 0 0 100%;
}

ol.feature > li {
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-left: 5rem;
}

ol.feature {
  counter-reset: custom-numbers;
}

ol.feature li {
  counter-increment: custom-numbers;
}

ol.feature > li::before {
  content: counter(custom-numbers);
  position: absolute;
  top: 3rem;
  left: 0;
  font-weight: 900;
  font-size: 2rem;
  font-size: calc(2rem + 2vw);
  line-height: 1;
}

ul.feature > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -2000px;
  right: -2000px;
  bottom: 0;
  z-index: -1;
}

ul.feature > li::after {
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: #f5b5c3;
  position: absolute;
}

.extra-slim > ul.feature:last-child {
  margin-bottom: -5vw;
}

ul.feature > li > h3:first-child {
  position: relative;
}

/* Tables */

.table-container {
  overflow-x: auto;
}

table {
  width: 100%;
  font-size: 1rem;
  margin: 2rem 0;
  border-spacing: 0;
  border-collapse: collapse;
}

thead {
  color: #fff;
  background: #484495;
}

.bg-purple thead {
  background: #fff;
  color: #484495;
}

td, th {
  padding: 1rem;
}

td {
  border: 1px solid #ccc;
}

tr:nth-child(even) {
  background: #fff;
}

#page_tree table {
  margin: 0;
  width: fit-content;
}

#page_tree td {
  padding: 0;
  border: 0;
}

/* p */

p:last-child {
  margin-bottom: 0;
}

/* Cards */

.cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -2rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 0 0 calc(100% - 4rem);
  padding: 2rem;
  border-radius: 2rem;
  background: #f2f2f2;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s transform cubic-bezier(0.68, -0.55, 0.265, 1.55);
  margin: 4rem 0;
}

a.card:hover {
  transform: scale(1.1);
} 

.cards-center .card {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.bg-grey > .card, .bg-grey > .cards-container > .card {
  background: #fff;
}

.card + .card {
  margin-top: 2rem;
}

.card + .cards-container {
  margin-top: 2rem;
}

.cards-container .card {
  margin: 2rem;
}

.card.img-first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.card img:first-child:not(.card-circle img) {
  margin: -2rem -2rem 0 -2rem;
  width: calc(100% + 4rem);
  max-width: unset;
}

.card img + p {
  margin-top: 1rem;
}

img.card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: unset;
  min-width: 110%;
  min-height: 110%;
  opacity: 0.2;
  z-index: -1;
  margin: 0 !important;
  width: unset !important;
}

.card-bg + h2, .card-bg + .h2, .card-bg + h3, .card-bg + .h3, .card-bg + h4, .card-bg + .h4, .card-bg + h5, .card-bg + .h5, .card-bg + h6, .card-bg + .h6 {
  margin-top: 0;
}

.card-circle:first-child {
  position: relative;
  background: #fff;
  width: calc(100% + 4rem);
  margin: -2rem;
  padding: 3rem 2rem;
}

.card-circle:first-child::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  display: block;
  background: #f0f0f0;
  border-top-right-radius: 2rem;
  border-top-left-radius: 2rem;
}

.card-circle:first-child img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.card-circle img {
  width: 6rem !important;
  border-radius: 50%;
  height: 6rem !important;
  object-fit: cover;
}

.card-circle + h3, .card-circle + h4 {
  margin-top: 4rem;
  z-index: 1;
}

.card.bg-yellow, .card.bg-yellow .card-circle:first-child::after {
  background: #ffd060 !important;
}

.card.bg-orange, .card.bg-orange .card-circle:first-child::after {
  background: #f49645 !important;
}

.card.bg-green, .card.bg-green .card-circle:first-child::after {
  background: #36ada9 !important;
}

.card.bg-red, .card.bg-red .card-circle:first-child::after {
  background: #ec6743 !important;
}

.card.bg-black, .card.bg-black .card-circle:first-child::after {
  background: #353535 !important;
}

.card.bg-grey, .card.bg-grey .card-circle:first-child::after {
  background: #f2f2f2 !important;
}

.card.bg-white, .card.bg-white .card-circle:first-child::after {
  background: #fff !important;
}

.card.bg-transparent, .card.bg-transparent .card-circle:first-child::after {
  background: transparent !important;
}

@media (min-width: 768px) {
  .cards-container .card {
    flex: 0 0 calc(50% - 4rem);
  }

  .cards-nudge {
    align-items: flex-start;
  }

  .cards-nudge .card:nth-child(2n) {
    margin-top: 10rem;
  }
}

@media (min-width: 992px) {
  .cards-container .card {
    flex: 0 0 calc(33.333% - 4rem);
  }
  .slim .cards-container .card, .extra-slim .cards-container .card {
    flex: 0 0 calc(50% - 4rem);
  }
}

@media (min-width: 1200px) {
  .slim .cards-container .card {
    flex: 0 0 calc(33.333% - 4rem);
  }
}

/* Columns */

div.columns {
  margin-left: -1rem;
  margin-right: -1rem;
}

.columns {
  display: flex;
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.columns .col-10, .columns .col-20, .columns .col-25, .columns .col-30, .columns .col-33, .columns .col-40, .columns .col-50, .columns .col-60, .columns .col-66, .columns .col-70, .columns .col-75, .columns .col-80, .columns .col-100 {
  margin: 1rem;
  flex: 0 0 calc(100% - 2rem);
}

@media (min-width: 768px) {
    .columns .col-10 {
        flex: 0 0 calc(10% - 2rem);
    }
    .columns .col-20 {
        flex: 0 0 calc(20% - 2rem);
    }
    .columns .col-25 {
        flex: 0 0 calc(25% - 2rem);
    }
    .columns .col-30 {
        flex: 0 0 calc(30% - 2rem);
    }
    .columns .col-33 {
        flex: 0 0 calc(33.333% - 2rem);
    }
    .columns .col-40 {
        flex: 0 0 calc(40% - 2rem);
    }
    .columns .col-50 {
        flex: 0 0 calc(50% - 2rem);
    }
    .columns .col-60 {
        flex: 0 0 calc(60% - 2rem);
    }
    .columns .col-66 {
        flex: 0 0 calc(66.666% - 2rem);
    }
    .columns .col-70 {
        flex: 0 0 calc(70% - 2rem);
    }
    .columns .col-75 {
        flex: 0 0 calc(75% - 2rem);
    }
    .columns .col-80 {
        flex: 0 0 calc(80% - 2rem);
    }
}

/* Accordion */

.dropdown {
  background: #f0f0f0;
  padding: 2rem;
  border-radius: 2rem;
  cursor: pointer;
}

.dropdown + .dropdown {
  margin-top: 2rem;
}

.dropdown-title {
  align-items: center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.2;
  display: flex;
}

.dropdown-title:focus {
  color: #36ada9;
  outline: none;
}

.dropdown-title::before  {
  content: '\f067';
  font-family: 'Font Awesome 5 Free';
  font-weight: 800;
  font-size: 1rem;
  margin-right: 1rem;
  transition: 0.2s transform ease-in-out;
}

.dropdown-title.active::before {
  content: '\f068';
  transform: rotate(180deg);
}

.dropdown-title > * {
  margin: 0;
}

.dropdown-content {
  display: none;
  margin-top: 2rem;
  border-radius: 0;
  transition: 0.4s border-radius ease-in-out;
}

.dropdown-content > *:last-child {
  margin-bottom: 0;
}

.dropdown-content + .dropdown-title {
  margin-top: 4rem;
}

/* Full width sections */

.full-width {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 4rem;
  z-index: 1;
}

.full-width::before, .full-width::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2000px;
  right: -2000px;
  bottom: 0;
  z-index: -1;
}

@media (min-width: 992px) {
  .full-width {
	padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1200px) {
  .full-width {
	padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1500px) {
  .full-width {
	padding-top: 9rem;
    padding-bottom: 9rem;
  }
}