/* style.css */
@font-face {
  font-family: "Elephant";
  src: url("../fonts/ELEPHNT.TTF") format("ttf");
}
.alert {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  overflow: auto;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.alert .alert-content {
  width: clamp(200px, 50%, 600px);
  height: auto;
  background-color: #fff;
  color: #000;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.alert button {
  padding: 5px;
  margin: 10px;
  z-index: 105;
}

body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #0D429C;
  color: white;
  font-family: "Elephant";
}

section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}

#fixedTitle {
  position: fixed;
  top: 20px;
  right: 10px;
  display: flex;
  gap: 5px;
  z-index: 10;
  padding: 3px;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  text-align: right;
}
#fixedTitle .menu, #fixedTitle h1 {
  background-color: #3177EE;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
#fixedTitle .menu {
  width: 25px;
  height: 25px;
}
#fixedTitle h1 {
  padding: 10px 15px;
  margin: 0;
  width: 200px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px; /* Fixed width */
  height: 50px; /* Fixed height, equal to the width */
  line-height: 50px; /* Center the text vertically */
  border: none;
  border-radius: 50%; /* Rounded shape */
  background-color: #007bff;
  color: white;
  cursor: pointer;
  font-size: 16px;
  text-align: center; /* Center the text horizontally */
  z-index: 100;
}

.hamburger {
  display: block;
  font-size: 30px;
  cursor: pointer;
  position: relative;
  top: 0px;
  right: 0px;
  z-index: 1001;
  padding: 6px 5px;
  background-color: #3177EE;
}

.full-screen-menu {
  display: none;
  position: fixed;
  width: 50%;
  top: 20px;
  right: 0;
  background: #0D429C;
  color: white;
  z-index: 1000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .full-screen-menu {
    width: 100%;
  }
}
.full-screen-menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: "Elephant";
  text-shadow: 0px 1px 3px black;
}
.full-screen-menu ul li {
  padding: 10px;
}
.full-screen-menu ul li:hover {
  background-color: #3177EE;
  width: 100%;
}
.full-screen-menu ul li a {
  color: white;
  font-size: 24px;
  text-decoration: none;
}
.full-screen-menu .close-btn {
  position: absolute;
  top: 21px;
  right: 18px;
  font-weight: 900;
  font-size: 50px;
  cursor: pointer;
  color: white;
}

.menu-flex {
  display: flex;
  gap: 5px;
}

.close-btn {
  position: absolute;
  top: 21px;
  right: 18px;
  font-weight: 900;
  font-size: 50px;
  cursor: pointer;
  color: white;
}

#section1 {
  position: relative;
  width: 100%;
  height: 100vh;
}
#section1 .slideshow-container {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  /* Align to the left */
  top: 0;
  min-width: 300px;
}
#section1 .mySlides {
  display: none;
  height: 100%;
}
#section1 .text-block {
  position: absolute;
  right: 10%;
  /* Align to the right */
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  /* Adjust based on your design */
  color: white;
  text-shadow: 0px 3px 6px black;
  padding: 20px;
  z-index: 2;
  /* Ensure it overlaps the slideshow */
  font-family: "Elephant";
  font-size: 2.5em;
}
#section1 .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
#section1 .dots-container {
  position: absolute;
  bottom: 30px;
  /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#section1 .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
#section1 .active,
#section1 .dot:hover {
  background-color: #717171;
}
#section1 .mySlides img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #section1 {
    /* Adjust breakpoint as needed */
  }
  #section1 .slideshow-container,
  #section1 .text-block {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  #section1 .text-block {
    margin-top: 20px;
    /* Add some space between the slideshow and text */
  }
}

#section2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 100px 0;
  /* Clearfix to ensure the container contains the floated columns */
}
#section2 .column-2 {
  width: 50%;
  float: left;
  height: 100%;
}
#section2:after {
  content: "";
  display: table;
  clear: both;
}
#section2 .sub-column {
  float: left;
  box-sizing: border-box;
}
#section2 .left-column {
  min-width: 400px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}
