@import url(fontawesome.css);
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Classic:wght@400;700&display=swap');
body {
  font-family: 'Montserrat Classic', sans-serif;
}

/* Basic */

a {
color: #3CF;
  text-decoration: none;
}

a:hover {
color: #FC3;
  text-decoration: none;
}

ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

p {
  font-size: 13px;
  line-height: 22px;
}


.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #683c5f;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translate(-50%);
}

.section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: #130b11;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #683c5f;
}


/* Buttons */

.main-button a {
  background-color: #683c5f;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  display: inline-block;
  outline: none;
}

a.menu-link { display: none; }

@media screen and (max-width: 950px) {
a.menu-link {
  float: right;
  display: block;
  font-size: 36px;
  color: #130b11;
  padding-right: 30px;
  padding-top: 15px;
}
nav[role="navigation"] {
  clear: both;
  -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;
}
.js nav[role="navigation"] {
  overflow: hidden;
  max-height: 0;
}
nav[role="navigation"].active {
  max-height: 100em;
  height: 100em;
  overflow-y: scroll;
}
nav[role="navigation"] ul {
  top: 0;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  border-top: 1px solid #683c5f;
  background-color: white;
}
nav[role="navigation"] li a {
  display: block;
  padding: 15px 0px;
  border-bottom: 1px solid #3d2338;
  text-align: center;
  color: #130b11;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5;
}
nav[role="navigation"] li:hover a,
nav[role="navigation"] li.active a {
    color: #e786d3;
}

@media screen and (min-width: 951px) {
  .js nav[role="navigation"] {
    max-height: none;
  }

  nav[role="navigation"] li {
    display: inline-block;
    margin: 0 0.25em;
  }
  nav[role="navigation"] li a {
    border: 0;
  }
}
}

/* Header */

@media screen and (max-width: 1050px) {
.main-header .logo {
    padding-left: 30px!important;
}

.main-menu {
    padding-right: 30px!important;
}

.main-menu li {
    margin-left: 5px!important;
}
}

.main-header {
  background-color: white;
  height: 80px;
  position: fixed;
  z-index: 12;
  width: 100%;
  top: 0;
}

.logo {
  max-width: 100%;
  height: auto;
}
.main-header .logo {
  float: left;
  height: 80px; /* Ensures the logo container height matches the line-height */
  line-height: 80px; /* Line height should be equal to the height for vertical centering */
  padding-left: 60px; /* Padding on the left for horizontal spacing */
  display: flex;
  align-items: center; /* Centers the logo vertically */
}

.main-header .logo a {
  letter-spacing: .3rem;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 560;
  color: black;
  display: inline-block; /* Ensures the link behaves correctly within flex */
  margin: 0; /* Removes any default margin that might affect spacing */
}
.main-header .logo a em {
  font-style: normal;
  color: black;
}

.main-menu {
  float: right;
  padding-right: 60px;
}

.main-menu li {
  display: inline-block;
  line-height: 79px;
  margin-left: 15px;
  position: relative;
}

.main-menu li:first-child {
  margin-left: 0px;
}

.main-menu li a {
  padding: 10px 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #130b11;
  border: 2px solid transparent;
  transition: all 0.5s;
}

.main-menu li a.signup {
  padding: 10px 15px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: #bd6dac;
  border: 2px solid transparent;
  transition: all 0.5s;
}

.sub-menu {
  display: none;
  position: absolute; /* To make it appear as a dropdown */
  background-color: white; /* Add any background color you want */
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc; /* Optional: add border to make it look like a dropdown */
  z-index: 1000; /* Ensure it appears above other content */
}

/* Ensure the submenu is displayed when the parent `li` is hovered over or clicked */
.has-submenu {
  position: relative;
}

.has-submenu.open .sub-menu {
  display: block;
}

a.external.no-after::after {
  display: none;
}

a.no-after::after {
  display: none;
}
.sub-menu li a::after {
  content: none; /* This removes any ::after content from submenu items */
}
.main-menu li.has-submenu a:after {
  content: '\f107';
  font-family: "FontAwesome";
  margin-left: 5px;
}


.main-menu li .sub-menu {
  position: absolute;
  width: 160px;
  background-color: grey;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
}

.main-menu li:hover .sub-menu {
  opacity: 1;
  visibility: visible;
}

.main-menu li .sub-menu li {
  display: block;
  text-align: center;
  line-height: 20px;
  margin-left: 0px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #683c5f;
}

.main-menu li .sub-menu li:first-child {
  padding-top: 15px;
}

.main-menu li .sub-menu li:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.main-menu li .sub-menu li a {
  font-size: 12px;
  font-weight: 500;
  padding: 0px 15px;
  letter-spacing: 0.5px;
  color:white;
  border: none;
  transition: all 0.5s;
}

.main-menu li .sub-menu li a:hover {
  color: #e786d3;
  border: none;
}

.main-nav li:hover a,
.main-nav li.active a {
  border: 2px solid #bd6dac;
}

@media (max-width: 950px) {
.main-nav li:hover a,
.main-nav li.active a {
  border: 2px solid transparent;
  border-bottom: 1px solid rgba(250,250,250,0.25);
}
}



/* Slider */

.swiper-container {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1; /* Behind the text */
}
.swiper-slide img.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the entire section */
}
.video-overlay {
  position: relative;
  z-index: 1; /* Ensure overlay content is on top */
  text-align: center;
  color: white;
}

.main-banner {
  height: 100vh;
  position: relative;
  
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-application {
  background-color: #683C5F !important;
  overflow-y: hidden !important;
}
#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    /* background-color: rgba(255, 255, 255, 0.35); */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 7px;
    width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 64px; /* You can remove this since no text is present */
  font-weight: 800; /* Remove this as well */
  color: #fff; /* Not needed without text */
  letter-spacing: 1px; /* Not needed without text */
  display: flex;
  justify-content: center; /* Center the logo horizontally */
  align-items: center; /* Center the logo vertically */
}

.main-banner .caption h2 .logo {
  max-height: 200px; /* Adjust the size of the logo as needed */
  height: auto;
  width: auto;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f5a425;
  font-weight: 900;
}

.main-banner .caption .main-button {
  background-color: #683c5f; /* Button background color */
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%; /* Ensures the button fills the available space */
  max-width: 200px; /* Set a maximum width to maintain button size */
  margin: 0 auto; /* Center the button horizontally */
  text-align: center;
}

.main-banner .caption .main-button:hover {
  background-color: #683c5f; /* Darker shade on hover */
}

.main-banner .caption .main-button .button-logo {
  max-height: 30px; /* Adjust the size of the logo */
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto; /
}

.main-banner .caption .main-button img {
  margin: 0 auto;
}

.social-media {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10; /* Ensure it appears above the video */
}

.social-media a {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #bd6dac;
}

