/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/
/* Hide these items on desktop */
@media screen and (min-width: 992px) {
    .mobile-only {
        display: none;
    }
}

/* Show these items on mobile */
@media screen and (max-width: 991px) {
    .mobile-only {
        display: block;
    }
}

/* Hide these items on mobile */
@media screen and (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
}

/* Show these items on desktop */
@media screen and (min-width: 992px) {
    .desktop-only {
        display: inline-block;
    }
}

.mobile-bar-button {
    position: fixed;
    top: 0; /* Move to the top of the screen */
    left: 0;
    right: 0;
    background-color: #942248; /* Adjust color as needed */
    text-align: center;
    padding: 0px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Adjust shadow direction for the top */
    z-index: 8; /* Ensure it is above other elements */
    display: block;
}

.mobile-bar-button_1 {
  position: fixed;
  bottom: 0; /* Move to the bottom of the screen */
  left: 0;
  right: 0;
  background-color: #942248; /* Adjust color as needed */
  text-align: center;
  padding: 5px 5px;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Adjust shadow direction for the bottom */
  z-index: 8; /* Ensure it is above other elements */
  display: block;
}

/* Styles specifically for mobile screens */
@media (max-width: 768px) { /* Target screens 768px wide or smaller */
    .mobile-bar-button {
        display: flex; /* Use flexbox for layout */
        justify-content: space-between; /* Space between the logo and menu */
        align-items: center; /* Center elements vertically */
        padding: 0px 10px; /* Add padding for mobile */
        font-size: 16px;
       
    }

    .logo img {
        margin: 10px; /* Ensure no unnecessary margins */
    }

    .hamburger-menu {
        display: flex; /* Align menu properly */
        align-items: center;
    }
}

 table {
    width: 100%;
    border-collapse: collapse;
  }
  th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
  }
  th {
    background-color: #f2f2f2;
  }
  tr:nth-child(even) {
    background-color: #f9f9f9;
  }
  tr:hover {
    background-color: #ddd;
  }
  th, td {
    text-align: center;
  }

  .note {
    text-align: center;
    margin-top: 10px;
    font-size: smaller;
  }

@media screen and (max-width: 600px) {
    th, td {
      font-size: 12px; /* Reduced text size for mobile */
      padding: 6px;
    }
  }

.slider-prev,
.slider-next,
.slider-fraction {
  margin-bottom: 59px;
  transition: margin-bottom 0.3s;
}

.spacing-60 {
  width: 100%;
  height: 60px;
  display: flex; }

