/*
Theme Name: Invicta health and performance May 2025
Theme URI: http://hanningtondigital.com/invicta
Author: Jack Hannington
Author URI: hannigtondigital.com
Description: Customisable dark theme for Invicta Health and Performance
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: invicta_health_and_performance
*/

:root {
    --bg-color: #101113;
    --body-text-color: #e9eff7;
    --invicta-gold: #DCC88C;
    --invicta-light-grey: #ededed;
    --body-font-size: 1rem;
    --animate-duration: 300ms;
  }
  
  * {
    box-sizing: border-box;
  }
  
  
  
  /*---- FONTS ----*/
  
  
  @font-face {
    font-family: 'Inter';
    src: url('assets/fonts/inter/Inter-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: oblique 0deg 10deg;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Manrope';
    src: url('assets/fonts/manrope/Manrope-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: oblique 0deg 10deg;
    font-display: swap;
  }
  
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: var(--body-text-color);
    text-align: left;
    line-height: 1.6;
    /* background-color: var(--bg-color); */

    /* background: linear-gradient(45deg, #101113 0%, #111416 100%); */
    background-image: linear-gradient(to right, #2d2c2c 0%, black 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
   
    min-height: 100vh;
    margin: 0;
  }
  
  /*---- Colours ----*/
	.invicta-gold {
    color:#DCC88C;
  }
  
  
  /*---- NAV ----*/
  
  nav {
    width: 100%;
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #40474a;
    background-color: #101113; /* Added # to make it a valid hex color */
    transition: background-color 0.3s ease; /* Single transition property */
}

ul.wp-block-list {list-style:initial; list-style-position: inside;margin-bottom:10px;padding-left:0.5rem;}
ul.wp-block-list li {padding-bottom:4px;}
ol.wp-block-list li {padding-bottom:6px;}

.resource h1 {font-size:50px; line-height:50px;margin-top:42px !important;}

/* Make navbar transparent only on home page */
.home .site .site-header nav {
    background-color: transparent;
    border-bottom: none;
    box-shadow: none;
}

.home .site .site-header nav.scrolled {
    background: var(--bg-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
  


.navbar {
  padding: 4px 16px;
}
  
  /* Default style for all pages except home */
  body:not(.home) nav {
    background: var(--bg-color);
    box-shadow: 0px 3px 7px 3px rgb(0 0 0 / 23%);
  }
  
  .navbar {
    transition: 0.3s;
    z-index: 1;
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 16px;
  }
  
  .custom-logo {
    width: 140px;
    height: auto;
    transition: 0.54s ease-in;
  }
  
  .menu-container {
    position: fixed;
    top: 0;
    background-color: var(--bg-color);
    width: calc(100%);
    height: 100vh;
    left: 0px;
    display: none;
    box-sizing: border-box;
    overflow-y: auto;
  }
  
  .nav-item>button {
    font-size: 14px;
    border: 1px solid var(--invicta-gold);
  }
  
  .nav-item {
    flex: 1;
  }
  
  #nav-toggle,
  .close-menu {
    text-align: right;
  }
  
  .nav-toggle {
    width: 50px;
    height: 40px;
    border-radius: 4px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 7px;
    transition: width 1s ease-in-out;
    position: relative;
  }
  
  #showMenu span {
    width: 60%;
    height: 2px;
    background-color:var(--invicta-gold);
  }
  
  .close-menu span {
    font-size: 20px;
  }
  
  .menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #626262;
  }
  
  .menu,
  .sub-menu {
    list-style-type: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
  }
  
  .menu li {
    border-bottom: 1px solid #626262;
  }
  
  .menu li a {
    text-decoration: none;
    width: 100%;
    padding: 15px 15px;
    height: 100%;
    display: block;
    font-weight: 500;
    transition: 0.3s ease-in;
    font-size: 16px;
  }

  .wp-block-file a {
    font-size: 16px;
  }

  .wp-block-file {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .wp-block-file *+.wp-block-file__button{
    margin-left: 0px;
    color: black;
    margin-top: 10px;
  }
  
  .menu li a:hover {
    color:var(--invicta-gold);
  }
  
  .menu-cta {
    display: none;
  }
  
  .menu-footer {
    margin: 15px;
  }
  
  .menu-footer > .invicta-btn__primary {
    width: 100%;
    display:block;
    text-align:center;
    border-radius:4px;
  }

  .menu-item a{
    color: var(--body-text-color);
  }
  
  .menu-item-has-children>a>svg {
    margin-left: 5px;
    display: inline-block;
    /* Required for transform */
    transition: transform 0.3s ease;
    /* Animate the transform */
    float: right;
  }
  
  .rotate-icon {
    transform: rotate(180deg);
  }
  
  
  
  /* Alert bar */
  .alert-bar {
    background-color: var(--invicta-gold);
    position: absolute;
    left: 0;
    z-index: 1;
    text-align: center;
    width: 100%;
    top:80px;
    padding:6px;
  }
  
  .alert-bar a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
  }
  
  /* Services menu */
  
  #services-toggle {
    display: none;
  }
  
  .services-menu {
    display: flex;
    flex-direction: column;
    padding-inline-start: 0;
    background-color: #0f1012;
    padding:20px;
    width:90%;
    border-radius:4px;
    border: 0.5px solid #575757;
    /* box-shadow: 0 0 4px 0 rgb(0 0 0 / 23%); */
    position:sticky;
    top:110px;
  }
  
  @media (max-width:1000px){
    .services-menu {
      width: 100%;
      border-color:#f9f9f9;
    }
  }
  
  .services-menu .current-menu-item a {
    color: var(--invicta-gold); 
    font-weight: 500;
  }
  
  
  .menu-services-container {
    height:100%;
  }
   
  .services-menu > li {
    list-style-type: none;
    padding-inline-start: 0;
    margin-block-start: 0;
    margin-block-end: 0;
    padding:4px 0px;
    color:inherit!important;
  };
  
  .services-menu a {
    text-decoration: none;
    color:#051F29;
    width:100%;
    padding: 10px 0px;
  }
  
  @media (max-width:1000px){
    .services-menu{
      display:none;
    }
    .services-menu-toggle{
      display:block;
    }
    #services-toggle {
      display: block;
    }
    .menu-services-container {
      height:auto;
    }
  }
  
  
  /* Hide sub-menu by default */
  .sub-menu {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    display: none;
    flex-direction: column;
  }
  /* Show sub-menu on hover */
  .menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    display: flex;
    flex-direction: column;
  }
  
  .sub-menu > li {
    border-bottom: none;
  }
  
  .show {
    display: flex;
    flex-direction: column;
  }
  
  .hide-sm {
    display: none;
  }
  
  
  @media (min-width:1000px) {
    .navbar {
      align-items: center;
    }
  
    .nav-item {
      display: flex;
      flex: 1;
    }
  
    .menu-cta {
      text-align: right;
      display: inline-block;
    }
  
    .menu-container {
      display: flex;
      position: relative;
      border: none;
      height: auto;
      flex: 5;
      padding: 0;
      background-color: inherit;
    }
  
    .menu-body {
      width: 100%;
    }
  
    .menu-body ul {
      display: flex;
      flex-direction: row;
      white-space: nowrap;
      justify-content: center;
      font-weight: 300;
    }
  
    .menu-body li {
      border-bottom: none;
    }
  
    .menu li a {
      color: #F6F5F5;
      padding:10px 15px;
      font-size:15px;
      font-weight: 500;
    }
  
    .menu-toggle,
    #closeMenu,
    .mobile-menu-logo,
    .menu-header,
    .menu-number,
    .menu-footer {
      display: none;
    }
  
    .menu-item-has-children>.sub-menu {
      position: fixed;
      display: flex;
      flex-direction: column;
    }
  
    .menu-item-has-children>a>svg {
      float: none;
    }
  
  
    .sub-menu {
        min-width: 100px;
        background: black;
    }
  
    /* Show sub-menu on hover */
    .menu-item-has-children:hover .sub-menu {
      opacity: 1;
      visibility: visible;
    }
  
    /* Rotate the chevron when the menu item is hovered */
    .menu-item-has-children:hover>a>svg {
      transform: rotate(180deg);
    }
    .hide-sm {
      display: block;
    }
  }
  
  
  
  
  /* Logged-in User Admin Menu Menu */
  
  .admin-margin {
    top: 32px;
  }
  
  @media screen and (max-width: 782px) {
    .admin-margin {
      top: 46px;
    }
  }
  
  
  /*---- LAYOUT ----*/
  
  /* Center default container */
  
  .header {
    padding:40px 0px 20px 0px;
  }
  
  .row {
    --bs-gutter-x: 0; 
  }
  
  .container {
    margin: auto;
    max-width: 1200px;
  }
  
  @media (max-width:1000px){
    .container {
      padding-left:20px;
      padding-right:20px;
    }
  }
  
  :where(.is-layout-flex) {
    gap: 0.3em;
  }
  
  .site-content {
    margin-top:70px;
    padding-left:0px;
    padding-right:0px;
  }
  
  /* Default gap between column container */
  :where(.wp-block-columns.is-layout-flex) {
    gap: 4em;
  }
  
  iframe {
    max-width: 100%;
  }
  
  /* Limit written content width  - useful for long text headings */
  
  .max-450 {
    max-width: 450px;
  }
  .max-650 {
    max-width: 650px;
  }
  
  .max-750 {
    max-width: 750px;
  }


  .max-height-500 {
    max-height: 500px!important;
  }
  
  /*--- HEADINGS ----*/
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color:#F6F5F5;
    padding-top:10px;
    padding-bottom:10px;
  }
  /* .wp-block-heading {
    max-width: 780px;
  } */
  
  h1 {
    font-size: 32px;
    line-height: 40px;
  }
  
  @media (min-width : 1200px) {
    h1 {
      font-size: 60px;
      line-height: 60px;
    }
  }
  
  body .wp-block-heading {
    margin-bottom: 10px;
  }
  
  .has-text-align-center {
    margin:auto;
  }
  
  
  /* Paragrahs, strong, a*/
  strong {
    font-weight: 500;
  }
  
  /* Borders */
  
  .rounded {
    border-radius: 4px;
  }
  
  /* Text preceding a section's heading */
  
  .brow-text {
    color: var(--invicta-gold)!important;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: -4px!important;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  
  
  /* Override Wordpress defaults */
  
  
  /* Covers */
  
  .wp-block-cover {
    padding:0px;
  }
  
  /* Buttons and links */
  
  a {
    text-decoration: none;
    color: var(--invicta-gold);
    transition: all 0.3s ease;
  }


  
  a:hover {
    color:var(--invicta-gold);
  }
  
  .wp-block-buttons {
    gap:10px;
  }
  
  .wp-block-button__link, .wp-element-button,
  button, .btn {
    background-color: var(--invicta-gold);
    color: var(--bg-color);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    border:1px solid transparent;
    transition: 0.3s;
  }
  
  .wp-block-button .wp-block-button__link.is-style-outline, .wp-block-button.is-style-outline>.wp-block-button__link {
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 600;
    background-color: #F6F5F5;
    border:1px solid #e3e3e3;
    border-radius: 6px;
    color: var(--bg-color);
  }
  .wp-block-button.invicta-btn__primary .wp-block-button__link {
    background-color:var(--invicta-gold);
    color: var(--bg-color);
    border-radius: 6px;
    font-weight: 600;
  }
  
  .wp-block-button.invcita-btn__secondary .wp-block-button__link {
    background-color: #F6F5F5;
    color:#051F29;
    border-radius: 6px;
    font-weight: 600;
  }
  
  /* Buttons and links */
  
  .invicta-btn__primary {
    background-color: var(--invicta-gold);
    color: var(--bg-color);
  }
  
  #nav-cta > button > a {
    font-size: 13px;

  }

  #nav-cta > button {
    padding: 6px 0px;
  }
  
  
  .invicta-btn__primary > a {
    color: var(--bg-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
  }
  
  .wp-block-button__link:hover {
    color:white;
    opacity: 0.7;
  }
  
  .invicta-btn__secondary {
    background-color: #fff;
    border-radius: 0px;
    color:#051F29;
    border:1px solid #051F29;
  }
  
  
  .tally-app > * {
    color:white!important;
  }
  
  button[type="submit"]{
    background:var(--invicta-gold)!important;
  }
  
  
  /* Images */
  
  img {
    max-width: 100%;
  }
  
  figure {
    margin: 0 0 0.5rem;
  }
  
  /* Cards */
  
  .services-cards > .wp-block-column > .wp-block-cover {
    padding: 10px;
    transition: 1s;
    border:1px solid transparent;
    box-shadow: 0px 3px 7px 3px rgb(0 0 0 / 23%);
  }
  
  .services-cards > .wp-block-column > .wp-block-cover:hover {
    border: 1px solid var(--invicta-gold);
    cursor:pointer;
  }
  
  .services-cards > .wp-block-column > .wp-block-cover > .wp-block-cover__inner-container > p {
    position: relative;
    display: inline-block; /* To keep the arrow on the same line */
  }

  .service-card-link {
    color:white!important;
  }
  
  .services-cards > .wp-block-column > .wp-block-cover > .wp-block-cover__inner-container > p::after {
    content: "\2192";
    position: relative;
    left: 10px; /* Distance from the text */
    transition: 1s; 
    color: var(--body-text-color); 
  }
  
  .services-cards > .wp-block-column > .wp-block-cover:hover > .wp-block-cover__inner-container > p {
    color: var(--invicta-gold);
  }
  
  .services-cards > .wp-block-column > .wp-block-cover:hover > .wp-block-cover__inner-container > p::after {
    color: var(--invicta-gold);
    left: 15px; /* Move it 5px to the right on hover */
  }
  
  
  .services-cards {
    gap:10px;
  }
  
  .services-cards > .wp-block-column > .wp-block-cover > img {
    border-radius: 4px;
  } 
  
  .card {
    border-radius: 4px;
    padding:14px;
    transition:0.3s ease-in; 
    min-width: 250px;
    font-size: 0.9rem;
    background: #222222;
    color: var(--body-text-color);
  }
  
  .review-card {
    font-size: 14px;
    background-color:#222;
    color:white;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  }

  .reviews-card-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-right: 0px;
    margin-bottom: 16px;
  }

  @media (min-width: 996px) {
    .reviews-card-container {
      margin-right: 16px;
      margin-bottom:0px;
    }
  }




  
  .blog-page-card {
    padding:10px;
    color:white;
    height:100%;
  }
  
  .invicta-news-card {
    background: #1c1d1d;
    box-shadow: 0 0 2px grey;
  }
  
  .card a {
    text-decoration: none;
    color:inherit;
  }

  .wp-block-media-text>.wp-block-media-text__content {
    padding: 0px 0px;
  }

  .wp-block-media-text.is-image-fill-element>.wp-block-media-text__media img {
    border-radius: 6px;
  }

  @media (min-width: 996px) {
    .wp-block-media-text>.wp-block-media-text__content {
      padding: 16px 16px;
      
    }
  }
  
  @media screen and (max-width:500px){
    .wp-block-columns > .card {
      font-size: 0.8rem;
      min-width: auto;
    }
    .wp-block-columns {
      justify-content: space-between;
      gap:10px!important;
      margin-bottom:10px;
    }
  }
  @media screen and (max-width:410px){
    .wp-block-columns > .card  {
      min-width: 100%;
      max-width: 100%;
    }
    .wp-block-columns {
      justify-content: space-between;
    }
  }
  
  .invicta-news-card:hover, .resource-card:hover {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border:1px solid var(--invicta-gold);
    cursor:pointer;
  }

  
  /* Forms */
  
  label {
    margin-bottom:4px;
  }
  
  input, textarea {
    font-family: inherit;
    padding:10px;
    border-radius:4px;
    border:1px solid #656565;
    width:100%;
    margin-bottom:10px;
  }
  
  /* Features bar */
  .features-bar {
    width:100%;
    flex-wrap:wrap;
    display:flex;
  }
  
  .feature {
    display:inline-flex;
    align-items:center;
    flex:1;
    justify-content:center;
    font-family:'Manrope', 'Inter', 'Sans-serif';
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  
  .feature:nth-last-of-type(1) {
    border:none;
  }
  
  .feature-count {
    font-size:2.4rem;
    font-weight: 600;
  }
  
  .feature-caption {
    margin-left:10px;
    font-size:0.9rem;
    line-height: 1rem;
    font-weight: 500;
  }
  
  @media only screen and (max-width: 700px) {
    .feature {
      padding:10px;
      min-width:40%;
      border:none;
      display: flex;
    }
    .feature-caption {
      font-size:0.8rem;
    }
    .feature-count {
      font-size:1.8rem;
    }
  }
  
  @media only screen and (max-width: 300px) {
    .feature {
      padding:10px;
      min-width:100%;
      border:none;
    }
  }
  
  
  /* Autoscrolling slider */
  
  .hide-lg {
    display: none;
  }
  @media (max-width: 450px) {
    .hide-lg {
      display: block;
    }
  }
  
  /* Autoscrolling slider */
  .logo-slider {
    --image-size: 1400px;
    padding: 20px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
  }
  .logo-slider:hover div {
    animation-play-state: paused;
  }
  .logo-slider div {
    display: flex;
    position: relative;
    animation: marquee 35s linear infinite;
    justify-content: space-around;
  }
  .logo-slider img {
    display: block;
    min-width: var(--image-size);
    height: auto;
    margin: 0 1vw;
  }
  .logo-slider:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    /* background: linear-gradient(to right, #101113, rgba(255, 255, 255, 0) 30px, rgba(255, 255, 255, 0) calc(100% - 30px), #101113); */
  }
  @media (max-width: 900px) {
    logo-slider {
      --image-size: 1400px;
      --image-size: min(max(50px, 10vw), 100px);
    }
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Hero section */
  @media (max-width:768px){
  .hero-btn-container > a {
     font-size: 14px;
  }
  }
  /* Meta slider */
  .flex-active {
    background-color:var(--invicta-gold)!important;
  }
  
  /* Recent posts */
  
  .related-articles {
    border-top:1px solid #232220;
  }
  
  .recent-posts {
    display: flex;
    overflow:auto;
    flex-wrap:nowrap;
  }
  
  
  
  .recent-post {
    /* min-width: 250px; */
    max-width: 85%;
    padding:4px;
    display: flex;
    flex-direction: column;
  }
  
  .article-title {
    line-height: 30px;
    font-size: 30px;
  }
  
  @media only screen and (max-width: 1000px) {
    .recent-posts {
      gap:15px;
    }
    .recent-post {
      padding:0px;
    }
    .article-title {
      line-height: 30px;
      font-size: 30px;
    }
  }
  
  .recent-posts-title {
    font-size:20px;
    font-weight: 600;
  }
  
  /* Custom scrollbar for recent resources */
  .recent-posts::-webkit-scrollbar {
    height: 8px;
  }
  
  .recent-posts::-webkit-scrollbar-track {
    background: black;
    border-radius: 4px;
  }
  
  .recent-posts::-webkit-scrollbar-thumb {
    background-color: var(--invicta-gold);
    border-radius: 4px;
  }
  
  .recent-posts::-webkit-scrollbar-thumb:hover {
    background-color: var(--invicta-gold);
    opacity: 0.8;
  }
  
  .post-image {
    width: 100%;
    height: 0; /* This is important, as it allows the padding-top to determine the height */
  }
  
  .pagination {
    gap:10px;
  }
  
  .page-numbers {
    padding: 10px 20px;
    background: #DCC88C;
    border: 4px;
  }
  .current {
    background:var(--invicta-gold);
  }
  
  
  /* Content pages */
  
  .services-page h2, .article-container h2 {
    font-size:26px;
    margin-top:30px;
  }
  
  /* Blog - articles */
  
  @media (min-width:768px){
  .blog-page-card {
      padding-left:6px;
      padding-right:6px;
    }
  }
  
  
  .article-container {
    max-width:800px;
  }
  
  .page-title {
    position: relative;
    overflow: hidden;
    color: white;
    margin-top:20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  
  .page-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;  /* Ensure the header content is above the image */
    position: relative;  /* Needed for z-index to take effect */
  }
  
  .background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1;
  }
  
  
  .article-meta-info {
    font-size:14px;
  }
  
  
  ul {
    list-style:none;
    padding-inline-start:0;
    padding-inline-end: 0;  
    padding:0;
    padding-left:0;
    margin:0;
  }
  
  ul.ticks {
    list-style-type: none; /* Removes the default bullets */
  }
  
  ul.ticks li::before {
    content: '\f058'; 
    font-family: "Font Awesome 5 Free"; 
    display: inline-block;
    margin-right: 10px; 
    color: var(--invicta-gold);
  }
  ul.ticks li {
    padding-top: 6px; 
  }

  /* Scroll */
  .scroll-container {
    overflow: auto !important;
    flex-wrap: nowrap;
    justify-content: flex-start;
    display: flex;
    flex-direction: row;
  }

  .scroll-card {
      min-width: 240px;
  }

  /* Tabs */
  .pill-switch {
    background: #e9ecef;
    border-radius: 50px;
    padding: 4px;
    position: relative;
    width: 300px;
    height: 50px;
    margin: 20px auto;
}

