.bg-primarys {
  background-color: #7b0010 !important;
}

.button-primary {
  color: #fff !important;
  background-color: #7b0010 !important;
  border-color: #7b0010 !important;
}
.button-primary:hover {
  color: #fff !important;
  background-color: #59000c !important;
  border-color: #59000c !important;
}
.button-primary.focus, .button-primary:focus {
  color: #fff;
  background-color: #761623;
  border-color: #761623;
  box-shadow: 0 0 0 0.2rem rgba(167, 24, 24, 0.5);
  outline: none;
}
.button-primary.disabled, .button-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}
.button-primary:not(:disabled):not(.disabled).active, .button-primary:not(:disabled):not(.disabled):active, .show > .button-primary.dropdown-toggle {
  color: #fff;
  background-color: #761623;
  border-color: #761623;
}
.button-primary:not(:disabled):not(.disabled).active:focus, .button-primary:not(:disabled):not(.disabled):active:focus, .show > .button-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 24, 24, 0.5);
}

.button-primary-white {
  color: #7b0010 !important;
  background-color: #fdfdfd !important;
  border-color: #7b0010 !important;
}
.button-primary-white:hover {
  color: #fdfdfd !important;
  background-color: #59000c !important;
  border-color: #59000c !important;
}
.button-primary-white.focus, .button-primary-white:focus {
  color: #7b0010;
  background-color: #761623;
  border-color: #761623;
  box-shadow: 0 0 0 0.2rem rgba(167, 24, 24, 0.5);
  outline: none;
}
.button-primary-white.disabled, .button-primary-white:disabled {
  color: #7b0010;
  background-color: #007bff;
  border-color: #007bff;
}
.button-primary-white:not(:disabled):not(.disabled).active, .button-primary-white:not(:disabled):not(.disabled):active, .show > .button-primary-white.dropdown-toggle {
  color: #7b0010;
  background-color: #761623;
  border-color: #761623;
}
.button-primary-white:not(:disabled):not(.disabled).active:focus, .button-primary-white:not(:disabled):not(.disabled):active:focus, .show > .button-primary-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 24, 24, 0.5);
}

.button-outline-primary {
  color: #fdfdfd !important;
  border-color: #fdfdfd !important;
}
.button-outline-primary:hover {
  color: #7b0010 !important;
  background-color: #fdfdfd !important;
  border-color: #fdfdfd !important;
}
.button-outline-primary.focus, .button-outline-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 24, 24, 0.5);
  outline: none;
}
.button-outline-primary.disabled, .button-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}
.button-outline-primary:not(:disabled):not(.disabled).active, .button-outline-primary:not(:disabled):not(.disabled):active, .show > .button-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #761623;
  border-color: #761623;
}
.button-outline-primary:not(:disabled):not(.disabled).active:focus, .button-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .button-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(167, 24, 24, 0.5);
}

.hero-section {
  color: #fdfdfd;
  padding: 0;
  position: relative;
}
.hero-section .background-cover {
  height: 690px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .background-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/hero-img.jpg") no-repeat center center fixed; /* Replace with the path to your image */
  background-size: cover;
  z-index: -1; /* Ensure the image is behind the content */
}
.hero-section .background-cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Adjust the opacity of the black overlay */
  z-index: -1; /* Ensure the overlay is behind the content */
}
.hero-section .icons-group {
  position: absolute;
  bottom: -60px;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.hero-section .icons-group .icon-group {
  display: flex;
  align-items: center;
  background-color: white;
  border-radius: 8px;
  border: 0.5px solid rgb(214, 214, 214);
  padding: 24px 32px;
}
.hero-section .icons-group .icon-group img {
  background-color: maroon;
  height: 58px;
  width: 58px;
  padding: 8px;
  border-radius: 60px;
  margin-right: 8px;
}
.hero-section .icons-group .icon-group .icon-text p {
  margin: 0;
}
.hero-section .icons-group .icon-group .icon-text .icon-title {
  font-weight: 800;
  font-size: 32px;
}
.hero-section .section-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-section .section-wrapper .hero-left-side {
  width: 70%;
}
.hero-section .section-wrapper .hero-left-side .title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-section .section-wrapper .hero-left-side .subtitle {
  font-size: 18px;
  width: 80%;
  line-height: 200%;
  margin-bottom: 48px;
}
.hero-section .section-wrapper .hero-left-side a {
  margin: 0 !important;
  margin-left: 16px !important;
}
.hero-section .section-wrapper .hero-right-side {
  width: 49%;
}
.hero-section .section-wrapper .hero-right-side img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
}