a.btn_1,
.btn_1 {
  border: none;
  color: #fff;
  background: #942248;
  outline: none;
  cursor: pointer;
  display: inline-flex;
  text-decoration: none;
  padding: 14px 25px 14px 25px;
  font-weight: 600;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  line-height: 1; }
  a.btn_1:hover,
  .btn_1:hover {
    background-color: #A62651; }
  a.btn_1.inverse,
  .btn_1.inverse {
    background-color: #fff;
    color: #333; }
  a.btn_1.full-width,
  .btn_1.full-width {
    width: 100%;
    text-align: center; }

      .progress-wrap {
        position: fixed;
        right: 30px;
        bottom: 38px;
        height: 46px;
        width: 46px;
        cursor: pointer;
        display: block;
        border-radius: 50px;
        z-index: 8; /* Ensure it's on top */
        opacity: 0; /* Initially hidden */
        visibility: hidden; /* Initially not visible */
        transform: translateY(20px); /* Add animation effect */
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
        background-color: #A62651; /* Add background for visibility */
      } 
      
  
    .progress-wrap::after {
    position: absolute;
    font-family: "bootstrap-icons"; /* or whichever icon font you are using */
    content: '\F145'; /* Assuming this is the arrow icon code */
    text-align: center;
    line-height: 46px;
    font-size: 24px;
    color: #A62651; /* Change this to your desired color */
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 10000000;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

    .progress-circle path {
        stroke: #A62651; /* Set the outline color to red */
        stroke-width: 4; /* Adjust stroke width as needed */
        fill: white; /* Fill color of the circle */
    }

.progress-wrap:hover::after {
    color: #A62651; /* Ensure hover state also has the desired color */
}
   .progress-wrap svg path {
            stroke: #A62651; /* Ensure the stroke is visible */
            stroke-width: 4;

}

.error_page {
  height: 100vh; }
  .error_page h1 {
    font-size: 90px;
    font-size: 5.625rem; }

.social ul {
  display: block;
  list-style: none;
  margin: 0 0 25px 0;
  padding: 0; }
  .social ul li {
    display: inline-block;
    margin: 0 5px; }
    .social ul li a {
      display: block;
      color: #fff; }
      .social ul li a:hover {
        color: #A62651;; }
      .social ul li a i {
        font-size: 21px;
        font-size: 1.3125rem; }

.button_red{
    background-color: #942248;
    padding: 10px;
    margin: 10px;
    color: #ffffff;
    font-weight: bold;
}
.button_red:hover {
    color: #ffffff;
}

/* General Menu Styling */
.site-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.site-menu ul li {
    position: relative;
    padding: 10px 15px;
}

.site-menu ul li a {
    text-decoration: none;
    color: black;
    display: inline-block;
}

/* Dropdown Menu Styling */
.dropdown .dropdown-menu {
    display: none;/* Hidden by default */
    position: absolute;
    top: 100%;
    left: 0px;
    background-color: #942248;
    border: #9422489e;
    border-radius: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    min-width: 120px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    text-align: center;
}

.dropdown .dropdown-menu li {
    padding: 10px;
}

.dropdown .dropdown-menu li a {
    text-decoration: none;
    white-space: nowrap;
    display: block;
}

.dropdown .dropdown-menu li:hover > a {
    color: white;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
}


.dropdown:hover .dropdown-arrow {
    color: #FFFFFF;
}

.dropdown-arrow{
    color: white
}

 .tabs-3 {
      margin: 30px 0;
    }
    .nav-tabs {
      border-bottom: 1px solid #942248;
    }
    .nav-tabs > li {
      margin-right: 15px;
    }
    .nav-tabs > li > a {
      color: #555;
      padding: 12px 20px;
      font-size: 16px;
    }
    .nav-tabs > li.active > a,
    .nav-tabs > li > a:hover {
      color: #942248;
      background-color: #f9f9f9;
      border: 1px solid #942248;
      border-bottom-color: transparent;
    }
    .tab-content {
      border: 1px solid #942248;
      padding: 15px;
      background: #f9f9f9;
    }
    .tab-pane {
    display: none;
    }

    .tab-pane.active {
        display: block;
    }
    
    .lead {
      font-size: 1.25em;
      
      margin-bottom: 10px;
    }
    a {
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }

.shadow_box{
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Horizontal, Vertical, Blur, Spread, and Shadow color */
   
    
}

/* Hamburger Styles */
.hamburger_2 {
  position: relative;
  top: 8px;
  width: 30px;
  height: 30px;
  padding: 0 0;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}


.hamburger_2 .hamburger__box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger_2 .hamburger__inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger_2 .hamburger__inner,
.hamburger_2 .hamburger__inner::before,
.hamburger_2 .hamburger__inner::after {
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger_2 .hamburger__inner::before,
.hamburger_2 .hamburger__inner::after {
  content: "";
  display: block;
}
.hamburger_2 .hamburger__inner::before {
  top: -8px;
}
.hamburger_2 .hamburger__inner::after {
  bottom: -8px;
}

.hamburger_2.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@keyframes burger {
  0% {
    transform-origin: 0 100%;
    transform: scale(1, 1); }
  50% {
    transform-origin: 0 100%;
    transform: scale(0, 1); }
  100% {
    transform-origin: 0 100%;
    transform: scale(1, 1); } }
.headroom--not-top .hamburger__inner,
.headroom--not-top .hamburger__inner::before,
.headroom--not-top .hamburger__inner::after {
  background-color: #fff; }

/* Hamburger with close */
.hamburger {
  position: relative;
  top: 8px !important; }

.headroom--not-top .hamburger-inner,
.headroom--not-top .hamburger-inner::before,
.headroom--not-top .hamburger-inner::after {
  background-color: #fff; }

/*Animated header revealed*/
.animated {
  -webkit-animation-duration: .5s;
  -moz-animation-duration: .5s;
  -o-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  will-change: transform, opacity; }

@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-100%); }
  100% {
    -webkit-transform: translateY(0); } }
@-moz-keyframes slideDown {
  0% {
    -moz-transform: translateY(-100%); }
  100% {
    -moz-transform: translateY(0); } }
@-o-keyframes slideDown {
  0% {
    -o-transform: translateY(-100%); }
  100% {
    -o-transform: translateY(0); } }
@keyframes slideDown {
  0% {
    transform: translateY(-100%); }
  100% {
    transform: translateY(0); } }
.animated.slideDown {
  -webkit-animation-name: slideDown;
  -moz-animation-name: slideDown;
  -o-animation-name: slideDown;
  animation-name: slideDown; }

@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(0); }
  100% {
    -webkit-transform: translateY(-100%); } }
@-moz-keyframes slideUp {
  0% {
    -moz-transform: translateY(0); }
  100% {
    -moz-transform: translateY(-100%); } }
@-o-keyframes slideUp {
  0% {
    -o-transform: translateY(0); }
  100% {
    -o-transform: translateY(-100%); } }
@keyframes slideUp {
  0% {
    transform: translateY(0); }
  100% {
    transform: translateY(-100%); } }
.animated.slideUp {
  -webkit-animation-name: slideUp;
  -moz-animation-name: slideUp;
  -o-animation-name: slideUp;
  animation-name: slideUp; }

/*-------- Menu Version 1 --------*/
.nav_panel {
  transform: translateX(100%);
  top: 0;
  right: 0;
  bottom: 0;
  width: 350px;
  height: 100%;
  position: fixed;
  z-index: 9;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1); }
  .nav_panel.show {
    transform: translateX(0); }
  @media (max-width: 767px) {
    .nav_panel {
      width: 100%; } }

.logo_panel {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  background-color: #942248;
  box-shadow: #942248; }

.sidebar-navigation {
  border-top: 1px solid #942248;
  overflow-x: hidden;
  width: 100%;
  position: absolute;
  padding-top: 20px;
  top: 90px;
  bottom: 0;
  left: 0;
  padding-left: 20px;
  padding-right: 10px;
  z-index: 8; }
  .sidebar-navigation nav {
    position: relative;
    height: 100%;
    min-height: 450px; }
    .sidebar-navigation nav a {
      font-size: 14px;
      font-size: 0.875rem;
      color: #333;
      text-decoration: none;
      font-weight: 600;
      text-transform: uppercase; }
      .sidebar-navigation nav a.active {
        color: #942248; }
    .sidebar-navigation nav ul {
      list-style: none;
      position: absolute;
      top: 0;
      padding: 1rem;
      width: 100%;
      height: 100%;
      background: #fff;
      z-index: 8;
      -webkit-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
      -moz-transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
      transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1); }
      .sidebar-navigation nav ul ul {
        right: calc(200% + 10px);
        left: calc(100% + 20px); }
      .sidebar-navigation nav ul li.parent > a:after {
        font-family: "bootstrap-icons";
        content: "\f285";
        float: right; }

.sidebar-navigation nav ul li.back a {
  color: #999;
  text-transform: none;
  background-color: rgba(255, 255, 255, 0.2); }

.sidebar-navigation nav ul li.back {
  margin-left: -20px; }
  .sidebar-navigation nav ul li.back > a:before {
    font-family: "bootstrap-icons";
    content: "\f284";
    margin-right: 5px;
    float: left; }

.sidebar-navigation nav ul li.back a:focus,
.sidebar-navigation nav ul li.back a:hover {
  color: #942248; }

.sidebar-navigation nav ul li a {
  margin-bottom: 10px;
  padding: 0.35rem 0.65rem;
  display: block;
  position: relative;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  transition: all .2s; }

.sidebar-navigation nav ul li a:focus,
.sidebar-navigation nav ul li a:hover {
  color: #942248; }

.sidebar-navigation nav ul .active {
  left: 0;
  right: 0; }
  .sidebar-navigation nav ul .active > li > a {
    opacity: 1; }

.sidebar-navigation nav ul.hidden > li > a {
  opacity: 0; }

.sidebar-navigation nav ul ul .active {
  left: calc(100% + 20px);
  right: calc(100% + 20px); }

.panel_footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
  padding: 0 25px;
  font-size: 14px;
  font-size: 0.875rem; }

.phone_element {
  border-top: 1px solid #942248;
  padding: 20px 0 20px 0;
  position: relative;
  line-height: 1.4; }
  .phone_element a {
    display: flex;
    align-items: center; }
    .phone_element a span {
      font-size: 18px;
      font-size: 1.125rem;
      font-weight: 600;
      color: #942248;
}
      .phone_element a span em {
        color: #942248;
        display: block;
        font-style: inherit;
        text-transform: uppercase;
        font-size: 11px;
        font-size: 0.6875rem;
        font-weight: 500;
        letter-spacing: 2px; }
    .phone_element a i {
      margin-right: 15px;
      font-size: 30px;
      font-size: 1.875rem;
      color: #942248; }
  .phone_element.no_borders {
    padding-top: 5px;
    border-top: none; }

.closebt {
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #fff;
  display: inline-block;
  text-align: center;
  position: absolute;
  right: 25px;
  top: 0; }
  .closebt i {
    font-size: 42px;
    font-size: 2.625rem; }
  .closebt:hover {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 1; }


/* Opacity mask when left open */
.layer_1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  z-index: 8;
  background-color: rgba(0, 0, 0, 0.35);
  -moz-transition: all 0.1s ease;
  -o-transition: all 0.1s ease;
  -webkit-transition: all 0.1s ease;
  -ms-transition: all 0.1s ease;
  transition: all 0.1s ease;
  opacity: 0;
  visibility: hidden; 
}

.layer-is-visible {
  opacity: 1;
  visibility: visible; 
}
