@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --main-color: #491505;
  --secondary-color: #f3f2eb;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 15px;
  /* overflow-x: hidden; */
  font-style: normal;
  line-height: 1.6rem;
}

.no-scroll {
  position: fixed; /* Locks the viewport */
  overflow: hidden; /* Disables scrolling */
  width: 100%; /* Prevents layout shifting */
  height: 100%; /* Prevents vertical scrolling */
}

h2 {
  font-size: 36px;
  font-weight: 400;
  color: #7E7768;
}

/* Reset Styles */

.announcement a {
  text-decoration: none;
}

.announcement-bar {
  background-color: #7E7768;
  color: #fff;
  text-align: center;
  padding: 2px;
  font-size: 12px;
}

.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0px 20px;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 99;
}

.logo {
  width: 10%;
  display: flex;
  align-items: center;
}

.logo img {
  width: 75%;
}

.menu {
  display: flex;
  align-items: center;
}

.menu a,
.join {
  margin: 0 20px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  padding: 20px 0px;
  border-bottom: 5px solid transparent; /* Add transparent border */
  transition: color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
  /* letter-spacing: 1px; */
}

.menu a:hover {
  color: #7E7768;
  border-bottom: 5px solid #7E7768; /* Change border color on hover */
}

.menu .sign-in,
.header .join {
  padding: 10px 20px;
  border-bottom: 5px solid transparent;
  margin: 0px;
  border-radius: 5px;
}

.header .join {
  background-color: #7E7768;
  color: #fff;
  border: 0;
  margin-left: -130px;
  order: 1;
}

.header .join:hover {
  background-color: #979285;
  color: #fff;
  border: 0;
  /* border-bottom: 5px solid #808e85; */
}

.menu .sign-in {
  background-color: #f3f4f6;
  margin-left: 20px;
  border: 0;
}

.menu .sign-in:hover {
  background-color: #ededed;
  color: #333;
  border: 0;
  /* border-bottom: 5px solid #d5d3c8; */
}

.menu-btns {
  display: flex;
  margin-left: 40px;
}

/* Dropdown Menu */
.dropdown {
  display: flex;
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px 0;
  z-index: 1000;
  width: 300px;
}

/* Activate state for smaller screens */
.dropdown.activate .dropdown-menu {
  display: block;
}

.arrow {
  display: inline-block;
  margin-left: 8px;
  border: solid black;
  border-width: 0 1px 1px 0;
  padding: 2px;
  margin-bottom: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.dropdown.activate .arrow {
  transform: rotate(-135deg);
  border-color: #7E7768;
  margin-bottom: 0px;
}

.dropdown-menu a {
  /* padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd; */
  color: #333;
  padding: 5px;
  border: none;
}

.dropdown-menu a:hover {
  background-color: #7E7768;
  color: #fff;
  border: none;
}

.dropdown:hover .dropdown-menu {
  display: flex;
  flex-direction: column;
  top: 100%;
}

.dropdown:hover .arrow {
  border-color: #7E7768;
}

/* Show dropdown on hover for desktop */
/* .dropdown:hover .dropdown-menu {
  display: flex;
} */

/* Hamburger Menu Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger .line {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 5px;
  background-color: #333;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.line {
  padding: 0.2px;
}

.scroll-instruction {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: -70px;
}

/* General breadcrumb styles */
.breadcrumb {
  color: #333;
  display: flex;
  align-items: center;
  margin: 20px;
  font-size: 12px;
}

.breadcrumb a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #491505; /* Hover color for links */
}

.breadcrumb .breadcrumb-home {
  display: flex;
  align-items: center;
  gap: 5px;
}

.breadcrumb-separator {
  margin: 0 5px;
}

.breadcrumb .breadcrumb-current {
  color: #491505; /* Highlighted color for current page */
}

.carousel {
  /* position: relative; */
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.carousel-container {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  /* flex: 1 0 100%; */
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  /* align-items: center; */
  justify-content: flex-start;
}



.meet-the-experts .carousel-slide::before,
#class-carousel .carousel-slide::before {
  background: none;
}

.carousel-text {
  margin-left: 50px;
  color: #333;
  margin-top: 50px;
  z-index: 10;
}

.carousel-text h1 {
  font-weight: 500;
  font-size: 36px;
  margin-bottom: 20px;
}

.carousel-text p {
  font-size: 18px;
  margin-bottom: 20px;
  width: 400px;
}

.cta-button {
  background: none;
  color: #333;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  border: 2px solid #491505;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1rem;
}

.cta-button:hover {
  color: #fff;
  background-color: #491505;
  border: 2px solid #491505;
}

.cta-button-campaign {
  background: #491505;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  border: 2px solid #491505;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1rem;
}

.cta-button-campaign-down {
  font-size: 24px;

}

.cta-button-campaign:hover, .cta-button-campaign-down:hover {
  color: #491505;
  background-color: #fff;
  border: 2px solid #491505;
}

.cta-button-banner {
  background: #491505;
  color: #fff;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  border: 2px solid #491505;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1rem;
  text-decoration: none;
  text-transform: uppercase;
}