#section2 .left-column .row {
  flex: 1;
  display: flex;
  margin: 10px 0;
  width: 80%;
}
#section2 .left-column .image-column img {
  width: 200px;
  height: 200px;
  display: block;
  padding: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 600px) {
  #section2 .left-column .image-column img {
    width: 150px;
    height: 150px;
  }
}
#section2 .left-column .image-column,
#section2 .left-column .text-column {
  padding: 10px;
}
#section2 .left-column .image-column h3,
#section2 .left-column .text-column h3 {
  font-family: "Elephant";
  text-shadow: 0px 1px 3px black;
}
#section2 .right-column {
  width: 30%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-width: 350px;
}
#section2 .right-column .tab-container {
  border-radius: 15px;
  border: 1px solid #ccc;
  overflow: hidden;
  width: 80%;
  max-width: 600px;
  min-width: 350px;
}
#section2 .right-column .tab-container .tabs {
  background-color: #f1f1f1;
  display: flex;
  padding: 10px;
}
#section2 .right-column .tab-container .tab-button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
  flex-grow: 1;
  /* Equal width */
  color: #0D429C;
}
#section2 .right-column .tab-container .tab-button:hover {
  background-color: #ddd;
}
#section2 .right-column .tab-container .tab-content {
  display: none;
  padding: 20px;
  border-top: none;
}
#section2 .right-column .tab-container #Tab1 {
  display: block;
}

#section3 .trainer-section {
  display: flex;
  align-items: center;
  position: relative;
  height: 80vh;
  width: 80vw;
  /* Adjust based on your layout needs */
  color: #fff;
  font-family: "Your Font", sans-serif;
  /* Replace with your font */
  margin-top: 100px;
  justify-content: center;
}
#section3 .trainer-image {
  position: relative;
  width: 300px;
  /* Adjust based on your layout needs */
  height: 500px;
  overflow: hidden;
}
#section3 .trainer-image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  /* Ensures the image covers the area */
}
#section3 .vertical-text {
  position: absolute;
  left: 0;
  top: -10px;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  white-space: nowrap;
  text-align: center;
  font-size: 2em;
  letter-spacing: 0.5em;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0px 3px 6px black;
}
#section3 .scrolling-text {
  width: 50%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  margin-left: auto;
  padding: 20px 10px;
  box-sizing: border-box;
  margin-left: -82px;
  z-index: 1;
  height: 80%;
  margin-top: 50px;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
  text-shadow: 0px 3px 6px black;
}
#section3 .scrolling-text::-webkit-scrollbar {
  width: 5px;
}
#section3 .scrolling-text::-webkit-scrollbar-track {
  background: transparent;
}
#section3 .scrolling-text::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
#section3 .scrolling-text::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#section4 {
  /* Initial visibility for the first content */
  /* Styling for Webkit browsers like Chrome, Safari */
}
#section4 .interactive-section {
  display: flex;
  align-items: flex-start;
}
#section4 .swiper-container {
  width: 50%;
}
#section4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide image */
  display: flex;
  justify-content: center;
  align-items: center;
}
#section4 .text-container {
  width: 50%;
  padding-left: 20px;
  /* Spacing between slider and text */
}
#section4 .content {
  display: none;
  /* Hide all content areas initially */
}
#section4 #unique-approach {
  display: block;
}
#section4 .scrollable-image-gallery {
  display: block;
  /* Changed from flex to block */
  width: 66%;
  /* Ensure the container spans the full width */
  overflow-x: auto;
  /* Enable horizontal scrolling */
  white-space: nowrap;
  /* Keep all items on a single line */
  -webkit-overflow-scrolling: touch;
  /* Smooth scrolling on touch devices */
  scrollbar-width: thin;
  /* Thin scrollbar for supporting browsers */
  scrollbar-color: #888 transparent;
  /* Custom scrollbar colors */
  padding: 0;
  margin: 0;
  margin-left: 33%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#section4 .slides {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  /* Ensure the container width spans all children */
}
#section4 .text-area {
  width: 33%;
  /* Adjust based on your design */
  padding: 20px;
  /* Padding for text content */
  left: 10px;
  display: block;
  position: absolute;
}
#section4 .text-area h2 {
  font-family: "Elephant";
  text-shadow: 0px 1px 3px black;
}
#section4 .scrollable-image-gallery img {
  display: inline-block;
  /* Images are inline-block elements */
  width: 500px;
  /* Fixed width for images */
  height: 300px;
  /* Fixed height for images */
  -o-object-fit: cover;
     object-fit: cover;
  /* Cover the element's box */
  margin-right: 10px;
  /* Space between images */
}
#section4 .scrollable-image-gallery::-webkit-scrollbar {
  height: 5px;
}
#section4 .scrollable-image-gallery::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

