:root {
  --background-color: #F0F4EF/*#F0F4EF*/;
  --font-color: #313498;
  --beige: #FFFFFA;
}

  * {
    box-sizing: border-box;
  }
  body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 140%;
    padding: 0;
    background: #F0F4EF;
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    letter-spacing: 0.1px;
    color: #313498;
  }
header {
    background-color: #B24C63;
    color: #fff;
    position: sticky;
    top: 8px;
    z-index: 100;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    border-radius: 99px;
    text-align: center;
    height: 46px;
    max-width: 720px;
    margin: 0 auto;
  }
  .backdrop {
    z-index: 99;
    display: block;
    width: 100vw;
    height: 100vh;
    background-color: RGBA(255, 255, 255, 0.9);
    position: fixed;
    left: 0;
  }
  .backdrop-hide {
    height: 0;
    display: none;
    z-index: -1;
  }
  .backdrop-show {
    width: 100vw;
    height: 100vh;
    top: 0;
    display: block;
    z-index: 99;
  }  

  header a {
    color: white;
    text-decoration: none;
  }

  a {
    text-decoration: underline;
    color: #313498;
    letter-spacing: -0.1px;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Slabo 27px', serif;
    color: #313498;
    margin: 0;
    padding: 0;    
  }
  h1 {
    font-size: calc(28px + 2.9vw);
    letter-spacing: 3px;
  }
  h1, h2 {
    line-height: 110%;
  }
  h2 {
    font-size: calc(18px + 1.4vw);
    margin-bottom: 20px;
    letter-spacing: 1.3px;
  }
  h2.name {
    font-size: calc(20px + 2.2vw);
  }  
  h3 {
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    line-height: 140%;
  }

  .padding {
    padding: 6vw 6vw 6vw 6vw;
  }
  .medium {
    font-weight: 500;
    letter-spacing: -0.1px;
  }

  nav.desktop-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  nav.desktop-nav ul li {
    height: 46px;
  }
  nav.desktop-nav ul li a {
    display: flex;
    align-items: center;
    height: 46px;
    padding: 0 1.6vw;
  }
  nav.desktop-nav ul li:hover {
    background-color: #F5515F;
    text-decoration: underline;
    border-radius: 99px;
  }
  nav.desktop-nav ul li a:focus {
    border: 3px white dashed;
  }  

  nav.desktop-nav ul.hamburger {
    font-size: 20px;
    display: none;
    cursor: pointer;    
  }
  nav.desktop-nav ul.hamburger li a {
    text-align: center;
    width: 100%;
    display: block;
    line-height: 44px;
    border-radius: 99px;    
  }

  nav.mobile-nav {
    display: block;
    background-color: #8B575C;
    border-radius: 4vw;
    width: 100%;
    margin: 0;
    min-width: 240px;
    padding-bottom: 8px;
  }
  nav.mobile-nav ul {
    padding: 3vw;
  }
  nav.mobile-nav li {
    list-style: none;
    padding: 8px;
    width: 100%;
    height: 56px;
  }
  nav.mobile-nav ul li a {
    display: block;
    align-items: center;
    line-height: 56px;
    border-radius: 2.6vw;
    font-size: 20px;
  }
   nav.mobile-nav ul li a:hover {
    background-color: #F5515F;
    text-decoration: underline;
  }   

  .team li {
    padding: 6px 0;
  }

  section {
    height: 100%;
    display: flex;
    margin: 0;
  }
  .section-content-wrapper {
    display: flex;
  }

  .section-content {
    margin: 0 auto;
    flex-direction: column;
  }
  .section-wide {
    width: 68%;
    max-width: 860px;
    min-width: 560px;
  }

  .content-left, .content-right {
    width: 50%;
    height: auto;
  }

  .content-left {
    border-radius: 0px 990px 990px 0px;
  }
  .content-right {
    border-radius: 990px 0px 0 990px; 
  }

  #section1 {
    display: flex;
    align-items: center;
    padding-top: 20px;   
  }
  #section1 .content-left {
    background: #F0F4EF;
  }
  #section1 .content-right {
    background: #FFFFFA;
    padding-left: 300px;
  }
  #section1a .content-left {
    background: #FFFFFA;
    overflow: hidden;
  }
  #section1b img {
    width: 100%;
    border-radius: 4vw;
  }

  #section3, #section3a  {
    display: flex;
    align-items: center;    
  }
  #section3 .content-left {
    padding-bottom: 0;
  }
  #section3 img {
    border-radius: 999px 0 0 999px;
    width: 90%;
    height: auto;
    margin-left: 1vw;
    float: right;
  }
  #section3a img {
    border-radius: 0 999px 999px 0;
    width: 90%;
    height: auto;
    margin-right: 1vw;
    float: left;
  }
  #section3a .content-right {
    padding: 0 0 36px 0;
  }

  #section3b .team {
    width: 50%;
    float: left;
    padding: 1vw;
  }
  #section3b .team p {
    padding-right: 3vw;
  }
  #section3b img {
    width: 60%;
    height: auto;
    border-radius: 9999px;
    margin-bottom: 20px;
  }
  .placeholder {
    width: 100%;
    max-width: 550px;
    height: 38vw;
    max-height: 800px;
    min-height: 500px;
    background-color: blue;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
  }
  .placeholder.right {
    float: right;
    border-radius: 999px 0 0 999px;
  }
  .placeholder.left {
    float: left;
    border-radius: 0px 999px 999px 0px;    
  }
  #section3 .placeholder {
    background-image: url('img/anne1_portrait.jpeg');
    background-position: top;    
  }
  #section3a .placeholder {
    background-image: url('img/team.jpeg');
    background-position: center;
  } 

  .maps img {
    width: 100%;
    height: auto;
  }

  hr {
    opacity: 0.2;
  }

  .accordion {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 100%;
  }
  .accordion li {
    margin-bottom: 8px;
  }
  .accordion img {
    max-width: 100%;
    height: auto;
    border-radius: 1.2vw;
  }
  .accordion-item {
    margin-bottom: 10px;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
  }
  .accordion-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     background-color: rgba(255,255,255,1);
     padding: 10px 12px 10px 24px;
     cursor: pointer;
     margin: 0;
     border: 2px solid transparent;
     border-radius: 24px;
     transition: border 0.15s ease-in-out;
  }
  .accordion-header:hover {
    background-color: white;
     background-color: rgba(255,255,255,0.6);
    border: 2px solid #313498;
  }
  .accordion-content {
    padding: 1px calc(16px + 1vw) calc(16px + 1vw); 
    display: none;
    background: white;
  }
  
  .accordion-icon {
    font-size: 1.25rem;
    transform: rotate(0deg);
    transition: transform 0.3s ease-in-out;
  }
  .accordion-header.active {
    border-radius: 24px 24px 0px 0px;
  }
  .active .accordion-icon {
    transform: rotate(180deg);
  }

  #toTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;    

  }


  button {
    padding: 16px 32px;
    font-size: 18px;
    border-radius: 99px;
    cursor: pointer;
  }


  .bold {
    font-weight: 500;
  }
  .mobile {
    display: none;
  }
  .desktop {
    display: block;
  }

  footer {
    background-color: #313498;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    line-height: 16px;
  }
  footer a {
    color: white;
  }

  .ball-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; 
    flex: 1;
    height: auto;
    max-height: 480px;
    overflow: hidden;
    transform: translateY(20%);
  }
  .ball-animation img {
    position: absolute;
    width: 100px; /* Adjust the width as needed */
    height: auto;
  }



