/* box sizing rules */
*,*::before,*::after {
  box-sizing: border-box;
}

/* set html core defaults */
html {
  min-height: 100%;
  overflow-y: scroll;
	scroll-behavior: smooth;
}

/* remove default margin */
body,h1,h2,h3,h4,p,ul,ol,li,figure,figcaption,blockquote,dl,dd {
  margin: 0;
}

/* set core body defaults */
body {
  min-height: 100vh;
	height: 100%;
  margin: 0 auto;
  text-rendering: optimizeSpeed;
  background: #fff;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}

/* change focus outline */
:focus {
  outline: 1px dotted var(--black);
}

/* remove list styles, padding, and margins on ul, ol elements without a class attribute */
ul:not([class]),ol:not([class]) {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* remove list styles on ul, ol elements with a class attribute */
ul[class],ol[class] {
  list-style-type: none;
	padding: 0;
}

/* make images easier to work with */
img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: crisp-edges;
}

/* inherit fonts for inputs and buttons */
input,button,textarea,select {
  font: inherit;
}

/* natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* color of highlight */
::-moz-selection {
  background: #345b81;
  color: var(--white);
  text-shadow: none;
}
::selection {
  background: #345b81;
  color: var(--white);
  text-shadow: none;
}

/* set variables */
:root {
  --font: 'Open Sans', sans-serif;
  --icons: 'Font Awesome 6 Pro', sans-serif;
  --black: #282828;
  --white: #ffffff;
	--blue: #1d4873;
  --red: #a9252b;
  --darkgrey: #595959;
  --lightgrey: #e0e0e0;
  --fade: all 0.15s ease-out;
}

/* default font styles */
h1 {
  position: relative;
  font-family: var(--font);
	font-size: 40px;
  color: var(--white);
	line-height: 1.1;
  margin: 0 0 30px;
}
  h1 strong {
    display: inline-block;
    font-size: 56px;
    color: var(--blue);
    padding: 5px 18px 10px;
    margin: 0 0 20px;
    background: var(--white);
  }
  h1 span {
    display: block;
  }
h2:not(.mach-heading) {
  position: relative;
  font-family: var(--font);
  font-size: 56px;
  color: var(--blue);
  line-height: 1;
  margin: 0 0 60px;
}
  h2:not(.mach-heading):after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 80px;
    height: 2px;
    background: var(--red);
  }
  h2:not(.mach-heading)[style*="text-align: center"]:after {
    left: 50%;
    transform: translateX(-50%);
  }
h3 {
  font-family: var(--font);
  font-size: 38px;
  color: var(--red);
  line-height: 1.2;
  margin: 0 0 25px;
}
h4 {
  font-family: var(--font);
  font-size: 32px;
  color: var(--blue);
  line-height: 1.1;
  margin: 0 0 25px;
}
h5 {
  font-family: var(--font);
  font-size: 28px;
  color: var(--red);
  line-height: 1.1;
  margin: 0 0 20px;
}
h6 {
  font-family: var(--font);
  font-size: 26px;
  color: var(--black);
  line-height: 1.1;
  margin: 0 0 20px;
}

/* default link styles */
a {
  color: var(--blue);
  text-decoration: none;
  text-decoration-skip-ink: auto;
	transition: var(--fade);
}
a:hover {
  color: var(--lightblue);
  text-decoration: none;
}

/* default element styles */

.container {
  width: auto;
  max-width: 1440px;
  padding: 0 10px;
  margin: 0 auto;
}
  .main .container:after {
    grid-column: 1 / -1;
    content: '';
    clear: both;
    display: table;
    width: 100%;
  }
.main p,.main ul,.main ol {
  margin: 0 0 30px;
}
.main ul {
  list-style: outside square;
  margin: 0 0 20px 20px;
}
  .main ul ul {
    list-style: outside circle;
    margin: 5px 0 10px 20px;
  }