.cta-button-banner:hover {
  color: #491505;
  background-color: #fff;
  border: 2px solid #491505;
}

.owl-nav {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  transform: translateY(-100%);
  padding: 10px 20px;
}

.carousel-arrow {
  cursor: pointer;
}

.carousel-arrow img {
  width: 50px;
}

.carousel .owl-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: #fff;
  padding: 5px;
  border-radius: 20px;
}

.carousel .owl-dots .owl-dot {
  background-color: #f3f2eb;
}

#top-banner {
  margin-bottom: 0px;
}

.owl-nav .owl-prev {
  transform: rotateY(180deg);
}

.indicator {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  margin: 0 5px;
  border-radius: 50%;
  cursor: pointer;
}

.indicator.active {
  background-color: #333;
}

.scroll-instruction p {
  font-size: 12px;
  margin-right: 5px;
}

.scroll-down {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #333;
}

.floating-button {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateX(15px);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.floating-button img {
  width: 80%;
  cursor: pointer;
  height: auto;
}

.download-section {
  position: fixed; /* 🔹 Add this to make it visible */
  top: 0;
  height: 100%;
  right: -300px; /* Keep it hidden initially */
  width: 300px;
  background: #491505;
  padding: 60px;
  transition: right 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* box-shadow: -3px 3px 10px rgba(0, 0, 0, 0.3); */
}

.download-section.show {
  right: 0;
}

.floating-button.slide {
  transform: translateX(-280px);
}

.download-section p {
  color: #fff;
}

.download-section button {
  display: block;
  width: 100%;
  margin: 5px 0;
}

.about-section {
  text-align: center;
  font-style: normal;
  margin-top: -20px;
}

.about-section p {
  margin: 20px 0px;
  padding: 0px 120px;
}

.logos-section {
  text-align: center;
  padding-bottom: 30px;
}

.logos-section p {
  font-weight: 500;
  margin-bottom: 50px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-section {
  position: relative;
  background-image: url("../img/intro-louise-live-brave-method.webp"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  height: 546px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.intro-overlay {
  background: rgba(126, 119, 104, 0.75); /* Adds the overlay */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.intro-content {
  max-width: 700px;
  text-align: left;
}

.intro-content h1 {
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 500;
}

.intro-content p {
  line-height: 1.6;
  margin-bottom: 30px;
}

.intro-buttons {
  display: flex;
  align-items: center;
  color: #fff;
  gap: 15px;
}

.intro-buttons .btn {
  margin-top: 0;
  padding: 10px 20px;
  /* background-color: #a1205e; */
  color: #fff;
  /* border: none; */
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
  text-transform: uppercase;
}

.intro-buttons .btn-outline {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  transition: 0.3s;
}

/* 
.intro-buttons .btn-outline:hover {
  background: #fff;
  color: #333;
} */

.intro-buttons .read-more,
.text-content .read-more,
.hero-overlay .read-more,
.overlay-blogs .read-more,
.overlay .read-more {
  color: #fff;
  margin-top: 0;
  border-bottom: none;
}

.intro-buttons .read-more .underline-button:hover,
.text-content .read-more .underline-button:hover,
.hero-overlay .read-more .underline-button:hover,
.overlay-blogs .read-more .underline-button:hover,
.overlay .read-more .underline-button:hover {
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

.overlay .read-more,
.overlay-blogs .read-more {
  font-size: 12px !important;
}

.intro-buttons .btn-outline:hover {
  background-color: #fff;
  border: 2px solid transparent;
}

.play-button {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid #fff;
}

.play-button span {
  font-size: 3rem;
  color: #fff;
  position: absolute;
  left: 18px;
}

/* Online Studio */
.online-studio .container {
  display: flex;
  padding: 20px;
  height: 90vh;
}

/* Left Section */
.left-section {
  flex: 4;
  background: url("../img/online-studio-main.webp") no-repeat center
    center/cover;
  position: relative;
}

.text-overlay {
  position: absolute;
  bottom: 0;

  background: rgba(126, 119, 104, 0.75);
  color: #fff;
  padding: 20px;
  max-width: 60%;
}

.text-overlay h1 {
  font-weight: 500;
  font-size: 28px;
  margin-bottom: 15px;
}

.text-overlay p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.discover-button {
  color: #fff;
}

.online-studio .underline-button:hover {
  border-bottom: 2px solid #fff !important;
}

/* Right Section */
.right-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 0px 20px;
}

.card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card img {
  margin-top: 10px;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.hover-text {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hover-text p {
  margin: 0;
  font-weight: bold;
}

.hover-text span {
  font-size: 12px;
  font-weight: normal;
}

.card:hover .hover-text {
  opacity: 1;
  background: rgba(126, 119, 104, 0.75);
  padding: 5px 10px;
  border-radius: 3px;
}

.brand-logos {
  width: 80%; /* Adjust width as necessary */
  /* max-width: 1000px;  */ /* To ensure it doesn't get too large */
  height: auto;
}

#partner-logos-section {
  padding: 30px 0px 30px 0px;
}

#partner-logos-section p {
  font-size: 18px;
}

#partner-logos-section .brand-logos {
  width: 60%;
}

/* Nutrition */

.nutrition {
  margin-top: 20px;
}

.nutrition a {
  text-decoration: none;
  /* color: #000; */
}

.nutrition .content {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.nutrition .content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #000;
}

.nutrition .content p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.nutrition .right-section {
  /* width: 50%; */
  /* background-color: #f5f5f5; */
  display: flex;
  flex-direction: column;
  align-items: baseline;
  position: relative;
  /* overflow: hidden; */
}

.nutrition .thumbnails {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  padding: 30px 0px;
  box-sizing: border-box;
  position: relative;
  /* width: 100%; */
}

.nutrition .thumbnail {
  /* margin-bottom: 20px; */
  width: 100%;
  overflow: hidden;
}

.nutrition .thumbnail img {
  width: 200px;
  height: auto;
}

.nutrition .thumbnails a {
  color: #000;
}

.nutrition .top-image {
  position: absolute;
  right: 10%;
  top: -50%;
  width: 500px;
  /* width: 100%; */
  /* height: 100%; */
  /* object-fit: cover; */
}

.nutrition .thumbnail p {
  width: 200px;
  font-size: 12px;
  line-height: 1rem;
}

/* Nutrition */

/* Container */
.events-container {
  /* max-width: 1200px; */
  margin: 20px auto;
  padding: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

/* Header */
.events-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.events-header h1 {
  font-size: 28px;
  font-weight: 500;
  color: #333;
}

.view-all {
  text-decoration: none;

  color: #000;
  margin-left: 20px;
}

.view-all .highlight {
  color: #491505;
  font-weight: 500;
}

/* Featured Event */
.featured-event {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.featured-image {
  flex: 2;
  position: relative;
}

.featured-image img {
  width: 100%;
  height: auto;
}

.event-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  text-align: center;
}

.event-overlay h2 {
  font-size: 28px;
  margin: 0;
}

.event-overlay p {
  font-size: 18px;
}

.event-details {
  flex: 1;
  padding: 20px;
}

.event-details h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
}

.event-details p {
  /* font-size: 16px; */
  line-height: 1.5;
  margin-bottom: 20px;
}

.read-more {
  color: #491505;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-top: 10px;
}

.read-more .underline-button:hover {
  border-bottom: 2px solid #491505;
  padding-bottom: 2px;
}

/* Additional Events */
.additional-events {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.event-card {
  display: flex;
  flex: 1;
}

.event-card img {
  width: 150px;
  height: auto;
  object-fit: cover;
}

.card-details {
  padding: 15px;
}

.card-details h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.card-details p {
  font-size: 14px;
  margin-bottom: 10px;
}

.hero-section {
  position: relative;
  width: 100%;
  background-image: url("../img/prenatal-postnatal.webp"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(126, 119, 104, 0.75);
  z-index: 0; /* Behind the text content */
}

.text-content {
  position: relative;
  max-width: 700px;
  padding: 150px 100px;
  z-index: 1; /* Ensures text is above the overlay */
  color: #ffffff;
}

.text-content h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
}

.text-content p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.class-hero-section .text-content {
  padding-left: 20px !important;
}

.class-hero-section .text-content h2 {
  font-size: 36px;
  line-height: 1.2em;
}

.class-offering .highlight {
  font-size: 24px;
}

.radio-class-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 10px 0px;
  padding: 20px;
}

.radio-class-container label {
  margin-bottom: 0 !important;
  font-size: 15px;
  color: #000;
  cursor: pointer;
}

.radio-class-container input {
  width: auto;
}

/* Blog */

.filter-section {
  display: flex;
  margin-left: 20px;
}

.filter-section .selection-filter {
  position: relative;
  width: 50%;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
 
}

.filter-section .category-filter {
  background-color: #fff;
  border: 1px solid #491505;
  flex: auto;
  border-radius: 4px;

  display: none;
  position: absolute;
  width: 330px;
  z-index: 99;
}

.label-filter {
  padding: 10px;
  cursor: pointer;
  border: 1px solid #491505;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.label-text {
  max-width: none; /* Adjust to fit 13 characters */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.selection-filter input {
  border: 1px solid #491505;
}

.filter-section .category-filter div {
  padding: 10px;
  cursor: pointer;
  width: 330px;
}

.filter-section .category-filter div:hover {
  background: #491505;
  color: #fff;
  width: 330px;
}

.selection-filter.open .category-filter {
  display: block;
}

.blog-container {
  width: 100%;
  padding: 20px;
  margin: 50px auto 0px;
}

.blog-container h1 {
  color: #333;
  font-size: 28px;
  font-weight: 500;
}

.class-offering .blog-container {
  margin-top: 0px !important;
}

.categories {
  display: flex;

  gap: 15px;
  margin-bottom: 30px;
}

.category-btn {
  padding: 10px 15px;
  background-color: #f3f2eb;
  border: none;
  cursor: pointer;

  color: #333;
  transition: all 0.3s ease;
}

.category-btn:hover {
  background-color: #491505;
  color: #fff;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-banner img {
  width: 100%;
  height: 536px;
  display: block;
  object-fit: cover;
}

#main-blog-container .hero-banner img {
  height: 536px;
  object-fit: cover;
}

#main-blog-container .blog-card img {
  height: 294px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  max-width: 50%;
  background: rgba(126, 119, 104, 0.75);
  color: #fff;
  padding: 20px;
}

.hero-overlay h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #fff;
}

.hero-overlay p {
  line-height: 1.5;
  margin-bottom: 20px;
}

.hero-overlay .cta-button {
  border: none;
  color: #fff;
  padding: 0;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
  gap: 20px;
}

.blog-card {
  overflow: hidden;
}

.blog-card .image-container {
  position: relative;
}

.card-image {
  width: 100%;
  display: block;
  height: 294px;
  object-fit: cover;
}

.overlay-blogs {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 50px; /* Restricts overlay height */
  background: rgba(126, 119, 104, 0.75);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px; /* Adds spacing for content inside */
}

.card-title {
  font-size: 16px;
  font-weight: bold;
}

.card-date {
  font-size: 14px;
}

.card-content {
  padding: 15px 0px;
}

.description {
  font-size: 14px;
  line-height: 1.6;
  max-height: 44px; /* Adjust for the fixed height */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Limits to 2 lines */
  -webkit-box-orient: vertical;
  color: #555;
}

/* Meet the Experts */

.meet-the-experts .container-right {
  display: flex;

  padding: 20px;

  margin: 0 auto;
}

.meet-the-experts .container-left {
  display: flex;
  flex-direction: row-reverse;
  padding: 20px;

  margin: 0 auto;
}

.meet-the-experts h1 {
  margin-bottom: 20px;
}

.meet-the-experts p {
  margin-bottom: 20px;
}

/* .image-container {
  position: relative;
  width: 100%;
} */

.instructor-image {
  width: 100%;
  height: 100%;
}

.meet-the-experts .overlay {
  position: absolute;
  bottom: 7px;
  top: auto;
  width: 100%;
  height: auto;
  display: flex;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.overlay a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  line-height: 1rem;
  font-size: 14px;
  border-bottom: 1px solid #ffffff;
  transition: color 0.3s ease;
}

.overlay button:hover {
  background: #ddd;
}

.container-right .content {
  /* background: #f3f2eb; */
  padding: 20px 50px;
  margin-left: 20px;
  /* height: 618px; */
}

.container-left .content {
  /* background: #f3f2eb; */
  padding: 20px 50px;
  margin-right: 20px;
  /* height: 618px; */
}

blockquote {
  font-style: italic;
  margin-bottom: 20px;
}

.container-left .content p,
.container-right .content p {
  margin-bottom: 20px;
}

/* The Application */

.the-app .container, .the-campaign .container {
  display: flex;

  justify-content: center;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.the-app .content {
  width: 60%;
}

.the-app .image-container {
  width: 40%;
}

.the-app .image-container img {
  width: 100%;
}

.the-campaign .content{
  width: 40%;
}

.the-campaign .video-container{
  width: 60%;
}



.class-pricing {
  display: flex;
}

.class-pricing p {
  margin: 10px;
  margin-bottom: 0 !important;
  background-color: #f3f4f6;
  padding: 10px;

  text-align: center;
}

.class-pricing a:hover p,
.class-pricing a:hover span {
  background-color: #a1205e;
  color: #fff;
}

.class-pricing .price {
  font-size: 18px;
  font-weight: bold;
}

.pricing-class-studio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  padding: 30px !important;
}



.our-mission .container,
.our-expert .container {
  display: flex;

  justify-content: center;
  margin: 0 auto;
  padding: 20px;
  gap: 20px;
}

.our-mission .container {
  padding: 50px;
}

.our-mission .content,
.our-mission .image-container {
  width: 50%;
}

.the-app p,
.the-app h3 {
  margin-bottom: 20px;
}

.our-mission .container .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.our-mission .container .image-container img {
  width: 100%;
  height: 100%;
}

#play-img-clickable {
  cursor: pointer;
}

.highlight {
  font-weight: bold;
  color: #491505;
}

.white-label {
  color: #fff;
  text-shadow: 1px 1px #333;
}

.black-label {
  color: #000;
}

ul {
  list-style-type: square;
  margin: 20px;
}

ul li::marker {
  color: #491505; /* Change this to your desired color */
  font-size: 20px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.buttons img {
  width: 140px;
  cursor: pointer;
}

.buttons img:hover {
  opacity: 0.8;
}

.add-cta {
  display: flex;
  justify-content: center;
  margin: 40px 0px;
}

/* Fullscreen Video Styling */
.fullscreen-video {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 1);
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's on top of everything */
}

.fullscreen-video video {
  width: 80%;
  height: auto;
  max-height: 90%;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Book a class */
.form-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

label {
  font-size: 14px;
  margin-bottom: 5px;
  color: #555;
}

input,
select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

input:focus,
select:focus {
  outline: none;
  border-color: #491505;
}

.btn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #491505;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background: none;
  color: #000;
  border: 2px solid #491505;
  border-radius: 10px;
}

.mission-descriptor {
  margin: 0px 20px;
}

.mission-descriptor p {
  margin-bottom: 20px;
}

.mission-descriptor h2 {
  margin-bottom: 20px;
}

/* Blogs */

.blogs-top,
.nutrition-top,
.class-top {
  margin-bottom: 20px;
}

.class-hero-section {
  background-image: url("../img/book-a-class-banner.webp");
  margin-bottom: 0px !important;
}

#class-carousel {
  margin-top: -30px;
}

