* {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 90%;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25em;
  width: 100%;
}

@media (min-width: 60em) {
  .container {
    max-width: 75em;
  }
}

.body-scrolled .header {
  background-color: #1e4d81;
  border-bottom: 2px solid white;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-box-shadow: black;
          box-shadow: black;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.navbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
  margin: 1em auto;
}

.brand {
  width: 10em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.brand img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

#nav-icon1 {
  width: 2.6em;
  height: 40px;
  position: relative;
  margin: 25px auto 25px 2em;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  display: block;
}

@media (min-width: 60em) {
  #nav-icon1 {
    display: none;
  }
}

#nav-icon1 span {
  display: block;
  position: absolute;
  height: 5px;
  width: 100%;
  background: white;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

#nav-icon1 span:nth-child(1) {
  top: 0px;
  height: 4px;
}

#nav-icon1 span:nth-child(2) {
  top: 12px;
}

#nav-icon1 span:nth-child(3) {
  top: 26px;
}

#nav-icon1.open span:nth-child(1) {
  top: 18px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

#nav-icon1.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

#nav-icon1.open span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.menu-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-right ul {
  display: none;
}

@media (min-width: 60em) {
  .menu-right ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.menu-right ul li {
  display: block;
  margin: 0 1.5em;
}

.menu-right ul li a {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
}

.menu-right .button-group {
  display: none;
}

@media (min-width: 60em) {
  .menu-right .button-group {
    display: block;
  }
}

.menu-right .button-group a {
  text-decoration: none;
  text-transform: uppercase;
  color: white;
}

.menu-right .button-group a:nth-child(1) {
  margin-right: 0.9em;
}

/* Sweep To Bottom */
.btn-m {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
          box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  padding: 1.1em 1.2em;
  color: white;
  letter-spacing: 2px;
}

.btn-m.green {
  background-color: #45841a;
}

.btn-m.red {
  background-color: #b9232c;
}

.btn-m:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #2098d1;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transition-property: transform;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.btn-m.green:before {
  background-color: white;
}

.btn-m.red:before {
  background-color: white;
}

.btn-m:hover,
.btn-m:focus,
.btn-m:active {
  color: white;
}

.btn-m:hover.green,
.btn-m:focus.green,
.btn-m:active.green {
  color: #45841a;
}

.btn-m:hover.red,
.btn-m:focus.red,
.btn-m:active.red {
  color: #b9232c;
}