.main ol {
  list-style: outside decimal;
  margin: 0 0 20px 20px;
}
hr {
  height: 1px;
  color: #e2e2e2;
  background: #e2e2e2;
  border: 0;
  padding: 0;
  margin: 60px 0;
}
.alignleft {
  float: left;
  margin: 0 40px v 0;
}
.aligncenter {
  float: none;
  margin: 0 auto 40px;
}
.alignright {
  float: right;
  margin: 0 0 40px 40px;
}
.alignleft,
.aligncenter,
.alignright,
embed,
iframe,
object {
  max-width: 100%;
}
embed,
iframe,
object {
  display: block;
  margin: 0 auto;
}
body:not(#conference-page) .button:not(#insert-media-button),
.pmpro_btn {
  display: inline-flex;
  align-items: baseline;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  background: var(--red);
  border: 3px solid var(--red);
  border-radius: 0;
  padding: 18px 30px;
  margin-top: 20px;
  transition: var(--fade);
  cursor: pointer;
}
  .button-wrap .button + .button {
    color: var(--red);
    background: transparent;
    border: 3px solid var(--red);
    margin-left: 15px;
  }
  body:not(#conference-page) .button:not(#insert-media-button):hover,
  .pmpro_btn:hover {
    color: var(--red);
    background: transparent;
    border: 3px solid var(--red);
  }
    .button-wrap .button + .button:hover {
      color: var(--white);
      background: var(--red);
      border: 3px solid var(--red);
    }
  body:not(#conference-page) .button:after {
    content: '\e09f';
    font-family: var(--icons);
    margin-left: 10px;
    transition: var(--fade);
  }
    .button:hover:after {
      transform: rotate(90deg);
    }
  .button.small {
    font-size: 14px;
    padding: 13px 20px;
  }
.button-wrap.centered {
  display: flex;
  width: 100%;
  justify-content: center;
}
.to-top-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 22px;
  color: var(--blue);
  text-align: center;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 50%;
  transition: var(--fade);
}
	.to-top-btn:hover {
	  color: #fff;
	  background: var(--blue);
	  border: 2px solid var(--blue);
	}
@media screen and (max-width: 1200px) {
  body.home #banner + .main {
    text-align: center;
  }
  body.home #banner + .main h2:after {
    left: 50%;
    transform: translateX(-50%);
  }
	img {
	  max-width: 100%;
	  height: auto;
	}
	.attachment-post-thumbnail {
	  max-width: 100%;
	  height: auto;
	}
}
@media screen and (min-width: 1024px) {
	.slide-up {
	  top: 90px;
	  opacity: 0;
	}
	.slide-up.in-view {
	  animation: slideUp 600ms 1 ease-out forwards;
	}
	@keyframes slideUp {
		0% {
		  top: 90px;
		  opacity: 0;
		}
		100% {
		  top: 0;
		  opacity: 1;
		}
	}
}
@media screen and (max-width: 1200px) {
  .button-wrap .button + .button {
    margin-left: 0;
    margin-top: 10px;
  }
  .button-wrap {
    display: grid;
    justify-items: center;
  }
}
@media screen and (max-width: 768px) {
	.attachment-post-thumbnail,
	.alignleft,
	.aligncenter,
	.alignright {
	  float: none;
	  display: block;
	  max-width: 100%;
	  margin: 0 auto 30px;
	}
  h2 {
    font-size: 42px;
  }
}

/* drawer */

