--main-white-color: white; --main-black-color: black; * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.static {
  position: static;
}

.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.owl-carousel .owl-slide {
  position: relative;
  height: 500px;
  background-color: lightgray;
  align-items: end;
  padding-bottom: 30px;
}

@media (max-width: 400px) {
  .owl-carousel .owl-slide {
    position: relative;
    height: 400px;
    background-color: lightgray;
  }
}

.owl-carousel .owl-slide-animated {
  transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  color: white;
}

.owl-carousel .owl-slide-animated.is-transitioned {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition: all 0.5s;
}

.owl-carousel .owl-slide-title.is-transitioned {
  transition-delay: 0.5s;
}

.owl-carousel .owl-slide-subtitle.is-transitioned {
  transition-delay: 1.3s;
}

.owl-carousel .owl-slide-cta.is-transitioned {
  transition-delay: 2.6s;
}

.owl-carousel .owl-dots, .owl-carousel .owl-nav {
  position: absolute;
}

.owl-carousel .owl-dots .owl-dot, .owl-carousel .owl-nav [class*="owl-"]:focus {
  outline: none;
}

.owl-carousel .owl-dots .owl-dot span {
  background: transparent;
  border: 1px solid var(--main-black-color);
  transition: all 0.2s ease;
}

.owl-carousel .owl-dots .owl-dot:hover span, .owl-carousel .owl-dots .owl-dot.active span {
  background: var(--main-black-color);
}

.owl-carousel .owl-nav {
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  margin: 0;
}

.owl-carousel .owl-nav svg {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.owl-carousel .owl-nav button:hover svg {
  opacity: 1;
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
  background: transparent;
}

@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav {
    top: 5%;
  }
}

@media screen and (max-width: 575px) {
  .owl-carousel .owl-nav svg {
    width: 24px;
    height: 24px;
  }
}

.owl-carousel .owl-slide-animated < h1 {
  color: #fbefe6;
}

.owl-slide-animated.owl-slide-cta {
  padding: 10px 25px;
  border-radius: 26px;
  font-size: 14px;
  margin-right: 10px;
  background-color: #d65f00;
  color: #fbefe6;
  border: none;
  margin-bottom: 10px;
  text-decoration: none;
}

.banner-content {
  color: white;
  position: relative;
  text-align: center;
}

.banner-nav {
  position: absolute;
  right: 22%;
  top: 0px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  z-index: 2;
}

@media (max-width: 800px) {
  .banner-nav {
    position: absolute;
    right: 5%;
    top: initial;
    bottom: 5%;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
  }
}