#section5 .ba-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1100px;
  align-items: center;
  justify-content: center;
}
#section5 .ba-container {
  position: relative;
  width: 300px;
  height: 300px;
  /* Example height - adjust as needed */
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
#section5 .ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  /* Initial position */
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  /* 'After' image */
  background-size: cover;
  background-position: center;
}
#section5 .ba-handle {
  position: absolute;
  left: 50%;
  /* Initially position in the middle */
  top: 0;
  bottom: 0;
  width: 5px;
  background: #3177EE;
  cursor: ew-resize;
  transform: translateX(-50%);
  /* Center the handle */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  /* Ensure it's above both images */
}
#section5 .ba-handle-icon {
  display: block;
  width: 20px;
  /* Size of the circle */
  height: 20px;
  line-height: 20px;
  /* Center the text vertically */
  text-align: center;
  background-color: #3177EE;
  /* Circle color */
  color: #ccc;
  /* Text color */
  border-radius: 50%;
  /* Make it a circle */
  font-size: 14px;
  /* Adjust as needed */
}
#section5 .ba-labels-container {
  display: flex;
  justify-content: space-between;
  width: 300px;
  font-weight: bold;
  text-shadow: 0px 1px 3px black;
}
#section5 .text-description {
  width: 300px;
  margin-top: 3px;
  padding: 5px;
}
#section5 .card {
  background-color: #3177EE;
  border-radius: 30px;
  padding: 15px;
  max-width: 310px;
}

#section6 {
  background-image: url("fitness-background.jpg");
  /* Add a relevant background image */
  background-size: cover;
  color: white;
  text-align: center;
  padding: 50px 20px;
}
#section6 .trainer-section {
  display: flex;
  align-items: center;
  position: relative;
  height: 80vh;
  width: 80vw;
  /* Adjust based on your layout needs */
  color: #fff;
  font-family: "Your Font", sans-serif;
  /* Replace with your font */
  margin-top: 100px;
  justify-content: center;
}
#section6 .trainer-image img {
  position: relative;
  width: 300px;
  /* Adjust based on your layout needs */
  height: 500px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
#section6 .invitation-content {
  max-width: 800px;
  margin: 0 auto;
}
#section6 .lead-text {
  font-size: 1.2em;
  margin-bottom: 20px;
}
#section6 .offer h3 {
  color: #FFD700;
  /* Gold color for highlighting the offer */
  margin: 20px 0;
}
#section6 .cta-buttons button {
  background-color: #008CBA;
  /* Adjust color as needed */
  color: white;
  border: none;
  padding: 15px 30px;
  margin: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}
#section6 .cta-buttons button:hover {
  background-color: #005f73;
  /* Darker shade on hover */
}
#section6 .urgency-text {
  margin-top: 30px;
  font-style: italic;
  /* Tomato color to indicate urgency */
}
#section6 .masonry-gallery {
  -moz-column-count: 3;
       column-count: 3;
  /* Number of columns */
  -moz-column-gap: 1em;
       column-gap: 1em;
  /* Gap between columns */
  max-width: 400px;
  /* Maximum width of the gallery */
  margin: 0 auto;
  /* Center the gallery */
}
#section6 .masonry-gallery img {
  width: 100%;
  /* Make images stretch to fill column width */
  height: auto;
  /* Maintain aspect ratio */
  margin-bottom: 1em;
  /* Gap below each image */
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  /* Prevent images from splitting across columns */
}
#section6 .cta-section {
  position: relative;
  width: 50%;
  /* Set the width to match the background image */
  height: auto;
  /* Set the height to match the background image */
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
  /* Ensure no content spills out of the container */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-width: 400px;
  min-height: 500px;
}
#section6 .cta-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(60%);
  min-height: 600px;
  min-width: 400px;
  opacity: 0.6;
}
#section6 .cta-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Center the content horizontally */
  justify-content: center;
  /* Center the content vertically */
  padding: 15px;
  /* Adjust padding as necessary */
  box-sizing: border-box;
  text-align: center;
}
#section6 .cta-content p {
  margin-top: 0.5em;
  /* Reduce top margin */
  margin-bottom: 0.5em;
  /* Reduce bottom margin */
}
#section6 .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
  /* Adjust font size to ensure text fits */
}
#section6 .cta-button {
  margin-top: 20px;
  /* Add margin-top to push the button down */
  /* Other button styles */
}