#drawer {
	padding: 24px 0;
  background: var(--lightgrey) url(../images/drawer-bg.jpg) no-repeat top right;
}
#drawer .container,
#drawer ul,
#drawer ul li,
#drawer ul a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
  #drawer ul a {
    font-size: 13px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
    padding: 0 15px;
  }
    #drawer ul li:not(:last-child) a {
      border-right: 1px solid #3369a0;
    }
    #drawer ul li a:hover,
    #drawer ul li.current-menu-item a {
     color: #5d9cdc;
    }
  #drawer .menu li.lang-item-fr a {
    padding-right: 0;
  }
  #drawer .menu li a[lang="en-US"],
  #drawer .menu li a[lang="fr-CA"] {
    transition: var(--fade);
    opacity: 0.5;
  }
  #drawer .menu li a[lang="en-US"]:hover,
  #drawer .menu li a[lang="fr-CA"]:hover {
    color: var(--white);
  }
    #drawer .menu li a[lang="en-US"]:hover,
    #drawer .menu li a[lang="fr-CA"]:hover,
    #drawer .menu li.current-lang a {
      opacity: 1;
    }
  #drawer ul.language-select a {
    color: rgba(255,255,255,0.5);
  }
  #drawer ul.language-select a:hover,
  #drawer ul.language-select li.current a {
    color: var(--white);
  }
@media screen and (max-width: 580px) {
  #drawer {
    background: var(--blue);
  }
  #drawer .container {
    display: grid;
    grid-gap: 20px;
    justify-content: center;
    align-items: center;
  }
  #drawer ul {
    justify-content: center;
  }
  #drawer ul a {
    padding: 0 12px;
  }
}
@media screen and (max-width: 386px) {
  #drawer ul a {
    padding: 0 9px;
  }
}

/* header */

#header {
	padding: 28px 0;
  background: var(--white);
}
#header .container {
  display: flex;
  justify-content: space-between;
}
	#header .logo {
	  display: block;
		max-width: 241px;
	  height: auto;
	}
		#header .logo img {
		  width: 100%;
		}

/* hp banner */

#banner {
  position: relative;
  background: var(--blue);
  min-height: calc(670px - 60px);
  margin: 0 0 40px;
  overflow-x: clip;
}
#banner.interior {
  min-height: 200px;
  padding: 60px 0 80px;
  margin: 0;
  background: var(--blue) url(../images/interior-banner-bg.png) no-repeat top right;
}
#banner .wrapper {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
}
#banner .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
}
#banner .container.four-oh-four {
  grid-template-columns: 1fr;
}
  #banner-text {
    position: absolute;
    z-index: 9;
    top: 50%;
    width: 35%;
    transform: translateY(-50%);
  }
    body:not(#conference-page) #banner-text .button:hover {
      color: var(--white);
      border-color: var(--white);
    }
    #banner-text * {
      position: relative;
    }
    #banner-text h1 {
      left: 100%;
      opacity: 0;
      animation: slideLeftSlow 1s 1s 1 ease-out forwards;
    }
    #banner-text h1 strong {
      left: 100%;
      opacity: 0;
      animation: slideLeftSlow 1s 1s 1 linear forwards;
    }
    #banner-text h1 span {
      left: 100%;
      opacity: 0;
      animation: slideLeftSlower 900ms 1.4s 1 ease-out forwards;
    }
    #banner-text .button-wrap {
      justify-items: center;
    }
    #banner-text .button {
      top: 60px;
      opacity: 0;
      animation: slideUp 300ms 1.7s 1 ease-out forwards;
    }
  #banner.interior h1 {
    font-size: 52px;
    margin: 0 0 20px;
  }
  #banner.interior h1.centered {
    text-align: center;
  }
    #banner.interior h1:after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 80px;
      height: 2px;
      background: #d6343b;
    }
    #banner.interior h1.centered:after {
      left: 50%;
      transform: translateX(-50%);
    }
  #banner.interior h3 {
    font-size: 15px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 10px;
  }
  #banner.interior #breadcrumbs {
    font-size: 13px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
  }
    #banner.interior #breadcrumbs a {
      color: #bad6f3;
    }
    #banner.interior #breadcrumbs a:hover {
      text-decoration: underline;
    }
  @keyframes slideLeftSlow {
		0% {
		  left: 100%;
		  opacity: 0;
		}
    50% {
		  left: 5%;
		  opacity: 1;
		}
		100% {
		  left: 0;
      opacity: 1;
		}
	}
  @keyframes slideLeftSlower {
		0% {
		  left: 100%;
		  opacity: 0;
		}
    60% {
		  left: 5%;
		  opacity: 1;
		}
		100% {
		  left: 0;
      opacity: 1;
		}
	}
  @keyframes slideUp {
		0% {
		  top: 60px;
		  opacity: 0;
		}
		100% {
		  top: 0;
      opacity: 1;
		}
	}