.banner-nav > a {
  margin-right: 0px;
  display: inline-block;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  font-size: 20px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media (max-width: 800px) {
  .banner-nav > a {
    margin-right: 0px;
    display: inline-block;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    line-height: 39px;
    text-align: center;
    font-size: 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
}

.banner-nav > a > i {
  font-size: 35px;
}

@media (max-width: 360px) {
  .banner-content > h5 {
    margin-bottom: 0px;
    font-size: 15px;
  }
}

@media (max-width: 360px) {
  .banner-content > div {
    margin-bottom: 0px;
  }
}

.banner-content > div {
  margin-bottom: 0px;
}

@media (max-width: 360px) {
  .banner-content > div {
    margin-bottom: 0px;
  }
}

.banner-content > div > h1 {
  font-size: 75px;
  display: inline-block;
  margin-right: 5px;
  /*font-family: 'Arizonia', cursive;*/
}

.banner-content > div > div {
  display: inline-block;
  width: 200px;
}

@media (max-width: 360px) {
  .banner-content > div > div {
    display: block;
    width: 200px;
  }
}

.banner-content > div > div > p {
  display: inline-block;
  width: 200px;
  margin-bottom: 0px;
}

.banner-content > h5 {
  margin-bottom: 20px;
  /*font-family: 'Alex Brush', cursive;*/
  font-size: 2em;
  display: inline-block;
}

.banner-content > h1 {
  font-size: 75px;
  margin-top: 0px;
  margin-bottom: 30px;
  /*font-family: 'Alex Brush', cursive;*/
  /*font-family: 'Arizonia', cursive;*/
}

.banner-content > div > button {
  background-color: #26BBFF;
  color: white;
  padding: 8px 25px;
  border: none;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1199px) {
  .banner-content > h1, .banner-content > div > h1 {
    font-size: 70px;
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .banner-content > h1, .banner-content > div > h1 {
    font-size: 60px;
    display: inline-block;
  }
}

@media (max-width: 575px) {
  .banner-content > h1, .banner-content > div > h1 {
    font-size: 40px;
    display: block;
  }
}

@media (max-width: 360px) {
  .banner-content > h1, .banner-content > div > h1 {
    font-size: 28px;
    display: block;
  }
}

.hm-about {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: normal;
}

.hm-about > .about-photos {
}

.hm-about > .about-photos > img {
  width: 100%;
  box-shadow: -48px -48px 0 -40px #26bbff, 48px 48px 0 -40px #26bbff;
}

.hm-about > div {
  width: 45%;
}

.hm-about > .objectives {
  width: 100%;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .hm-about > .objectives {
    width: 100%;
    margin-top: 0px;
  }
}

.hm-about > .objectives > ol {
  counter-reset: li;
  list-style: none;
  padding: 0px;
  padding-left: 20px;
  text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.hm-about > .objectives > ol span {
  position: relative;
  display: block;
  padding: 1em .4em 1em 2em;
  margin: 0.5em 0;
  background: rgba(0,168,89,0.3);
  color: #444;
  text-decoration: none;
  border-radius: .3em;
  transition: .3s ease-out;
}

.hm-about > .objectives > ol span:hover {
  background: rgba(0,168,89,0.76);
  color: white;
}

.hm-about > .objectives > ol span:hover:before {
  /*transform: rotate(360deg);*/
}

.hm-about > .objectives > ol span:before {
  content: counter(li);
  counter-increment: li;
  position: absolute;
  left: -1.3em;
  top: 50%;
  margin-top: -1.3em;
  background: #26bbff;
  height: 3em;
  width: 2.5em;
  line-height: 2.5em;
  border: .3em solid #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 2em;
  transition: all .3s ease-out;
}

@media (max-width: 767px) {
  .hm-about > div {
    margin-top: 25px;
    width: 100%;
    margin-bottom: 40px;
  }
}

.hm-about-section {
  padding: 60px 0px;
}

@media (max-width: 991px) {
  .hm-about-section {
    padding: 60px 15px;
  }
}

.hm-about > .text {
  position: relative;
}

@media (max-width: 767px) {
  .hm-about > .text {
    position: relative;
    margin-top: 0px;
    margin-bottom: 15px;
  }
}

.underline {
  max-width: 600px;
  padding-top: 8px;
  color: #ed3237;
  margin-bottom: 12px;
}

.underline > div {
  width: 40px;
  padding-top: 8px;
  color: #ed3237;
  border-top: 2px solid #ed3237;
}

.underline > h6 {
  font-size: 13px;
  font-weight: 600;
}

.hm-about > .text > h1 {
  font-size: 45px;
}

.hm-about > .text > p {
  /*margin-bottom: 40px;*/
  text-align: justify;
}

.hm-about > .text > button {
  background-color: #ed3237;
  color: white;
  padding: 8px 25px;
  border: none;
  font-size: 14px;
  font-weight: 600;
}

.hm-about > .text > span {
  position: absolute;
  color: #ed3237;
  font-weight: 600;
  margin-left: 5px;
}

.hm-about > .text > i {
  transform: rotate(45deg);
  color: #ed3237;
}

.hm-about > .photos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(8, 1fr);
  /*background-image: url("../../assets/img/PGF%20LOGO-1%202.png");*/
  background-repeat: no-repeat;
  background-color: white;
  background-blend-mode: luminosity;
  height: 350px;
}

@media (max-width: 767px) {
  .hm-about > .photos {
    display: none;
  }
}

.hm-about > .photos > img:nth-child(1) {
  grid-column-start: 2;
  grid-column-end: 8;
  grid-row-start: 1;
  grid-row-end: 8;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hm-about > .photos > img:nth-child(3) {
}

.hm-about > .photos > img:nth-child(2) {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 5;
  grid-row-end: 9;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*visibility: hidden;*/
  background-color: white;
}

.hm-about > .photos > img:nth-child(3) {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 4;
  width: 98%;
  height: 115%;
}

.memb-states-section {
  padding: 0px 0px 40px 0px;
}

@media (max-width: 991px) {
  .memb-states-section {
    padding: 0px 15px 40px 15px;
  }
}

.memb-states {
  border-top: 1px solid rgba(237,50,55,0.4);
  position: relative;
}

.memb-states > .slide-nav {
  position: absolute;
  top: 38px;
  font-size: 30px;
  width: 100%;
}

.memb-states > .head {
  position: absolute;
  top: -13px;
  width: 100%;
  text-align: center;
}

.memb-states > .head > h6 {
  display: inline-block;
  color: #ed3237;
  background-color: white;
  font-weight: 600;
  padding: 2px;
}

.swiper-slide.states {
  text-decoration: none;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  align-items: center;
  border: 1px solid rgba(0,0,0,0.25);
  border-radius: 5px;
  padding: 5px;
  background-color: white;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
}

.swiper-slide.states:hover {
}

.swiper-slide.states:hover > {
}

.swiper-slide.states > img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  mix-blend-mode: normal;
  mix-blend-mode: luminosity;
}

.swiper-slide.states > div {
  margin-left: 4px;
  color: rgba(0,0,0,0.5);
}

.swiper-slide.states > div > h6 {
  margin-bottom: 0px;
  font-weight: 700;
  font-size: 12px;
}

.swiper-slide.states > div > span {
  font-size: 10px;
}

.swiper.states {
}

.swiper-wrapper.states {
  display: flex;
  /*gap: 15px;*/
  /*align-items: center;*/
  padding-bottom: 10PX;
}

.swiper-slide.states.swiper-slide-active {
  background-color: green;
}

.swiper-slide.states.swiper-slide-active > div {
  color: white;
}

.swiper-slide.states.swiper-slide-active > img {
  mix-blend-mode: color-dodge;
}

.map-section {
  position: relative;
  padding: 60px 0px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='500' preserveAspectRatio='none' viewBox='0 0 1440 500'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1000%26quot%3b)' fill='none'%3e%3crect width='1440' height='500' x='0' y='0' fill='rgba(2%2c 79%2c 42%2c 1)'%3e%3c/rect%3e%3cpath d='M1440 0L1123.59 0L1440 235.2z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M1123.59 0L1440 235.2L1440 353.84L1102.74 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M1102.74 0L1440 353.84L1440 362.65999999999997L487.41999999999996 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M487.41999999999985 0L1440 362.65999999999997L1440 424.21999999999997L267.8299999999998 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 500L533.74 500L0 365.7z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 365.7L533.74 500L976.9300000000001 500L0 225.14999999999998z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 225.14999999999998L976.9300000000001 500L1202.8500000000001 500L0 183.30999999999997z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 183.30999999999995L1202.8500000000001 500L1283.0400000000002 500L0 92.18999999999994z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1000'%3e%3crect width='1440' height='500' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
  background-size: cover;
}

@media (max-width: 991px) {
  .map-section {
    padding: 60px 15px;
  }
}

.map-section > img {
  position: absolute;
  top: 30px;
  left: 30px;
  height: 100px;
}

@media (max-width: 767px) {
  .map-section > img {
    display: none;
  }
}

.mapped-states {
  border-top: 1px solid var(--bs-teal);
  position: relative;
}

.mapped-states > .head {
  position: absolute;
  top: -10px;
  width: 100%;
  text-align: center;
}

.mapped-states > .head > h6 {
  display: inline-block;
  padding: 2px 8px;
  font-weight: 600;
  background-color: rgb(15,88,53);
  color: white;
}

.mapped-states > .body {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
}

.mapped-states > .body > div {
  width: 46%;
}

.mapped-states > .body > .map {
}

.mapped-states > .body > .map > img {
  width: 100%;
}

@media (max-width: 767px) {
  .mapped-states > .body > div {
    width: 100%;
  }
}

.map-nav {
  padding: 20px;
}

@media (max-width: 767px) {
  .map-nav {
    padding: 20px;
    /*order: -1;*/
  }
}

.map-nav > a {
  position: relative;
  /*margin-bottom: 15px;*/
  padding: 6px 8px;
  background-color: white;
  display: block;
  position: relative;
  text-decoration: none;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
}

.map-nav > div {
  background-color: white;
  padding: 20px;
}

.map-nav > div > ul {
  color: #024f2a;
  padding: 20px;
}

.map-nav > a:hover > i {
  background-color: #ed3237;
}

.map-nav > a > i {
  color: white;
  display: inline-block;
  padding: 12px 15px;
  font-size: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-width: 2px;
  border-color: #0f5835;
  background-color: #0f5835;
  top: 0px;
  left: 0px;
  pointer-events: none;
}

.map-nav > a > div {
  position: absolute;
  left: 75px;
  top: 15px;
  width: 77%;
}

.map-nav > a > div > h6 {
  color: #4c765a;
  font-weight: 600;
  margin-bottom: 0px;
}

.map-nav > a > div > span {
  color: #0f5835;
}

.more-projects {
  padding: 20px;
  text-align: center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' version='1.1' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:svgjs='http://svgjs.dev/svgjs' width='1440' height='500' preserveAspectRatio='none' viewBox='0 0 1440 500'%3e%3cg mask='url(%26quot%3b%23SvgjsMask1001%26quot%3b)' fill='none'%3e%3crect width='1440' height='500' x='0' y='0' fill='rgba(141%2c 5%2c 9%2c 1)'%3e%3c/rect%3e%3cpath d='M1440 0L1123.59 0L1440 235.2z' fill='rgba(255%2c 255%2c 255%2c .1)'%3e%3c/path%3e%3cpath d='M1123.59 0L1440 235.2L1440 353.84L1102.74 0z' fill='rgba(255%2c 255%2c 255%2c .075)'%3e%3c/path%3e%3cpath d='M1102.74 0L1440 353.84L1440 362.65999999999997L487.41999999999996 0z' fill='rgba(255%2c 255%2c 255%2c .05)'%3e%3c/path%3e%3cpath d='M487.41999999999985 0L1440 362.65999999999997L1440 424.21999999999997L267.8299999999998 0z' fill='rgba(255%2c 255%2c 255%2c .025)'%3e%3c/path%3e%3cpath d='M0 500L533.74 500L0 365.7z' fill='rgba(0%2c 0%2c 0%2c .1)'%3e%3c/path%3e%3cpath d='M0 365.7L533.74 500L976.9300000000001 500L0 225.14999999999998z' fill='rgba(0%2c 0%2c 0%2c .075)'%3e%3c/path%3e%3cpath d='M0 225.14999999999998L976.9300000000001 500L1202.8500000000001 500L0 183.30999999999997z' fill='rgba(0%2c 0%2c 0%2c .05)'%3e%3c/path%3e%3cpath d='M0 183.30999999999995L1202.8500000000001 500L1283.0400000000002 500L0 92.18999999999994z' fill='rgba(0%2c 0%2c 0%2c .025)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1001'%3e%3crect width='1440' height='500' fill='white'%3e%3c/rect%3e%3c/mask%3e%3c/defs%3e%3c/svg%3e");
}

.more-projects > button {
  background-color: white;
  color: #ed3237;
  padding: 8px 25px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  -webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
  box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.3);
}

.hm-events {
  padding: 60px 0px;
}

@media (max-width: 991px) {
  .hm-events {
    padding: 60px 15px;
  }
}

.events {
}

.events > .head {
  max-width: 500px;
  position: relative;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .events > .head {
    max-width: 500px;
    position: relative;
    margin-bottom: 40px;
  }
}

.events > .head > i {
  transform: rotate(45deg);
  color: #ed3237;
}

.events > .head > span {
  position: absolute;
  color: #ed3237;
  font-weight: 600;
  margin-left: 5px;
}

.events > .body {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.events > .body > .evts {
  width: 58%;
}

@media (max-width: 767px) {
  .events > .body > .evts {
    padding-top: 10px;
    width: 100%;
  }
}

.events > .body > .gallery {
  width: 38%;
}

@media (max-width: 767px) {
  .events > .body > .gallery {
    width: 100%;
  }
}

.events > .body > .gallery > div {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
  gap: 3%;
  padding: 15px;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
}

.events > .body > .gallery > a {
  position: absolute;
  bottom: 15px;
  color: inherit;
}

@media (max-width: 767px) {
  .events > .body > .gallery > a {
    position: absolute;
    bottom: initial;
    top: -28px;
    right: 0px;
    color: inherit;
  }
}

.events > .body > .gallery > a > i {
  margin-right: 15px;
}

.events > .body > .gallery > div > a {
  width: 31%;
  margin-bottom: 10px;
  text-decoration: none;
}

.events > .body > .gallery > div > a > img {
  width: 100%;
  height: 85px;
  object-fit: cover;
}

@media (min-width: 576px) AND (max-width: 767px) {
  .events > .body > .gallery > div > a > img {
    width: 100%;
    height: 100px;
    object-fit: cover;
  }
}

.evts.main {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
}

.evts.main > a {
  width: 48%;
}

@media (max-width: 991px) {
  .evts.main > a {
    width: 100%;
  }
}

.evts > a {
  position: relative;
  display: block;
  padding: 20px 10px;
  text-decoration: none;
  -webkit-box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
  box-shadow: 0px 1px 5px 1px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  min-height: 130px;
}

.evts > a:hover {
  background-color: rgba(237,50,55,0.17);
}

.evts > a > .txt {
  margin-left: 50px;
  margin-right: 30px;
}

@media (max-width: 575px) {
  .evts > a > .txt {
    margin-left: 50px;
    margin-right: 0px;
  }
}

.evts > a > .txt > h6 {
  color: #ed3237;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 3px;
}

.evts > a > .txt > p {
  color: var(--bs-gray-800);
  margin-bottom: 5px;
  font-size: 15px;
}

.evts > a > .txt > div {
}

.evts > a > .txt > div > div {
  display: inline-block;
  margin-right: 25px;
  position: relative;
}

@media (max-width: 575px) {
  .evts > a > .txt > div > div {
    margin-right: 0px;
  }
}

.evts > a > .txt > div > div > i {
  color: #ed3237;
  margin-right: 10px;
}

.evts > a > .txt > div > div > span {
  margin-right: 25px;
  color: #0583BC;
  font-size: 15px;
}

.evts > a > .txt > d {
  color: var(--bs-gray-800);
  margin-bottom: 5px;
}

.evts > a > .badging > span {
  padding: 3px 10px;
  color: white;
}

.evts > a > .badging > span:nth-child(1) {
  background-color: #ed3237;
}

.evts > a > .badging > span:nth-child(2) {
  background-color: #26BBFF;
}

.evts > a > .badging {
  position: absolute;
  transform: rotate(-90deg);
  top: 52px;
  left: -11px;
}

.evts > a > .more {
  position: absolute;
  transform: rotate(-90deg);
  top: 55px;
  right: -26px;
  padding: 4px 10px;
  font-size: 14px;
  color: var(--bs-gray-600);
  background-color: #F5F5F5;
  min-width: 100px;
  text-align: center;
}

@media (max-width: 575px) {
  .evts > a > .more {
    display: none;
  }
}

.evts > a:hover > .more {
  color: white;
  background-color: #ed3237;
}

.evts > a > .more > span {
  font-weight: 600;
}

.hm-about-states {
  background-image: url("../../assets/img/World-Map1.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.banner {
  position: relative;
}

.page-header {
  position: relative;
  height: 220px;
  background-image: url("../../assets/img/PGF_LOGO-1-removebg-preview.png");
  background-size: cover;
  background-repeat: no-repeat;
  /*background: rgb(2,79,42);*/
  background-image: url("data:image/svg+xml,%3csv…%26quot%3b)' fill='none'%3e%3crect width='1440' height='250' x='0' y='0' fill='rgba(2%2c 79%2c 42%2c 1)'%3e%3c/rect%3e%3cpath d='M30 250L280 0L628 0L378 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)'%3e%3c/path%3e%3cpath d='M277.6 250L527.6 0L571.1 0L321.1 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)'%3e%3c/path%3e%3cpath d='M511.20000000000005 250L761.2 0L933.7 0L683.7 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)'%3e%3c/path%3e%3cpath d='M723.8000000000001 250L973.8000000000001 0L1245.3000000000002 0L995.3000000000001 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)'%3e%3c/path%3e%3cpath d='M1426 250L1176 0L952.5 0L1202.5 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)'%3e%3c/path%3e%3cpath d='M1192.4 250L942.4000000000001 0L724.9000000000001 0L974.9000000000001 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)'%3e%3c/path%3e%3cpath d='M936.8 250L686.8 0L329.79999999999995 0L579.8 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)'%3e%3c/path%3e%3cpath d='M717.1999999999999 250L467.19999999999993 0L272.19999999999993 0L522.1999999999999 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)'%3e%3c/path%3e%3cpath d='M1310.3504015406825 250L1440 120.35040154068255L1440 250z' fill='url(%26quot%3b%23SvgjsLinearGradient1010%26quot%3b)'%3e%3c/path%3e%3cpath d='M0 250L129.64959845931745 250L 0 120.35040154068255z' fill='url(%26quot%3b%23SvgjsLinearGradient1011%26quot%3b)'%3e%3c/path%3e%3c/g%3e%3cdefs%3e%3cmask id='SvgjsMask1009'%3e%3crect width='1440' height='250' fill='white'%3e%3c/rect%3e%3c/mask%3e%3clinearGradient x1='0%25' y1='100%25' x2='100%25' y2='0%25' id='SvgjsLinearGradient1010'%3e%3cstop stop-color='rgba(0%2c 255%2c 135%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(0%2c 255%2c 135%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3clinearGradient x1='100%25' y1='100%25' x2='0%25' y2='0%25' id='SvgjsLinearGradient1011'%3e%3cstop stop-color='rgba(0%2c 255%2c 135%2c 0.2)' offset='0'%3e%3c/stop%3e%3cstop stop-opacity='0' stop-color='rgba(0%2c 255%2c 135%2c 0.2)' offset='0.66'%3e%3c/stop%3e%3c/linearGradient%3e%3c/defs%3e%3c/svg%3e");
}

.page-header > .content {
  color: white;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.page-header > .evt {
  color: white;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  background-color: rgba(2,79,42,0.6);
  padding: 15px;
}

.page-header > .evt > h4 {
  color: rgb(255,255,255);
}

@media (max-width: 767px) {
  .page-header > .evt > h4 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .page-header > .evt {
    width: 85%;
  }
}

.page-header > .evt > div {
  margin-bottom: 5px;
}

.page-header > .content > h1 {
}

.page-header > .content > div {
  /*display: flex;*/
  /*flex-direction: row;*/
  /*flex-flow: wrap;*/
  /*justify-content: space-between;*/
  display: inline-block;
  align-items: center;
  max-width: 230px;
}

.page-header > .content > div > i {
  font-size: 7px;
  text-decoration: none;
  margin: 0px 10px;
}

.page-header > .content > div > a {
  color: white;
  text-decoration: none;
}

.page-header > .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
  background: rgb(2,79,42);
  background-image: url("../../assets/img/Progressive-Governors-Forum-PGF%202567%20(1).png");
}

.paginate > a {
  display: inline-block;
  padding: 3px 6px;
  text-decoration: none;
  color: #ed3237;
  border: 2px solid #ed3237;
  margin-right: 10px;
  min-width: 38px;
  text-align: center;
}

.paginate > a:last-child {
  margin-right: 0px;
}

.paginate > a:hover, .paginate > a.active {
  background-color: #ed3237;
  color: white;
}

.services-section {
  padding: 60px 0px;
}

@media (max-width: 991px) {
  .services-section {
    padding: 30px 15px;
  }
}

.services {
}

.services > h5 {
  text-align: center;
  color: #ed3237;
  margin-bottom: 30px;
  font-weight: 600;
}

.services > div {
  display: flex;
  flex-direction: row;
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
}

.services > div > div {
  position: relative;
  width: 23%;
  padding: 45px 30px;
  text-align: center;
  -webkit-box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.25);
  box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.25);
  margin-bottom: 15px;
  margin-left: 1%;
  margin-right: 1%;
}

@media (max-width: 768px) {
  .services > div > div {
    width: 48%;
  }
}

@media (max-width: 576px) {
  .services > div > div {
    width: 100%;
    margin-bottom: 20px;
  }
}

.services > div > div > i {
  display: block;
  font-size: 30px;
  margin-bottom: 15px;
}

.services > div > div > h6 {
  margin-bottom: 30px;
  font-weight: 600;
}

.services > div > div > p {
}

.services > div > div > a {
  position: absolute;
  right: 30px;
  bottom: 30px;
  display: block;
  text-align: right;
  text-decoration: none;
  color: #ed3237;
  font-weight: 600;
}

.services > div > div > a:hover {
  color: rgba(255,0,0,0.72);
}

.services > div > div > a > i {
  margin-left: 5px;
}

.privacy-policy > ol > li {
  line-height: 2.0;
}

.privacy-policy > ul > li {
  line-height: 2.0;
}