#class-carousel .carousel-slide {
  height: 400px !important;
}

#class-carousel .carousel-text h3 {
  margin-bottom: 20px;
  text-transform: uppercase;
}

#class-carousel .owl-carousel .owl-dots {
  bottom: 20px !important;
}

.mission .class-hero-section {
  background-image: url("../img/our-mission.webp");
  margin-bottom: 0px !important;
  background-position: center;
}

.campaign-hero-section {
  background-image: url("../img/homepage-banner-3.png");
  margin-bottom: 0px !important;
  background-position: bottom;
}

.campaign-hero-section .text-content {
  padding: 100px 50px !important;
}

.campaign-page .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offering-container {
  display: flex;
  margin-top: 50px;
  padding: 0px 50px 50px;
  border-bottom: 1px solid #eee;
  height: 100%;
}

.offering-container a {
  text-decoration: none;
  color: #000;
}

.flip-content {
  flex-direction: row-reverse;
}

.left-image {
  width: 60%;
  /* height: 460px; */
}

.left-image img {
  width: 100%;
  height: 100%;
}

.offering-container .right-text {
  width: 40% !important;
  /* transform: translateY(10px); */
}

.right-text p {
  margin-bottom: 20px;
}

.offering-container .flex-class {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.class-offering .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.blog-hero-section,
.nutrition-hero-section,
.class-hero-section,
.campaign-hero-section {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 50px;
}

.text-content {
  padding: 150px 50px;
  z-index: 1;
  color: #ffffff;
}

/* eVENTS */

.events-hero-section {
  position: relative;
  width: 100%;

  background-image: url("../img/events-featured.png"); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;

  overflow: hidden;
  margin-bottom: 50px;
}

.events-detail-container {
  margin: 0 auto;
  padding: 20px;
}

.events-detail-container .container-right {
  display: flex;

  padding: 20px;

  margin: 0 auto;
}

.events-detail-container .container-left {
  display: flex;
  flex-direction: row-reverse;
  padding: 20px;

  margin: 0 auto;
}

.events-detail-container .overlay {
  position: absolute;
  bottom: 0;
  top: auto;
  width: 100%;
  height: auto;
  display: flex;
  color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.events-detail-container .container-right .content,
.events-detail-container .container-left .content {
  margin: 0;
}

.blog-detail-container .image-container {
  /* position: relative; */
  margin: 10px 50px;
  width: auto;
}

.blog-detail-container .instructor-image {
  height: auto;
}

.blog-detail-container #banner-image {
  height: 536px;
  object-fit: cover;
}

.blog-detail-container .overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  transform: translateY(-70px);
  position: unset;
  bottom: 0;
  /* top: 0; */
  left: 0;
  width: 100%;
  /* height: 100%; */
  background: rgba(126, 119, 104, 0.75);
  color: #fff;
  z-index: 0;
}