.about-section .section-wrapper {
  width: 80%;
  margin: auto;
}
.about-section .about-group {
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-section .about-group img {
  height: 100px;
  margin-right: 32px;
}
.about-section .about-group p {
  font-size: 24px;
  width: 60%;
  color: #7b0010;
}
.about-section .about-group p span {
  font-weight: 700;
}
.about-section .service-type-group .vt,
.about-section .service-type-group .pt {
  margin-bottom: 250px;
}
.about-section .service-type-group .vt .img-side {
  float: left;
  margin-right: 80px;
}
.about-section .service-type-group .pt {
  clear: left;
}
.about-section .service-type-group .pt .img-side {
  float: right;
  margin-left: 80px;
}
.about-section .service-type-group .content-side .content,
.about-section .service-type-group .content-side .content-title {
  font-size: 18px;
}
.about-section .service-type-group .content-side .content-title {
  color: #7b0010;
  font-size: 32px;
}
.about-section .service-type-group img {
  height: 330px;
  width: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews-section {
  clear: right;
  text-align: center;
  background-color: #7b0010;
}
.reviews-section * {
  color: #fdfdfd !important;
}
.reviews-section .gallery-container .swiper-wrapper {
  display: flex;
  align-items: center !important;
}
.reviews-section .gallery-container .swiper-slide {
  min-height: 300px;
}
.reviews-section .gallery-container .swiper-slide .qoute {
  font-size: 190px;
  margin: 0;
  line-height: 80%;
  height: 40px;
}
.reviews-section .gallery-container .swiper-slide .slide-title {
  width: 70%;
  margin: auto;
  font-size: 32px;
  margin-bottom: 24px;
}
.reviews-section .gallery-container .swiper-slide .slide-details {
  font-size: 32px;
}
.reviews-section .gallery-container .swiper-slide video {
  margin: auto;
  height: 400px;
}

.services-section {
  position: relative;
}
.services-section .section-title {
  color: #fdfdfd;
}
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/service-img.jpg") no-repeat center center fixed; /* Replace with the path to your image */
  background-size: cover;
  z-index: -1; /* Ensure the image is behind the content */
}
.services-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Adjust the opacity of the black overlay */
  z-index: -1; /* Ensure the overlay is behind the content */
}
.services-section .section-wrapper .row {
  margin-bottom: 64px;
}
.services-section .section-wrapper .row * {
  color: #fdfdfd;
}
.services-section .section-wrapper .row h2 {
  margin-bottom: 32px;
}
.services-section .section-wrapper .row .form-group:nth-child(3) .card-groups {
  background: linear-gradient(to bottom, #dd0000, #920303); /* Gradient red */
}
.services-section .section-wrapper .row .card-groups {
  margin-bottom: 32px;
  background-color: maroon;
  color: #fdfdfd;
  min-height: 700px;
  border-radius: 8px;
  width: 100%;
  position: relative;
  padding-bottom: 16px;
}
.services-section .section-wrapper .row .card-groups img {
  border-radius: 8px 8px 0 0;
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.services-section .section-wrapper .row .card-groups .card-title {
  position: absolute;
  top: 194px;
  left: 16px;
  padding: 8px;
  background-color: #fdfdfd;
  color: #7b0010;
  font-weight: 800;
  font-size: 18px;
  border-radius: 4px;
}
.services-section .section-wrapper .row .card-groups .price {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  margin: 16px 0;
  display: inline-block;
}
.services-section .section-wrapper .row .card-groups .sessions {
  font-size: 18px;
  display: inline-block;
}
.services-section .section-wrapper .row .card-groups ul {
  padding: 0;
}
.services-section .section-wrapper .row .card-groups ul li {
  padding: 0;
  line-height: 180%;
  font-size: 16px;
  margin-bottom: 4px;
}
.services-section .section-wrapper .row .card-groups p,
.services-section .section-wrapper .row .card-groups ul {
  padding: 0 32px;
  margin: 0;
  padding-top: 16px;
}
.services-section .section-wrapper .row .card-groups .inquire {
  position: absolute;
  bottom: 16px;
  width: 100%;
  padding: 0 16px;
}
.services-section .section-wrapper .row .card-groups .inquire a {
  width: 100%;
}

/* Custom styles for Bootstrap 5 accordion */
.faqs-section .accordion {
  background: transparent;
}
.faqs-section .accordion .accordion-item {
  border: none;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1), -2px -2px 8px rgba(0, 0, 0, 0.1);
}
.faqs-section .accordion .accordion-item .accordion-button:hover {
  background-color: #7b0010;
  color: #fdfdfd;
}
.faqs-section .accordion .accordion-item .accordion-button:hover::after {
  color: #fdfdfd;
}
.faqs-section .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.faqs-section .accordion .accordion-item .accordion-button:not(.collapsed) {
  background: #7b0010;
  color: #fdfdfd;
  box-shadow: none;
}
.faqs-section .accordion .accordion-item .accordion-button::after {
  background-image: none;
  content: "\f0d7";
  font-family: fontawesome;
  width: auto;
  height: auto;
}
.faqs-section .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: none;
}