#section7 {
  /* Add the previous CSS for .event-calendar, .calendar-header, .event-list, etc., here */
  /* Additional styles for the right column if necessary */
}
#section7 .event-calendar {
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 10px;
  min-height: 300px;
  max-height: 80%;
  overflow: auto;
  overflow-x: hidden;
}
#section7 .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}
#section7 .header-title {
  font-size: 24px;
  font-weight: bold;
}
#section7 .header-buttons button {
  color: #bbb7b7;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: transparent;
}
#section7 .header-buttons button:hover {
  font-weight: bold;
  color: white;
}
#section7 .header-buttons .selected {
  font-weight: bold;
  opacity: 1;
  color: white;
}
#section7 .event-list {
  list-style: none;
  padding: 0;
}
#section7 .event {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#section7 .date-circle {
  width: 60px;
  /* Fixed width */
  height: 60px;
  /* Fixed height to maintain aspect ratio */
  background-color: #3177EE;
  /* Adjust the color to match your design */
  border-radius: 50%;
  /* This ensures the element is a circle */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 15px;
  /* Adjust as needed */
  overflow: hidden;
  /* Ensures nothing spills outside the circle */
}
#section7 .date-day {
  font-size: 18px;
  font-weight: bold;
}
#section7 .date-month,
#section7 .date-year {
  font-size: 12px;
}
#section7 .event-details {
  width: 80%;
}
#section7 .event-details p {
  margin: 0;
}
#section7 .two-column-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
#section7 .left-column,
#section7 .right-column {
  flex: 1;
  /* Each column takes up an equal amount of space */
}
#section7 .right-column {
  padding: 20px;
  /* Light background for contrast */
  border-radius: 10px;
  /* Optional rounded corners */
}
#section7 .right-column .engagement-section {
  /* Assuming a dark theme from the image */
  color: white;
  padding: 20px;
  text-align: center;
}
#section7 .right-column .container {
  max-width: 1200px;
  margin: 0 auto;
}
#section7 .right-column .engagement-text {
  font-size: 1.2em;
  margin-bottom: 20px;
}
#section7 .right-column .newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
#section7 .right-column .newsletter-form input[type=email] {
  padding: 10px;
  font-size: 1em;
}
#section7 .right-column .newsletter-form button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #3177EE;
  color: white;
  border: none;
  cursor: pointer;
}
#section7 .right-column .social-media-groups p {
  font-weight: bold;
  margin-bottom: 10px;
}
#section7 .right-column .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#section7 .right-column .social-icon {
  font-size: 24px;
  /* Adjust the size as needed */
  color: #fff;
  /* This is white color, adjust it as you need */
  margin: 0 10px;
  /* Gives some space around the icons */
}
#section7 .right-column .social-icon:hover {
  color: #1da1f2;
  /* Change the color on hover, example is Twitter blue */
}

#section1 {
  position: relative;
  width: 100%;
  height: 100vh;
}
#section1 .slideshow-container {
  width: 50%;
  height: 100%;
  position: absolute;
  left: 0;
  /* Align to the left */
  top: 0;
  min-width: 300px;
}
#section1 .mySlides {
  display: none;
  height: 100%;
}
#section1 .text-block {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  color: white;
  text-shadow: 0px 3px 6px black;
  padding: 20px;
  z-index: 2;
  font-family: "Elephant";
  font-size: 2.5em;
}
#section1 .fade {
  animation-name: fade;
  animation-duration: 1.5s;
}
@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
#section1 .dots-container {
  position: absolute;
  bottom: 30px;
  /* Adjust as needed */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#section1 .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
#section1 .active,
#section1 .dot:hover {
  background-color: #717171;
}
#section1 .mySlides img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #section1 .slideshow-container,
  #section1 .text-block {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  #section1 .text-block {
    margin-top: 20px;
    /* Add some space between the slideshow and text */
  }
}