.recipe-detail-container .overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  transform: translateY(-75px);
  position: unset;
  bottom: 0;
  /* top: 0; */
  left: 0;
  width: 100%;
  /* height: 100%; */
  background: rgba(126, 119, 104, 0.75);
  color: #fff;
}

.recipe-title {
  width: 900px;
}
.recipe-detail-container .image-container {
  /* position: relative; */
  margin: 10px 50px;
  width: auto;
}

.recipe-detail-container .instructor-image {
  height: auto;
}

.event-detail-container .overlay {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  transform: translateY(-50px);
  position: unset;
  bottom: 0;
  /* top: 0; */
  left: 0;
  width: 100%;
  /* height: 100%; */
  background: rgba(126, 119, 104, 0.75);
  color: #fff;
}

.event-detail-container .image-container {
  /* position: relative; */
  margin: 10px 50px;
  width: auto;
}

.event-detail-container .instructor-image {
  height: auto;
  width: 100% !important;
}

.event-testimonial-container {
  background-color: #7E7768;
}

.event-testimonial {
  padding: 50px 150px;
  color: #fff;
  font-style: italic;
  text-align: center;
  font-size: 12px;
  line-height: 1.2rem;
}

.blog-content {
  margin: -50px 50px 30px 50px;
}

.blog-content-container p {
  margin-bottom: 20px;
}