.promos-section {
  background-color: #7b0010;
}
.promos-section * {
  color: #fdfdfd !important;
}
.promos-section .section-title {
  text-align: center;
  font-weight: 200;
}
.promos-section .gallery-container {
  height: 600px;
}
.promos-section .swiper {
  width: 100%;
  height: 600px;
}
.promos-section .swiper-slide {
  background-position: center;
  background-size: cover;
}
.promos-section .swiper-slide .slide-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  height: 600px;
}
.promos-section .swiper-slide .slide-wrapper .left-side {
  width: 50%;
}
.promos-section .swiper-slide .slide-wrapper .right-side {
  width: 45%;
}
.promos-section .swiper-slide .slide-wrapper .right-side p {
  color: #7b0010;
  font-weight: 200;
}
.promos-section .swiper-slide .slide-wrapper .right-side .slide-title {
  font-size: 32px;
}
.promos-section .swiper-slide .slide-wrapper .right-side .slide-details {
  width: 80%;
  line-height: 200%;
  font-weight: 100;
}
.promos-section .swiper-slide img {
  display: block;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: 400px;
  width: 400px;
}

.coaches-section .coaches-group .slide {
  display: flex;
  margin-left: 52px;
  overflow-x: scroll;
}
.coaches-section .coaches-group .slide .coach-group {
  cursor: pointer;
  text-align: center;
  padding: 8px;
  margin-right: 32px;
}
.coaches-section .coaches-group .slide .coach-group img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 200px;
  -o-object-position: center top;
     object-position: center top;
}
.coaches-section .coaches-group .slide .coach-group p {
  margin: 0;
}
.coaches-section .coaches-group .slide .coach-group .name {
  font-weight: 600;
  color: #7b0010;
  text-transform: capitalize;
}
.coaches-section .coaches-group .slide .coach-group .level {
  text-transform: uppercase;
}

