/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/


.header {
  position:absolute;  
  width: 100%;
    top: 0;
  z-index:100;
    background: linear-gradient(to bottom, #5b2dea, rgba(91, 45, 234, 0)); /* Gradient from purple to transparent */
  background-color: transparent;
}

.button {
  border: 1px solid #FFF; /* White border for contrast */
  border-radius: 6px;
  color: #FFF; /* White text color for contrast */
  cursor: pointer;
  display: inline-block;
  font-size: 0.92rem;
  font-weight: normal;
  height: auto;
  line-height: 1.1;
  margin: 0 auto; /* Center the button */
  padding: 15px 53px; /* Padding adjusted for text spacing */
  text-align: center;
  text-decoration: none;
  transition: all 0.15s linear;
  white-space: normal;
  word-break: break-word;
   width: 200px; /* Adjusted from 200px to 400px to double the width */
  max-width: 100%; /* Keeps the button responsive */
  /* Ensure other properties are unchanged */
}

  /* Animated gradient background */
  background: linear-gradient(-45deg, rgba(83, 51, 237, 1), rgba(129, 92, 246, 1), rgba(165, 134, 255, 1));
  background-size: 400% 400%;
  animation: Gradient 10s ease infinite;

  /* New width settings for uniform size */
  width: 200px; /* Fixed width for all buttons */
  max-width: 100%; /* Ensures button width is responsive and does not exceed its container's width */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .button {
    width: 180px; /* Slightly smaller width for smaller screens */
    padding: 10px 20px; /* Adjust padding to fit smaller screens */
    font-size: 0.82rem; /* Adjust font size for better readability on small devices */
  }
}

.button {
  /* Other styles */
  background: linear-gradient(-45deg, rgba(83, 51, 237, 1), rgba(129, 92, 246, 1), rgba(165, 134, 255, 1));
  background-size: 400% 400%;
  animation: Gradient 10s ease infinite;
  /* Ensure other properties are set as needed */
}


@keyframes Gradient {
  0% {background-position: 0% 50%}
  50% {background-position: 100% 50%}
  100% {background-position: 0% 50%}
}

.button:hover,
.button:focus {
  /* Slightly increase the brightness on hover/focus for a subtle effect */
  filter: brightness(110%);
}

.button:active {
  /* Slightly decrease the brightness on active for a subtle effect */
  filter: brightness(90%);
}

.button:disabled {
  /* Disabled state styles */
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
  animation: none; /* Stop animation for disabled buttons */
}

.header.sticky {
    background-color: transparent;
} 

.header.sticky .header__menu .header__navigation .menu-link {
    color: #ffffff !important; /* Brand font color */
} 

/* Making the Logo Smaller */
.header__logo img {
  max-width: 150px; /* Adjust the max-width to make the logo smaller */
}


div.body-container > section.hero-section-overlay:after {      
    background-image: url('https://solutions.thenalaverse.com/hubfs/5%20Breathwork%20Exercises%20to%20Relieve%20Stress.png');      
  background-size: cover;      
  background-position: center;
}

.hero-section-overlay:after {
  opacity: 1;
  background-color: unset;
}

.container-fluid.body-container.body-container--home {
  position: absolute;
}