/********** Template CSS **********/
:root {
    --primary: #291514;
    --light: #f1f8ff;
    --dark: #432d2d;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-semi-bold {
    font-weight: 600 !important;
}
.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}


.header {
  /* background: url('../img/header.jpg') no-repeat center center/cover; */
  padding: 100px 0 50px;
}

.header .container {
  /* background: rgba(17, 17, 17, 0.5); */
}

.title {
  font-size: 48px;
  margin: 0;
}


@media (max-width: 600px) {
  .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.numb_item {
  background-color: #ffffff;
  padding: 20px 20px;
  min-height: 175px;
}
.subtitle {
  font-size: 24px;
  margin: 10px 0;
}

.btn-primary {
  background-color: #291514;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 20px;
}

.section-title {
  font-size: 38px;
  margin: 40px 0;
  text-align: center;
}

.details, .program, .special-offer, .reviews, .tickets, .contact, .newsletter, .artist {
  padding: 40px 0;
}
.artist  {
  /* background: #f0f4ff; */
}
.artist p {
  font-size: 18px;
  line-height: 1.6;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 18px;
  margin: 10px 0;
}

.ticket-form, .newsletter-form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}

.ticket-form label, .newsletter-form label {
  margin: 10px 0 5px;
}

.ticket-form input, .ticket-form select, .newsletter-form input {
  padding: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.footer {
  background-color: #333;
  color: white;
  /* text-align: center; */
  padding: 20px 0;
}

.social-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.social-links li {
  margin: 0 10px;
}

.social-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.btn-primary:hover {
  background-color: #291514;
  transition: background-color 0.3s ease;
}
.detailsFlex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .detailsFlex{
    flex-direction: column;
  }
}
.detailsimg {
  width: 50%;
  margin-left: 20px;
}
@media (max-width: 600px) {
  .detailsimg {
    width: 100%;
  }
}
.programFlex {
  display: flex;
  flex-direction: row;
  /* gap: 20px; */
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 600px) {
  .programFlex {
    flex-direction: column;
  }
}
.detailsimg2 {
  width: 100%;
}
@media (max-width: 600px) {
  .detailsimg2 {
    width: 100%;
  }
}
.reviews {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 600px) {
  .reviews {
    flex-direction: column;
  }
}
.review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  max-width: 400px;
  border: 1px solid #ffbeb2;
  padding: 40px;
  border-radius: 10px;
  background-color: #fffbfb;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    text-transform: uppercase;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 2px;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 43, 0.7);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}

.booking {
    position: relative;
    margin-top: -100px !important;
    z-index: 1;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    border-radius: 20px 50px;
    padding: 8px;
}

.section-title.text-start::before,
.section-title.text-end::after {
    display: none;
}

/*** Service ***/
.service-item {
    height: 420px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background: #ffffff;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.service-item:hover {
    background: #291514;
}

.service-item .service-icon {
    margin: 0 auto 30px auto;
    width: 65px;
    height: 65px;
    transition: 0.5s;
}

.service-item i,
.service-item h5,
.service-item p {
    transition: 0.5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
    color: #ffffff !important;
}

/*** Youtube Video ***/
.video {
    position: relative;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(rgba(15, 23, 43, 0.1), rgba(15, 23, 43, 0.1)),
        url(../img/video.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.video .btn-play img {
    position: relative;
    z-index: 3;
    max-width: 100%;
    width: auto;
    height: auto;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 32px solid var(--dark);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
        url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-carousel {
    padding-left: 65px;
    padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
    padding: 30px;
}

.testimonial-item img {
    object-fit: cover;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #291514;
    border-radius: 2px;
    font-size: 18px;
    transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #291514;
    background: #ffffff;
}

/*** Team ***/
.team-item,
.team-item .bg-primary,
.team-item .bg-primary i {
    transition: 0.5s;
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}

/*** Footer ***/

/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}
@media (max-width: 600px) {
  .contact-img {
    display: none;
  }
}

.cookie-wrapper {
    position: fixed;
    bottom: 0px;
    right: 0;
    width: 40%;
    background: #fff;
    padding: 15px 25px 22px;
    transition: right 0.3s ease;
    box-shadow: 0 5px 10px rgb(0, 0, 0);
    z-index: 999;
    @media (max-width: 600px) {
        width: 100%;
    }
}
.cookie-wrapper .show {
    right: 20px;
}

.hidden {
    display: none;
}
header i {
    color: #291514;
    font-size: 32px;
    text-align: center;
}
header h2 {
    color: #291514;
    font-weight: 500;
    text-align: center;
}
.data {
    text-align: center;
}
.data p a {
    color: #291514;
    text-decoration: none;
    text-align: center !important;
}
.data p a:hover {
    text-decoration: underline;
}
.buttons {
    padding: 20px 0px;
    text-align: center;
}
.buttons .cookie-button {
    border: 2px solid #291514;
    color: #fff;
    padding: 8px 0;
    background: #291514;
    cursor: pointer;
    width: calc(100% / 2 - 10px);
    transition: all 0.5s ease;
    max-width: 150px;
    border-radius: 0;
}
.buttons #acceptBtn:hover {
    background-color: transparent;
    color: #291514;
}
#declineBtn {
    background-color: #fff;
    color: #291514;
}
#declineBtn:hover {
    background-color: #291514;
    color: #fff;
}
/* Footer Style */
section.reasons {
    padding: 50px 0 0 0 ;
    text-align: center;
    background-color: white;
    margin-bottom: 20px;
}
section.reasons h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