#banner-slider {
  position: absolute;
  z-index: 9;
  top: 0;
  right: 0;
  max-width: 65%;
  clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
}
  #banner-slider img {
    height: 670px;
    object-fit: cover;
    opacity: 0;
    transition: all 0.4s 0.1s ease-out
  }
@media screen and (max-width: 1024px) {
  #banner {
    min-height: 560px;
    margin: 0;
  }
  #banner-slider {
    width: 100%;
    max-width: 100%;
    left: 0;
    right: auto;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.4;
  }
  #banner-slider img {
    width: 100%;
    height: 560px;
  }
  #banner-text {
    left: 0;
    width: 100%;
    padding: 0 30px;
    text-align: center;
  }
  #banner-text h1 strong {
    font-size: 46px;
  }
  #banner-text h1 span {
    font-size: 30px;
  }
}

/* main content */

.main {
  position: relative;
  padding: 90px 0;
}
#banner + .main {
  min-height: 420px;
}
.alert {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 20px;
  align-items: center;
  padding: 15px;
  border: 1px solid #cecece;
  border-radius: 3px;
  background: #f3f3f3;
  margin: 0 0 30px;
}
  .alert i {
    font-size: 36px;
    color: var(--red);
  }
  .alert p {
    font-size: 14px;
    margin: 0;
  }
  .alert a {
    font-weight: 700;
    color: var(--red);
  }
    .alert a:hover {
      color: var(--blue);
    }
.main .back-btn {
  position: absolute;
  top: 65px;
  display: inline-block;
  font-size: 11px;
  color: #aaa;
  text-transform: uppercase;
}
  .main .back-btn:before {
    display: inline-block;
    content: '\f2ea';
    font-family: var(--icons);
    margin-right: 5px;
    transition: all 0ms ease-out;
  }
  .main .back-btn:hover {
    color: var(--red);
  }
  .main .back-btn:hover:before {
    transition: all 0.4s 20ms ease-out;
    transform: rotate(-360deg);
  }
.results-count strong {
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .main {
    padding: 60px 0;
  }
  .main .back-btn {
    position: relative;
    top: -10px;
  }
}

/* randomized member logo blocks */

#member-logo-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
  #member-logo-blocks a {
    position: relative;
    display: grid;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.2);
    transition: var(--fade);
  }
  #member-logo-blocks a.no-logo {
    background: url(../images/no-logo-img.png) no-repeat center center;
    background-size: 75%;
    background-position: 50% 40%;
  }
  #member-logo-blocks a > img {
    transform: scale(0.9);
  }
    #member-logo-blocks a:hover {
      transform: scale(1.1);
      box-shadow: 0 0 3px 2px rgba(0,0,0,0.05);
    }
  #member-logo-blocks a:before {
    content: '';
    padding-bottom: 100%;
    display: block;
  }
  #member-logo-blocks a:before,
  #member-logo-blocks a > img {
    grid-area: 1 / 1 / 2 / 2;
  }
  #member-logo-blocks a h3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    font-size: 20px;
    color: var(--darkblue);
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
  }
