/** CrimsonLogic UX Practice R2-S2 Foundation **/
/** Project Specific CSS **/
/** Start of Google Fonts Declarations for:
    Open Sans: 300, 300italic, regular, italic, 600, 600italic, 700, 700italic, 800, 800italic
    Open Sans Condensed: 300, 300italic, 700 **/
/* open-sans-300 - latin */
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Light.woff2") format("woff2"), url("../fonts/google/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Regular.woff2") format("woff2"), url("../fonts/google/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Medium.woff2") format("woff2"), url(".../fonts/google/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto/Roboto-Bold.woff2") format("woff2"), url("../fonts/google/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/** End of Google Fonts Declarations **/
/** Main Containers Styling **/ :root {
  --primary: #008751;
 --primary2:#16a34a;
  --primary-light: rgb(34 197 94 / 10%);
  --primary-dark: rgb(255 255 255 / 10%);
  --secondary: #22c55e;
  --secondary-light: #86efac;
  --secondary-lighter: #f0fdf4;
  --red-bg: #ef4444;
  --transparent-border: rgb(255 255 255 / 10%);
  --tertiary: #c4ad89;
  --supp1: #d1cfcf;
  --supp1-light: #faf7f7;
  --supp2: #0e1524;
  --info: #283c61;
  --info-light: #eeeff2;
  --success: #01b99d;
  --successlight: #e6f8f5;
  --success-dark: #016f5e;
  --warning: #ffc107;
  --warning-dark: #8c5400;
  --warning-light: #fdf6e6;
  --error: #b00020;
  --error-light: #f8d7da;
  --error-dark: #7b0016;
  --example: #a57cb8;
  --example-light: #eee9f3;
  --example-dark: #4c2c92;
  /*Extended colours*/
  --red: #dc2626;
  --black: #000000;
  --dark: rgb(26 26 26);
  --grey-darkest: #51565f;
  --grey-dark: #939599;
  --grey: #d4d6d9;
  --grey-light: #d1d5db;
  --grey-lighter: #f7f7f9;
   --grey-lightest: #f9fafb;
  --white: #ffffff;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1300px;
}
  