.btn-m:hover:before,
.btn-m:focus:before,
.btn-m:active:before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.home section.banner {
  min-height: 92vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.home section.banner .container {
  width: 100%;
  position: relative;
}

.home section.banner .container .content {
  max-width: 60em;
}

.home section.banner .container .content h1 {
  font-size: 2.5em;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1em;
}

@media (min-width: 48em) {
  .home section.banner .container .content h1 {
    font-size: 4.5em;
  }
}

.home section.banner .container .content .signature {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.home section.banner .container .content .signature img {
  width: 15em;
  margin: 0 auto;
}

@media (min-width: 48em) {
  .home section.banner .container .content .signature img {
    width: 30em;
  }
}

.home section.banner .container .content h4 {
  font-size: 1.5em;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 1.3em 0 1.2em;
}

.home section.banner .container .content .btn-m {
  background-color: white;
  color: #1e4d81;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.3em 2.5em;
  border: 1px solid white;
}

.home section.banner .container .content .btn-m:before {
  background-color: #1e4d81;
}

.home section.banner .container .content .btn-m.btn-m:hover, .home section.banner .container .content .btn-m.btn-m:focus, .home section.banner .container .content .btn-m.btn-m:active {
  color: white;
}

.home section.video-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
}

@media (min-width: 60em) {
  .home section.video-banner .container {
    padding: 0 1.25em;
  }
}

.home section.video-banner .container .text-container {
  width: 100%;
  padding: 2em;
  background-color: #1e4d81;
}

@media (min-width: 60em) {
  .home section.video-banner .container .text-container {
    width: calc(50% - 7.6em);
    padding: 3.8em;
  }
}

.home section.video-banner .container .text-container h2.title {
  color: white;
  font-size: 1.8em;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.8em;
}

@media (min-width: 60em) {
  .home section.video-banner .container .text-container h2.title {
    font-size: 2.5em;
  }
}

.home section.video-banner .container .text-container h5.subtitle {
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.5em;
}

.home section.video-banner .container .text-container .video-text p {
  font-size: 1em;
  font-family: myriad-pro, sans-serif;
  color: white;
  font-weight: 300;
  line-height: 1.6em;
  max-width: 90%;
}

@media (min-width: 60em) {
  .home section.video-banner .container .text-container .video-text p {
    max-width: 30em;
  }
}

.home section.video-banner .container .text-container a {
  border: 2px solid white;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4em;
}

.home section.video-banner .container .text-container a:before {
  background-color: white;
}

.home section.video-banner .container .text-container a:hover {
  color: #1e4d81;
}

.home section.video-banner .container .video-main-container {
  width: 100%;
  height: 23em;
  background-size: cover;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 60em) {
  .home section.video-banner .container .video-main-container {
    width: 50%;
  }
}

.home section.video-banner .container .video-main-container .open {
  border: none;
  background: none;
  cursor: pointer;
}

.home section.video-banner .container .video-main-container .open img {
  width: 4em;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.home section.issues-boxes .box-holder {
  padding: 3em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.home section.issues-boxes .box-holder a {
  width: 48%;
  margin: 0.8em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
}

@media (min-width: 48em) {
  .home section.issues-boxes .box-holder a {
    width: 32%;
  }
}

.home section.issues-boxes .box-holder a .img-issues {
  background-size: cover;
  width: 100%;
  height: 10em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 48em) {
  .home section.issues-boxes .box-holder a .img-issues {
    height: 13em;
  }
}

.home section.issues-boxes .box-holder a .img-issues:before {
  position: absolute;
  left: 0;
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  background: #630707;
  opacity: 0.85;
}

.home section.issues-boxes .box-holder a .img-issues .holdr {
  text-align: center;
  padding: 1em;
}

.home section.issues-boxes .box-holder a .img-issues .holdr img {
  width: 3em;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  margin-bottom: 1em;
}

.home section.issues-boxes .box-holder a .img-issues .holdr h3 {
  width: 100%;
  text-align: center;
  color: white;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  max-width: 20em;
}

.home section.quotes-section {
  min-height: 10em;
}

.home section.quotes-section .container {
  position: relative;
}

.home section.quotes-section .container .quotes-img {
  width: 13em;
  height: 8em;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.home section.quotes-section .container .quote-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.home section.quotes-section .container .quote-text h4 {
  width: 100%;
  text-align: center;
  max-width: 27em;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  color: #1e4d81;
}

@media (min-width: 48em) {
  .home section.quotes-section .container .quote-text h4 {
    font-size: 2.2em;
  }
}

.home section.endorsement .e-holder {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
  padding: 2em 2.3em;
  min-height: 45em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 48em) {
  .home section.endorsement .e-holder {
    padding: 3em;
  }
}

@media (min-width: 60em) {
  .home section.endorsement .e-holder {
    padding: 3em 7em;
  }
}

.home section.endorsement .e-holder .endorseholder {
  max-width: 33em;
  margin-left: auto;
}

@media (min-width: 48em) {
  .home section.endorsement .e-holder .endorseholder {
    max-width: 40em;
  }
}

.home section.endorsement .e-holder .endorseholder .title {
  margin-bottom: 2em;
}

.home section.endorsement .e-holder .endorseholder .title h2 {
  font-family: "Montserrat", sans-serif;
  color: #1e4d81;
  font-size: 1.5em;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1em;
}

@media (min-width: 48em) {
  .home section.endorsement .e-holder .endorseholder .title h2 {
    font-size: 2.1em;
  }
}

.home section.endorsement .e-holder .endorseholder .subtitle {
  max-width: 25em;
}

.home section.endorsement .e-holder .endorseholder .subtitle h5 {
  font-family: "Montserrat", sans-serif;
  color: #1e4d81;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (min-width: 48em) {
  .home section.endorsement .e-holder .endorseholder .subtitle h5 {
    font-size: 1.2em;
  }
}

.home section.endorsement .e-holder .endorseholder .content {
  max-width: 32em;
}

.home section.endorsement .e-holder .endorseholder .content p {
  font-family: myriad-pro, sans-serif;
  color: #1e4d81;
  font-size: 0.9em;
  letter-spacing: 1px;
  font-weight: 500;
  line-height: 1.7em;
}

.home section.endorsement .e-holder .endorseholder .endorsedby {
  margin: 1em 0;
}

.home section.endorsement .e-holder .endorseholder .endorsedby p {
  font-family: myriad-pro, sans-serif;
  color: #1e4d81;
  font-size: 0.9em;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.7em;
  text-transform: uppercase;
}

.home section.endorsement .e-holder .endorseholder .list {
  max-width: 32em;
}

.home section.endorsement .e-holder .endorseholder .list .list-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.4em;
}

.home section.endorsement .e-holder .endorseholder .list .list-content img {
  width: 1.4em;
  -o-object-fit: contain;
     object-fit: contain;
}

.home section.endorsement .e-holder .endorseholder .list .list-content p {
  font-family: myriad-pro, sans-serif;
  color: #1e4d81;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.5em;
  text-transform: uppercase;
  margin-left: 0.6em;
}

.home section.testimonials {
  margin: 4em 0;
}

.home section.testimonials .container {
  position: relative;
}

.home section.testimonials .heading h3 {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  text-transform: uppercase;
  color: #1e4d81;
  font-weight: 700;
  letter-spacing: 2px;
}

.home section.testimonials .testimony-slider .slick-slide {
  height: auto;
}

.home section.testimonials .testimony-slider .slick-slide .content .message {
  margin: 3em auto 2.5em;
  font-family: myriad-pro, sans-serif;
  font-size: 0.9em;
  font-weight: 200;
  color: #1e4d81;
  max-width: 70%;
  text-align: center;
  line-height: 2.2em;
}

@media (min-width: 48em) {
  .home section.testimonials .testimony-slider .slick-slide .content .message {
    max-width: 44em;
  }
}

.home section.testimonials .testimony-slider .slick-slide .content .name {
  text-align: center;
  font-family: myriad-pro, sans-serif;
  font-size: 0.9em;
  font-weight: 200;
  color: #1e4d81;
  max-width: 44em;
  text-align: center;
  margin: 0 auto;
}

.home section.testimonials .slick-arrow {
  position: absolute;
  width: 1.2em;
  cursor: pointer;
}

.home section.testimonials .slick-arrow.prev {
  left: 6%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.home section.testimonials .slick-arrow.next {
  right: 6%;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}

.home section.testimonials .slick-arrow img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about section.banner {
  min-height: 92vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.about section.banner .container {
  width: 100%;
  position: relative;
}

.about section.banner .container .content {
  max-width: 52em;
  margin: 0 0 0 auto;
}

.about section.banner .container .content h1 {
  font-size: 2.5em;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  line-height: 1em;
}

@media (min-width: 48em) {
  .about section.banner .container .content h1 {
    font-size: 4.5em;
  }
}

.about section.banner .container .content h4 {
  font-size: 1.1em;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 1.3em 0 1.2em;
  max-width: 35em;
  line-height: 25px;
}

.about section.banner .container .content .btn-m {
  background-color: white;
  color: #1e4d81;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  padding: 1.3em 2.5em;
  border: 1px solid white;
}

.about section.banner .container .content .btn-m:before {
  background-color: #1e4d81;
}

.about section.banner .container .content .btn-m.btn-m:hover, .about section.banner .container .content .btn-m.btn-m:focus, .about section.banner .container .content .btn-m.btn-m:active {
  color: white;
}

.about section.video-banner {
  padding: 4em 0;
}

.about section.video-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about section.video-banner .container .text-container,
.about section.video-banner .container .video-main-container {
  width: 100%;
}

@media (min-width: 48em) {
  .about section.video-banner .container .text-container,
  .about section.video-banner .container .video-main-container {
    width: 50%;
  }
}

.about section.video-banner .container .text-container h2 {
  font-size: 2.5em;
  color: #1e4d81;
  text-transform: uppercase;
  font-weight: 700;
  font-family: myriad-pro, sans-serif;
}

.about section.video-banner .container .text-container p {
  font-family: myriad-pro, sans-serif;
  padding: 2em 0;
  color: #1e4d81;
  max-width: 100%;
  letter-spacing: 1px;
  line-height: 1.5em;
}

@media (min-width: 48em) {
  .about section.video-banner .container .text-container p {
    max-width: 80%;
  }
}

.about section.video-banner .container .video-main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  min-height: 15em;
}

@media (min-width: 48em) {
  .about section.video-banner .container .video-main-container {
    width: 50%;
  }
}

.about section.video-banner .container .video-main-container button {
  border: none;
  background: none;
  width: 5em;
  height: 5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.about section.video-banner .container .video-main-container button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.about section.image-gallery {
  background-color: white;
  background-image: unset;
}

.about section.image-gallery .slick-prev {
  position: absolute;
  background-color: white;
  left: 1em;
  top: 50%;
  z-index: 2;
  width: 2em;
  height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

@media (min-width: 48em) {
  .about section.image-gallery .slick-prev {
    left: 5em;
  }
}

.about section.image-gallery .slick-prev i {
  color: #1e4d81;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  font-size: 1.1em;
}

.about section.image-gallery .slick-next {
  position: absolute;
  background-color: white;
  right: 1em;
  top: 50%;
  z-index: 2;
  width: 2em;
  height: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

@media (min-width: 48em) {
  .about section.image-gallery .slick-next {
    right: 5em;
  }
}

.about section.image-gallery .slick-next i {
  color: #1e4d81;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  font-size: 1.1em;
}

.about section.image-gallery .slick-slide {
  height: 40em;
}

.about section.image-gallery .image-hold {
  padding: 0.5em;
}

.about section.image-gallery .image-hold img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about section.slider-bottom .content {
  padding: 3em 0;
}

.about section.slider-bottom .content p {
  font-family: myriad-pro, sans-serif;
  padding: 2em 0;
  color: #1e4d81;
  letter-spacing: 1px;
  line-height: 1.5em;
}

.about section.congress-sect {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about section.congress-sect .left-box {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  height: 30em;
}

@media (min-width: 48em) {
  .about section.congress-sect .left-box {
    width: 50%;
    height: 35em;
  }
}

.about section.congress-sect .right-box {
  width: 100%;
  margin-left: 0;
  padding: 2em;
}

@media (min-width: 48em) {
  .about section.congress-sect .right-box {
    width: 50%;
    margin-left: -5em;
    padding: 0;
  }
}

.about section.congress-sect .right-box h2 {
  font-size: 1.5em;
  color: #1e4d81;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 48em) {
  .about section.congress-sect .right-box h2 {
    font-size: 2.5em;
  }
}

.about section.congress-sect .right-box p {
  font-family: myriad-pro, sans-serif;
  padding: 2em 0;
  color: #1e4d81;
  letter-spacing: 1px;
  line-height: 1.5em;
  max-width: 100%;
}

@media (min-width: 48em) {
  .about section.congress-sect .right-box p {
    max-width: 80%;
  }
}

.about section.quotes-section {
  min-height: 10em;
  padding: 3em 0;
}

.about section.quotes-section .container {
  position: relative;
}

.about section.quotes-section .container .quotes-img {
  width: 15em;
  height: 13em;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

.about section.quotes-section .container .quote-text {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about section.quotes-section .container .quote-text h4 {
  width: 100%;
  text-align: center;
  max-width: 30em;
  margin: 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  color: #1e4d81;
}

@media (min-width: 48em) {
  .about section.quotes-section .container .quote-text h4 {
    font-size: 2em;
  }
}

.about section.quotes-extra-content p {
  font-family: myriad-pro, sans-serif;
  padding: 2em 0;
  color: #1e4d81;
  letter-spacing: 1px;
  line-height: 1.5em;
}

.about section.quotes-extra-content .signature {
  display: none;
}

.about section.district-layer {
  padding-bottom: 4em;
}

.about section.district-layer .heading h2 {
  font-size: 1.5em;
  color: #1e4d81;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 48em) {
  .about section.district-layer .heading h2 {
    font-size: 2.5em;
  }
}

.about section.district-layer .content {
  padding: 2em 0 1em;
}

.about section.district-layer .content p {
  font-family: myriad-pro, sans-serif;
  padding: 0.5em 0;
  color: #1e4d81;
  letter-spacing: 1px;
  line-height: 1.5em;
}

.about section.district-layer .content .button-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.2em;
}

@media (min-width: 48em) {
  .about section.district-layer .content .button-holder {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.about section.district-layer .content .button-holder a {
  border: 2px solid #1e4d81;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.9em;
  color: #1e4d81;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.5em;
  min-width: 4em;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  text-align: center;
}

.about section.district-layer .content .button-holder a:hover {
  color: white;
  background: #1e4d81;
}

section.cta1 .bg-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 20em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.cta1 .bg-image:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #660000;
  background: -webkit-gradient(linear, left top, right top, from(rgba(102, 0, 0, 0.718293)), color-stop(51%, #660000), to(#660000));
  background: linear-gradient(90deg, rgba(102, 0, 0, 0.718293) 0%, #660000 51%, #660000 100%);
}

section.cta1 .bg-image .content {
  position: relative;
  text-align: right;
}

section.cta1 .bg-image .content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  color: white;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (min-width: 48em) {
  section.cta1 .bg-image .content h3 {
    font-size: 2.2em;
  }
}

section.cta1 .bg-image .content a {
  border: 2px solid white;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 1.5em;
}

section.cta1 .bg-image .content a:before {
  background-color: white;
}

section.cta1 .bg-image .content a:hover {
  color: #660000;
}

section.cta2 .cta-holder {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.cta2 .cta-holder a {
  width: 100%;
  height: 14em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  margin: 1em 0 0;
  position: relative;
}

section.cta2 .cta-holder a:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0.3;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

section.cta2 .cta-holder a:hover:before {
  opacity: 0.8;
}

@media (min-width: 48em) {
  section.cta2 .cta-holder a {
    width: 49%;
    margin: 4em 0;
  }
}

section.cta2 .cta-holder a span {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 2.3em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

section.donations .bg-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 20em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4em 0;
}

@media (min-width: 48em) {
  section.donations .bg-image {
    padding: 2em 0;
  }
}

section.donations .bg-image .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section.donations .bg-image .container .content {
  width: 100%;
}

section.donations .bg-image .container .content h3 {
  font-family: "Montserrat", sans-serif;
  color: white;
  letter-spacing: 1px;
  font-size: 1.5em;
  max-width: 24em;
  margin: 0 auto;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.5em;
}

@media (min-width: 48em) {
  section.donations .bg-image .container .content h3 {
    font-size: 2em;
  }
}

section.donations .bg-image .container .button-hold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.2em;
}

section.donations .bg-image .container .button-hold a {
  border: 2px solid white;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  background-color: transparent;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0.5em;
  min-width: 4em;
  text-align: center;
}

section.donations .bg-image .container .button-hold a:before {
  background-color: white;
}

section.donations .bg-image .container .button-hold a:hover {
  color: black;
}

.slide-out-menu {
  position: absolute;
  right: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  background-color: #1e4d81;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 4em;
}

@media (min-width: 60em) {
  .slide-out-menu {
    display: none;
  }
}

.slide-out-menu.active {
  top: 0;
}

.slide-out-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  position: relative;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.slide-out-menu ul li {
  color: white;
  padding: 1em 0;
}

.slide-out-menu ul li a {
  text-decoration: none;
  color: white;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1em;
}

.slide-out-menu .button-group {
  margin: 2em 0;
}

.slide-out-menu .button-group a {
  text-decoration: none;
}

.pop-outer {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pop-inner {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 60em) {
  .pop-inner {
    width: 70%;
  }
}

.pop-inner video {
  width: 100%;
  height: 20em;
}

@media (min-width: 60em) {
  .pop-inner video {
    height: 40em;
  }
}

.issues {
  /*issues*/
  /* Active tab */
  /* Tab content */
  /* Hide all but first content div */
}

.issues .banner {
  min-height: 25em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.issues .banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.issues .banner .container .content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5em;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.issues .issues-tabs-nav a {
  display: block;
  font-weight: bold;
  text-decoration: none;
}

.issues .issues-tabs-nav ul#tabs-ul li.active {
  /* background: #FFF; */
  color: #3f97a1;
  position: relative;
}

.issues .issues-tabs-nav ul#tabs-ul li.active a {
  color: inherit;
  font-weight: bold;
  opacity: 1;
}

.issues .issues-tabs-content {
  /* background: #FFF; */
  overflow: hidden;
}

.issues .issues-tabs-content .tab-content:not(:first-child) {
  display: none;
}

.issues .issues-tabs .issues-tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2em 0 50%;
  position: relative;
}

@media (min-width: 48em) {
  .issues .issues-tabs .issues-tabs-nav {
    margin: 4em 0 50%;
  }
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul {
  width: 100%;
  margin: 1em 0;
}

@media (min-width: 48em) {
  .issues .issues-tabs .issues-tabs-nav #tabs-ul {
    width: 20em;
    padding-right: 3em;
    margin: 0;
  }
}

@media (min-width: 60em) {
  .issues .issues-tabs .issues-tabs-nav #tabs-ul {
    width: 25em;
    padding-right: 4em;
  }
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul li {
  text-decoration: none;
  list-style: none;
  border: 2px solid #b9232c;
  margin-bottom: 0.6em;
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul li.active {
  background-color: #b9232c;
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul li.active a span {
  color: white;
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul li::marker {
  display: none;
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul li a {
  padding: 1.1em 0;
}

.issues .issues-tabs .issues-tabs-nav #tabs-ul li a span {
  text-align: center;
  width: 100%;
  display: block;
  color: #b9232c;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8em;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content {
  width: 100%;
}

@media (min-width: 48em) {
  .issues .issues-tabs .issues-tabs-nav .issues-tabs-content {
    width: calc(100% - 23em);
  }
}

@media (min-width: 60em) {
  .issues .issues-tabs .issues-tabs-nav .issues-tabs-content {
    width: calc(100% - 30em);
  }
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder h2 {
  color: #1e4d81;
  font-size: 2em;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1em;
}

@media (min-width: 60em) {
  .issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder h2 {
    font-size: 2.5em;
  }
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder .iscontent {
  margin: 1.5em 0;
}

@media (min-width: 48em) {
  .issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder .iscontent {
    margin: 2em 0;
    max-width: 36em;
  }
}

@media (min-width: 60em) {
  .issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder .iscontent {
    margin: 3em 0;
  }
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder .iscontent p {
  font-family: myriad-pro, sans-serif;
  color: #1e4d81;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 500;
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder a {
  border: 2px solid #1e4d81;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  color: white;
  font-weight: 600;
  background-color: #1e4d81;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder a:before {
  background-color: white;
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .holder a:hover {
  color: #1e4d81;
}

.issues .issues-tabs .issues-tabs-nav .issues-tabs-content .tab-content .video-content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}

.issues .video-player .vid-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.issues .video-player .vid-holder video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
}

.footer-wrapper {
  display: none;
}

.err-wrap {
  display: none;
}

footer .subscribe-bar {
  background-color: #1e4d81;
  padding: 4em 0;
}

footer .subscribe-bar .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .subscribe-bar .container .icons-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .subscribe-bar .container .icons-holder a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  width: 1.8em;
  margin-right: 2em;
}

footer .subscribe-bar .container .icons-holder a img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

footer .subscribe-bar .container .form-holder h5 {
  font-family: "Montserrat", sans-serif;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1em;
}

footer .footer-bg {
  background-color: #102c4a;
  padding: 3em 0;
}

footer .footer-bg .container {
  text-align: center;
}

footer .footer-bg .brand {
  margin: 0 auto;
  width: 7em;
}

footer .footer-bg p {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 100;
  margin: 1.5em 0;
  text-align: center;
}

footer .footer-bg .address {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 100;
  margin: 1.5em 0;
  text-align: center;
}

footer .footer-bg a {
  font-family: "Montserrat", sans-serif;
  color: white;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: 100;
  margin: 1.5em 0;
  text-align: center;
  text-decoration: none;
}

footer .footer-bg .ack {
  margin-bottom: 2em;
}

footer .footer-bg .ack p {
  text-transform: uppercase;
  border: 1px solid white;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 1em 2em;
  font-weight: 600;
}

.cs-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000000;
}

.cs-popup .popup-content {
  width: 100%;
  max-width: 800px;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #1e4d81;
  text-align: center;
}

.cs-popup .popup-content .content {
  padding: 20px;
}

.cs-popup .popup-content .rumb-video {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.cs-popup .popup-content .rumb-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cs-popup .popup-content .brand {
  margin: 0 auto 2em;
  width: 6em;
}

@media (min-width: 48em) {
  .cs-popup .popup-content .brand {
    width: 8em;
  }
}

.cs-popup .popup-content .don-title {
  padding: 1.5em 0;
}

.cs-popup .popup-content .don-title h3 {
  font-family: "Montserrat", sans-serif;
  color: white;
  letter-spacing: 1px;
}

.cs-popup .popup-content .don-title a {
  border: 2px solid white;
  padding: 1em 2.5em;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}

.cs-popup .popup-content .don-title a:hover {
  color: #1e4d81;
}

.cs-popup .popup-content .don-title .btn-m:before {
  background-color: white;
}

.cs-popup .popup-content .close-pop-c {
  width: 2em;
  height: 2em;
  margin-left: auto;
  margin-bottom: 1em;
  cursor: pointer;
  position: absolute;
  right: 1em;
  top: 1em;
}

.cs-popup .popup-content .close-pop-c img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.cs-popup .popup-content .ticker {
  display: block;
}

.cs-popup .popup-content .slick-slide {
  height: auto !important;
}

.cs-popup .popup-content li.ticker-item {
  font-size: 1em;
  margin-right: 20px;
  line-height: 2em;
  white-space: nowrap;
  width: 100%;
  display: inline-block;
  color: white;
  font-family: "Montserrat", sans-serif;
}

.cs-popup .popup-content li.ticker-item i {
  margin-right: 20px;
  letter-spacing: 1px;
}

.cs-popup .popup-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.cs-popup .popup-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.cs-popup .popup-content button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
}

.banner-custom {
  background-position: right;
  position: relative;
}

.banner-custom:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: black;
  opacity: 0.5;
}

.image-gallery {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 30px 0 20px 0;
  background-image: url(http://mtg.parscale.com/assets/uploads/donations-bg_1.png);
}

.image-gallery .mySwiper2 {
  height: auto;
  width: 100%;
}

.image-gallery .swiper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.image-gallery .mySwiper {
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0;
}

.image-gallery .swiper-wrapper {
  height: auto;
}

.image-gallery .mySwiper .swiper-slide {
  width: 25%;
  height: 100%;
  opacity: 0.4;
  cursor: pointer;
}

.image-gallery .swiper-slide {
  background-size: cover !important;
  background-position: top;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.image-gallery .swiper-slide:after {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
/*# sourceMappingURL=site.css.map */