.modal-coach .row .form-group img {
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-coach .row .form-group p {
  margin: 0;
}
.modal-coach .row .form-group .firstName {
  font-size: 32px;
  font-weight: 600;
  text-transform: capitalize;
}
.modal-coach .row .form-group .level {
  text-transform: uppercase;
}
.modal-coach .row .form-group .level,
.modal-coach .row .form-group .firstName {
  color: #7b0010;
}
.modal-coach .row .form-group .credential-group {
  margin-top: 24px;
}
.modal-coach .row .form-group .credential-group .credential-type {
  font-weight: 800;
  color: #7b0010;
}

.closing-section {
  background-color: #920303;
}
.closing-section * {
  color: #fdfdfd;
}
.closing-section .closing-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.closing-section .closing-group .content-side {
  width: 60%;
}
.closing-section .closing-group .content-side h3 {
  margin-bottom: 64px;
}
.closing-section .closing-group .img-side img {
  height: 400px;
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 70% center;
     object-position: 70% center;
  box-shadow: 5px 5px 0px #ffffff;
}

@media only screen and (max-width: 991px) {
  .hero-section .icons-group {
    position: unset;
    width: 50%;
    display: block;
    padding: 100px 0 0 0;
  }
  .hero-section .icons-group .icon-group {
    margin-bottom: 44px !important;
  }
  .about-section .section-wrapper {
    width: 90%;
  }
  .about-section .about-group {
    height: 455px;
  }
  .about-section .service-type-group .vt,
  .about-section .service-type-group .pt {
    margin-bottom: 250px;
  }
  .about-section .service-type-group .vt .img-side,
  .about-section .service-type-group .pt .img-side {
    text-align: center;
    float: none;
    margin: 0;
    margin-bottom: 28px;
  }
  .about-section .service-type-group .content-side .content {
    font-size: 18px;
  }
  .reviews-section .gallery-container .swiper-slide .qoute {
    font-size: 120px;
  }
  .reviews-section .gallery-container .swiper-slide .slide-title {
    margin: auto;
    font-size: 24px;
    margin-bottom: 32px;
  }
  .reviews-section .gallery-container .swiper-slide .slide-details {
    font-size: 24px;
  }
  .promos-section {
    background-color: #7b0010;
  }
  .promos-section * {
    color: #fdfdfd !important;
  }
  .promos-section .section-title {
    text-align: center;
    font-weight: 200;
  }
  .promos-section .gallery-container {
    height: 600px;
  }
  .promos-section .swiper {
    width: 100%;
    height: 600px;
  }
  .promos-section .swiper-slide {
    background-position: center;
    background-size: cover;
  }
  .promos-section .swiper-slide .slide-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    height: 600px;
  }
  .promos-section .swiper-slide .slide-wrapper .left-side {
    width: 50%;
  }
  .promos-section .swiper-slide .slide-wrapper .right-side {
    width: 45%;
  }
  .promos-section .swiper-slide .slide-wrapper .right-side p {
    color: #7b0010;
    font-weight: 200;
  }
  .promos-section .swiper-slide .slide-wrapper .right-side .slide-title {
    font-size: 32px;
  }
  .promos-section .swiper-slide .slide-wrapper .right-side .slide-details {
    width: 80%;
    line-height: 200%;
    font-weight: 100;
  }
  .promos-section .swiper-slide img {
    display: block;
    margin: auto;
    -o-object-fit: contain;
       object-fit: contain;
    width: 100%;
  }
  .coaches-section .coaches-group .slide .coach-group img {
    width: 120px;
    height: 120px;
  }
  .closing-section {
    background-color: #920303;
  }
  .closing-section * {
    color: #fdfdfd;
  }
  .closing-section .closing-group {
    display: block;
  }
  .closing-section .closing-group .content-side {
    width: 100%;
  }
  .closing-section .closing-group .img-side {
    text-align: center;
    margin-bottom: 32px;
  }
  .closing-section .closing-group .img-side img {
    height: 400px;
    width: 350px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70% center;
       object-position: 70% center;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .section-wrapper {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .hero-section .section-wrapper .hero-left-side {
    text-align: center;
    width: 100%;
  }
  .hero-section .section-wrapper .hero-left-side .subtitle {
    width: 100%;
  }
  .hero-section .section-wrapper .hero-left-side a {
    margin-bottom: 16px;
  }
  .hero-section .section-wrapper .hero-right-side {
    width: 100%;
  }
  .hero-section .section-wrapper .hero-right-side img {
    width: 100%;
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 2px;
  }
  .about-section .about-group p {
    font-size: 18px;
  }
  .about-section .service-type-group img {
    width: 100%;
  }
  .reviews-section .section-wrapper {
    width: 100%;
  }
  .reviews-section .gallery-container .swiper-slide .qoute {
    font-size: 90px;
  }
  .reviews-section .gallery-container .swiper-slide .slide-title {
    font-size: 16px;
  }
  .reviews-section .gallery-container .swiper-slide .slide-details {
    font-size: 16px;
  }
  .promos-section .gallery-container {
    height: 100%;
  }
  .promos-section .swiper {
    height: 100%;
  }
  .promos-section .swiper-slide .slide-wrapper {
    padding: 32px 0;
    display: block;
    height: 100%;
  }
  .promos-section .swiper-slide .slide-wrapper .left-side,
  .promos-section .swiper-slide .slide-wrapper .right-side {
    width: 100%;
  }
  .promos-section .swiper-slide .slide-wrapper .right-side .slide-details {
    width: 100%;
  }
  .promos-section .swiper-slide img {
    margin-bottom: 32px;
  }
  .coaches-section {
    min-height: 360px !important;
  }
  .coaches-section .coaches-group .slide {
    margin-left: 32px;
  }
  .coaches-section .coaches-group .slide .coach-group img {
    width: 95px;
    height: 95px;
  }
  .coaches-section .coaches-group .slide .coach-group p {
    font-size: 14px;
  }
  .modal-coach img {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .hero-section .section-wrapper .hero-left-side .title {
    font-size: 38px;
  }
  .hero-section .section-wrapper .hero-left-side .subtitle {
    font-size: 16px;
  }
  .hero-section .section-wrapper .hero-left-side a {
    margin: 0 !important;
  }
  .hero-section .icons-group {
    width: 90% !important;
  }
  .about-section .about-group {
    height: 250px;
    display: block;
    text-align: center;
  }
  .about-section .about-group img {
    height: 70px;
    margin: 0 !important;
  }
  .about-section .about-group p {
    margin-top: 18px;
    width: 100%;
  }
  .about-section .service-type-group .type-group {
    margin-bottom: 62px;
  }
  .about-section .service-type-group .content-side .content-title {
    font-size: 24px;
  }
  .about-section .service-type-group .content-side .content {
    font-size: 16px;
  }
  .about-section .service-type-group img {
    -o-object-position: 75% 0 !important;
       object-position: 75% 0 !important;
  }
  video {
    width: 100%;
  }
}
@media only screen and (max-width: 400px) {
  .hero-section .button-primary {
    margin-top: 18px;
  }
}