/** Main Containers Styling **/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html, body {
    height: 100%;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
  right: 0;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  font-weight: normal;
  text-align: center;
  background: #eff6f2;
  background-attachment: fixed;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.wrapper {
    position: relative;
    min-width: 320px;
    outline: none;
    min-height: 100%;
}
.container-fluid {
  position: static;
  min-width: 320px;
  max-width: 1460px !important; /* This controls the maximum display width of the elements. If you need full width, use the max-content-width keyword below or just set it to 100% */
  padding: 0 30px;
  margin: auto;
}
.max-content-width { /* For the body content */
  max-width: 100% !important;
}
/** This is to prevent Bootstrap modal from shifting the page when it is loaded **/
.modal-open {
  overflow: auto !important;
  padding-right: 0px !important;
}
/** End of Main Containers Styling **/
/** Button Styling **/
/** If there are no Buttons, please delete the whole block below */
.btn {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  padding: 0.5rem 1rem;
  text-decoration: none !important;
}
.btn.focus, .btn:focus {
  box-shadow: none;
}
.btn:hover {
  background: var(--red-bg);
  color: var(--white);
  border-color: transparent
}
/** Delete till here if there are no Buttons **/
/** Navigation Styling **/
/** If there is no Navigation, please delete the whole block below */


.navbar-container {
    background: var(--white);
}
.navbar {
  padding: 0.5rem 1rem;
}
.navbar a:hover, .navbar a:focus {
  text-decoration: none;
}
.navbar-container, .navbar-brand, .navbar-collapse {
  position: static;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-brand img {
  height: 60px;
}
.navbar-collapse {
  justify-content: space-between;
  white-space: nowrap;
}
.wrapper.sticky .navbar-container {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1020;
}
.navbar-nav .dropdown-menu {
  display: block;
  max-height: 0;
  margin-top: 0.125rem;
  padding: 0;
  border: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.navbar-nav .dropdown-menu.show {
  max-height: 100vh;
  -webkit-transition: all 0.7s ease-in;
  -moz-transition: all 0.7s ease-in;
  -ms-transition: all 0.7s ease-in;
  -o-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}
.navbar-toggler {
    position: absolute;
    top: 1.75rem;
    right: 1.25rem;
    border: 0;
}
@media only screen and (max-width: 991.98px) {
  /* 250px is the minimum width for the mobile menu slideout */
  body.nav-open {
    right: max(calc(100vw - 100px), 250px);
    overflow: hidden;
  }
  .wrapper .navbar-container.nav-open {
    left: min(calc(100px - 100vw), -250px);
  }
  .navbar-collapse {
    position: fixed;
    top: 0;
    width: max(calc(100vw - 100px), 250px);
    height: 100%;
    right: min(calc(100px - 100vw), -250px);
    margin: 0 !important;
    background-color: var(--primary);
    padding: 15px;
    z-index: -10;
  }
  .navbar-collapse.collapse:not(.show) {
    display: block;
  }
    .navbar-collapse.nav-open {
        right: 0;
        overflow: auto;
    }
  .dropdown-menu {
    text-align: center;
  }
}
/** Delete till here if there is no Navigation **/
/** Main Content Styling **/
.main-content {
    position: relative;
    margin: 0 auto;
    min-height: 500px;
}
a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: underline;
}
/** End of Main Content Styling **/
/** Searchable FAQs Styling **/
/** If there are no Searchable FAQs, please delete the whole block below */
.faq .faq-search {
    width: 100%;
    height: 60px;
    display: block;
    padding: 0 20px;
    margin-bottom: 1.5rem;
    border: #d0d0d0 1px solid;
    border-radius: 10px;
}
.faq .faq-search::-webkit-input-placeholder {
  color: #999 !important;
	font-weight: 400;
}
.faq .faq-search::-moz-placeholder {
  color: #999 !important;
	font-weight: 400;
}
.faq .faq-search:-ms-input-placeholder {
  color: #999 !important;
	font-weight: 400;
}
.faq .faq-search:-moz-placeholder {
  color: #999 !important;
	font-weight: 400;
}

.faq .faq-search:focus {
  outline-width: 0;
  border: var(--secondary) 2px solid;
}
.faq .highlight {
    color: #fff;
    background-color: var(--secondary);
}

.faq .faq-list {
    list-style-type: none;
    margin: 0 1rem;
    padding: 0;
}
.faq .faq-list > li {
    position: relative;
    display: block;
    text-align: left;
    margin: 0px 0 1rem 0;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.faq .faq-list > li h2 {
    margin: 0;
}

.faq .faq-list > li.is-hidden {
  display: none;
}
.faq .faq-list > li h2 a {
  word-wrap: normal;
  padding-right: 30px;
  font-size: 1rem;
  font-weight: 500;
  color: #000;
	border-radius: 10px;
	text-decoration: none;
	    padding: 1.25rem; 
	background: #f9fafb;
	display: block;
	padding-right: 2rem;
}
.faq .faq-list > li h2 a:hover {
  color: var(--primary);
  text-decoration: none;
}

.faq .faq-list > li.is-active h2 a {
  color:var(--primary);
	border-radius: 10px 10px 0 0;
}
.faq .faq-list > li h2 a:after {
    font-family: "Font Awesome 6 Pro";
    position: absolute;
    top: 1.25rem;
    right: 1rem;
    color: #888;
    font-weight: 400;
    font-size: 1rem;
    border-radius: 0;
    content: "\f054";
    padding: 0 3px;
    line-height: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.faq .faq-list > li h2 a:hover:after {
  color: var(--primary);
}
.faq .faq-list > li.is-active h2 a:after {
  content: "\f078";
}
.faq .faq-list > li > div {
  display: none;
  max-height: 0;
  overflow: hidden;
	border-top: 1px solid #e5e7eb;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
	color: #555;
	font-size: 0.95rem;
	
}
/*
Note that max-height need to be upadated if there is a possibility that the content is > 1024px tall, especially in mobile mode.
Otherwise, you can also set overflow above to auto but the scroll bar may flicker for a bit during transition.
*/
.faq .faq-list > li.is-active > div, .faq .faq-list > li:target > div {
    max-height: 1024px;
    padding: 1rem;
	display: block;
}

.faq .faq-list > li.is-active > div p:last-child, .faq .faq-list > li:target > div p:last-child {
    margin: 0;
}
.faq .hidden-keywords {
  display: none;
}
.faq__notfound {
  font-size: 1rem;
  font-style: italic;
  display: none;
	color: #666;
}
.faq__notfound.is-visible {
  display: block;
}
/** Delete till here if there are no Searchable FAQs **/
/** In-Page Sitemap Styling **/
/** If there is no In-Page Sitemap, please delete the whole block below */
.sitemap {
  display: block;
  text-align: left;
  background: #8f8f8f;
  color: #fff;
}
.sitemap .row {
  margin: 0;
}
.sitemap a {
  overflow: hidden;
}
.sitemap h1 {
  display: inline;
  margin: 5px 0;
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
}
.sitemap h2 {
  display: inline;
  margin: 5px 0;
  color: #fff;
  font-size: 1em;
  font-weight: 300;
}
.sitemap h3 {
  display: inline;
  margin: 5px 0;
  color: #fff;
  font-size: 0.8em;
  font-weight: 300;
}
.sitemap a::after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
  font-size: 0.75em;
  content: "\f0da";
  color: #afafaf;
  padding-left: 5px;
}
.sitemap a:hover {
  color: #fff;
}
.sitemap a:hover::after {
  display: inline-block;
  color: #fff;
}
.sitemap-title {
  padding: 10px 15px 0;
}
.sitemap-content {
  padding: 10px 0;
}
@media only screen and (max-width: 575.98px) {
  .sitemap {
    text-align: center;
    padding-bottom: 10px;
  }
}
/** Delete till here if there is no In-Page Sitemap **/
/** Footer Styling **/
/** If there is no Footer, please delete the whole block below **/
.footer {
  display: block;
  padding: 1rem;
  font-size: 0.8em;
  font-weight: 300;
  letter-spacing: 4px;
  color: #fff;
  background-color: #c41c23;
  text-align: left;
  margin-bottom: -22px;
}
.footer-link, .footer-link:hover, .footer-link:active, .footer-link:visited {
  color: inherit;
}
@media only screen and (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
}
/** Delete till here if there is no Footer **/
/** Social Media Links Styling **/
/** If there are no Social Media Links, please delete the whole block below **/
.social-link-block {
  display: flex;
  gap: 10px;
  margin-top: 2rem;
}
.social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background-color: var(--dark);
  font-size: 1.25rem;
  padding-top: 3px;
  padding-left: 3px;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: var(--white)
}
.social-link:hover {
  background-color: var(--grey-darkest);
  color: var(--white);
  text-decoration: none;
}
@media only screen and (max-width: 767.98px) {
  .social-link-block {
    float: none;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
  }
}
/** Delete till here if there are no Social Media Links **/
.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
  min-width: 180px;
  border: 1px solid var(--transparent-border) !important;
}
.btn-primary {
  background: var(--primary);
  border-color: transparent;
}
.btn-outline-primary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}
.btn-secondary {
  background: var(--secondary);
  border: transparent;
}
.btn-primary-dark {
  background: var(--primary-dark);
  border-color: transparent;
  color: #fff;
}
.btn-outline-red {
  border: 1px solid var(--red);
  color: var(--red);
}
.navbar-right {
  margin-left: 2rem;
}
.navbar-right .btn {
  margin-left: 0.5rem;
}