#section2 {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 100px 0;
  /* Clearfix to ensure the container contains the floated columns */
}
#section2 .column-2 {
  width: 50%;
  float: left;
  height: 100%;
}
#section2:after {
  content: "";
  display: table;
  clear: both;
}
#section2 .sub-column {
  float: left;
  box-sizing: border-box;
}
#section2 .left-column {
  min-width: 400px;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
}
#section2 .left-column .row {
  flex: 1;
  display: flex;
  margin: 10px 0;
  width: 80%;
}
#section2 .left-column .image-column img {
  width: 200px;
  height: 200px;
  display: block;
  padding: 10px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 600px) {
  #section2 .left-column .image-column img {
    width: 150px;
    height: 150px;
  }
}
#section2 .left-column .image-column,
#section2 .left-column .text-column {
  padding: 10px;
}
#section2 .left-column .image-column h3,
#section2 .left-column .text-column h3 {
  font-family: "Elephant";
  text-shadow: 0px 1px 3px black;
}
#section2 .right-column {
  width: 30%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  min-width: 350px;
}
#section2 .right-column .tab-container {
  border-radius: 15px;
  border: 1px solid #ccc;
  overflow: hidden;
  width: 80%;
  max-width: 600px;
  min-width: 350px;
}
#section2 .right-column .tab-container .tabs {
  background-color: #f1f1f1;
  display: flex;
  padding: 10px;
}
#section2 .right-column .tab-container .tab-button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s;
  flex-grow: 1;
  /* Equal width */
  color: #0D429C;
}
#section2 .right-column .tab-container .tab-button:hover {
  background-color: #ddd;
}
#section2 .right-column .tab-container .tab-content {
  display: none;
  padding: 20px;
  border-top: none;
}
#section2 .right-column .tab-container #Tab1 {
  display: block;
}

#section3 .trainer-section {
  display: flex;
  align-items: center;
  position: relative;
  height: 80vh;
  width: 80vw;
  color: #fff;
  font-family: "Your Font", sans-serif;
  margin-top: 100px;
  justify-content: center;
}
#section3 .trainer-image {
  position: relative;
  width: 300px;
  height: 500px;
  overflow: hidden;
}
#section3 .trainer-image img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
#section3 .vertical-text {
  position: absolute;
  left: 0;
  top: -10px;
  transform: rotate(-90deg) translateX(-100%);
  transform-origin: top left;
  white-space: nowrap;
  text-align: center;
  font-size: 2em;
  letter-spacing: 0.5em;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 0px 3px 6px black;
}
#section3 .scrolling-text {
  width: 50%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  margin-left: auto;
  padding: 20px 10px;
  box-sizing: border-box;
  margin-left: -82px;
  z-index: 1;
  height: 80%;
  margin-top: 50px;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
  text-shadow: 0px 3px 6px black;
}
#section3 .scrolling-text::-webkit-scrollbar {
  width: 5px;
}
#section3 .scrolling-text::-webkit-scrollbar-track {
  background: transparent;
}
#section3 .scrolling-text::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}
#section3 .scrolling-text::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#section4 {
  /* Styling for Webkit browsers like Chrome, Safari */
}
#section4 .interactive-section {
  display: flex;
  align-items: flex-start;
}
#section4 .swiper-container {
  width: 50%;
}
#section4 .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#section4 .text-container {
  width: 50%;
  padding-left: 20px;
}
#section4 .content {
  display: none;
}
#section4 #unique-approach {
  display: block;
}
#section4 .scrollable-image-gallery {
  display: block;
  width: 66%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #888 transparent;
  padding: 0;
  margin: 0;
  margin-left: 33%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#section4 .slides {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
#section4 .text-area {
  width: 33%;
  padding: 20px;
  left: 10px;
  display: block;
  position: absolute;
}
#section4 .text-area h2 {
  font-family: "Elephant";
  text-shadow: 0px 1px 3px black;
}
#section4 .scrollable-image-gallery img {
  display: inline-block;
  width: 500px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-right: 10px;
}
#section4 .scrollable-image-gallery::-webkit-scrollbar {
  height: 5px;
}
#section4 .scrollable-image-gallery::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

#section5 .ba-wrapper {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1100px;
  align-items: center;
  justify-content: center;
}
#section5 .ba-container {
  position: relative;
  width: 300px;
  height: 300px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
#section5 .ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  cursor: ew-resize;
  background-size: cover;
  background-position: center;
}
#section5 .ba-handle {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 5px;
  background: #3177EE;
  cursor: ew-resize;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#section5 .ba-handle-icon {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  background-color: #3177EE;
  color: #ccc;
  border-radius: 50%;
  font-size: 14px;
}
#section5 .ba-labels-container {
  display: flex;
  justify-content: space-between;
  width: 300px;
  font-weight: bold;
  text-shadow: 0px 1px 3px black;
}
#section5 .text-description {
  width: 300px;
  margin-top: 3px;
  padding: 5px;
}
#section5 .card {
  background-color: #3177EE;
  border-radius: 30px;
  padding: 15px;
  max-width: 310px;
}

