h2, h3 {
    font-size: 2rem;
    font-weight: bold;
}

.footerDetails h3 {
    color: white;
    font-weight: 600;
    font-size: 2rem;
}

.footerDetails {
    padding: 40px 0px;
}

.footerWrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footerLinks {
    flex: 1;
}

.footerLinks p {
    margin: 0 0 8px;
    color: white;
}

.footerLinks a, .footerContact a, .footerContact a:hover, .footerContact p {
    color: white !important;
}

.footerContact a:hover, .footerLinks a:hover {
    text-decoration: underline;
}

.footerLinks a:visited {
    color: white;
}

.footerLinks .greyFooterLinks a:visited {
   color: white;
}

.footerLinks a:visited:hover {
    color: white;
} 

.greyFooterLinks a {
    color: white;
}

.footerGdpr a {
    text-wrap: nowrap;
}

.footerGdpr h4, .footerGdpr p, .footerGdpr a {
    color: white;
}

.footerDetails a:hover,
.footerGdpr a:hover {
	color: var(--accent-color3);
}

.footerDetails a.social-05 {
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0px 3px 10px;
}
.footerDetails a.social-05, .footerDetails a.social-05:link, .footerDetails a.social-05:visited, .footerDetails a.social-05:hover {
    color: #464446;
    border: 1px solid #464446;
    transition: all ease-in 300ms;
}
.footerDetails a.social-05:hover {
    color: #FFF;
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.footerDetails .footerLogos {
    display: flex;
    gap: 10%;
}

.footerGdpr {
    padding-top: 15px !important;
    padding-bottom: 0 !important;
}

@media only screen and (max-width: 991px){
    .footer .footerGdpr {
        padding-bottom: 15px !important;
    }
}

table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 15px;
}

table thead {
  background: #f2f2f2;
}

table th,
table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}


table th {
  font-weight: 600;
}

.tableScroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tableScroll table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}


.homepageBanner {
    background-color: #213877;
    color: white;
    font-weight: 600;
    font-family: Poppins;
}

.homepageBanner h2 {
    display: none;
}

.homepageBanner .marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
}

.homepageBanner .marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 15s linear infinite;
}

.homepageBanner:not(:has(.marquee)) {
    display: none;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}


.d-wrapper>div.is-section-5 {
    height: 5vh;
}

@media all and (max-width: 991px) {
    .homepageBanner.is-section:not(.section-slider) .is-boxes {
        display: flex !important;
    }
}

 
