@media screen and (max-width: 1024px) {
  #member-logo-blocks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* news/events sections */
#news .container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-gap: 55px;
  align-items: start;
}
.news-event-header {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 80px;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px;
}
  .news-event-header h2,
  .news-event-header ul,
  .news-event-header p,
  body:not(#conference-page) .news-event-header .button:not(#insert-media-button) {
    margin: 0;
  }
  .news-event-header aside {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 80px;
  }
  .news-event-header h2:after {
    display: none;
    bottom: auto;
    left: auto;
    right: -40px;
    width: 2px;
    height: 60px;
  }
  .news-event-header ul {
    list-style: none;
    display: flex;
    align-items: center;
  }
    .news-event-header ul a {
      font-size: 13px;
      font-weight: bold;
      color: var(--darkgrey);
      line-height: 1;
      text-transform: uppercase;
      text-decoration: none;
      padding: 0 12px;
    }
    .news-event-header ul li:first-child a {
      padding: 0 12px 0 0;
    }
    .news-event-header ul li:last-child a {
      padding: 0 0 0 12px;
    }
    .news-event-header ul li:not(:last-child) a {
      border-right: 2px solid rgba(0,0,0,0.3);
    }
      .news-event-header ul a:hover {
        color: var(--red);
      }
#news .secure-your-space {
  padding: 0;
}
  #news .secure-your-space img {
    object-fit: contain;
  }
#news .news-event-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0 55px;
}
#news.two-column .news-event-blocks {
  grid-template-columns: repeat(2, 1fr);
}
#news,
#events {
  padding-top: 0;
}
  .news-event-blocks article {
    display: flex;
    flex-direction: column;
    padding: 0 0 15px;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.2);
  }
    #events .news-event-blocks article {
      background: var(--blue);
      box-shadow: none;
      margin: 0 10px;
    }
  .news-event-blocks header {
    display: grid;
    grid-template-columns: 1fr 4fr;
    height: 155px;
  }
    .news-event-blocks header .date {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      background: var(--red);
      padding: 0 10px;
    }
    .news-event-blocks header .day {
      font-size: 44px;
    }
    .news-event-blocks header .feature {
      position: relative;
      font-size: 44px;
    }
    .news-event-blocks header .feature.no-img {
      background: var(--blue);
    }
    .news-event-blocks header .feature img {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 155px;
      object-fit: cover;
    }
      .news-event-blocks header .feature.no-img img {
        mix-blend-mode: soft-light;
      }
    .news-event-blocks header .feature aside {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 155px;
      padding: 20px;
    }
      .news-event-blocks header .feature h3 {
        margin: 0 0 10px;
      }
      #news .news-event-blocks header .feature h3,
      #news .news-event-blocks header .feature h3 a {
        display: flex;
        align-items: center;
        height: 100%;
        padding-left: 7px;
        font-size: 20px;
        font-weight: 700;
        color: var(--white);
        line-height: 1.1;
        text-decoration: none;
      }
      #events .news-event-blocks header .feature h3,
      #events .news-event-blocks header .feature h3 a {
        display: flex;
        align-items: center;
        font-size: 24px;
        color: var(--white);
      }
      .news-event-blocks header .feature .full-dates {
        display: flex;
        font-size: 15px;
        font-weight: 700;
        color: #cbcbcb;
        line-height: 1.2;
        text-transform: uppercase;
      }
  .news-event-blocks main {
    padding: 15px 20px;
  }
    .news-event-blocks main h3,
    .news-event-blocks main h3 a {
      font-size: 26px;
      font-weight: 700;
      color: var(--blue);
      line-height: 1.1;
      text-decoration: none;
    }
      .news-event-blocks main h3 a:hover {
        color: var(--black);
      }
    .news-event-blocks main p {
      font-size: 16px;
    }
      #events .news-event-blocks main p {
        color: var(--white);
      }
  .read-more {
    position: relative;
    display: inline-flex;
    align-self: flex-end;
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 20px;
  }
    #events .news-event-blocks .read-more {
      display: flex;
      justify-content: flex-end;
      color: var(--white);
    }
    .read-more:after {
      content: '\e09f';
      font-family: var(--icons);
      margin-left: 10px;
      transition: var(--fade);
    }
    .read-more:hover {
      color: var(--blue);
    }
      #events .news-event-blocks .read-more:hover {
        color: #5d9cdc;
      }
    .read-more:hover:after {
      transform: rotate(90deg);
    }
