/* navbar */
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
.hfa-navbar-wraper {
  position: fixed;
  background-color: #fff;
  height: 110px;
  width: 100%;
  z-index: 999999;
  margin: 0 !important;
  left: 0;
  right: 0;
  top: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 991.98px) {
  .hfa-navbar-wraper {
    height: 75px;
  }
}
@media only screen and (max-width: 991.98px) {
  .hfa-navbar-wraper .hfa-nav-container .container .row .col-12 .navbar-brand {
    position: relative;
    z-index: 999999;
  }
  .hfa-navbar-wraper .hfa-nav-container .container .row .col-12 .navbar-toggler {
    padding-right: 1em;
  }
  .hfa-navbar-wraper .hfa-nav-container .container .row .col-12 .navbar-collapse {
    height: calc(100vh - 90px);
    background-color: #fff;
    align-items: center;
    justify-content: center;
  }
  .hfa-navbar-wraper .hfa-nav-container .container .row .col-12 .navbar-collapse.show {
    display: flex;
  }
}
.hfa-navbar-wraper .hfa-nav-container .navbar {
  padding-left: 0;
  padding-right: 0;
  padding-top: 20px;
  padding-bottom: 0;
}
@media only screen and (max-width: 991.98px) {
  .hfa-navbar-wraper .hfa-nav-container .navbar {
    padding-top: 0;
  }
}
.hfa-navbar-wraper .hfa-nav-container .navbar .navbar-brand {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 991.98px) {
  .hfa-navbar-wraper .hfa-nav-container .navbar.hfa-desktop-nav-container {
    display: none !important;
  }
}
.hfa-navbar-wraper .hfa-nav-container .navbar-toggler {
  padding: 0;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media only screen and (min-width: 1200px) {
  .hfa-navbar-wraper .hfa-nav-container .navbar-toggler {
    display: none;
  }
}
.hfa-navbar-wraper .hfa-nav-container .navbar-toggler:focus {
  outline: 0;
  border: 0;
  box-shadow: none;
}
.hfa-navbar-wraper .hfa-nav-container .navbar-toggler svg {
  width: 23px;
  height: auto;
  fill: #00aa4f;
  margin-left: 8px;
  margin-top: 1px;
}
.hfa-navbar-wraper .hfa-nav-container ul {
  margin-left: auto;
  margin-right: 0;
}
.hfa-navbar-wraper .hfa-nav-container ul.navbar-nav li {
  margin-right: 2em;
}
.hfa-navbar-wraper .hfa-nav-container ul.navbar-nav li:last-child {
  margin-right: 0;
}
.hfa-navbar-wraper .hfa-nav-container ul.navbar-nav li.nav-item a {
  color: #7f7f7f !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: block;
}

/* navbar */
.hfa-mobile-nav-container {
  /* menu button */
  /* main menu block */
}
.hfa-mobile-nav-container .menuBtn {
  height: 30px;
  width: 30px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 101;
  border: none;
  background: none;
}
@media only screen and (min-width: 992px) {
  .hfa-mobile-nav-container .menuBtn {
    display: none !important;
  }
}
.hfa-mobile-nav-container .menuBtn > span {
  background-color: #bfbfbf;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -15px;
  transition: height 100ms;
}
.hfa-mobile-nav-container .menuBtn > span:after, .hfa-mobile-nav-container .menuBtn > span:before {
  content: "";
  background-color: #bfbfbf;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  transition: all 200ms;
}
.hfa-mobile-nav-container .menuBtn > span:after {
  top: -7px;
}
.hfa-mobile-nav-container .menuBtn > span:before {
  bottom: -7px;
}
.hfa-mobile-nav-container .menuBtn.act > span {
  height: 0;
}
.hfa-mobile-nav-container .menuBtn.act > span:after, .hfa-mobile-nav-container .menuBtn.act > span:before {
  background-color: #bfbfbf;
  top: 1px;
}
.hfa-mobile-nav-container .menuBtn.act > span:after {
  transform: rotate(45deg);
}
.hfa-mobile-nav-container .menuBtn.act > span:before {
  transform: rotate(-45deg);
}
.hfa-mobile-nav-container .mainMenu {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0);
}
@media only screen and (max-width: 991.98px) and (min-width: 591px) {
  .hfa-mobile-nav-container .mainMenu {
    align-items: center;
  }
}
.hfa-mobile-nav-container .mainMenu.act {
  opacity: 1;
  transform: scale(1);
}
.hfa-mobile-nav-container .mainMenu.act ul li {
  opacity: 1;
  transform: translateX(0);
}
.hfa-mobile-nav-container .mainMenu ul {
  display: table-cell;
  vertical-align: middle;
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
  width: 100%;
}
@media only screen and (max-width: 991.98px) and (min-width: 591px) {
  .hfa-mobile-nav-container .mainMenu ul {
    text-align: center;
  }
}
.hfa-mobile-nav-container .mainMenu li {
  padding: 8px 0;
  transition: all 400ms 510ms;
  opacity: 0;
  border-top: 1px solid #e9e9e9;
  width: 100%;
}
.hfa-mobile-nav-container .mainMenu li:last-child {
  border-bottom: 1px solid #e9e9e9;
}
.hfa-mobile-nav-container .mainMenu li:nth-child(odd) {
  transform: translateX(30%);
}
.hfa-mobile-nav-container .mainMenu li:nth-child(even) {
  transform: translateX(-30%);
}
.hfa-mobile-nav-container .mainMenu a {
  color: #7f7f7f;
  display: inline-block;
  font-size: 20px;
  margin-left: 20px;
}
.hfa-mobile-nav-container .mainMenu a.hfa-link-button {
  color: #fff;
  display: flex;
  font-size: 14px;
  margin-left: 1em;
  position: absolute;
  bottom: 3em;
}
.hfa-mobile-nav-container .mainMenu .common_btn {
  margin-left: 20px;
  position: absolute;
  bottom: 35px;
  color: #fff;
  height: 30px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sign up button */
.hfa-no-background-scroll {
  overflow: hidden;
}

.common_btn {
  border: none;
  background: #2fa7bc;
  height: 40px;
  padding: 0 20px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
}
@media (max-width: 991px) {
  .common_btn {
    height: 30px;
    font-size: 12px;
  }
}
.common_btn img {
  width: auto;
  height: auto;
}

.hfa-scroll-top-container {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99999;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid rgba(29, 29, 27, 0.2196078431);
  border-radius: 100%;
}
.hfa-scroll-top-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.banner_section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  margin-bottom: 0px;
}
@media (max-width: 991px) {
  .banner_section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0px;
    padding-top: 90px;
  }
}
.banner_section .text_area_section {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (max-width: 991px) {
  .banner_section .text_area_section {
    margin-bottom: 40px;
  }
}
.banner_section .text_area_section .text_area {
  padding-left: calc(50vw - 800px);
}
@media (max-width: 991px) {
  .banner_section .text_area_section .text_area {
    padding: 20px;
  }
}
@media (max-width: 1900px) {
  .banner_section .text_area_section .text_area {
    padding-left: calc(50vw - 660px);
  }
}
@media (max-width: 1400px) {
  .banner_section .text_area_section .text_area {
    padding-left: calc(50vw - 570px);
  }
}
@media (max-width: 1200px) {
  .banner_section .text_area_section .text_area {
    padding-left: calc(50vw - 480px);
  }
}
@media (max-width: 992px) {
  .banner_section .text_area_section .text_area {
    padding-left: calc(50vw - 360px);
  }
}
@media (max-width: 767px) {
  .banner_section .text_area_section .text_area {
    padding-left: calc(50vw - 270px);
  }
}
@media (max-width: 575px) {
  .banner_section .text_area_section .text_area {
    padding-left: 0.75rem;
  }
}
.banner_section .text_area_section .text_area h1 {
  color: #7F7F7F;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 70px;
}
@media (max-width: 991px) {
  .banner_section .text_area_section .text_area h1 {
    flex-direction: row;
    gap: 10px;
  }
}
.banner_section .text_area_section .text_area h1 span {
  font-weight: 300;
}
.banner_section .image_area {
  position: relative;
  width: 100%;
}
.banner_section .image_area img {
  width: 100%;
}
.banner_section .image_area .graphic_img {
  position: absolute;
  width: 19.5vw;
  bottom: -8.9vw;
  left: -8.8vw;
}
@media (max-width: 991px) {
  .banner_section .image_area .graphic_img {
    bottom: -45px;
    left: -11px;
    width: 100px;
  }
}
@media (max-width: 991px) {
  .banner_section .image_area {
    display: none;
  }
}
.banner_section .mobile_banner {
  width: 100%;
}
.banner_section .mobile_banner img {
  width: 100%;
  height: 100%;
}
@media (min-width: 991px) {
  .banner_section .mobile_banner {
    display: none;
  }
}

.supporting_section {
  background-image: url("../images/supporte_bg.jpg") !important;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding-bottom: 95px;
}
@media (max-width: 991px) {
  .supporting_section {
    background-image: none !important;
    padding: 20px 0;
    position: relative;
    background-color: #008387 !important;
  }
}
.supporting_section .text_area {
  background-color: #008387;
  padding: 50px;
  width: 40%;
  max-width: 100%;
  position: relative;
}
@media (max-width: 1900px) {
  .supporting_section .text_area {
    width: 50%;
  }
}
.supporting_section .text_area::after {
  content: "";
  width: 137px;
  height: 201px;
  background: url("../images/new/support_graphic_img.jpg");
  position: absolute;
  right: -137px;
  bottom: -95px;
}
@media (max-width: 991px) {
  .supporting_section .text_area::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .supporting_section .text_area {
    width: 100%;
    padding: 0;
    margin-bottom: 15px;
    position: static;
  }
}
.supporting_section .text_area h2 {
  color: #fff;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 56px;
}
@media (max-width: 991px) {
  .supporting_section .text_area h2 {
    line-height: 36px;
    max-width: 359px;
  }
}
.supporting_section .text_area p {
  color: #fff;
  margin-bottom: 35px;
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}
@media (max-width: 991px) {
  .supporting_section .text_area p {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    max-width: 316px;
  }
  .supporting_section .text_area p.second_para {
    max-width: 325px;
  }
}
.supporting_section .text_area p span {
  font-style: italic;
  font-size: 20px;
}
.supporting_section .text_area .second_para {
  font-size: 20px;
  font-weight: 400;
}
.supporting_section .image_area {
  padding-top: 35px;
}
@media (min-width: 991px) {
  .supporting_section .image_area {
    display: none;
  }
}
.supporting_section .image_area img {
  width: 100%;
  height: auto;
}

.highlight_section {
  padding-top: 125px;
  margin-bottom: 100px;
}
@media (max-width: 991px) {
  .highlight_section {
    padding: 35px 0;
    margin-bottom: 30px;
  }
}
.highlight_section .header {
  margin-bottom: 90px;
}
.highlight_section .header h2 {
  color: #00afb0;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 65px;
}
@media (max-width: 991px) {
  .highlight_section .header {
    margin-bottom: 80px;
  }
}
.highlight_section .card_area {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}
@media (max-width: 991px) {
  .highlight_section .card_area {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.highlight_section .card_area .card {
  padding: 20px;
  background: #03525e;
  border: none;
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  transition: transform 0.5s, opacity 0.5s;
}
.highlight_section .card_area .card.visible {
  opacity: 1;
  transform: scale(1);
}
.highlight_section .card_area .card.delay-1 {
  transition-delay: 0.1s;
}
.highlight_section .card_area .card.delay-2 {
  transition-delay: 0.1s;
}
.highlight_section .card_area .card.delay-3 {
  transition-delay: 0.1s;
}
.highlight_section .card_area .card h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 75px;
  line-height: 65px;
}
@media (max-width: 991px) {
  .highlight_section .card_area .card h3 {
    font-size: 24px;
  }
}
.highlight_section .card_area .card .counting-number span {
  font-size: 80px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  line-height: 106px;
}
@media (max-width: 991px) {
  .highlight_section .card_area .card .counting-number span {
    font-size: 65px;
    line-height: 86px;
  }
}
.highlight_section .card_area .card p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  margin-top: -30px;
  line-height: 65px;
}
.highlight_section .card_area .card:nth-child(2) {
  background: #00afb0;
}
.highlight_section .card_area .card:nth-child(3) {
  background: #71c6a4;
}
.highlight_section .card_area .card .icon {
  background: #008387;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -39px;
  right: 14px;
  border-radius: 50%;
}

.bussiness_section {
  background: #f1f9f6;
}
.bussiness_section .plaine_image_area {
  position: relative;
  margin-bottom: 125px;
}
@media (max-width: 991px) {
  .bussiness_section .plaine_image_area {
    margin-bottom: 50px;
  }
}
.bussiness_section .plaine_image_area img {
  width: 100%;
}
@media (max-width: 991px) {
  .bussiness_section .plaine_image_area img {
    height: 290px;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.bussiness_section .plaine_image_area .graphic_img {
  position: absolute;
  bottom: -150px;
  right: 55px;
  width: auto;
  height: auto;
}
@media (max-width: 991px) {
  .bussiness_section .plaine_image_area .graphic_img {
    width: 80px;
    height: auto;
    bottom: -55px;
  }
}
.bussiness_section .content_area h2 {
  color: #00afb0;
  margin-bottom: 100px;
  line-height: 65px;
}
@media (max-width: 991px) {
  .bussiness_section .content_area h2 {
    margin-bottom: 15px;
    line-height: 36px;
  }
}
@media (min-width: 991px) {
  .bussiness_section .content_area .common_btn.mobile {
    display: none;
  }
}
.bussiness_section .content_area .review_area {
  display: grid;
  grid-template-columns: 1.2fr 3fr;
  align-items: center;
  gap: 120px;
  padding-bottom: 90px;
  border-bottom: 2px dashed #ADBCC9;
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 35px;
    gap: 20px;
  }
}
.bussiness_section .content_area .review_area .image_area h3 {
  font-size: 20px;
  font-weight: 900;
  color: #00afb0;
  margin-bottom: 35px;
  line-height: 28px;
}
@media (min-width: 991px) {
  .bussiness_section .content_area .review_area .image_area h3 {
    display: none;
  }
}
.bussiness_section .content_area .review_area .image_area img {
  width: 100%;
  margin-bottom: 15px;
}
.bussiness_section .content_area .review_area .image_area p {
  font-size: 14px;
  font-weight: 900;
  color: #03525e;
  line-height: 16px;
  margin: 0;
}
.bussiness_section .content_area .review_area .image_area p span {
  font-weight: 700;
  margin-left: 5px;
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area .text_area {
    padding-bottom: 30px;
  }
}
.bussiness_section .content_area .review_area .text_area h3 {
  font-size: 20px;
  font-weight: 900;
  color: #00afb0;
  margin-bottom: 35px;
  line-height: 27px;
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area .text_area h3 {
    display: none;
  }
}
.bussiness_section .content_area .review_area .text_area h2 {
  font-size: 45px;
  color: #0C2749;
  margin-bottom: 30px;
  line-height: 60px;
  max-width: 633px;
  font-weight: 700;
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area .text_area h2 {
    font-size: 24px;
    line-height: 36px;
    max-width: 337px;
  }
}
.bussiness_section .content_area .review_area .text_area p {
  font-size: 24px;
  color: #0C2749;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 32px;
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .bussiness_section .content_area .review_area .text_area p.person-1 {
    max-width: 683px;
  }
}
@media (min-width: 1280px) and (max-width: 1439px) {
  .bussiness_section .content_area .review_area .text_area p.person-2 {
    max-width: 630px;
  }
}
.bussiness_section .content_area .review_area .text_area p span {
  font-style: italic;
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area .text_area p {
    font-size: 18px;
    margin-bottom: 0;
    line-height: 25px;
    max-width: 311px;
  }
}
.bussiness_section .content_area .review_area:last-child {
  padding-top: 85px;
  border-bottom: none;
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area:last-child {
    padding-top: 40px;
  }
}
@media (max-width: 991px) {
  .bussiness_section .content_area .review_area .common_btn {
    display: none;
  }
}

.carousel_section {
  padding-top: 130px;
  padding-bottom: 50px;
}
@media (max-width: 991px) {
  .carousel_section {
    padding-top: 50px;
  }
}
.carousel_section .header {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .carousel_section .header {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 22px;
  }
}
.carousel_section .header h2 {
  margin-bottom: 20px;
  color: #00afb0;
  line-height: 65px;
}
@media (max-width: 991px) {
  .carousel_section .header h2 {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 35px;
    text-align: center;
    line-height: 32px;
  }
}
.carousel_section .header h3 {
  font-size: 45px;
  font-weight: 900;
  color: #0c4c86;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  line-height: 55px;
}
.carousel_section .header h3 span {
  color: #008387;
}
@media (max-width: 991px) {
  .carousel_section .header h3 {
    font-size: 23px;
    width: 100%;
    line-height: 28px;
  }
}
.carousel_section .carousel_area {
  position: relative;
}
@media (max-width: 991px) {
  .carousel_section .carousel_area {
    padding: 0 12px;
  }
}
.carousel_section .carousel_area .owl-carousel .item {
  position: relative;
}
.carousel_section .carousel_area .owl-carousel .item .carousel_img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991px) {
  .carousel_section .carousel_area .owl-carousel .item .carousel_img {
    position: absolute;
    width: calc(100% - 40px);
    height: 300px;
    left: 20px;
    top: -100px;
  }
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area {
  position: absolute;
  background: #2ca7bc;
  padding: 30px 20px;
  width: 315px;
  top: 0;
  right: 140px;
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area.teaxt_area .common_btn {
  background: #fff;
  color: #2fa7bc;
}


@media (max-width: 991px) {
  .carousel_section .carousel_area .owl-carousel .item .teaxt_area {
    position: static;
    width: 100%;
    padding-top: 250px;
    margin-top: 100px;
    min-height: 610px;
  }
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area h4 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  border-bottom: 2px dashed #fff;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area h5 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area p {
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area.teaxt_area_second {
  background: #0c4c86;
}
.carousel_section .carousel_area .owl-carousel .item .teaxt_area.teaxt_area_second .common_btn {
  background: #fff;
  color: #2fa7bc;
}


.carousel_section .carousel_area .owl-carousel .item .teaxt_area.teaxt_area_third {
  background: #71c6a4;
}
.carousel_section .carousel_area .owl-carousel .item .common_btn img {
  width: auto;
}
.carousel_section .carousel_area .graphic_img {
  position: absolute;
  top: -75px;
  left: 140px;
  width: auto;
  z-index: 123;
}
@media (max-width: 991px) {
  .carousel_section .carousel_area .graphic_img {
    display: none;
  }
}
.carousel_section .carousel_area .owl-dots {
  display: grid;
  grid-auto-columns: minmax(0, 1fr);
  grid-auto-flow: column;
  margin-top: 50px;
}
@media (min-width: 991px) {
  .carousel_section .carousel_area .owl-dots {
    padding: 0 170px;
  }
}
.carousel_section .carousel_area .owl-dots .owl-dot {
  height: 5px;
  background: rgba(12, 39, 73, 0.2);
  transition: all 0.3s ease;
}
.carousel_section .carousel_area .owl-dots .owl-dot.active {
  background: #2ca7bc;
}

.environmental_section {
  background: url("../images/map_bg.jpg");
  background: #f1f9f6;
  padding: 110px 0;
}
@media (max-width: 991px) {
  .environmental_section {
    padding: 50px 0;
  }
}
.environmental_section .environmental {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
@media (max-width: 991px) {
  .environmental_section .environmental {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
.environmental_section .environmental .text_area h2 {
  color: #00afb0;
  margin-bottom: 25px;
  line-height: 54px;
}
@media (max-width: 991px) {
  .environmental_section .environmental .text_area h2 {
    line-height: 36px;
  }
}
.environmental_section .environmental .text_area p {
  font-size: 20px;
  font-weight: 400;
  color: #0C2749;
  margin-bottom: 35px;
  width: 90%;
  line-height: 28px;
}
@media (max-width: 991px) {
  .environmental_section .environmental .text_area p {
    font-size: 18px;
    font-weight: 400;
    width: 100%;
    line-height: 24px;
  }
}
.environmental_section .environmental .text_area .font_weight_para {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .environmental_section .environmental .text_area .font_weight_para {
    font-size: 18px;
    line-height: 24px;
  }
}
.environmental_section .environmental .image_area {
  position: relative;
}
@media (min-width: 992px) {
  .environmental_section .environmental .image_area {
    padding-bottom: 50px;
  }
}
.environmental_section .environmental .image_area .image-content-wrapper {
  position: relative;
}
.environmental_section .environmental .image_area .image-content-wrapper:after {
  position: absolute;
  content: "";
 /*background-image: url("../images/environmental_graphic.png");*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 153px;
  height: 152px;
  right: 52px;
  bottom: -94px;
}
@media (max-width: 991px) {
  .environmental_section .environmental .image_area .image-content-wrapper:after {
    display: none;
  }
}
.environmental_section .environmental .image_area img {
  width: 100%;
  height: auto;
}
.environmental_section .environmental .image_area .graphic_img {
  position: absolute;
  bottom: -75px;
  right: 50px;
  width: auto;
}
@media (min-width: 992px) {
  .environmental_section .environmental .image_area .graphic_img {
    display: none;
  }
}
@media (max-width: 991px) {
  .environmental_section .environmental .image_area .graphic_img {
    width: 80px;
    height: auto;
    bottom: -35px;
  }
}

footer {
  background: url("../images/footer_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
}
footer .footer_section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 991px) {
  footer .footer_section {
    flex-direction: column;
    gap: 20px;
  }
}
footer .footer_section .text_section h2 {
  color: #fff;
}
footer .footer_section .address_section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  footer .footer_section .address_section h3 {
    font-size: 18px;
  }
}
footer .footer_section .address_section p {
  font-size: 24px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 2px;
}
@media (max-width: 991px) {
  footer .footer_section .address_section p {
    font-size: 18px;
  }
}
footer .footer_section .contact_section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer_section .contact_section a {
  text-decoration: none;
  color: #fff;
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}
footer .footer_section .contact_section a span {
  font-weight: 700;
}

.map_section {
 background: url("../images/map_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 125px 0;
  background-color: #008387;
}
@media (max-width: 991px) {
  .map_section {
    padding: 50px 0;
  }
}
.map_section .map_section_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .map_section .map_section_content {
    grid-template-columns: 1fr;
  }
}
.map_section .map_section_content .text_area {
  color: #fff;
}
.map_section .map_section_content .text_area h2 {
  margin-bottom: 10px;
  width: 100%;
  max-width: 545px;
  line-height: 60px;
}
@media (max-width: 991px) {
  .map_section .map_section_content .text_area h2 {
    width: 100%;
    font-size: 28px;
    line-height: 36px;
    max-width: 306px;
  }
}
.map_section .map_section_content .text_area .number_area {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  margin-right: 45px;
    margin-top: 45px;
  margin-bottom: 45px;
}
@media (max-width: 991px) {
  .map_section .map_section_content .text_area .number_area {
    flex-direction: column;
    gap: 30px;
  }
}
.map_section .map_section_content .text_area .number_area .count {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.map_section .map_section_content .text_area .number_area .count .counting-number span {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  line-height: 80px;
}
@media (max-width: 991px) {
  .map_section .map_section_content .text_area .number_area .count .counting-number span {
    font-size: 54px;
    font-weight: 900;
    line-height: 73px;
  }
}
.map_section .map_section_content .text_area .number_area .count p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
  line-height: 27px;
}
@media (max-width: 991px) {
  .map_section .map_section_content .text_area .number_area .count p {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .map_section .map_section_content .hfa-loanmap-container .hfa-loanmap-svg-container.hfa-display-only-desktop {
    display: none;
  }
}
.map_section .map_section_content .hfa-loanmap-container .hfa-map-svg-container.hfa-display-only-mobile-tab {
  padding-top: 50px;
}
.map_section .map_section_content .hfa-loanmap-container .hfa-map-svg-container.hfa-display-only-mobile-tab img {
  width: 100%;
}
@media (min-width: 991px) {
  .map_section .map_section_content .hfa-loanmap-container .hfa-map-svg-container.hfa-display-only-mobile-tab {
    display: none;
  }
}

#donegal-2 text,
#sligo-2 text,
#leitrim-2 text,
#roscommon-2 text {
  cursor: default !important;
}

.hfa-loanmap-container .hfa-loanmap-svg-container svg text {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #dublin-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #carlow-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #wexford-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #kilkenny-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #laois-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #offaly-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #kildare-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #westmeath-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #meath-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #louth-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #longford-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #waterford-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #cork-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #kerry-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #limerick-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #clare-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #tipperary-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #mayo-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #galway-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #cavan-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #sligo-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #donegal-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #monaghan-2,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #wicklow-2 {
  display: none;
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #dublin-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #carlow-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #wexford-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #kilkenny-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #laois-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #offaly-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #kildare-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #westmeath-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #louth-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #longford-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #waterford-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #cork-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #kerry-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #limerick-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #clare-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #roscommon-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #sligo-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #galway-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #cavan-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #monaghan-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #donegal-2:hover,
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-palces #wicklow-2:hover {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kerry {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kerry:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kerry:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kerry:hover ~ #hfa-palces #kerry-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cork {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cork:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cork:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cork:hover ~ #hfa-palces #cork-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-waterford {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-waterford:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-waterford:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-waterford:hover ~ #hfa-palces #waterford-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kilkenny {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kilkenny:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kilkenny:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kilkenny:hover ~ #hfa-palces #kilkenny-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-carlow {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-carlow:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-carlow:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-carlow:hover ~ #hfa-palces #carlow-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wexford {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wexford:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wexford:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wexford:hover ~ #hfa-palces #wexford-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-laois {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-laois:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-laois:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-laois:hover ~ #hfa-palces #laois-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wicklow {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wicklow:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wicklow:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-wicklow:hover ~ #hfa-palces #wicklow-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kildare {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kildare:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kildare:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-kildare:hover ~ #hfa-palces #kildare-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-offaly {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-offaly:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-offaly:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-offaly:hover ~ #hfa-palces #offaly-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-westmeath {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-westmeath:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-westmeath:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-westmeath:hover ~ #hfa-palces #westmeath-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-dublin {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-dublin:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-dublin:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-dublin:hover ~ #hfa-palces #dublin-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cavan {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cavan:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cavan:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-cavan:hover ~ #hfa-palces #cavan-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-louth {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-louth:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-louth:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-louth:hover ~ #hfa-palces #louth-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-monaghan {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-monaghan:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-monaghan:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-monaghan:hover ~ #hfa-palces #monaghan-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-galway {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-galway:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-galway:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-galway:hover ~ #hfa-palces #galway-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-clare {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-clare:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-clare:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-clare:hover ~ #hfa-palces #clare-2 {
  display: block;
  animation: fadein 1s;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-limerick {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-limerick:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-limerick:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-limerick:hover ~ #hfa-palces #limerick-2 {
  display: block;
  animation: fadein 1s;
}



.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-tipperary {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-tipperary:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-tipperary:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-tipperary:hover ~ #hfa-palces #tipperary-2 {
  display: block;
  animation: fadein 1s;
}

.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-meath {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-meath:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-meath:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-meath:hover ~ #hfa-palces #meath-2 {
  display: block;
  animation: fadein 1s;
}



.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-mayo {
  cursor: pointer;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-mayo:hover path {
  fill: #d2d7dd;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-mayo:hover text {
  fill: #FFFFFF;
}
.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-mayo:hover ~ #hfa-palces #mayo-2 {
  display: block;
  animation: fadein 1s;
}




.hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-sligo text, .hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-donegal text, .hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-leitrim text, .hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-roscommon text, .hfa-loanmap-container .hfa-loanmap-svg-container svg #hfa-map-assigned #hfa-map-longford text {
  display: none;
}



.hfa-map-svg-container {
  text-align: center;
}

body {
  font-size: 16px;
  margin: 0;
  font-family: "Lato", sans-serif;
}

button {
  cursor: pointer;
}

* {
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1900px) {
  .container {
    max-width: 1600px;
  }
}

h1 {
  font-size: 65px;
  font-weight: 400;
}
@media (max-width: 991px) {
  h1 {
    font-size: 28px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 58px;
}
@media (max-width: 991px) {
  h2 {
    font-size: 28px;
    line-height: normal;
  }
}

p {
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 991px) {
  p {
    font-size: 18px;
  }
}/*# sourceMappingURL=main.css.map */