section.reasons ul, section.reasons li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

section.reasons ul {
  margin-top: 40px;
    list-style: none;
    padding: 0;
}

section.reasons li {
    margin-bottom: 20px;
    border: 1px solid #291514;
    padding: 10px 20px;
}
section.reasons li:hover {
  background: #dad2ef;
}

  /* Блок для головного екрану */
  .welcome-block {
    position: relative;
    padding: 70px 0;
  }

  /* Заголовок */
  .welcome-title {
    font-size: 2.5rem; /* коригуйте під свій смак */
  }

  /* Підзаголовок */
  .welcome-subtitle {
    max-width: 600px;
  }

  /* Кнопка заклику до дії */
  .btn-custom {
    background-color: #8c7c68; 
    border: none; 
    color: #fff;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
  }
  .btn-custom:hover {
    background-color: #6e604f; /* трохи темніший відтінок */
    color: #fff;
  }

  /* Зображення (можна додати анімацію або інші ефекти) */
  .welcome-image {
    max-width: 90%;
  }

  /* Блок Our Mission & Values */
  .mission-values {
    position: relative;
  }

  .mission-title {
    letter-spacing: 1px;
  }

  .mission-intro {
    max-width: 800px;
  }

  .mission-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mission-image {
    max-width: 100%;
    object-fit: cover;
  }

  /* Список цікавих фактів */
  .facts-list li span {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Картки цінностей */
  .values-card {
    transition: transform 0.3s ease;
  }
  .values-card:hover {
    transform: translateY(-3px);
  }


    /* Overview of Key Courses Block */
    .overview-courses {
      position: relative;
    }
    .overview-title {
      letter-spacing: 1px;
    }
    .overview-description,
    .overview-text {
      max-width: 800px;
      margin: 0 auto;
    }
    .course-card {
      border: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .course-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }
    .course-icon i {
      color: #8c7c68;
    }
    .text-accent {
      color: #8c7c68 !important;
    }
    .overview-footer {
      font-size: 0.95rem;
    }
  
  /* Benefits Block */
  .benefits-block {
    position: relative;
  }
  .benefits-title {
    letter-spacing: 1px;
  }
  .benefits-intro {
    max-width: 800px;
    margin: 0 auto;
  }
  .benefits-photo {
    max-width: 100%;
    object-fit: cover;
  }
  /* Список переваг */
  .benefits-list li {
    font-size: 1rem;
    line-height: 1.6;
  }
  .benefits-icon {
    font-size: 1.5rem;
    color: #8c7c68;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .benefits-content {
    font-size: 1rem;
  }

  /* Success Stories Block */
  .success-stories {
    position: relative;
  }
  .success-title {
    letter-spacing: 1px;
  }
  .success-intro {
    max-width: 800px;
    margin: 0 auto;
  }
  .testimonial-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  .testimonial-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }
  .testimonial-title {
    font-size: 1.1rem;
  }
  .testimonial-author {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .testimonial-quote {
    font-style: italic;
    font-size: 0.95rem;
  }
  .testimonial-rating {
    font-size: 0.9rem;
    color: #8c7c68;
  }

    /* Latest News Block */
    .latest-news-block {
      position: relative;
    }
    .latest-news-title {
      letter-spacing: 1px;
    }
    .latest-news-intro {
      max-width: 800px;
      margin: 0 auto;
    }
    /* Новинні картки */
    .news-card {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }
    .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .news-image {
      object-fit: cover;
      height: 200px;
    }
    .news-title {
      font-size: 1.25rem;
      font-weight: bold;
    }
    .news-date {
      font-size: 0.9rem;
    }
    .news-description {
      font-size: 0.95rem;
    }
    /* Кнопка Learn more */
    .btn-accent {
      background-color: #8c7c68;
      border: none;
      color: #fff;
      padding: 0.75rem 1.5rem;
      transition: background-color 0.3s ease;
    }
    .btn-accent:hover {
      background-color: #6e604f;
    }
  

  /* About Us Block */
  .about-us-block {
    position: relative;
  }
  .about-title {
    letter-spacing: 1px;
  }
  .about-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .about-image {
    max-width: 100%;
    object-fit: cover;
  }
  
  /* Expert Team Block */
  .expert-team-block {
    position: relative;
  }
  .team-title {
    letter-spacing: 1px;
  }
  .team-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
  }
  .team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .team-photo {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  .team-name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .team-info {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .team-note {
    font-size: 0.9rem;
  }

  .trainings-webinars {
    position: relative;
  }
  .tw-title {
    letter-spacing: 1px;
  }
  .tw-subtitle {
    letter-spacing: 0.5px;
  }
  /* Trainings styles */
  .training-card, .webinar-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .training-card:hover, .webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .training-image, .webinar-image {
    object-fit: cover;
    height: 180px;
  }
  .training-name, .webinar-name {
    font-weight: bold;
  }
  .training-description, .webinar-description {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .available-courses {
    position: relative;
  }
  .courses-title {
    letter-spacing: 1px;
  }
  .course-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .course-image {
    object-fit: cover;
    height: 180px;
  }
  .course-icon {
    color: #8c7c68;
  }
  .course-duration {
    margin-top: 1rem;
  }
  .course-includes li {
    font-size: 0.9rem;
    line-height: 1.4;
  }


  /* Latest Articles Block */
  .latest-articles {
    position: relative;
  }
  .articles-title {
    letter-spacing: 1px;
  }
  .article-item {
    background-color: #f8f9fa;
  }
  .article-heading {
    margin-bottom: 1rem;
  }
  .articles-image {
    max-width: 100%;
    object-fit: cover;
  }
  /* Useful Tips Block */
  .useful-tips {
    position: relative;
  }
  .tips-title {
    letter-spacing: 1px;
  }
  .tips-list li {
    font-size: 1rem;
    line-height: 1.5;
  }
  .tips-icon {
    color: #8c7c68;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
  }
  .tips-image {
    max-width: 100%;
    object-fit: cover;
  }

  .faq-block {
    position: relative;
  }
  .faq-title {
    letter-spacing: 1px;
  }
  .faq-accordion .accordion-item {
    border: none;
    margin-bottom: 1rem;
  }
  .faq-header {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
  }
  .faq-header .accordion-button {
    font-weight: bold;
    color: #343a40;
  }
  .faq-body {
    background-color: #fff;
    color: #6c757d;
  }

  
  /* Contacts Block */
  .contacts-block {
    position: relative;
  }
  .contacts-title {
    letter-spacing: 1px;
  }
  .contacts-intro,
  .contacts-office {
    max-width: 800px;
    margin: 0 auto;
  }
  .contacts-info li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    line-height: 1.5;
  }
  .map-embed iframe {
    border: 0;
    border-radius: 5px;
  }
  .custom-contact-form {
    margin-top: 2rem;
    /* Custom styles for your form can be added here */
  }

  /* Consultation Block */
  .consultation-block {
    position: relative;
  }
  .consultation-title {
    letter-spacing: 1px;
  }
  .consultation-intro {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .custom-consultation-form {
    /* Placeholder styles for your consultation form */
    min-height: 200px;
    border: 2px dashed #8c7c68;
    border-radius: 5px;
    padding: 1.5rem;
    text-align: center;
    color: #8c7c68;
    font-style: italic;
  }
  .btn-accent {
    background-color: #8c7c68;
    border: none;
    color: #fff;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease;
  }
  .btn-accent:hover {
    background-color: #6e604f;
  }