@media screen and (max-width: 1180px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 58px;
  }

}
@media screen and (max-width: 767px) {

  .main-banner .caption h6 {
    font-weight: 500;
  }

  .main-banner .caption h2 {
    font-size: 36px;
  }

  .social-media {
    right: 10px;
  }

  .social-media a {
    font-size: 20px;
    margin-bottom: 15px;
  }

}


/* Features */

section.features .col-4 {
    padding-left: 0px;
    padding-right: 0px;
}

.features-post {
  position: relative;
  margin-bottom: 0px;
}

.features-thumb {
  overflow: hidden;
  position: relative;
}

.features-thumb img {
  width: 100%;
}

.features-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  color: black;
  padding: 20px; /* Reduced padding */
  
  /* Flexbox properties for centering */
  display: flex;
  flex-direction: column; /* Arrange content vertically */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
  text-align: center; /* Center text inside the content */
}

.features-content:hover {
  background-color: #BD6DAC;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.5); /* Reduced box-shadow size */
}


.features-content h4 {
  font-size: 14px; /* Reduced font size */
  text-transform: uppercase;
  font-weight: 700;
  color: black;
  letter-spacing: 0.5px; /* Reduced letter spacing */
  margin-bottom: 8px; /* Reduced margin below heading */
}

.features-content h4 i {
  margin-right: 10px; /* Reduced margin */
  font-size: 20px; /* Reduced icon size */
}

.features-content p {
margin-bottom: 10px; /* Reduced margin below paragraph */
}


.features-content a {
  margin-top: 10px; /* Reduced margin above link */
  display: inline-block;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.3px; /* Reduced letter spacing */
  font-weight: 700;
  font-size: 12px; /* Reduced font size */
  border-bottom: 1px solid #fff; /* Reduced border size */
}

.features-content p.hidden-sm {
  display: none;
}

.second-features,
.third-features {
    border-left: 1px solid rgba(250,250,250,0.1);
}

.content-hide {
  margin-top: 15px;
  display: none;
}

.content-hide p {
  color: white;
}

@media screen and (max-width: 767px) {
  .features-content {
    padding: 10px; /* Further reduced padding for small screens */
  }

  .features-content h4 {
    font-size: 12px; /* Smaller font size for small screens */
  }

  .features-content p {
    display: none;
  }

  .features-content p.hidden-sm {
    display: block;
  }

  .features-content a {
    letter-spacing: 0px;
    font-size: 11px; /* Smaller font size for small screens */
    font-weight: 600;
  }
}
/* Instagram feed */

.section.feed {
  background-color: #683c5f;
  display: flex;
  align-items: stretch;
  padding: 0 0 170px 0; /* Apply padding instead of margin */
  margin-bottom: 0; /* Remove margin to ensure consistent background color */
}

section.why-us .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.feed .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #925485;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

/* Style the heading */
section.feed .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #925485;
}
.section.feed .sk-ig-load-more-posts, .tutorial_link {
  display: none !important;
}
.instagram-user-root-container {
  display: flex !important;
  color:white !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  margin: 0 auto !important;
  width: fit-content !important; /* Ensures the container doesn't stretch beyond its content */
} 
.sk-ig-profile-bio-container a {
  color: white !important;;
}
.sk-ig-profile-usename {
  color: white !important;
}

button.instagram-user-container {
  background-color: white !important;
}

.sk-ig-caption-container {
  background-color: #683c5f !important;
}

.sk-ig-caption{
  display: block;
  white-space: normal;
  text-align: center;
  padding-right: 10px;
  box-sizing: content-box;
  color: white !important;
  font-size: 16px !important; /* Start with a reasonable default */
  max-height: calc(1.2em * 2) !important; /* Your specified max-height */
}
.sk-ig-feed-m-r-15px {
display: none;
}
@media (max-width: 768px) {
  .sk-ig-caption{
    max-height: 100% !important;
  }
}

@media (min-width: 992px) {
/* Wrapper for the entire popup */
  .mfp-wrap {
    overflow: hidden auto;
    opacity: 1;
    height: 100% !important;
    max-width: 50% !important;
    margin: 0 auto !important; /* Centers the element horizontally */
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Container for the popup content */
  .mfp-container {
    max-width: 90% !important;
    max-height: 90% !important;
    margin: 0 auto !important;
  }

  /* Content area of the popup */
  .mfp-content {
    position: relative !important;
    background: #fff !important;
    color: #130b11 !important;
    margin-top: 25px !important;
    margin-bottom: 25px !important;
    max-width: 90% !important;
    max-height: 100% !important;
    overflow: hidden !important; /* Prevents scrolling */
  }

  /* Popup video styling */
  video.ig_media.sk-ig-video {
    width: auto !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important; /* Ensures the video fits within the container */
    margin: 0 auto !important; /* Centers the video */
  }

  .sk_loading_image {
    width: auto !important;
    height: 100% !important;
    display: block !important;
    object-fit: contain !important; /* Ensures the video fits within the container */
    margin: 0 auto !important; /* Centers the video */
  }

  /* Media column */
  .sk_popup_column_media img.ig_media {
    width: auto !important; /* Make the width 100% of its container */
    height: 100% !important; /* Adjust height to maintain aspect ratio */
    display: block !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  /* Popup column content */
  .sk_popup_column {
    display: block !important;
    background: #fff !important;
    color: #130b11 !important;
    overflow: auto !important;
  }

  /* Spacer within the column */
  .sk_popup_column_spacer {
    padding: 30px !important;
  }

  /* User section in the popup */
  .sk_popup_column_user {
    font-size: 16px !important;
  }

  /* Main content within the popup */
  .sk_popup_column_body {
    overflow-y: auto !important;
    max-height: calc(100% - 60px) !important;
  }

  /* Footer of the popup */
  .sk_popup_column_footer {
    bottom: 30px !important;
    font-size: 16px !important;
  }

  /* Styling for links */
  .href_status_trigger {
    color: #bd6dac !important;
  }

  .href_status_trigger:hover {
    text-decoration: underline !important;
  }

  /* Close button styling */
  .mfp-close {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
  }

  /* Previous and next buttons */
  .prev_sk_ig_feed_post, .next_sk_ig_feed_post {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    font-size: 24px !important;
  }

  .prev_sk_ig_feed_post {
    left: 10px !important;
  }

  .next_sk_ig_feed_post {
    right: 10px !important;
  }

  .next_sk_ig_feed_post.display-none {
    display: none !important;
  }

  .mfp-preloader {
    display: none !important; /* Hides the preloader */
  }
}
.sk-instagram-feed {
  background-color: #683c5f !important;
}

.swiper-button-next {
  color: black !important;
}

.swiper-button-next:hover {
  color: #e786d3 !important;
}

.swiper-button-prev {
  color: black !important;
}

.swiper-button-prev:hover {
  color: #e786d3 !important;
}

.sk-arrow.sk-arrow-right {
  /* border-color: #130b11 !important;
  color: #130b11 !important; */
  visibility: hidden;
}

.sk-arrow.sk-arrow-right:hover {
  /* border-color: #e786d3 !important; */
  visibility: hidden;
  /* color: #e786d3 !important; 
  opacity: 1 !important;  */
}

.sk-arrow.sk-arrow-left {
  /* border-color: #130b11 !important;
  color: #130b11 !important; */
  visibility: hidden;
}

.sk-arrow.sk-arrow-left:hover {
  /* border-color: #e786d3 !important; */
  visibility: hidden;
  /* color: #e786d3 !important; 
  opacity: 1 !important;  */
}
.sk-instagram-feed-item {
  background-color: #683c5f !important;
  max-height: 500px; /* Set a reasonable max-height */
  overflow-y: auto; /* Add a scrollbar if the content exceeds max-height */
}

.section.feed, section.feed.container, .row, .col-md-12 {
  height: auto; /* Ensure that the container adapts to the content height */
  overflow: hidden; /* Hide any overflowing content, if necessary */
}

/* Why Choosing Us */

section.why-us {
  background-color: #683c5f;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
}

section.why-us .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.why-us .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #bd6dac;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

/* Style the heading */
section.why-us .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #bd6dac;
}

.row {
  display: flex;
  align-items: center; /* Vertically centers the content */
}

.col-md-6 {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  align-items: flex-start; /* Align items to the start (left) */
  justify-content: center; /* Center items vertically */
  text-align: left; /* Ensure the text is left-aligned */
}

.col-md-6 img {
  max-width: 100%; /* Ensures the image scales appropriately */
  height: auto; /* Maintain the aspect ratio of the image */
}


#tabs {
  text-align: center;
}
#tabs ul {
  margin: 0;
  padding: 0;
  display: flex; /* Use flexbox for a horizontal layout */
  justify-content: center; /* Center the tabs horizontally */
  list-style-type: none; /* Remove bullets */
}