@media screen and (max-width: 1200px) {
  #news > .container {
    grid-template-columns: 1fr;
  }
  .news-event-header h2 {
    font-size: 42px;
  }
  .secure-your-space {
    display: block;
    text-align: center;
    background: transparent;
    box-shadow: 0 0 0 0 rgba(0,0,0,0);
    margin-bottom: 90px;
  }
  .secure-your-space img {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .news-event-header aside {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  .news-event-header h2:after {
    height: 90px;
  }
  .news-event-header p {
    font-size: 15px;
    line-height: 1.3;
  }
  #news.two-column .container {
    grid-template-columns: 1fr;
    gap: 55px;
  }
  #news .news-event-blocks,
  #news.two-column .news-event-blocks {
    grid-template-columns: 1fr;
    grid-gap: 60px;
  }
  #news .news-event-blocks header,
  .news-event-blocks header .feature img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .news-event-blocks main p {
    font-size: 15px;
  }
}
@media screen and (max-width: 580px) {
  .news-event-header {
    grid-template-columns: 1fr;
    grid-gap: 40px;
    margin: 0 0 60px;
    justify-items: center;
  }
  .news-event-header aside {
    justify-items: center;
    text-align: center;
  }
  .news-event-header h2:after {
    display: none;
  }
  #news .news-event-blocks header,
  .news-event-blocks header .feature img {
    height: 200px;
  }
  .news-event-blocks main p {
    font-size: 16px;
  }
}
@media screen and (max-width: 486px) {
  #events .news-event-blocks header {
    grid-template-columns: 1fr;
    height: auto;
  }
  #events .news-event-blocks header .date {
    padding: 20px;
  }
  #events .news-event-blocks header .feature aside {
    height: auto;
  }
  #events .news-event-blocks article > * + * {
    margin-top: 0;
  }
}

#secure-your-space {
  text-align: center;
  margin-bottom: 40px;
}
  #secure-your-space img {
    display: inline-block;
  }

/* footer */

#tagline {
  height: 60px;
  background: #275481 url(../images/footer-drawer-bg.jpg) no-repeat top right;
}
#tagline .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
  justify-content: center;
}
  #tagline h3 {
    font-size: 20px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 0;
  }
#footer {
  padding: 35px 0;
  background: var(--blue);
}
#footer .container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-gap: 45px;
  justify-content: space-between;
}
/* remove 
  #footer .logo img {
    filter: brightness(100);
  }*/
  #footer main {
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-gap: 40px;
    align-items: center;
  }
  #footer .social {
    display: flex;
    padding-top: 12px;
  }
    #footer .social a {
      width: 46px;
      height: 46px;
      background: var(--red);
      font-size: 24px;
      color: var(--white);
      line-height: 46px;
      text-align: center;
      margin: 0 5px;
    }
      #footer .social a:hover {
        background: var(--white);
        color: var(--red);
      }
  #footer .button-wrap .button:hover {
    color: var(--white) !important;
    border: 3px solid var(--white) !important;
  }
  #footer .button-wrap .button + .button {
    color: var(--white);
    border: 3px solid var(--white);
    background: transparent;
  }
    #footer .button-wrap .button + .button:hover {
      color: var(--blue);
      background: var(--white);
      border: 3px solid var(--white);
    }
  #footer hr {
    grid-column: 1 / -1;
    background: #275481;
    margin: 0;
  }
  #footer .copyright {
    grid-column: 1 / -1;
    font-size: 14px;
    color: #c6e2ff;
    text-align: center;
    margin: 0;
  }
    #footer .copyright a {
      color: #c6e2ff;
      text-decoration: none;
    }
    #footer .copyright a:hover {
      color: var(--white);
    }