table {
    border-collapse: collapse;
    width: 100%;
}


td {
    vertical-align: top; /* This aligns the text in cells to the top */
    padding: 0px 20px 12px 0; /* Add some padding for better spacing */
}
td:first-child {
  width: auto;
  text-indent: 30px;
}
td .icon {
  position: absolute;
  margin-left: -30px;
}
td .icon svg {
  fill: #313498;
}



/* carousel */
.slider{
    width: clamp(100px, 80vw, 1120px);
    margin: 80px auto 0px;
    cursor: grab;
}
.slider img {
  height: auto;
  width: 100% !important;
  border-radius: 10vw;
  padding: 1vw;
}
.slider .caption {
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 0;
  margin: 0 0 12px 0;
}


.green-dot {
  width: 14px;
  height: 14px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}


.map-container {
        position: relative;
        padding-bottom: 100%; /* 1:1 Aspect Ratio (adjust as needed) */
        height: 0;
        overflow: hidden;
    }
    
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 2vw;
}
        .more {
          font-weight: 500;
          text-decoration: underline;
          cursor: pointer;
        }
        .morecontent {
            display: none;
        }

        .show {
          display: block;
        }
        .hide {
          display: none !important; 
        }

button.contact {
  background: #B24C63;
  border: 0;
  outline: 0;
  color: white;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;  
}
button.contact:hover {
    background-color: #F5515F;
    text-decoration: underline;  
}

@media (prefers-contrast: no-preference) and (prefers-reduced-motion: no-preference) {

   ::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar track */
  }
  
  /* Customize the scrollbar thumb (the draggable handle) */
  ::-webkit-scrollbar-thumb {
    background-color: #B24C63; /* Color of the thumb */
    border-radius: 5px; /* Rounded corners for the thumb */
  }
  
  /* Customize the scrollbar track when hovered */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #F5515F; /* Color of the thumb when hovered */
  }
 
 }


@media (max-width: 960px) {
  p {
    font-size: 18px;
  }
  tr {
    display: flex;
    flex-direction: column;
  }  
}

@media (max-width: 720px) {
  
  body {
    font-weight: 400;
  }


  h1, h2.name {
    font-size: clamp(42px, 8vw, 100px);
  }
  h1 {
    margin-top: -10px;
  }
  h2 {
    font-size: clamp(25px, 4.4vw,48px);
  }

  
  nav.desktop-nav ul {
    display: none
  }
  nav.desktop-nav ul.hamburger {
    display: block;    
  }  

  .section-content {
    padding: 120px 30px 120px 30px; /* Adjust padding for smaller screens */
  }

  .padding {
    padding: 48px 20px;
  }
  .desktop {
    display: none;
  }
  .mobile {
    display: block;
  }


  header {
    max-width: 90%;
    margin: 0 auto;
  }


.section-content-wrapper {
    display: block;
}

.section-wide {
    width: 100%;
    max-width: 100%;
    min-width: 320px;
}

  .content-left, .content-right {
    width: 100%; /* Take full width on smaller screens */
    display: block;
  }

    #section1 .content-right, #section3 .content-right, #section3a .content-left  {
        display: none;
    }

  #section3 .content-left {
    padding-bottom: 0;
  }
  #section3a .content-right,
  #section3a .content-right p {
    padding-top: 0 !important;
  }
  #section3, #section3a {
    display: block;
  }

  #section3b .team {
    width: 100%;
    float: left;
    padding: 0vw;
  }

  #section3b .team:first-of-type {
    margin-bottom: 80px;
  }

  #section4 .content-left {
    display: none;
  }

  .slider{
      width: 100%;
      cursor: grab;
  }  

  tr {
    display: table;
    flex-direction: none;
  }    
  td:first-child {
    width: 150px
  }
  .slick-prev, .slick-next {
    display: none !important;
  }

  
}

@media (max-width: 480px) {
  tr {
    display: flex;
    flex-direction: column;
    padding-bottom: 24px;
  }  
}