#tabs ul li {
  flex: 1; /* Distribute space evenly between tabs */
  text-align: center;
  font-weight: 400;
  font-size: 1.2em;
  letter-spacing: 1px;
}

#tabs ul li a {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  outline: 0;
  padding-bottom: 30px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
}

#tabs ul li a:after, 
#tabs ul li a:before {
    transition: all 0.3s;
    content: '';
    position: absolute;
    left: 50%;
    transform: translate(-50%);
}

#tabs ul li a:after {
    width: 10px;
    height: 10px;
    background-color: #fff;
    bottom: 0;
}

#tabs ul li a:before {
    width: 25px;
    height: 25px;
    border: 2px solid transparent;
    background-color: transparent;
    bottom: -5px;
}

#tabs ul .ui-tabs-active a {
  color: #bd6dac;
}

#tabs ul .ui-tabs-active a:after {
  background-color: #bd6dac;
  width: 15px;
  height: 15px;
}

#tabs ul .ui-tabs-active a:before {
  border-color: #bd6dac;
}
#tabs h4 {
    margin-top: 60px;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 30px;
}

#tabs p {
    margin-top: 10px;
    color: #fff;
    font-size: 15px;
    line-height: 28px;
}

.tabs-content {
    margin-top: 60px;
    text-align: left;
}

p.with-lines::before {
  content: ""; /* Empty content */
  display: block;
  width: 100%; /* Full width of the paragraph */
  height: 2px; /* Thickness of the lines */
  background-color: white; /* Color of the lines */
  margin-bottom: 4px;
  margin-top: 50px !important; /* Spacing between lines */
}

/* Optional: Styling for the paragraph itself */
p.with-lines {
  font-size: 16px !important;
  color: white;
  text-align: center; /* Center the paragraph text */
  margin-top: 20px !important; /* Space above the paragraph */
}

@media screen and (max-width: 767px) {
  #tabs ul {
    flex-direction: column; /* Stack tabs vertically on small screens */
    align-items: center;
  }

  #tabs ul li {
    flex: none; 
    margin-bottom: 15px;/* Remove flex-grow on small screens */
  }
  .tabs-content {
      text-align: center;
  }

}

.tabs-content img {
    width: 100%;
    overflow: hidden;
    padding-right: 45px;
}

@media screen and (max-width: 767px) {

  .tabs-content img {
      padding-right: 0px;
  }

}

section.team {
  background-color: #683c5f;
  margin-top: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  position: relative;
  max-height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

section.team .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.team .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #bd6dac;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

section.team .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #bd6dac;
}

section.team .our-team .team-wrap {
  padding: 0 40px;
}

section.team .our-team .container-fluid {
  padding: 0 50px;
}

.section.team .team-img {/* Set a fixed height for the image container */
  position: relative;
  width: 100%; /* Responsive width, adjust as necessary */
  padding-top: 150%; /* Height/Width = 1680/1120 ≈ 150% */
  overflow: hidden;
}