.navbar-right .btn i{
	 -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.navbar-right .btn:hover i {
    transform: rotate(-30deg);
}
.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 1rem;
  color: var(--grey-darkest);
}
.hero-section {
    background-image: url(../images/hero-bg.jpg);
    background-size: cover;
    min-height: 700px;
    align-items: center;
    display: flex;
    align-content: center;
    position: relative;
    background-position: left center;
    overflow: hidden;
}
.hero-section:before {
  background-image: linear-gradient(
    to right,
    rgba(0, 66, 37, 0.9) 0%,    /* start at 60% opacity */
    rgba(0, 66, 37, 0.7) 70%,   /* keep same opacity until 60% width */
    rgba(0, 66, 37, 0) 100%     /* fade to transparent by 100% */
  );
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 9;
}
.hero-content p {
  font-size: 1.5rem;
  color: var(--grey-light);
}
.hero-section h1 {
  font-size: 4.5rem;
  font-weight: 700;
}

/** Animated Waves Styling **/
.waves-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.wave-animated {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  -webkit-animation: slide 8s linear infinite;
  -moz-animation: slide 8s linear infinite;
  -o-animation: slide 8s linear infinite;
  animation: slide 8s linear infinite;
	opacity: 0.6;
}


.wave-animated2{
	-webkit-animation: slide 20s linear infinite;
  -moz-animation: slide 20s linear infinite;
  -o-animation: slide 20s linear infinite;
  animation: slide 20s linear infinite;
  left: -100px;   /* horizontal offset */
  height: calc(100% + 15px);
  width: calc(200% + 200px);
	opacity: 0.4;
}