@media screen and (max-width: 1024px) {
  #footer .button-wrap {
    justify-items: normal;
  }
  #footer .button-wrap .button {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  #tagline {
    height: auto;
    padding: 20px 0;
  }
  #tagline .container {
    justify-content: center;
    text-align: center;
  }
  #footer main {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
}
@media screen and (max-width: 580px) {
  #tagline {
    background: var(--red);
  }
  #footer .container {
    grid-template-columns: 1fr;
    grid-gap: 45px;
  }
  #footer main {
    grid-gap: 25px;
  }
  #footer .social {
    justify-content: center;
  }
  #footer .logo img {
    margin: 0 auto;
  }
}

/* board of directors */

#board-members .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 60px;
}
  #board-members .container aside {
    display: grid;
    grid-gap: 10px;
    justify-items: center;
    text-align: center;
    padding: 1.5em;
    box-shadow: 0 0 6px 0 rgb(0, 0, 0, 0.2);
    border-radius: 3px;
    transition: var(--fade);
  }
    #board-members .container aside:hover {
      background: #f5f7f8;
      box-shadow: 0 0 6px 0 rgb(0, 0, 0, 0.35);
    }
  #board-members .container aside img {
    width: 80%;
    height: 200px;
    object-fit: cover;
    border-radius: 3px;
  }
  #board-members .container aside img,
  #board-members .container aside h3,
  #board-members .container aside .button {
    margin: 0 auto;
  }
  #board-members .container aside h3 {
    font-size: 24px;
  }
  #board-members .container aside h6 {
    font-size: 16px;
    color: var(--darkgrey);
    line-height: 1.3;
  }
  .acada-title {
    font-size: 14px;
    font-style: italic;
    line-height: 1;
  }
.position {
  display: block;
  font-size: 22px;
  color: var(--red);
  padding: 10px 0 0 3px;
}
@media screen and (max-width: 1024px) {
  #board-members .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  #board-members .container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
}
@media screen and (max-width: 580px) {
  #board-members .container {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

/* members */

.pmpro-login form,
.pmpro-member-profile-edit form {
  display: grid;
  justify-content: center;
}
  form.pmpro_form .input,
  form.pmpro_form textarea,
  form.pmpro_form select,
  #loginform input[type=text],
  #loginform input[type=password],
  .pmpro-login form .button-wrap,
  .pmpro-login form .button,
  .pmpro-login form input[type="text"],
  .pmpro-login form input[type="password"] {
    max-width: 100%;
    justify-content: center;
  }
  .pmpro-login form .button-wrap,
  .pmpro-login form .button {
    width: 100%;
  }
  .pmpro-login form input[type="text"],
  .pmpro-login form input[type="password"],
  .pmpro-member-profile-edit form input[type="text"],
  .pmpro-member-profile-edit form input[type="password"] {
    padding: 6px 10px;
    width: 100%;
    border: 1px solid rgb(179, 179, 179);
  }
.directory-header {
  padding: 0 15px;
}
p.lite {
  font-size: 16px;
  font-style: italic;
}
.pmpro_checkout_box-business,
.custom-fields-subtitle {
  padding: 70px 0 0;
}
form.pmpro_form label, #loginform label {
  color: var(--blue);
}
form.pmpro_form .pmprorh_grouped_checkboxes label {
  font-weight: 400;
  color: var(--black);
}
.pmpro_message {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
}
.main form.pmpro_member_directory_search {
  display: flex;
  align-items: center;
  margin-top: 6px;
  margin-bottom: 0;
}
  .main form.pmpro_member_directory_search .search-field {
    min-width: 220px;
    font-size: 14px;
    border: 0;
    padding: 3px 6px;
  }
  .main form.pmpro_member_directory_search .search-submit {
    font-size: 20px;
    color: var(--blue);
    border: 0;
    background: transparent;
    transition: var(--fade);
    cursor: pointer;
  }
    .main form.pmpro_member_directory_search .search-submit:hover {
      color: var(--red);
    }
.pmpro_lost_password-instructions {
  text-align: center;
}