.section.team .team-img img {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.section.team .team-img:hover img {
  transform: scale(1.1);  /* Scales up the image by 10% */
}

section.team .team-member,
.team-img {
  position: relative;
  overflow: hidden;
}

section.team .team-title {
  margin: 30px 0 7px;
  font-weight: 700;
  color: white;
}


section.team .overlay {
  background-color: rgba(20,20,20,.7);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

section.team .team-details {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 5%;
  overflow: hidden;
  width: 100%;
  z-index: 2;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

section.team .team-details p {
  color: #fff;
}

section.team .team-img:hover .team-details {

  opacity: 1;
  margin-top: -80px;
}

section.team .team-img:hover .overlay {
  opacity: 1;
}

section.team .socials a {
  display: inline-block;
  width: 37px;
  height: 37px;
  background-color: transparent;
}

section.team .socials i {
  line-height: 37px;
  color: white;
  font-size: 14px;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

section.team .team-details .socials i {
	color: #fff;
}

section.team .socials a:hover i {
  color: #fff;
  background-color: #bd6dac;
}
section.prices {
  margin-top: 80px;
  background-color: #683c5f;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  position: relative;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

section.prices .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.prices .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #bd6dac;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

section.prices .section-heading h2 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #bd6dac;
}
section.prices body {
  text-align: center;
  margin: 20px;
}

section.prices h1 {
  font-size: 24px;
  margin-bottom: 20px;
}

section.prices .table-container {
  width: 60%;
  margin: 50px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.5);
  overflow: hidden; /* Ensures the rounded corners are visible */
  background-color: #ffe6f0;
}

section.prices table {
  width: 100%;
  border-collapse: collapse;
}

section.prices th, td {
  padding: 20px;
  text-align: center;
  border: 1px solid #e3e3e3;
}

section.prices th {
  background-color: #bd6dac;
  color: white;
  font-size: 1.2em;
}

section.prices td {
  font-size: 1.1em;
  color: black;
}

section.prices th:first-child, td:first-child {
  background-color: #bd6dac;
  color: white;
  font-weight: bold;
  width: 50%;
}

@media (max-width: 768px) {
  section.prices table {
    width: 100%;
    margin: 20px auto; /* Adjust margin for smaller screens */
  }

  section.prices th, td {
    padding: 15px;
    font-size: 0.9em; /* Adjust font size for smaller screens */
  }
}

section.faq {
  background-color: #683c5f;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;
  position: relative;
  min-height: 100vh;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-bottom: -7px;
}

section.faq .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.faq .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #bd6dac;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

section.faq .section-heading h2 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #bd6dac;
}


section.faq * {
  box-sizing: border-box;
}
*::before, *::after {
  box-sizing: border-box;
}

section.faq body {
  background: #fff;
  color: white;
  display: flex;
  width: 100%;
  height: 100%;
}

section.faq .container {
  margin: 0 auto;
  padding: 4rem;
  width: 100%;
  height: 100%;
  padding: 4rem;
}

section.faq .accordion .accordion-item {
  border-bottom: 1px solid white;
}
section.faq .accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #bd6dac;
}
section.faq .accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: white;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
section.faq .accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #bd6dac;
}
section.faq .accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #bd6dac;
  border: 1px solid #bd6dac;
}
section.faq .accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
section.faq .accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
section.faq .accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
section.faq .accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
section.faq .accordion button[aria-expanded=true] {
  color: #bd6dac;
}
section.faq .accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
section.faq .accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 18em;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
section.faq .accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}
section.faq .accordion .accordion-content p {
  color: white;
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

/* Mobile styling */
@media (max-width: 600px) {
  section.faq .accordion button {
    font-size: 1rem;
    padding: 0.75em 1em; /* Adjusted padding */
    display: flex; /* Use flexbox to align text and icon */
    justify-content: space-between; /* Ensure space between text and icon */
    align-items: center; /* Vertically center both text and icon */
    word-wrap: break-word; /* Allow text to wrap if necessary */
  }

  section.faq .accordion button .accordion-title {
    padding: 0; /* Remove extra padding */
    flex: 1; /* Allow the text to take up remaining space */
  }

  section.faq .accordion button .icon {
    margin-left: 10px; /* Add margin to the left of the icon */
    width: 18px;
    height: 18px;
    flex-shrink: 0; /* Prevent the icon from shrinking */
  }

  section.faq .accordion button .icon::before {
    top: 8px;
    left: 4px;
    width: 9px;
    height: 2px;
  }

  section.faq .accordion button .icon::after {
    top: 4px;
    left: 8px;
    width: 2px;
    height: 9px;
  }
}

@media (min-width: 768px) {
  .col-five {
    -ms-flex: 0 0 20%; /* For IE10 */
    flex: 0 0 20%;
    max-width: 20%;
    
    /* The following lines ensure it behaves like a normal bootstrap column */
    position: relative;
    width: 100%;
    padding-right: 15px; /* Or your Bootstrap gutter width */
    padding-left: 15px;  /* Or your Bootstrap gutter width */
  }
}

section.instructor .container {
  margin: auto;
  padding: 0 1rem;
  max-width: 71.25rem;
  width: 100%;
}

section.instructor .grid {
  display: flex;
  flex-direction: column;
  flex-flow: row wrap;
}
section.instructor .grid > [class*=column-] {
  display: block;
}

section.instructor .first {
  order: -1;
}

section.instructor .last {
  order: 12;
}

section.instructor .align-top {
  align-items: start;
}

section.instructor .align-center {
  align-items: center;
}

section.instructor .align-bottom {
  align-items: end;
}

section.instructor .column-xs-1 {
  flex-basis: 8.3333333333%;
  max-width: 8.3333333333%;
}

section.instructor .column-xs-2 {
  flex-basis: 16.6666666667%;
  max-width: 16.6666666667%;
}

section.instructor .column-xs-3 {
  flex-basis: 25%;
  max-width: 25%;
}

section.instructor .column-xs-4 {
  flex-basis: 33.3333333333%;
  max-width: 33.3333333333%;
}

section.instructor .column-xs-5 {
  flex-basis: 41.6666666667%;
  max-width: 41.6666666667%;
}

section.instructor .column-xs-6 {
  flex-basis: 50%;
  max-width: 50%;
}

section.instructor .column-xs-7 {
  flex-basis: 58.3333333333%;
  max-width: 58.3333333333%;
}

section.instructor .column-xs-8 {
  flex-basis: 66.6666666667%;
  max-width: 66.6666666667%;
}

section.instructor .column-xs-9 {
  flex-basis: 75%;
  max-width: 75%;
}

section.instructor .column-xs-10 {
  flex-basis: 83.3333333333%;
  max-width: 83.3333333333%;
}

section.instructor .column-xs-11 {
  flex-basis: 91.6666666667%;
  max-width: 91.6666666667%;
}

section.instructor .column-xs-12 {
  flex-basis: 100%;
  max-width: 100%;
}

@media (min-width: 48rem) {
  section.instructor .column-sm-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  section.instructor .column-sm-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  section.instructor .column-sm-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  section.instructor .column-sm-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  section.instructor .column-sm-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  section.instructor .column-sm-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  section.instructor .column-sm-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  section.instructor .column-sm-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  section.instructor .column-sm-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  section.instructor .column-sm-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  section.instructor .column-sm-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  section.instructor .column-sm-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 62rem) {
  section.instructor .column-md-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  section.instructor .column-md-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  section.instructor .column-md-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  section.instructor .column-md-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  section.instructor .column-md-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  section.instructor .column-md-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  section.instructor .column-md-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  section.instructor .column-md-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  section.instructor .column-md-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  section.instructor .column-md-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  section.instructor .column-md-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  section.instructor .column-md-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@media (min-width: 75rem) {
  section.instructor .column-lg-1 {
    flex-basis: 8.3333333333%;
    max-width: 8.3333333333%;
  }

  section.instructor .column-lg-2 {
    flex-basis: 16.6666666667%;
    max-width: 16.6666666667%;
  }

  section.instructor .column-lg-3 {
    flex-basis: 25%;
    max-width: 25%;
  }

  section.instructor .column-lg-4 {
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }

  section.instructor .column-lg-5 {
    flex-basis: 41.6666666667%;
    max-width: 41.6666666667%;
  }

  section.instructor .column-lg-6 {
    flex-basis: 50%;
    max-width: 50%;
  }

  section.instructor .column-lg-7 {
    flex-basis: 58.3333333333%;
    max-width: 58.3333333333%;
  }

  section.instructor .column-lg-8 {
    flex-basis: 66.6666666667%;
    max-width: 66.6666666667%;
  }

  section.instructor .column-lg-9 {
    flex-basis: 75%;
    max-width: 75%;
  }

  section.instructor .column-lg-10 {
    flex-basis: 83.3333333333%;
    max-width: 83.3333333333%;
  }

  section.instructor .column-lg-11 {
    flex-basis: 91.6666666667%;
    max-width: 91.6666666667%;
  }

  section.instructor .column-lg-12 {
    flex-basis: 100%;
    max-width: 100%;
  }
}
@supports (display: grid) {
  section.instructor .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  section.instructor .grid > [class*=column-] {
    margin: 0;
    max-width: 100%;
  }

  section.instructor .column-xs-1 {
    grid-column-start: span 1;
    grid-column-end: span 1;
  }

  section.instructor .column-xs-2 {
    grid-column-start: span 2;
    grid-column-end: span 2;
  }

  section.instructor .column-xs-3 {
    grid-column-start: span 3;
    grid-column-end: span 3;
  }

  section.instructor .column-xs-4 {
    grid-column-start: span 4;
    grid-column-end: span 4;
  }

  section.instructor .column-xs-5 {
    grid-column-start: span 5;
    grid-column-end: span 5;
  }

  section.instructor .column-xs-6 {
    grid-column-start: span 6;
    grid-column-end: span 6;
  }

  section.instructor .column-xs-7 {
    grid-column-start: span 7;
    grid-column-end: span 7;
  }

  section.instructor .column-xs-8 {
    grid-column-start: span 8;
    grid-column-end: span 8;
  }

  section.instructor .column-xs-9 {
    grid-column-start: span 9;
    grid-column-end: span 9;
  }

  section.instructor .column-xs-10 {
    grid-column-start: span 10;
    grid-column-end: span 10;
  }

  section.instructor .column-xs-11 {
    grid-column-start: span 11;
    grid-column-end: span 11;
  }

  section.instructor .column-xs-12 {
    grid-column-start: span 12;
    grid-column-end: span 12;
  }

  @media (min-width: 48rem) {
    section.instructor .column-sm-1 {
      grid-column-start: span 1;
      grid-column-end: span 1;
    }

    section.instructor .column-sm-2 {
      grid-column-start: span 2;
      grid-column-end: span 2;
    }

    section.instructor .column-sm-3 {
      grid-column-start: span 3;
      grid-column-end: span 3;
    }

    section.instructor .column-sm-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }

    section.instructor .column-sm-5 {
      grid-column-start: span 5;
      grid-column-end: span 5;
    }

    section.instructor .column-sm-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }

    section.instructor .column-sm-7 {
      grid-column-start: span 7;
      grid-column-end: span 7;
    }

    section.instructor .column-sm-8 {
      grid-column-start: span 8;
      grid-column-end: span 8;
    }

    section.instructor .column-sm-9 {
      grid-column-start: span 9;
      grid-column-end: span 9;
    }

    section.instructor .column-sm-10 {
      grid-column-start: span 10;
      grid-column-end: span 10;
    }

    section.instructor .column-sm-11 {
      grid-column-start: span 11;
      grid-column-end: span 11;
    }

    section.instructor .column-sm-12 {
      grid-column-start: span 12;
      grid-column-end: span 12;
    }
  }
  @media (min-width: 62rem) {
    section.instructor .column-md-1 {
      grid-column-start: span 1;
      grid-column-end: span 1;
    }

    section.instructor .column-md-2 {
      grid-column-start: span 2;
      grid-column-end: span 2;
    }

    section.instructor .column-md-3 {
      grid-column-start: span 3;
      grid-column-end: span 3;
    }

    section.instructor .column-md-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }

    section.instructor .column-md-5 {
      grid-column-start: span 5;
      grid-column-end: span 5;
    }

    section.instructor .column-md-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }

    section.instructor .column-md-7 {
      grid-column-start: span 7;
      grid-column-end: span 7;
    }

    section.instructor .column-md-8 {
      grid-column-start: span 8;
      grid-column-end: span 8;
    }

    section.instructor .column-md-9 {
      grid-column-start: span 9;
      grid-column-end: span 9;
    }

    section.instructor .column-md-10 {
      grid-column-start: span 10;
      grid-column-end: span 10;
    }

    section.instructor .column-md-11 {
      grid-column-start: span 11;
      grid-column-end: span 11;
    }

    section.instructor .column-md-12 {
      grid-column-start: span 12;
      grid-column-end: span 12;
    }
  }
  @media (min-width: 75rem) {
    section.instructor .column-lg-1 {
      grid-column-start: span 1;
      grid-column-end: span 1;
    }

    section.instructor .column-lg-2 {
      grid-column-start: span 2;
      grid-column-end: span 2;
    }

    section.instructor .column-lg-3 {
      grid-column-start: span 3;
      grid-column-end: span 3;
    }

    section.instructor .column-lg-4 {
      grid-column-start: span 4;
      grid-column-end: span 4;
    }

    section.instructor .column-lg-5 {
      grid-column-start: span 5;
      grid-column-end: span 5;
    }

    section.instructor .column-lg-6 {
      grid-column-start: span 6;
      grid-column-end: span 6;
    }

    section.instructor .column-lg-7 {
      grid-column-start: span 7;
      grid-column-end: span 7;
    }

    section.instructor .column-lg-8 {
      grid-column-start: span 8;
      grid-column-end: span 8;
    }

    section.instructor .column-lg-9 {
      grid-column-start: span 9;
      grid-column-end: span 9;
    }

    section.instructor .column-lg-10 {
      grid-column-start: span 10;
      grid-column-end: span 10;
    }

    section.instructor .column-lg-11 {
      grid-column-start: span 11;
      grid-column-end: span 11;
    }

    section.instructor .column-lg-12 {
      grid-column-start: span 12;
      grid-column-end: span 12;
    }
  }
}