/* Related blogs */

.related-blogs {
  margin: 50px;
}

.related-blogs h1 {
  text-align: center;
}

.related-blogs .blog-grid {
  margin-top: 20px;
}

/* Footer */

footer {
  background-color: #7E7768;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left,
.footer-center,
.footer-right {
  flex: 1;
  margin: 10px;
}

.footer-left {
  flex: 10%;
}

.footer-center {
  flex: 50%;
  margin: 0px;
}

.footer-right {
  flex: 20%;
  margin: 0px;
}

.footer-left h2 {
  margin-bottom: 20px;
}

.foot-logo {
  width: 231px;
}

.app-links {
  display: flex;
  flex-direction: column;
}

.app-links img,
.social-links img {
  margin-top: 2px;
  width: 120px;
  height: auto;
}

.app-links,
.social-links {
  margin-top: 20px;
}

.social-links img {
  width: 29px;
}

.footer-center .links {
  display: flex;
  justify-content: space-evenly;
}

/* .primary-links {
  width: 50%;
} */

.secondary-links {
  font-size: 12px;
}

.primary-links .secondary-links {
  margin-left: 20px;
  line-height: 1.4rem;
}

.footer-center ul {
  list-style: none;
  padding: 0;
  margin-top: 0px;
}

.footer-center ul li {
  margin: 5px 0;
}

.footer-center ul li a {
  text-decoration: none;
  color: #fff;
}

.footer-center ul li strong {
  font-weight: bold;
}

.footer-right form {
  display: flex;
  flex-direction: column;
}

.footer-right form h4 {
  font-size: 12px;
  font-weight: 400;
  line-height: 1rem;
  width: 400px;
}

.footer-right p {
  font-size: 12px;
}

.form-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 20px;
}