@-webkit-keyframes slide {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@-moz-keyframes slide {
  0% { -moz-transform: translateX(0); transform: translateX(0); }
  100% { -moz-transform: translateX(-50%); transform: translateX(-50%); }
}

@-o-keyframes slide {
  0% { -o-transform: translateX(0); transform: translateX(0); }
  100% { -o-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.stats-container {
  display: flex;
  gap: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  will-change: auto;
  transform: translateZ(0);
  backface-visibility: hidden;
  width: fit-content;
}
.stats-container .h5 {
  font-size: 2rem;
  color: var(--secondary);
  text-shadow: 1px 1px 1px #000;
}
.stats-container .h5 .currency {
  margin-right: 5px;
}
.stats {
  min-width: 150px;
  text-align: center;
}
.stats .small {
  color: var(--grey-light);
  font-weight: 400;
}
.badge {
  font-weight: 400;
  padding: 0.75rem 1rem;
  border-radius: 36px;
  font-size: 0.85rem;
}
h2 small {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--grey-darkest);
  margin-top: 1.25rem;
}
.hero-section .badge {
  background: var(--primary-light);
  border: 1px solid var(--transparent-border);
  color: var(--secondary);
}
.text-secondary-light {
  color: var(--secondary-light);
  background: linear-gradient(to right, #4ade80, #86efac);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hex-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0; /* vertical gap between rows */
  justify-content: flex-end;
}
.hex-row {
  display: flex;
  gap: 0; /* horizontal gap between hexes */
  justify-content: flex-end;
}
.bottom-row {
  margin-top: -72px;
  justify-content: center;
}
.hex {
  width: 320px;
  height: 320px;
  background: var(--grey-lighter);
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin: 0 -18px;
}
.hex:hover {
  transform: scale(1.05);
  background: var(--secondary-lighter)
}
.hex-inner {
  text-align: center;
  padding: 2.5rem;
}
.hex-inner h4 {
  font-size: 1.25rem;
}
.hex:hover .hex-inner h4 {
  color: var(--primary);
}
.hex-inner span {
  font-size: 2.25rem;
  display: block;
  margin-bottom: 0.5rem;
}
.fa-duotone, .fad {
  font-family: "Font Awesome 6 Duotone" !important;
  color: var(--primary);
}
.fa-duotone:after {
  color: #cc5a49;
  opacity: 1;
}
.facts-section {
  background: #f9f0d1 url(../images/facts-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.latest-news small {
    color: var(--primary) !important;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.card-container .card {
  flex: 1;
  border: none;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.card-container .card:hover, .card-multi:hover {
  transform: scale(1.05);
  color: var(--primary)
}
.card-multi {
  display: flex;
  flex: unset;
  width: auto;
  min-width: 400px;
 background: rgb(255 255 255 / 95%);
  border-radius: 10px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
	overflow: hidden;
	position: relative;
}
.card-multi .card {
  box-shadow: none;
  background: none;
  transform: none !important;
}
.card-icon {
  font-size: 2.25rem;
  min-height: 60px;
}
.card-icon .fa-user-group {
  font-size: 2rem;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container a.card {
    text-decoration: none;
    color: var(--grey-darkest);
    position: relative;
    overflow: hidden;
    min-height: 100%;
    height: 100%;
}
.badge-primary {
  background: var(--primary-light)!important;
  color: var(--primary)!important;
  padding: 0.5rem 1rem;
}
.card-container a.card h6 {
  color: var(--black);
}
.card-container a.card:hover h6 {
  color: var(--primary);
}
.card-container .card:before, .card-container .card-multi:before {
  background-image: linear-gradient(to right, #86efac, #fca5a5);
  content: "";
  position: absolute;
  top: 0;
  height: 5px;
  width: 100%;
}


.card-container .card-multi .card:before {
	display: none;
}
.card-container a.card:hover:after {
  content: "\f061";
  position: absolute;
  right: 1rem;
  font-family: 'Font Awesome 6 Pro';
  bottom: 1rem;
}
.card-container a.card .card-body {
  padding: 1.5rem;
  padding-bottom: 3rem;
}
.latest-news  .card-body {
  padding-bottom: 1.5rem !important;

}
.icon-gradient {
  width: 48px;
  height: auto;
}
.facts-section .icon-gradient {
  width: 40px;
  height: auto;
}
.facts-section .badge {
    background: var(--primary);
    line-height: normal;
    padding: 5px 16px;
}
 .card-multi .facts-card {
    background: none;
	 border-radius: 0;
}
.facts-card{
    background: rgb(255 255 255 / 70%);
	overflow: hidden;
}
h2 {
  font-weight: 600;
}




footer, footer a {
  color: var(--grey-light);
}
.bg-dark {
  background: var(--black) !important;
}
.footer-logo-container {
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  align-items: center;
}
.footer-logo-container img {
  height: 34px;
}
.footer-logo-container img:first-child {
  padding-right: 30px;
  border-right: 1px solid #ccc;
}
.footer-logo-container img:last-child {
  height: 48px;
}
.footer-logo-container h5 small {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 0.5rem;
}
.list-unstyled li a {
  font-size: 0.9rem;
  padding: 0.5rem 0;
  display: block;
}
.list-unstyled li a:hover, .copyright a:hover {
  color: var(--white);
}
footer h6, footer h5 {
  color: var(--white);
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.20);
  padding-top: 1.25rem;
  font-size: 0.9rem;
}
.address-container {
  font-size: 0.9rem;
}
.address-container li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 1rem !important;
}
.address-container li i {
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  color: var(--secondary);
  top: 5px;
}

/** Social Media Icons Additional Styling **/
.social-icons-wrapper {
  display: flex;
  gap: 15px;
  margin-top: 1rem;
}

.social-icon-link {
  color: var(--grey-light);
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.social-icon-link:hover {
  color: #28a745;
  text-decoration: none;
}

.social-icon-link i {
  font-size: 1.2em;
}


.social-icon-link img {
    width: 20px;
    vertical-align: middle;
    margin-top: -4px;
}

.social-icon-link img:hover {
    fill: rgb(0 159 59 / 50%);
    filter: invert(54%) sepia(98%) saturate(512%) hue-rotate(90deg);
}




.hero-section-subpage {
    min-height: 200px;
    text-align: left;
    color: var(--white);
}

.hero-section-subpage h3 {
    font-size: 2.25rem;
}
.hero-section-subpage h3 small {
    font-weight: 400;
    font-size: 1.25rem;
    margin-top: 0.75rem;
    color: rgb(255 255 255 / 70%);
}


.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
	pointer-events: none;
}

.floating-icons .icon {
  position: absolute;
  opacity: 0.5;
  color: var(--grey-light);
  transition: top 15s linear, left 15s linear; /* smooth movement */
}


.about-content, .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-content .about-left, .contact-content .contact-left {
    flex: 1;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
}


.about-content .about-left ul {
    list-style: none;
    margin: 1.75rem 0;
    padding: 0;
}

.about-content .about-left ul li {
    padding: 0.5rem 0;
    padding-left: 30px;
    position: relative;
}

.about-content .about-left ul li:before {
    content: "0";
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-family: 'Font Awesome 6 Pro';
    content: "\f058";
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 300;
}


.about-right, .contact-right {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.contact-right {background: none; padding: 0; overflow: hidden;}

.about-right .bg-light {
    padding: 1.25rem;
    background: var(--grey-lightest)!important;
    border-radius: 10px;
	  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.about-right .bg-light:hover {
	color: var(--primary);
    background: var(--grey-lighter)!important;
}

.about-right .bg-light h4 {
    font-size: 1.15rem;
    font-weight: 500;
}

.about-right .bg-light h4 span {
    font-size: 1.6rem;
    min-width: 40px;
    display: inline-block;
    vertical-align: middle;
    color: var(--primary);
}

.about-right .bg-light p {
    margin: 0;
    color: var(--grey-darkest);
}


.address-list span {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 10px;
    color: var(--primary);
    left: 0;
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
}


.address-list strong {
    display: block;
    font-weight: 500;
}

.address-list p {
    padding-left: 70px;
    position: relative;
}

.contact-content h3 {
    font-size: 1.5rem;
}

.contact-content .bg-light {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


.login-page {
  top: 0;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
	background-position: center;
}

.login-page:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
  to bottom right,
  rgba(0, 66, 37, 0.9),  
  rgba(0, 66, 37, 0.8),  
  transparent             
);
}


.login-page .navbar-container {
    background: none;
}


.login-container .navbar-brand {
    margin: auto;
    padding: 0.75rem 2.5rem;
    background: var(--white);
    border-radius: 0 0 15px 15px;
    border-bottom: 4px solid var(--secondary);
    position: relative;
    z-index: 9;
    display: inline-block;
    min-width: 460px;
}
.login-container a{
	-webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
	display: inline-block;
}

.login-container a:hover{
    transform: scale(1.05);
	color: var(--secondary-light);
	text-decoration: none;
}

.login-container .btn:hover {
    transform: scale(1.05);
}
.login-page .navbar-container .navbar.navbar-expand-lg {
    padding-top: 0;
}

.login-page footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    align-content: center;
	background: rgba(0,0,0,0.40)
}
.footer-small {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #ddd;
}
.login-container {
    padding-bottom: 111px;
    height: 100vh;
    min-height: 750px;
}


.login-box {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    max-width: 460px;
    margin: auto;
    margin-top: 40px;
    border: 1px solid rgb(255 255 255 / 20%);
    background-color: rgb(255 255 255 / 10%);
    border-top: 2px solid var(--secondary);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    padding: 2rem;
    border-radius: 10px;
	color: rgb(255 255 255 / 80%);
    font-size: 0.95rem;
}
.login-box h3{color: var(--white); font-size: 1.5rem; font-weight: 500;}

.login-box h3 small {
    font-size: 1rem;
    display: block;
    font-weight: 400;
    color: rgb(255 255 255 / 80%);
    margin-top: 0.5rem;
}

.login-box .form-group {
    text-align: left;
    margin: 1rem 0;
}

.login-box .form-group .col-form-label {
    color: rgb(255 255 255 / 90%);
    font-size: 0.9rem;
}

.input-field {
    position: relative;
}


.input-field i {
    position: absolute;
    left: 0px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    width: 40px;
    justify-content: center;
    color: rgb(255 255 255 / 50%);
}

.login-box .form-group .input-field .form-control {
    height: 50px;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 20%);
    color: var(--white);
	box-shadow: none;
	border-radius: 10px;
		  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
	padding-left: 40px;
}


.login-box .form-group .input-field .form-control:hover {
    height: 50px;
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 30%);
	
	
}






.login-box .form-group .input-field .form-control::-webkit-input-placeholder {
  color: rgb(255 255 255 / 30%);
	font-weight: 300;
}

/* Firefox */

.login-box .form-group .input-field .form-control::-moz-placeholder {
  color: rgb(255 255 255 / 30%);
	font-weight: 300;
}

/* IE 10–11 */

.login-box .form-group .input-field .form-control:-ms-input-placeholder {
  color: rgb(255 255 255 / 30%);
	font-weight: 300;
}

/* Old Edge */

.login-box .form-group .input-field .form-control::-ms-input-placeholder {
  color:rgb(255 255 255 / 30%);
	font-weight: 300;
}

/* Standard */

.login-box .form-group .input-field .form-control::placeholder {
  color: rgb(255 255 255 / 30%);
	font-weight: 300;
}

.login-box a {
    color: var(--secondary-light);
}

.login-box .btn-secondary {
    height: 50px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.back-to-page{
	margin-left: auto;
    position: absolute;
    right: 2rem;
    top: 2rem;
    color: rgba(255,255,255,0.70);
}



.faq-container {
    display: flex;
    flex-wrap: wrap;
    text-align: left;
}

.faq-container #faq-tab {
    width: 340px;
    position: sticky;
    top: 0;
    left: 0;
    align-self: flex-start;
    border: 1px solid #ddd;
    background: var(--white);
	padding-bottom: 10px;
	border-radius: 10px;
}


.faq-container #faq-tab h5 {
    padding: 1.25rem;
    margin: 0;
    border-bottom: 1px solid #ddd;
    font-size: 1rem;
	background: var(--secondary-lighter);
	border-radius: 10px 10px 0 0;
}

.faq-container #faq-tab h5 i {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 0.5rem;
    vertical-align: middle;
    display: inline-block;
    margin-top: -2px;
}



.faq-container #faq-tab .list-group-item {
    border-radius: 8px;
	padding: 0.75rem;
    margin: 0 10px;
    width: calc(100% - 20px);
    margin-top: 10px;
    position: relative;
    padding-left: 50px;
	border: none;
	 border-left: 3px solid transparent;
}