section.instructor * {
  box-sizing: border-box;
}

section.instructor *::before, *::after {
  box-sizing: border-box;
}

section.instructor body {
  font-family: 'Montserrat Classic', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #bd6dac;
  background: #fff;
  text-rendering: optimizeLegibility;
}

section.instructor h1, h2, h3 {
  font-family: 'Montserrat Classic', sans-serif;
  color: white;
  line-height: 1.1;
}

section.instructor h2, h3 {
  color: white;
  font-weight: 400;
}

section.instructor h1 {
  font-size: 2.325rem;
  font-weight: 500;
  margin: 0;
}

section.instructor h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
}

section.instructor h3 {
  font-size: 1.75rem;
  margin: 0 0 2rem;
}

section.instructor p {
  font-size: 1.1rem;
  font-family: 'Montserrat Classic', sans-serif;
  margin: 0 0 1.5rem;
  color: white;
}
section.instructor p:nth-child(4) {
  margin: 0;
}

section.instructor a {
  color: white;
  text-decoration: none;
}
section.instructor a:hover {
  color: white;
}

section.instructor blockquote {
  font-style: italic;
  text-align: center;
  width: 40rem;
  height: auto;
  max-width: 100%;
  margin: auto;
  display: flex;
  align-items: center;
}

section.instructor ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
section.instructor ul li {
  margin: 0 1.5rem 0 0;
}

section.instructor .intro {
  margin: 1rem 0;
  padding: 0;
  width: 100%;
}


section.instructor .container {
  margin: auto;
  padding: 0 1rem;
  max-width: 75rem;
  width: 100%;
}