.form-group input,
input[type="email"],
select {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 0;
  background-color: #FFFBEA;
}

.form-group input::placeholder,
input[type="email"]::placeholder {
  font-family: Inter;
  color: #000;
  /* font-size: 12px; */
}

.book-class-form {
  margin-top: 50px;
}

.book-class-form h1,
.pricing-header {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}

.pricing-header {
  padding-top: 10px;
  text-align: center;
  margin-bottom: 40px;
}

#bookClassForm input,
#bookClassForm select {
  background-color: #fff;
  border-bottom: 1px solid #000;
}

#bookClassForm input::placeholder,
#bookClassForm input[type="date"]::placeholder {
  font-family: Inter;
  color: #000;
  font-weight: 500;
  /* font-size: 15px; */
}

.book-class-form .form-container {
  box-shadow: none;
  max-width: 800px;
  margin: 20px auto;
  padding: 0px;
}

.book-class-form #instructor {
  font-family: Inter;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  border: none;
  border-bottom: 1px solid #000;
  background: none;
}

form button {
  background-color: #491505;
  color: #F8F5F0;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 600;
}

form button:hover {
  background-color: #F8F5F0;
  color: #7E7768;
}

/* Owl Carousal */

.owl-nav button {
  background: none;
  border: none;
  font-size: 24px;
  color: #000;
}
.owl-carousel button.owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 5px;
}
.owl-dots .owl-dot.active {
  background: #491505;
}

/* Owl Carousal Insta */

.follow-insta-logo {
  text-align: center;
}

.follow-insta-logo img {
  width: 150px;
  /* position: absolute;
  left: 43%; */
  z-index: 99;
}
.insta-carousel .container {
  display: flex;
  gap: 10px; /* Spacing between masks */
  position: relative;
  margin-bottom: 20px;
}

.mask {
  width: 250px; /* Width of each mask */
  height: 350px; /* Height of each mask */
  overflow: hidden;
  position: relative;
  background-color: #e0e0e0;

  display: flex;
  justify-content: center;
  align-items: center;
}

.mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

/* Pricing */

.subs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* margin: 20px 0px 30px; */
}

.pricing {
  font-size: 12px;
  display: flex;

  justify-content: center;
  /* margin-top: 20px; */
  gap: 50px;
  padding: 50px 100px 50px 100px;
  background-color: #f8f8f8;
}