.pill-switch .nav-pills {
    position: relative;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    height: 100%;
}

.pill-switch .nav-item {
    flex: 1;
    z-index: 2;
}

.pill-switch .nav-link {
    border-radius: 50px !important;
    width: 100%;
    height: 42px;
    line-height: 42px;
    padding: 0 !important;
    text-align: center;
    transition: color 0.3s ease;
    color: #495057;
    border: none !important;
    background: transparent !important;
}

.pill-switch .nav-link.active {
    color: var(--bg-color) !important;
}

.nav-pills::before {
    content: '';
    position: absolute;
    width: 146px;
    height: 42px;
    background: none;
    border-radius: 50px;
    transition: transform 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: 1;
}

.nav-pills .nav-link.active ~ .nav-link.active + .nav-item .nav-link.active ~ .nav-pills::before {
    transform: translateX(146px);
}

#holmeschapel-tab.active ~ .nav-pills::before {
    transform: translateX(146px);
}

.tab-content {
    margin-top: 30px;
    transition: opacity 0.3s ease;
}

.tab-pane {
    transition: opacity 0.3s ease;
}

.tab-pane.fade {
    opacity: 0;
}

.tab-pane.show {
    opacity: 1;
}

/* Tables */



.wp-block-table thead {
  background:var(--invicta-gold);
  border-bottom: 0px;
}

 .wp-block-table th {
  color: black;
  border:1px solid white;
 }

  
  /* Footers */

  #contact-form {
    border-top:1px solid #232220!important;
    margin-top:100px;
    padding-bottom:60px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .border-top {
    border-top:1px solid #232220!important;
  }
  
  footer {
    border-top: 1px solid #232220;
  }

  .contact-options .contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
  }
  
  .footer-menu li {
    list-style-type:none;
    padding-inline-start:0;
    padding-inline-end: 0;  
    padding:0;
    margin:0;
    margin-bottom:1rem;
  }
  .footer-links {
    font-weight:300;
  }
  
  footer .custom-logo {
    width:200px;
    margin-bottom:20px;
  }
  
  .footer-header {
    font-weight:400;
    color:white;
  }