section.instructor main {
  background-color: #bd6dac;
  padding: 2rem 0;
}

section.instructor .grid > [class*=column-] {
  padding: 1rem;
}

section.instructor .section-heading {
  transform: rotate(0) translateX(0);
}

section.instructor img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}


@media (min-width: 62rem) {
  section.instructor body {
    font-size: 1.125rem;
  }

  section.instructor h1 {
    font-size: 3.25rem;
  }

  section.instructor h2 {
    font-size: 2.75rem;
  }

  section.instructor h3 {
    font-size: 2.25rem;
  }

  section.instructor img {
    height: 40rem;
  }

  section.instructor .section-heading {
    position: absolute;
    transform-origin: top left;
    transform: rotate(-90deg) translateX(-100%);
  }

  section.instructor .intro {
    padding: 1rem;
  }

  section.instructor blockquote {
    width: 30rem;
    height: 40rem;
  }
}

/* Additional specific styles for nav, logo, container, main, grid, footer, img need to be placed accordingly */


section.activenow {
    background-color: #925485;
    display: flex;
    align-items: stretch;
    padding: 0 0 170px 0;
    margin-bottom: 0;
}

section.activenow .section-heading {
    text-align: center;
    margin-bottom: 70px;
}

section.activenow .section-heading h2:before {
    width: 1px;
    height: 100px;
    background-color: #683c5f;
    position: absolute;
    top: -102px;
    content: '';
    left: 50%;
    transform: translateX(-50%);
}

section.activenow .section-heading h2 {
    margin-top: 100px;
    position: relative;
    font-size: 18px;
    font-weight: 500;
    color: white;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 15px 20px;
    border: 2px solid #683c5f;
}

.activenow-form-container, .activenow-table-container {
    background-color: #683c5f!important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
    color: white !important;
    padding: 20px;
    border-radius: 15px;
}

.activenow-table-container .filters {
    background-color: #bd6dac !important;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.activenow-table-container .select-field p {
    color: white !important;
    margin-bottom: 0.5rem;
}

.activenow-table-container select {
    background-color: white !important;
    color: black !important;
    border-radius: 4px !important;
    padding: 8px 12px;
    border: none;
}

.activenow-table-day-header {
    color: white !important;
    font-size: 1.25rem !important;
    font-weight: bold !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #925485 !important;
}

.activenow-table-row {
    background-color: #bd6dac !important;
    border-bottom: 1px solid #683c5f !important;
    padding: 1rem 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr 1fr 1fr 1fr;
    align-items: center;
    gap: 1rem;
}

.activenow-table-name, .activenow-table-event, .activenow-table-duration-desktop, .activenow-table-duration-mobile, .activenow-table-event-count, .activenow-table-unit-price-item span {
    color: white !important;
}

.activenow-table-column {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activenow-table-signup {
    width: auto !important;
    padding: 8px 16px !important;
    background-color: white !important;
    color: black !important;
    font-size: 14px !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
    justify-self: end;
}

.activenow-table-signup:hover {
    background-color: #bd6dac !important;
}

.clear-filters-desktop-button {
    background-color: white !important;
    color: black !important;
    padding: 8px 16px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.activenow-table-color-strip-desktop {
    display: none !important;
}

.activenow-table-row .activenow-table-column:first-child .activenow-table-color-strip-mobile {
    width: 4px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.activenow-table-row .activenow-table-column:first-child {
    position: relative;
    padding-left: 15px;
}


.activenow-form-container, .form-image-container {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    box-shadow: 0 0 10px rgba(0,0,0,0.1) !important;
}

.activenow-form {
    width: 100% !important;
    max-width: 600px !important;
    background-color: #925485 !important;
    padding: 20px !important;
    box-shadow: 0 0 20px rgba(0,0,0,0.1) !important;
    box-sizing: border-box !important;
}

.activenow-form label {
    display: block !important;
    margin-bottom: 5px !important;
    color: white!important;
    font-size: 14px !important;
    font-weight: bold !important;
}

.activenow-class-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.activenow-class-label,
.activenow-class-value {
    flex: 1;
}

.activenow-form input[type="text"],
.activenow-form input[type="email"],
.activenow-form input[type="date"],
.activenow-form select {
    width: 100% !important;
    padding: 10px !important;
    margin-bottom: 15px !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important;
    box-sizing: border-box !important;
}
.activenow-form input,
.activenow-form select,
.activenow-form textarea {
    color: black !important;
}
.activenow-form a {
    color: white !important;
}

.activenow-form button {
    width: 100% !important;
    padding: 10px 0 !important;
    background-color: white !important;
    color: black !important;
    font-size: 16px !important;
    border: none !important;
    border-radius: 10px !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
}

.activenow-form button:hover,
.activenow-form button:focus {
    background-color: #bd6dac !important;
}

@media (max-width: 992px) {
    .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .activenow-class-row {
        flex-direction: column;
    }

    .activenow-class-label,
    .activenow-class-value {
        flex: none;
        width: 100%;
        margin-bottom: 5px;
    }

    .activenow-class-title,
    .activenow-class-value h4,
    .activenow-class-price-total {
        font-size: 14px;
    }
    .activenow-form-container {
        padding: 10px !important;
    }
    .activenow-form {
        padding: 15px !important;
    }
}
@media (max-width: 767px) {
  /* This targets your specific events container by its ID */
  #events-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important; /* Adds space between events */
  }

  /* This targets the event divs created by your JavaScript */
  #events-container > div {
    position: static !important; /* Overrides absolute positioning */
    width: 100% !important;      /* Makes each event full-width */
    height: auto !important;       /* Lets content define the height */
    left: auto !important;         /* Resets JS positioning */
    top: auto !important;          /* Resets JS positioning */
    padding: 12px !important;      /* Ensures good padding */
    word-break: normal !important; /* Prevents text from breaking mid-word */
  }
  #timeline-grid {
    display: none;
  }
    .timeline-content-wrapper {
    margin-left: 0 !important; 
  }
}

section.duty-roster-calendar .container {
  width: 90%; /* or another appropriate percentage */
  margin: auto; /
}
/* Base Styles for Duty Roster Calendar Section */
section.duty-roster-calendar {
  background-color: #925485;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 100px;* Ensure there is a height set to see the centering effect */
}
section.duty-roster-calendar .section-heading {
  text-align: center;
  margin-bottom: 70px;
}
section.duty-roster-calendar .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #683c5f;
}