.pricing a {
  text-decoration: none;
  color: #000;
}
.pricing-box {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.pricing-box h2 {
  color: #000;
  font-size: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.pricing-box:hover,
.pricing-box:hover h2 {
  background-color: var(--main-color);
  color: white;
}
.pricing-box p {
  margin-bottom: 20px;
}
.pricing-box .price {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}
.pricing-box .cta {
  text-decoration: none;
  font-weight: bold;
}

.subs .quote {
  margin-top: -30px;
}

.subs .quote,
.form-container .quote {
  text-align: center;
  font-size: 12px;
}

.form-container .quote {
  margin-top: 20px;
}

/* Testimonials */

.testimonials .testimonial-section {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #7E7768;
  margin: 0px 0px 50px 0px;
  color: #fff;
}

.testimonials .owl-carousel-testimonial .owl-dot {
  display: inline-block;
  width: 30px;
  height: 5px;
  background-color: #ccc;
  margin: 0 5px;
  cursor: pointer;
  padding: 0px;
  border: none;
  border-radius: 0;
}

.testimonials .testimonial-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.testimonials .owl-carousel-testimonial .item {
  box-sizing: border-box;
  line-height: 1.6;
  padding: 20px;
}

.testimonials .owl-carousel-testimonial .owl-nav {
  display: none;
}

.testimonials .owl-carousel-testimonial .owl-dots {
  position: unset;
  transform: none;
  display: block;
}

.testimonials .owl-carousel-testimonial .owl-dot.active {
  background-color: #491505;
}

.testimonials .owl-carousel-testimonial .active {
  background: none;
}
.testimonials .join-button {
  margin-top: 20px;
  padding: 20px;
  font-size: 15px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials .join-button:hover {
  background-color: white;
  color: #7E7768;
}

/* Accordion */

/* Accordion styling */

.accordion {
  padding: 0px 50px;
}

.accordion-item {
  margin-bottom: 10px;
  margin-top: 20px;
  padding: 10px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h2 {
  font-size: 24px;
  margin: 0;
  color: #333;
}

.accordion-toggle {
  font-size: 24px;
  font-weight: bold;
}

.accordion-content {
  display: none;
  padding: 15px;
}

.accordion-content p {
  letter-spacing: 1.2px;
  line-height: 2rem;
}

.active {
  background-color: #f3f2eb;
}

.accordion .active .accordion-toggle {
  color: var(--main-color); /* Toggle color change when active */
}

.accordion .active .accordion-content {
  display: block;
}

/* Recipes carousel */

.more-healthy-options {
  text-align: center;
}

.more-healthy-options .carousel-title {
  font-size: 24px;
  font-weight: bold;
  margin: 20px 0;
}

.more-healthy-options .owl-carousel {
  /* padding: 0px 200px; */
  margin-bottom: 50px;
}

.more-healthy-options .owl-carousel .item {
  position: relative;
}

.more-healthy-options .owl-carousel .item img {
  width: 100%;
}

.more-healthy-options .item-caption {
  text-align: left;
  margin-top: 10px;
}

.more-healthy-options .owl-nav button {
  /* position: absolute; */
  top: 40%;
  background-color: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}

.more-healthy-options .owl-nav {
  transform: none;
  justify-content: center;
}

.more-healthy-options .owl-nav .owl-prev {
  left: -40px;
}

.more-healthy-options .owl-nav .owl-next {
  right: -40px;
}

.blog-content-container .bold-item, .meet-the-experts .bold-item, .recipes-about .bold-item {
  font-weight: 500;
}

.additional-image {
  display: block;
  margin-top: 20px;
  width: 80%;
}

.mt-20px {
  margin-top: 20px;
}

.italics-text {
  font-style: italic;
}

.instruction {
  text-align: center;
  color: #491505;
  display: block;
}

.additional-content {
  margin: 50px;
}

.additional-content p,
.additional-content h1,
.additional-content h2,
.additional-content h3 {
  margin-bottom: 20px;
}

.truncate-text {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* Ensure multi-line truncation works */
}

#blog-hero-content {
  display: -webkit-box; /* Use flexbox for clamping */
  -webkit-box-orient: vertical;
  overflow: hidden; /* Hide overflowing text */
  text-overflow: ellipsis; /* Add "..." to indicate more content */
  -webkit-line-clamp: 6; /* Limit to 3 lines */
  line-clamp: 6;
}

#blog-desc {
  display: -webkit-box; /* Use flexbox for clamping */
  -webkit-box-orient: vertical;
  overflow: hidden; /* Hide overflowing text */
  text-overflow: ellipsis; /* Add "..." to indicate more content */
  -webkit-line-clamp: 4; /* Limit to 3 lines */
  line-clamp: 4;
}

/* Single-line fallback for older browsers */
.truncate-text.no-webkit-clamp {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.blog-container .about-section {
  margin-top: 10px;
}

.more-healthy-options .owl-dots {
  display: none;
}

.more-healthy-options .active {
  background: none;
}

.recipes-about .card-title {
  font-size: 14px;
  width: 70%;
  line-height: 1.2rem;
}

.recipes-about .about-section {
  margin-top: 10px !important;
}

.recipes-about .about-section p {
  margin-top: 0 !important;
}

.recipes-about .blog-container {
  margin-top: 0px;
  padding-top: 0px;
}

.more-healthy-options .owl-item a {
  text-decoration: none;
  color: #000;
}

.blog-grid .card-title {
  width: 75%;
}

textarea {
  width: 100%;
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 0;
  background-color: #FFFBEA;
  height: 100px;
}

.text-area-contact {
  background-color: #FFFBEA !important;
  color: #000;
}

.book-class-form textarea {
  background: none;
  border: 1px solid #000;
}

.book-class-form textarea::placeholder {
  color: #000 !important;
  font-family: Inter;
}

/*Meet the experts*/

.meet-the-experts .carousel-slide {
  margin-top: 20px;
  height: auto;
}



.left-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 30%;
  /* margin-left: 20px; */
  padding: 0px 20px;
}

.right-text {
  width: 60%;
  margin-right: 20px;
  margin-left: 20px;
  /* padding: 0px 20px; */
}

.middle-image img {
  width: 400px !important;
  margin-left: 100px;
}

.meet-the-experts .owl-nav {
  position: relative;
  width: auto;

  transform: translate(-90px, -90px);
}

.meet-the-experts .owl-dots {
  display: none;
}

.meet-the-experts .active {
  background: none;
}

.slide-navigation {
  margin-left: 20px;
  margin-bottom: 20px;
}

.nav-link {
  padding: 10px;
  gap: 20px;
  cursor: pointer;
  text-transform: uppercase;
  background: #f3f2eb;
  margin-right: 20px;
  margin-bottom: 20px;
  /* width: 100px; */
}

.nav-link:hover {
  background-color: #491505; /* Active background color */
  color: #fff; /* Active text color */
}

.nav-link.active-nav {
  background-color: #491505; /* Active background color */
  color: #fff; /* Active text color */
}

.meet-the-team {
  margin: 0px 20px;
  margin-bottom: 40px;
}

.meet-the-team .image-container {
  width: 100%;
  height: 400px;
  /* background-size: cover;
  background-position: center; */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.meet-the-team .image-container img {
  width: 100%;
}

.image-container-nutrition img {
  width: 100%;
}

select {
  /* background: white; */
  /* border: 1px solid #ccc; */
  padding: 10px;
  font-size: 16px;
  color: #000;
  /* border-radius: 5px; */
  width: 100%;
  padding-right: 30px; /* Ensure space for the arrow */
  background-image: none; /* Remove Safari default */
  background: white no-repeat right 10px center;
  background-size: 15px;
  /* background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='black'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E"); */
}

.form-row .label-filter {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #000;
}

.calendar-container {
  display: block; /* Always visible */
  /* border: 1px solid #ccc; */
  /* padding: 20px; */
  /* width: 250px; */
  background-color: #fff;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.custom-date-picker {
  width: 100%;
}

.calendar-header button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  margin-top: 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.day-header {
  font-weight: 500;
  text-align: center;
  font-size: 15px;
}

.calendar-day {
  text-align: center;
  padding: 5px;
  cursor: pointer;
  border: 1px solid #ddd;
}

.calendar-day:hover {
  background-color: #491505;
  color: #fff;
}

.empty-cell {
  visibility: hidden;
}

.form-group .category-filter {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;

  z-index: 1000;
}

.form-group .category-filter.show {
  display: block;
}

.form-group .dropdown-option {
  padding: 8px;
  cursor: pointer;
}

.form-group .dropdown-option:hover {
  background: #f4f4f4;
}

.programme-type {
  font-weight: 500;
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
}

.pippa-form {
  padding-right: 50px;
}

.pippa-form h1 {
  font-size: 15px;
  font-weight: 500;
  margin-top: 50px;
}

.pippa-form .form-group input {
  background: none;
  border-bottom: 1px solid #000;
}

.pippa-form .form-group input::placeholder {
  color: #000;
}

.pippa-form .form-group textarea {
  background: none;
  border: 1px solid #000;
}

#form-submission-message {
  margin-top: 20px;
}

.form-desc {
  margin: 20px 0;
}

.app-screenshot {
  width: 100%;
  padding: 50px 300px;
}

#baking-sweet-treats {
  margin-top: 40px;
}

.campaign-thumbnails {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.campaign-thumbnails .thumbs-container {
  display: flex;
  gap: 20px;
  margin: 20px;
}

.image-container-campaign {
  width: 50%;
}

.image-container-campaign img {
  width: 100%;
}

.remove-margin {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.add-bottom-margin {
  margin-bottom: 20px;
}

.campaign-hero-section .quote,
.the-app .quote {
  font-size: 12px;
  margin-top: 20px;
}

.video-container {
  width: 50%;
}

.video-container video {
  width: 100%;
}

.add-margin {
  margin-top: 40px;
  margin-bottom: 40px;
}

.add-margin .content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.add-margin .add-bottom-margin,
.add-margin p,
.add-margin ul,
.the-app .quote,
.remove-bt {
  margin-bottom: 0px;
  margin-top: 0px;
}

.add-margin .video-container video {
  height: 100%;
}

.remove-padding {
  padding-bottom: 0px;
}

.container-divider {
  width: 50%;
}

.container-divider img {
  width: 100%;
}

.custom-time-picker {
  position: relative;
}

.time-dropdown {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  z-index: 1000;
}

.time-dropdown div {
  padding: 8px;
  cursor: pointer;
}

.time-dropdown div:hover {
  background-color: #f0f0f0;
}

.campaign-pricing .pricing-box{
  height: 230px;
  padding: 20px 60px;
}

.testimonials .set-campaign-bg{
  background-color: #491505;
}

.testimonials .set-campaign-bg .owl-carousel-testimonial .owl-dot.active {
  background-color: #fff!important;
}

.hook-line{
  font-size: 24px;
}

.campaign-thumbnails a{
  
  text-decoration: none;
  
  color: inherit;
  cursor: pointer;
}

.ft-15px{
  font-size: 15px;
}

.mg-top{
  margin-top: -50px!important;
}

.pricing-bottom{
  background-color: #f8f8f8;
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.vitality-form, .vitality-form form{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0px auto!important;
  justify-content: center;
}


.vitality-form h1{
  font-size: 20px!important;
  margin-bottom: 0;
}

.vitality-form form button{
  margin-top: 0;
}

#error-message{
  color: red;
  text-align: center;
  margin-top: 10px;
  height: 30px;
}

.vitality-logo{
  gap: 10px; 
  width: 12%;
}

.vitality-logo .main-logo{
  width: 100%;
}

.vitality-logo .vitality-logo-image{
  width: 30%;
}