#section6 {
  background-image: url("fitness-background.jpg");
  background-size: cover;
  color: white;
  text-align: center;
  padding: 50px 20px;
}
#section6 .trainer-section {
  display: flex;
  align-items: center;
  position: relative;
  height: 80vh;
  width: 80vw;
  color: #fff;
  font-family: "Your Font", sans-serif;
  margin-top: 100px;
  justify-content: center;
}
#section6 .trainer-image img {
  position: relative;
  width: 300px;
  height: 500px;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
#section6 .invitation-content {
  max-width: 800px;
  margin: 0 auto;
}
#section6 .lead-text {
  font-size: 1.2em;
  margin-bottom: 20px;
}
#section6 .offer h3 {
  color: #FFD700;
  margin: 20px 0;
}
#section6 .cta-buttons button {
  background-color: #008CBA;
  /* Adjust color as needed */
  color: white;
  border: none;
  padding: 15px 30px;
  margin: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}
#section6 .cta-buttons button:hover {
  background-color: #005f73;
}
#section6 .urgency-text {
  margin-top: 30px;
  font-style: italic;
}
#section6 .masonry-gallery {
  -moz-column-count: 3;
       column-count: 3;
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 400px;
  margin: 0 auto;
}
#section6 .masonry-gallery img {
  width: 100%;
  /* Make images stretch to fill column width */
  height: auto;
  /* Maintain aspect ratio */
  margin-bottom: 1em;
  /* Gap below each image */
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  /* Prevent images from splitting across columns */
}
#section6 .cta-section {
  position: relative;
  width: 50%;
  height: auto;
  color: white;
  font-family: Arial, sans-serif;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  min-width: 400px;
  min-height: 500px;
}
#section6 .cta-background {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(60%);
  min-height: 600px;
  min-width: 400px;
  opacity: 0.6;
}
#section6 .cta-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}
#section6 .cta-content p {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
#section6 .benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9em;
  /* Adjust font size to ensure text fits */
}
#section6 .cta-button {
  margin-top: 20px;
  /* Add margin-top to push the button down */
  /* Other button styles */
}

#section7 {
  /* Additional styles for the right column if necessary */
}
#section7 .event-calendar {
  color: white;
  font-family: Arial, sans-serif;
  padding: 20px;
  border-radius: 10px;
  min-height: 300px;
  max-height: 80%;
  overflow: auto;
  overflow-x: hidden;
}
#section7 .calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}
#section7 .header-title {
  font-size: 24px;
  font-weight: bold;
}
#section7 .header-buttons button {
  color: #bbb7b7;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background-color: transparent;
}
#section7 .header-buttons button:hover {
  font-weight: bold;
  color: white;
}
#section7 .header-buttons .selected {
  font-weight: bold;
  opacity: 1;
  color: white;
}
#section7 .event-list {
  list-style: none;
  padding: 0;
}
#section7 .event {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
#section7 .date-circle {
  width: 60px;
  height: 60px;
  background-color: #3177EE;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-right: 15px;
  overflow: hidden;
}
#section7 .date-day {
  font-size: 18px;
  font-weight: bold;
}
#section7 .date-month,
#section7 .date-year {
  font-size: 12px;
}
#section7 .event-details {
  width: 80%;
}
#section7 .event-details p {
  margin: 0;
}
#section7 .two-column-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
#section7 .left-column,
#section7 .right-column {
  flex: 1;
}
#section7 .right-column {
  padding: 20px;
  border-radius: 10px;
}
#section7 .right-column .engagement-section {
  color: white;
  padding: 20px;
  text-align: center;
}
#section7 .right-column .container {
  max-width: 1200px;
  margin: 0 auto;
}
#section7 .right-column .engagement-text {
  font-size: 1.2em;
  margin-bottom: 20px;
}
#section7 .right-column .newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
#section7 .right-column .newsletter-form input[type=email] {
  padding: 10px;
  font-size: 1em;
}
#section7 .right-column .newsletter-form button {
  padding: 10px 20px;
  font-size: 1em;
  background-color: #3177EE;
  color: white;
  border: none;
  cursor: pointer;
}
#section7 .right-column .social-media-groups p {
  font-weight: bold;
  margin-bottom: 10px;
}
#section7 .right-column .social-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#section7 .right-column .social-icon {
  font-size: 24px;
  color: #fff;
  margin: 0 10px;
}
#section7 .right-column .social-icon:hover {
  color: #1da1f2;
}/*# sourceMappingURL=style.css.map */