/* Add the line before the heading */
section.duty-roster-calendar .section-heading h2:before {
  color:white;
  width: 1px;
  height: 100px;
  background-color: #683c5f;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

section.duty-roster-calendar .outer {
  border-right: 60px solid #683c5f;
  border-bottom: 60px solid #683c5f;
  position: relative;
  box-sizing: border-box;
}

section.duty-roster-calendar .calendar {
  width: 90%;
  margin: auto;
  max-width: 1280px;
  min-width: 300px; /* Responsive minimum width */
  box-shadow: 0px 30px 50px rgba(0, 0, 0, 0.2), 0px 3px 7px rgba(0, 0, 0, 0.1);
}

section.duty-roster-calendar .wrap {
  width: 100%; /* Responsive width */
  height: auto;
}

section.duty-roster-calendar th {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  padding: 1rem;
  color: rgba(0, 0, 0, 0.9);
  background: white;
}

section.duty-roster-calendar header {
  background: #fff;
  padding: 1rem;
  color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

section.duty-roster-calendar header h1 {
  font-size: 1.25rem;
  text-align: center;
  font-weight: normal;
}
section.duty-roster-calendar tbody {
  position: relative;
}

section.duty-roster-calendar table {
  background: #fff;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
}

section.duty-roster-calendar .headcol {
  vertical-align: bottom; /* Align text at the bottom */
  width: 60px;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-align: bottom;
  background-color: #683c5f;
  padding: 10px 0; /* Optional: Adjust padding to control space above the text */
}

section.duty-roster-calendar thead th {
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  color: white;
  padding: 1rem;
  background-color: #683c5f;
}

section.duty-roster-calendar thead {
  z-index: 2;
  background-color: #683c5f !important;
}
section.duty-roster-calendar thead tr {
  background: #683c5f !important;
}

section.duty-roster-calendar tr,
tr td {
  height: auto;
}

section.duty-roster-calendar tbody td {
  text-align: center;
  padding: 0.25rem;
  border-bottom: 1px solid #eee; /* Lightened border color for consistency */
}

section.duty-roster-calendar tr td {
  border-right: 1px solid #eee;
  padding: 0;
  width: 500px;
  white-space: none;
  word-wrap: nowrap;
}

section.duty-roster-calendar tbody tr td {
  position: relative;
  vertical-align: top;
  height: 40px;
  padding: 0.25rem 0.25rem 0 0.25rem;
  width: auto;
}


section.duty-roster-calendar .checkbox {
  display: none;
}

section.duty-roster-calendar .events-container {
  display: flex;
  flex-wrap: nowrap; /* Prevents wrapping, ensuring side-by-side layout */
  align-items: flex-start; /* Aligns items to the start of the container vertically */
  flex-grow: 1; /* Allow the container to expand to fill the available space */
  overflow: hidden; /* Hides overflowed content */
  height: 200%; /* Ensure the container takes full height */
}

section.duty-roster-calendar .event {
  background: #925485;
  color: white !important;
  border-radius: 2px;
  text-align: left;
  font-size: 0.875rem;
  z-index: 2;
  padding: 0.5rem;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: all 0.2s;
  height: 100%;
  cursor: pointer;/* Ensure proper positioning context for label */
}

section.duty-roster-calendar .event:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

section.duty-roster-calendar .event label {
  font-size: 0.75rem; /* Adjust font size */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow long words to break and wrap onto the next line */
  overflow-y: hidden; /* Hide overflow */
  text-overflow: ellipsis; /* Add ellipsis if text overflows */
  display: block; /* Ensures label behaves like a block, taking full width of its container */
}

section.duty-roster-calendar .event:hover label {
  white-space: normal; /* Allow the text to wrap to a new line */
  width: auto; /* Allow the label to expand naturally */
}

@media (max-width: 768px) {
  section.duty-roster-calendar .d-md-none {
    display: block !important;
  }
  
  section.duty-roster-calendar .d-none {
    display: none !important;
  }
  section.duty-roster-calendar h4 {
    margin-top: 5px;
    color: white;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  section.duty-roster-calendar .outer {
    border-right: none;
    border-bottom: none;
  }
}

.legend {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}


.legend ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.legend li {
  color:white;
  display: flex;
  align-items: center;
  margin: 0 15px 5px 15px; /* Adjust the spacing as needed */
}

.legend-color {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 10px;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .legend {
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
  }

  .legend ul {
    margin-left: 5px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .legend li {
    margin: 5px 0;
  }
}

section.coming-soon .continer .counter .days,
section.coming-soon .continer .counter .hours,
section.coming-soon .continer .counter .minutes,
section.coming-soon .continer .counter .seconds {
  width: 22%;
  height: 140px;
  float: left;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  background-color: rgba(250,250,250,0.1);
}
@media screen and (max-width: 992px) {

  section.coming-soon .continer .counter .days,
  section.coming-soon .continer .counter .hours,
  section.coming-soon .continer .counter .minutes,
  section.coming-soon .continer .counter .seconds {
    font-size: 26px;
  }

  section.coming-soon .continer .counter .days .value,
  section.coming-soon .continer .counter .hours .value,
  section.coming-soon .continer .counter .minutes .value,
  section.coming-soon .continer .counter .seconds .value {
      margin-top: 40px!important;
  }

  section.coming-soon .continer .counter span {
      font-size: 14px!important;
  }

}
section.coming-soon .continer .counter .days,
section.coming-soon .continer .counter .hours,
section.coming-soon .continer .counter .minutes {
    margin-right: 4%;
}
section.coming-soon .continer .counter .days .value,
section.coming-soon .continer .counter .hours .value,
section.coming-soon .continer .counter .minutes .value,
section.coming-soon .continer .counter .seconds .value {
    margin-top: 15px;
    display: block;
    width: 100%;
}

section.coming-soon .continer .counter span {
    font-size: 18px;
    text-transform: uppercase;
    color: #f5a425;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0px;
    display: block;
}

section.coming-soon .right-content {
    margin-left: 30px;
}

@media screen and (max-width: 767px) {

  section.coming-soon .right-content {
      margin-top: 60px;
      margin-left: 0px;
  }

}

section.coming-soon .top-content {
    margin-bottom: -8px;
}

section.coming-soon .top-content h6 {
    font-size: 14px;
    color: #fff;
    background-color: rgba(250,250,250,0.2);
    padding: 40px;
    text-align: center;
    line-height: 24px;
}

section.coming-soon .top-content h6 em {
    font-style: normal;
    font-weight: 600;
}

section.coming-soon form {
    background-color: rgba(250,250,250,0.1);
    padding: 60px 40px;
    width: 100%;
    text-align: center;
}

section.coming-soon form input {
    width: 100%;
    height: 40px;
    background-color: rgba(250,250,250,0.1);
    border-radius: 0px;
    border: none;
    outline: none;
    color: #fff;
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

section.coming-soon form input:focus {
    outline: none;
    border: none;
    box-shadow: none;
    color: #fff;
    background-color: rgba(250,250,250,0.1);
}

section.coming-soon form::placeholder { color: #fff }
section.coming-soon form input::placeholder { color: #fff; }
section.coming-soon form input::placeholder { color: #fff; }

section.coming-soon form button {
    margin-top: 10px;
    background-color: #f5a425;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    padding: 12px 20px;
    display: inline-block;
    outline: none;
    box-shadow: none;
    border: none;
}



/* Courses */

section.courses {
    /* background-image: url(../images/choosing-bg.jpg); */
    background-color: black !important;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 100px;
    padding: 0px 30px 100px 30px;
}

section.courses .item img {
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

section.courses .item .down-content {
    padding: 30px;
    background-color: #fff;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
}

section.courses .item .down-content h4 {
    font-size: 16px;
    text-transform: uppercase;
    color: #1e1e1e;
    letter-spacing: 0.5px;
    font-weight: 700;
    margin-top: 0px;
    margin-bottom: 20px;
}

section.courses .item .down-content p {
    margin-bottom: 25px;
}

section.courses .item .down-content img {
    width: 40px;
    border: 2px solid #f5a425;
    border-radius: 50%;
    text-align: left;
    display: inline-block;
}

section.courses .item .down-content .text-button-pay {
    float: right;
    display: inline-block;
    margin-top: -30px;
}

section.courses .item .down-content .text-button-pay a {
    color: #f5a425;
    font-size: 13px;
}

section.courses .item .down-content .text-button-free {
    float: right;
    display: inline-block;
    margin-top: -30px;
}

section.courses .item .down-content .text-button-free a {
    color: #7a7a7a;
    font-size: 13px;
}

section.courses .owl-carousel .owl-nav {
    display: none;
}

section.courses .owl-carousel .owl-dots {
    text-align: center;
}

section.courses .owl-carousel button.owl-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 50px 10px 0px 10px;
    outline: none;
}
section.courses .owl-carousel button.active {
    background-color: #BD6DAC;
}





/* Video */

section.video {
    background-image: url(../images/video-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #172238;
    padding: 120px 0px;
}

section.video .left-content {
  color: #fff;
}

section.video .left-content span {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

section.video .left-content h4 {
    margin-top: 20px;
    font-size: 30px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 40px;
    margin-bottom: 20px;
}
section.video .left-content h4 em {
    font-style: normal;
    color: #f5a425;
}

section.video .left-content .main-button {
  margin-top: 30px;
}

.video-item {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0px auto 0;
}

@media screen and (max-width: 767px) {

  section.video .left-content {
    margin-bottom: 45px;
  }

  section.video .first-item .first-content h4,
  section.video .second-item .second-content h4 {
    text-align: center;
  }

}

.video-item figure {
  position: relative;
  width: 100%;
  font-size: 0;
}
.video-item figure img {
  width: 100%;
}
.video-item figure a:before {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 15px;
  width: 60px;
  height: 60px;
  margin-top: -32.5px;
  margin-left: -32.5px;
  border-radius: 50%;
  background-color: #f5a425;
  z-index: 10;
}
.video-item figure a:after {
  content: '';
  position: absolute;
  bottom: 27.5px;
  right: 20px;
  margin-top: -12.5px;
  margin-left: -7px;
  border: solid 13px transparent;
  border-left: solid 20px;
  border-left-color: #fff;
  z-index: 10;
}
.video-item figure a:hover:before {
  background-color: #f5a425;
}

.video-item .video-caption {
    position: absolute;
    z-index: 10;
    background-color: rgba(250,250,250,0.75);
    height: 80px;
    width: 100%;
    padding: 27px 30px;
    bottom: 0;
}

.video-item .video-caption h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }

  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }

  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }

  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }

  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }

  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }

  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }

  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }

  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }

  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }

  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}