.faq-container #faq-tab .list-group-item.active {
    background: var(--primary-light);
    color: var(--primary);
    border-left: 3px solid var(--secondary);
}

.faq-container #faq-tab  .list-group-item i {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.tab-content.faq {flex: 1 1 0;padding-left: 2rem;}
.tab-content.faq .tab-pane {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #ddd;
}

.tab-content.faq .tab-pane h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
    padding: 1.5rem;
    border-bottom: 1px solid #ddd;
    margin-bottom: 1.5rem;
	position: relative;
	padding-left: 4rem;
}

.tab-content.faq .tab-pane h3 small{display: block; color: var(--primary); font-weight: 400; color: #666; font-size: 1rem;}

.tab-content.faq .tab-pane h3 i {
    position: absolute;
    left: 1rem;
    top: 30px;
    font-size: 2rem;
    color: var(--primary);
	
}

.tab-content.faq .input-field .faq-search{padding-left: 40px;}
.tab-content.faq .input-field i{color: #999;}


.faq-info {
    border: 1px solid var(--secondary-light);
    border-radius: 10px;
    padding: 1.25rem;
    background: var(--secondary-lighter);
}

.text-primary {
    color: var(--primary) !important;
}


.news-container .card-container {
    flex-wrap: wrap;
    gap: 0;
}

.news-container .card-container .card {
    width: 100%;
    flex: unset;
    text-align: left;	
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.news-container .card-container .card:hover{cursor: pointer;}


.news-container .card-container .card-body {
    padding: 1.5rem;
}

.btn-group .btn {
    margin-right: 1rem;
    border-radius: 10px !important;
    background: #fff;
    border: none;
    color: var(--grey-darkest);
    box-shadow: none !important;
}

.btn-group .btn.active, .btn-group .btn:hover {
    background: var(--primary2);
	color: var(--white);
}

.news-container .card-container .card::before {
    display: none;
}

.news-container .card-container .card:hover {
    transform: none;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
            0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.news-container .card-container .card .card-text {
    font-size: 0.95rem;
}

.icon-absolute {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    color: var(--primary);
	font-size: 1.25rem;
}

.icon-absolute .fa-arrow-right {
    transform: rotate(-30deg);
}


.card{
	    border: none;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}


.badge-warning {
    color: var(--red);
    background: #ffedd5;
    padding: 0.5rem 1rem;
}




.resources .card{
    width: 100%;
    flex: unset;
    text-align: left;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	height: 100%;
}

.resources .card:hover {
    transform: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.resources .card-title {
    font-size: 1rem;
}


.resources .card:hover .card-title{
	color: var(--primary);
}


.card.has-icon {
    padding-left: 60px;
}

.card.has-icon .card-icon {
    position: absolute;
    left: 1rem;
    width: 50px;
    min-height: unset;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    border-radius: 10px;
    top: 1.25rem;
}


.icon-primary {
    background: var(--primary-light);
    color: var(--primary);
}

.icon-warning {
color: var(--red);
    background: #ffedd5;
	
	}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
}


.btn-outline-warning {
    color: #955000;
    border: 1px solid #fed7aa;
}
.resources .card .card-text {
    font-size: 0.95rem;
    color: #666;
}


.alert-info {
    background: none;
    background-image: linear-gradient(to right, rgba(34, 197, 94, 0.1),
	rgba(34, 197, 94, 0), /* transparent fade */ rgba(249, 115, 22, 0.1) /* orange-500/10 */);
    border-radius: 10px;
    padding: 2.5rem;
    border: 1px solid rgb(187 247 208 / 50%);
}

.video-link .card-img-top {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    object-fit: cover;
    height: 180px;
}

.alert-info h4 {
    color: #333;
    font-weight: 400;
    margin-bottom: 1rem;
}

.video-link {
    margin-bottom: 0.5rem;
    position: relative;
    height: 180px;
    overflow: hidden;
}


.video-tutorials .card{
	overflow: hidden;
	height: 100%;
}

.video-tutorials .card .card-footer {
    background: none;
    border: none;
    padding: 1.25rem;
    padding-top: 0;
    font-size: 0.9rem;
    color: #666;
}
.video-link .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50px;
    height: 50px;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--grey-darkest);
    font-size: 22px;
    margin-top: -25px;
    margin-left: -25px;
}


.card:hover .video-link .card-img-top {
    transform: scale(1.10);
}

.video-tutorials .card .card-footer i {
    margin-right: 0.25rem;
}

.video-link .badge {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.badge-primary-light {
    background: #dcfce7;
    color: var(--primary);
}

.badge-warning-light {
    background: #ffedd5;
    color: #9a3412;
}

.badge-danger-light {
    color: #991b1b;
    background: #fee2e2;
}

.hero-section-subpage .hero-content {
    display: flex;
    flex-wrap: wrap;
}

.hero-section-subpage .hero-content h3 {
    width: 100%;
}

.hero-section-subpage .hero-content .back-to-page {
    position: static;
    margin: 0 0 1rem 0;
}

.hero-badge-container .badge-primary {
    background: rgb(237 249 239) !important;
    color: var(--primary) !important;
    padding: 0.5rem 1rem;
}

.news-details-container {
    display: flex;
    text-align: left;
    flex-wrap: wrap;
	color: #4b5563;
}

.news-details-left {
    width: 460px;
    position: sticky;
    top: 0;
    left: 0;
    align-self: flex-start;
    background: #eefff8;
    padding-bottom: 10px;
    border-radius: 10px;
    padding: 1.25rem;
}

.news-details-right {
    flex: 1 1 0;
    padding-left: 2rem;
}


.news-details-container ul.list-unstyled {
    color: #4b5563;
}

.news-details-container ul.list-unstyled li {
    position: relative;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
}

.news-details-container ul.list-unstyled li:before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    top: 1rem;
    left: 0;
    border-radius: 50%;
}


.news-details-container .news-details-right ul.list-unstyled li:before {
    font-family: "Font Awesome 6 Pro";
    content: "\f054";
    background: none;
    color: var(--secondary);
    height: auto;
    width: auto;
    top: 0.6rem;
    font-size: 0.9rem;
}

.news-details-container h4 {
    color: var(--black);
    font-size: 1.35rem;
}

.news-indicator {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.news-indicator .news-indicator-left {
    position: relative;
    padding-left: 30px;
    color: #4b5563;
}

.news-indicator .news-indicator-right {
    padding-right: 30px;
    position: relative;
	color: #4b5563;
}


.news-indicator .news-indicator-right:hover, .news-indicator .news-indicator-left:hover, .news-indicator .news-indicator-right:hover .text-muted, .news-indicator .news-indicator-left:hover .text-muted{
    text-decoration: none;
	color: var(--primary)!important;
}


.news-indicator .news-indicator-right strong, .news-indicator .news-indicator-left strong {
    font-weight: 500;
}
.news-indicator .news-indicator-left i {
    position: absolute;
    left: 0;
    width: 30px;
    height: 100%;
    margin-top: 0;
    display: flex;
    align-items: center;
}


.news-indicator .news-indicator-right i {
    position: absolute;
    right: 0;
    width: 30px;
    height: 100%;
    margin-top: 0;
    display: flex
;
    align-items: center;
    justify-content: flex-end;
}

.btn-light {
    background: #d7e7e1;
    border: none;
}




@media only screen and (max-width: 1199.98px) {
	
.facts-card h6 {
    white-space: nowrap;
}

    .card-container .card.facts-card {
        flex: unset;
        width: auto;
        min-width: 220px;
    }

.card-container .card-multi .facts-card {
    width: 100%;
}

.facts-section {
    background-size: cover;
}

    .card-container.facts-cards {
        justify-content: center;
    }
	
.hex {
    width: 260px;
    height: 260px;
    margin: 0 -12px;
}

.bottom-row {
    margin-top: -54px;
}

.hex-inner {
    font-size: 0.95rem;
}

.hex-inner h4 {
    font-size: 1.15rem;
}
	
	.navbar-right{margin-left: 1.5rem;}
	.navbar{padding:0.5rem 0;}
	
	.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 .75rem;
}
	
	.footer-logo-container img {
    height: 30px;
}

.footer-logo-container img:first-child {
    padding-right: 15px;
}
	
.resources .card-title {
    position: relative;
    padding-right: 130px;
}
.resources.video-tutorials .card-title {
    padding-right: 0;
}
.resources .card-title  .badge {
    position: absolute;
    right: 0;
    top: 0;
}
	
.news-indicator [class*="news-indicator-"] strong {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    .news-indicator [class*="news-indicator-"] {
        width: calc(50% - 10px);
    }
.news-indicator .news-indicator-right {
    margin-left: auto;
}
	

}


@media only screen and (max-width: 991.98px) {
		.about-content .about-left, .contact-content .contact-left, .about-right, .contact-right, .news-details-left, .news-details-right, .faq-container #faq-tab, .tab-content.faq {
    flex: unset;
    width: 100%;
}
	
	.tab-content.faq{padding-left: 0;}
	
	.news-details-left, .faq-container #faq-tab{position: static; margin-bottom: 2rem;}
	
	
	
.faq-container #faq-tab {
    display: none;
}
	
	.faq-container #faq-tab.active{
		display: block;
	}
	
.list-group-mobile {
    position: relative;
    margin-bottom: 10px;
    display: flex;
    width: 100%;
    background: var(--white);
    border-radius: 10px;
    align-items: center;
    padding: 1.1rem;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.list-group-mobile:before {
    content: "Select FAQ Topic";
}

.list-group-mobile:after {
    font-family: 'Font Awesome 6 Pro';
    content: "\f078";
    position: absolute;
    right: 1rem;
    color: var(--primary);
}
	
	.news-details-right{padding-left: 0;}
.navbar-expand-lg .navbar-nav .nav-link {
    padding: 0.75rem 0;
    color: var(--white);
}
	
	
    .d-flex.navbar-right {
        flex-wrap: wrap;
        margin-top: 2rem;
        margin-left: 0;
    }

.d-flex.navbar-right .btn {
    width: 100%;
    margin: 0.25rem 0;
}

.d-flex.navbar-right .btn-primary {
    background: #fff;
    color: var(--primary);
}

.d-flex.navbar-right a.btn.btn-outline-red {
    background: var(--red);
    color: #fff;
}
	
	
	.hero-section-subpage h3 small{color: var(--white);}
	
    .hex {
        margin: 0.5rem auto;
        width: calc(50% - 1rem);
        height: auto;
        clear: both;
        clip-path: none;
    }
    .hex-row {
        width: 100%;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

.hex-container {flex-wrap: wrap;flex-direction: unset;}

.bottom-row {
    margin: 0;
}
	
	.stats {
    min-width: 120px;
    text-align: center;
}
	
	
	.card-container a.card {
    flex: unset;
    min-width: 100%;
}
	
	.card-multi {
    min-width: 100%;
}
	
	.card-container.facts-cards{
		gap:0;
	}

.card-container .card.facts-card {
    min-width: 50%;
}
	
	.card.has-icon .d-flex.justify-content-between.align-items-center{flex-wrap: wrap;}
.card.has-icon .d-flex.justify-content-between.align-items-center p {
    width: 100%;
    margin-bottom: 10px !important;
    display: flex
}
	
	.login-container {
    padding-bottom: 111px;
    height: 100vh;
    min-height: 860px;
}
	
.footer-small {
    flex-wrap: wrap;
}

.footer-small .footer-logo-main {
    width: 100%;
    margin-bottom: 2rem;
}

.footer-small .footer-logo-main ~ div {
    width: 100%;
    margin-bottom: 1rem;
}
	
.login-container .navbar-brand {
    width: calc(100% - 32px);
    min-width: 0;
}
}


@media only screen and (max-width: 767.98px) {
	
	.hero-section-subpage h3 {
    font-size: 1.25rem;
}
	
	    .hero-section-subpage h3 small {
        color: var(--white);
        font-size: 1rem;
    }
.hex {
    width: calc(100%);
}
	
.stats-container {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
}
	
	     .stats {
        min-width: 50%;
        text-align: left;
        margin: 1rem 0;
    }
	
	
	    .card-container .card.facts-card {
        min-width:100%;
			margin: 0.5rem;
    }
	
	.card-container .card-multi .facts-card {
    min-width: 50%;
		margin: 0;
}
	
	.hero-section h1 {
    font-size: 2.5rem;
	}
	
	.hero-content p {
    font-size: 1rem;
    color: var(--white);
}
	
	.stats .small {
    color: var(--white);
    font-weight: 400;
    font-size: 1rem;
}
	
	.hero-section{
		min-height: 760px;
	}
	
	.hero-section-subpage {
    min-height: 200px;
}
	
	

	
.stats-container .h5 {
    font-size: 1.75rem;
    color: var(--secondary);
    text-shadow: 2px 1px 4px #000;
}
	
.resources .card-title {
    padding-right: 0;
    padding-bottom: 40px;
}

.resources .card-title .badge {
    position: absolute;
    top: auto;
    bottom: 0rem;
    left: 0;
    right: auto;
}
	
	
	.waves-container{
		height: 50px;
	}
	

		.wave-animated2{
		    -webkit-animation: slide 40s linear infinite;
    -moz-animation: slide 40s linear infinite;
    -o-animation: slide 40s linear infinite;
    animation: slide 40s linear infinite;
	}
}

@media only screen and (max-width: 575.98px) {
	.hero-content .d-flex.gap-3.mb-5 {
    gap: 0!important;
    flex-wrap: wrap;
}

.hero-content .d-flex.gap-3.mb-5 a.btn {
    width: 100%;
    margin: 0.5rem 0;
}
	
	
	.alert-info a.btn {
    width: 100%;
}

.alert-info .d-flex.justify-content-center.gap-3 {
    flex-wrap: wrap;
}
	
.filter-by {
    display: none;
}
	
.btn-group {
    margin-left: 0 !important;
}
	
	.container-fluid{padding:0 1rem;}
	.navbar-toggler{right: 1rem;}
	.login-box{
	    max-width: calc(100% - 32px);
		}
}

.footer-logo-container:first-child img {
    height: 72px;
}
 
.footer-logo-container:last-child img:last-child {
    height: 38px;
}


.input-group-addon {
    height: 30px !important;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: left;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
}



.glyphicon {
    right: 5px !important;
    position: relative;
    top: 3px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