/* Contact */

section.contact {
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #683c5f;
  padding-bottom: 120px;
  color: white;
}

section.contact .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.contact .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #925485;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

/* Style the heading */
section.contact .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #925485;
}

section.contact p {
  font-size: 1rem;
  font-weight: 500;
}
section.contact h4 {
  margin-top:15px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 15px;
}

section.contact ul {
  list-style-type: disc; /* Ensure the list uses bullet points */
  margin-left: 20px;     /* Add some left margin to show bullets properly */
}

section.contact li {
  list-style-position: outside; /* Bullets are placed outside the content box */
}

section.contact li a{
  font-style: italic;
  font-size: 0.8rem;
}



@media screen and (max-width: 767px) {  
  section.contact form {
      margin-bottom: 30px;
  }
  .map {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 0;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
  }
  
  .map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}



section.style {
  margin-top: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #683c5f;
  padding-bottom: 60px;
  color: white;
}

section.style .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.style .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #925485;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

/* Style the heading */
section.style .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #925485;
}

section.style p {
  font-size: 1rem;
  font-weight: 500;
}

section.style h1 {
  margin-top:30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

section.style-first {
  padding-top: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #683c5f;
  padding-bottom: 60px;
  color: white;
}
section.style-first ul {
  list-style-type: disc;
  margin-left: 10px;
}
section.style-second ul {
  list-style-type: disc;
  margin-left: 10px;
}

section.style-first .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.style-first .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #925485;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

/* Style the heading */
section.style-first .section-heading h2 {
  margin-top: 100px;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #925485;
}

section.style-first p {
  font-size: 1rem;
  font-weight: 500;
}

section.style-first h1 {
  margin-top:30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}

section.style-second {
  padding-top: 60px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #925485;
  padding-bottom: 60px;
  color: white;
}

section.style-second .section-heading {
  text-align: center;
  margin-bottom: 70px;
}

/* Add the line before the heading */
section.style-second .section-heading h2:before {
  width: 1px;
  height: 100px;
  background-color: #683c5f;
  position: absolute;
  top: -102px;
  content: '';
  left: 50%;
  transform: translateX(-50%);
}

/* Style the heading */
section.style-second .section-heading h2 {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  color: white;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 15px 20px;
  border: 2px solid #683c5f;
}

section.style-second p {
  font-size: 1rem;
  font-weight: 500;
}

section.style-second h1 {
  margin-top:30px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
}


footer {
    background-color: #925485;
    text-align: center;
}

footer p {
    margin-bottom: 0px;
    padding: 25px 0px;
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

footer p a,
footer p a:hover {
    color: #f5a425;
}

@media screen and (max-width: 992px) {
  .features { background-color: #0c1228; }
  .features-content { position: relative; }
  .features-post { border-left: 0 }
}

@media screen and (max-width: 950px) {
  .main-menu { 
    padding-right: 0 !important; 
  }
  
  .main-header .logo {
    line-height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .main-header .logo img {
    max-height: 73px; /* Ensure the image fits within the logo area */
    width: auto;      /* Maintain the aspect ratio of the logo image */
    max-width: 100%;  /* Ensure the image does not overflow its container */
  }

  .main-menu li {
    display: block;
    line-height: 1;
    margin-left: 0 !important;
  }

  .main-menu li .sub-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    position: static;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  
  .main-menu li .sub-menu li:last-child {
    border-bottom: 1px solid rgba(250,250,250,0.25);
  }
}

@media screen and (max-width: 950px) and (max-height: 400px) {
  nav[role="navigation"].active {
    max-height: calc(80px + 100vh);
    overflow-y: auto;
  }
}

@media screen and (max-width: 767px) {
  footer p {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25px;
  }
}