.navbar {
  --bs-navbar-active-color: #0055a5;
}
.dropdown-item.active, .dropdown-item:active {
--bs-dropdown-link-active-color: #fff;
}
a {
  color: #000;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", serif;
  font-weight: 700;
}

body {
  font-family: "Montserrat", serif;
  font-weight: 400;
  background: #f3f3f9;
}

.navbar {
  transition: background 0.3s, padding 0.3s;
  background: transparent;
  padding: 10px 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
}

.navbar.scrolled, .navbar.inner__top {
  background: white;
  padding: 0px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07), 0 15px 35px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.navbar .nav-link {
  color: white;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar .nav-item {
  margin: 0px 3px;
  position: relative;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color:#fff;
}
.offcanvas .navbar-nav .nav-link.active, .offcanvas .navbar-nav .nav-link.show {
  color:#000;
}
.navbar .nav-item .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: transform 0.4s ease;
}

.navbar .nav-item .nav-link:hover::before,
.navbar .nav-item .nav-link.active::before {
  transform: translateX(-50%) scaleX(1);
}
.navbar.scrolled .nav-item .nav-link::before,
.navbar.inner__top .nav-item .nav-link::before
 {
  background-color: #0055A5;
}

.navbar.scrolled .nav-link,
.navbar.inner__top .nav-link {
  color: black;
}

.navbar-brand img {
  height: 100px;
  transition: opacity 0.3s, height 0.3s;
}
.navbar.scrolled .navbar-brand img,
.navbar.inner__top .navbar-brand img {
  height: 80px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar.inner__top.scrolled { 
  position: fixed; 
}

.language-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}
.language-menu a {
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
  margin-top: 3px;
}

.language-menu button {
  color: #fff;
}

.navbar.scrolled .language-menu button,
.navbar.inner__top .language-menu button {
  color: black;
}
.dropdown-menu {
  background-color: white;
  border: none;
}
.dropdown-item:hover {
  background-color: #f8f9fa;
}
.menu-toggle {
  cursor: pointer;
  font-size: 2rem;
  color: white;
}
.navbar.scrolled .menu-toggle,
.navbar.inner__top .menu-toggle {
  color: black;
}

.socials li {
  display: inline-block;
}

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: #0055a5;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s;
}

.social-circle:hover {
  background-color: #ddd;
  color: #0055a5;
  text-decoration: none;
}

.scrolled .social-circle,
.inner__top .social-circle {
  background-color: #eee;
}

.offcanvas-header {
  position: relative;
}

.offcanvas-header .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;

}
.hero-slider .item {
  position: relative;
}
.hero-slider .item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateX(500px);
  transition: opacity 1s, transform 1s;
}
.active .hero-overlay {
  opacity: 1;
  transform: translateY(0);
}
.hero-slider .item {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.hero-slider .item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo {
  display: block;
  width: 100px;
  height: 48px;
  background-color: #fff;
  -webkit-mask-image: url("../img/logo-kz.svg");
  mask-image: url("../img/logo-kz.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  transition: background-color 0.3s ease;
}

.head-nav .logo {
  background-color: #fff;
}

.offcanvas-header .logo,
.head-nav.scrolled .logo,
.head-nav.inner__top .logo {
  background-color: #003f73;
}

/*********************/
.blog-grid {
  margin-top: 15px;
  margin-bottom: 15px;
}
.blog-grid .blog-img {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  height: 250px;
}

.blog-grid .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.blog-grid .blog-img .date {
  position: absolute;
  background: #3a3973;
  color: #ffffff;
  padding: 8px 15px;
  left: 0;
  top: 10px;
  font-size: 14px;
}
.blog-grid .blog-info {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 5px 10px rgba(0, 0, 0, 0.04);
  border-radius: 5px;
  background: #ffffff;
  padding: 20px;
  margin: -30px 20px 0;
  position: relative;
  transition: all 0.3s ease;
}

.blog-grid .blog-info h5 {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 10px;
  height: 85px;
  overflow: hidden;
}
.blog-grid .blog-info h5 a {
  color: #3a3973;
}
.blog-grid .blog-info h5 a:hover {
  color: #0055a5;
}
.blog-grid .blog-info p {
  margin: 0;
}
.blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}

.px-btn-arrow {
  padding: 0 50px 0 0;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  display: inline-block;
  color: #0055a5;
  -moz-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  -webkit-transition: ease all 0.3s;
  transition: ease all 0.3s;
}

.px-btn-arrow .arrow {
  width: 13px;
  height: 2px;
  background: currentColor;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 25px;
  -moz-transition: ease right 0.3s;
  -o-transition: ease right 0.3s;
  -webkit-transition: ease right 0.3s;
  transition: ease right 0.3s;
}

.px-btn-arrow .arrow:after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  display: inline-block;
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.px-btn-arrow:hover .arrow {
  right: 15px;
}

/*****************************/

@media (min-width: 992px) {
  .home-blog {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}
.home-blog .section-title {
  padding-bottom: 15px;
}
.home-blog .media {
  margin-top: 50px;
  box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0, 0, 0, 0.35);
}
@media (min-width: 768px) {
  .home-blog .media {
    margin-top: 30px;
  }
}
.bg-sand {
  background-color: #f5f5f6;
}
.media.blog-media {
  margin-top: 30px;
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  .media.blog-media {
    display: table;
  }
}
.media.blog-media .circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  position: absolute;
  padding: 0;
  top: 20px;
  left: 20px;
  text-align: center;
  box-shadow: none;
  transform: translateX(0);
  color: #fff;
  transition: background-color 0.3s ease;
}
.media.blog-media .circle .day {
  color: #fff;
  transition: color 0.25s ease;
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
  margin-top: 12px;
}
.media.blog-media .circle .month {
  text-transform: uppercase;
  font-size: 14px;
}
.media.blog-media > a {
  position: relative;
  display: block;
}
@media (min-width: 992px) {
  .media.blog-media > a {
    display: table-cell;
    vertical-align: top;
    min-width: 200px;
  }
}
@media (min-width: 1200px) {
  .media.blog-media > a {
    min-width: 230px;
  }
}
.media-body .date {
  margin-bottom: 15px;
}
.media.blog-media > a:before {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.3s ease, opacity 0.3s;
  background: rgba(0, 0, 0, 0.5);
}
.media.blog-media > a img {
  width: 100%;
}
.media.blog-media:hover > a:before {
  opacity: 1;
  transform: scale(1);
}
.media.blog-media:hover .circle {
  background-color: rgba(255, 255, 255, 0.9);
}
.media.blog-media:hover .circle .day,
.media.blog-media:hover .circle .month {
  color: #222;
}
.media.blog-media:hover .media-body h5 {
  color: #0055a5;
}
.media.blog-media:hover .media-body a.post-link {
  color: #0055a5;
  text-decoration: none;
}
.media.blog-media .media-body {
  border: 1px solid #efeff3;
  padding: 30px 30px 10px;
  font-size: 14px;
  background: #fff;
  border-top: none;
}
@media (min-width: 992px) {
  .media.blog-media .media-body {
    padding: 15px 20px 10px;
    border-top: 1px solid #efeff3;
    border-left: none;
    display: table-cell;
    vertical-align: top;
  }
}
@media (min-width: 1200px) {
  .media.blog-media .media-body {
    padding: 30px 20px 10px;
  }
}
.media.blog-media .media-body h5 {
  transition: color 0.3s ease;
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .media.blog-media .media-body h5 {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .media.blog-media .media-body h5 {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
.media.blog-media .media-body a.post-link {
  display: block;
  color: #222;
  font-size: 11px;
  padding: 23px 0;
  text-transform: uppercase;
  font-weight: 400;
}
@media (min-width: 992px) {
  .media.blog-media .media-body a.post-link {
    padding: 7px 0;
  }
}
@media (min-width: 1200px) {
  .media.blog-media .media-body a.post-link {
    padding: 23px 0;
  }
}
.media.blog-media .media-body ul {
  position: relative;
  padding: 10px 0 0;
}
.media.blog-media .media-body ul li {
  display: inline-block;
  width: 49%;
  position: relative;
}
.media.blog-media .media-body ul li:before {
  position: absolute;
  content: "";
  top: 5px;
  left: 0;
  width: 1px;
  height: 14px;
  background: #eeeef2;
}
.media.blog-media .media-body ul li:first-child:before {
  visibility: hidden;
}
.media.blog-media .media-body ul:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #eeeef2;
}
.all-show {
  font-size: 1.2rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  background: linear-gradient(45deg, #007bff, #0056b3, #007bff);
  background-size: 200% 200%;
  color: #ffffff;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 15px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}


.all-show:hover {
  background-position: right center;
  transform: scale(1.05) translateY(-3px);
  color: #e0eaff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35), 0 5px 15px rgba(0, 0, 0, 0.2);
}


.all-show::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100%;
  width: 150%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(25deg);
  transition: all 0.7s ease-in-out;
}

.all-show:hover::before {
  left: 100%;
}

.afisha-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  height: 400px;
}

.afisha-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.afisha-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.afisha-content {
  color: white;
  transform: translateY(20px);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.afisha-item:hover .afisha-overlay {
  opacity: 1;
}

.afisha-item:hover .afisha-content {
  transform: translateY(0);
  opacity: 1;
}

.afisha-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.afisha-name {
  font-size: 1.4rem;
  font-weight: bold;
}

.afisha-actions {
  margin-top: 10px;
}

.afisha-actions .btn {
  margin: 5px;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  width: 110%;
  left: -5%;
  transform: translateY(-50%);
  pointer-events: none;
}


.owl-nav button {
  color: black !important;
  font-size: 24px !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
}






.owl-nav button:hover {
  color: #0055a5 !important;
  transform: scale(1.1);
}

.white {
  background: white !important;
}

.bg-blue {
  background-color: #003f73;
}

.our-team {
  text-align: center;
}
.our-team .team_img {
  position: relative;
  overflow: hidden;
}
.our-team .team_img:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  bottom: -100%;
  left: 0;
  transition: all 0.3s ease 0s;
}
.our-team:hover .team_img:after {
  bottom: 0;
}
.our-team img {
  width: 100%;
  height: auto;
}
.our-team .social {
  padding: 0 0 18px 0;
  margin: 0;
  list-style: none;
  position: absolute;
  top: -100%;
  right: 10px;
  background: #0055a5;
  border-radius: 0 0 20px 20px;
  z-index: 1;
  transition: all 0.3s ease 0s;
}
.our-team:hover .social {
  top: 0;
}
.our-team .social li a {
  display: block;
  padding: 15px;
  font-size: 15px;
  color: #fff;
}
.our-team:hover .social li a:hover {
  color: #2a4284;
}
.our-team .team-content {
  padding: 20px 0;
  background: #fff;
}
.our-team .title {
  font-size: 18px;
  font-weight: bold;
  color: #2a4284;
  text-transform: capitalize;
  margin: 0 0 20px;
  position: relative;
}
.our-team .title:before {
  content: "";
  width: 25px;
  height: 1px;
  background: #0055a5;
  position: absolute;
  bottom: -10px;
  right: 50%;
  margin-right: 9px;
  transition-duration: 0.25s;
}
.our-team .title:after {
  content: "";
  width: 25px;
  height: 1px;
  background: #0055a5;
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: 9px;
  transition-duration: 0.25s;
}
.our-team:hover .title:before,
.our-team:hover .title:after {
  width: 50px;
}
.our-team .post {
  display: inline-block;
  font-size: 15px;
  color: #f76c5e;
  text-transform: capitalize;
}
.our-team .post:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0055a5;
  margin: 0 auto;
  position: relative;
  top: -13px;
}
@media only screen and (max-width: 990px) {
  .our-team {
    margin-bottom: 30px;
  }
}

.team-member {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.team-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-member:hover .team-image img {
  transform: scale(1.1);
}

.team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-member:hover .team-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.team-overlay p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.social-links a {
  color: white;
  font-size: 1.2rem;
  margin: 0 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
  color: #0055a5;
  transform: scale(1.2);
}

.more-link {
  color: #000;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.more-link .arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
}


.more-link:hover .arrow {
  transform: translateX(5px);
}


.more-link:hover {
  color: #0055a5;
}


.partner-item {
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  padding: 5px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.partner-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
 
}

.partner-item a {
  display: block;
  margin: 0 auto;
  text-align: center;
}




.partners-slider .owl-nav {
  display: none !important;
}
.footer {
  background: linear-gradient(
    180deg,
    #1a1a1a 0%,
    #0d0d0d 100%
  );
  color: #d1d1d1;
  padding: 60px 0;
  font-family: "Arial", sans-serif;
}
.footer a {
  color: #d1d1d1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #fff;
}
.footer h5 {
  font-weight: bold;
  margin-bottom: 25px;
  color: #fff;
}
.footer .socials a {
  font-size: 1.5rem;
  margin: 0 10px;
  color: #d1d1d1;
  transition: color 0.3s ease;
}
.footer .socials a:hover {
  color: #0055a5;
}
.footer .social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #333;
  transition: background 0.3s ease;
}
.footer .social-circle:hover {
  background: #fff;
  color: #0d0d0d;
}
.footer .list-unstyled li {
  margin-bottom: 10px;
}
.footer .border-top {
  border-color: rgba(255, 255, 255, 0.15) !important;
}
.footer-logo {
  max-width: 130px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  list-style: none;
  padding: 0;
}
.footer-nav .nav-item {
  margin-bottom: 3px;
}
.footer-nav .nav-link {
  color: #d1d1d1;
  padding: 5px 0;
  display: block;
}
.footer-nav .nav-link:hover {
  color: #fff;
}

.slider-text {
  text-align: justify;
}



@media (max-width: 575.98px) {
  .slider__content h2 {
    font-size: 18px;
  }
  .slider-text {
    font-size: 14px;
  }
}


.btn-custom {
  display: inline-block;
  position: relative;
  padding: 7px 10px;
  font-size: 15px;
  font-weight: bold;

  text-decoration: none;
  color: #fff;
  border-bottom: 2px solid #ececec;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
}


.btn-custom::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #ececec;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s ease-in-out;
}


.btn-custom:hover {
  color: #ececec;
  border-color: #ececec;
}


.btn-custom:hover::after {
  width: 100%;
}

.btn-custom.btn-dark {
  color: #000;
  border-bottom: 2px solid #000000;
}

.btn-custom.btn-dark:hover {
  color: #1e1e1e;
  border-color: #1e1e1e;
}

.btn-custom.btn-dark::after {
  background: #1e1e1e;
}

.subheader {
  border-bottom: 1px solid #b8b8b8;
}
.header__afisha .more-link {
  margin-left: 15px;
  margin-top: -3px;
}
.header__afisha h4 {
  font-size: 1rem;
}

.h4,
h4 {
  font-size: 1.4rem;
}

.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  z-index: 10;
  pointer-events: none;
}

.hero-slider .owl-nav button.owl-prev,
.hero-slider .owl-nav button.owl-next {
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 20px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.hero-slider .owl-nav button.owl-prev:hover,
.hero-slider .owl-nav button.owl-next:hover {
  background-color: #fff;
  transform: scale(1.1);
}

.hero-slider .owl-nav button span {
  font-size: 28px;
  line-height: 1;
}

.hero-slider .owl-nav button.owl-prev {
  left: 15px;
}
.hero-slider .owl-nav button.owl-next {
  right: 15px;
}

.btn-theater {
  background-color: #0056b3;
  color: #fff;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 86, 179, 0.2), 0 2px 5px rgba(0, 0, 0, 0.1);
}

.btn-theater:hover {
  background-color: #00419c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 86, 179, 0.3), 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-blue {
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  box-shadow: 0 5px 18px rgba(0, 123, 255, 0.3), 0 3px 8px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
}

.btn-blue:hover {
  background-position: right center;
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #e0eaff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4), 0 5px 15px rgba(0, 123, 255, 0.3);
}

#sync1 {
  .item {
    background: #fff;
    height: 400px;
    display: flex;
    margin: 5px;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
  }
  .owl-nav {
    width:100%;
    left:0;
  }
  .owl-nav button.owl-prev,
  .owl-nav button.owl-next {
  pointer-events: all;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 20px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

 .owl-nav button.owl-prev:hover,
 .owl-nav button.owl-next:hover {
  background-color: #fff;
  transform: scale(1.1);
}
  
.owl-nav button.owl-prev {
  left: 15px;
}
.owl-nav button.owl-next {
  right: 15px;
}

}

#sync2 {
  .item {
    background: #fff;
    padding: 10px 0px;
    margin: 5px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;

  }
  .owl-item.current img {
    opacity: 1;
    border: 3px solid #0055A5;
  }

  .item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 100%;
    display: block;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
  }
}

#sync1 .item img,
#sync2 .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.owl-theme .owl-nav {
margin-top: 0;
}

@media (max-width: 767px) {
  #sync1 .item {
    height: 250px;
  }

  #sync2 .item {
    height: 70px;
  }


}
#sync2 .item img:hover {
  transform: scale(1.05);
}

@media (min-width: 998px) and (max-width: 1440px) {
  .logo, .footer-logo {
    width: 100px;
  }
}
@media (min-width: 998px) and (max-width: 1200px) {
  .navbar .nav-link {
    font-size: 0.7rem;
  }
  .socials {
    display: none !important;
  }
}

/***inner***/

.navbar.inner__top {
  position: relative;
  padding: 0px 0;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.navbar.inner__top.scrolled{ 
  position: fixed; 
}

.page-title {
  position: relative;
  background: url('../img_about/5.jpg') center center / cover no-repeat;
  min-height: 250px;
  display: flex;
  align-items: center;
  color: #fff;
}

.page-title__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-title .container {
  z-index: 2;
}

.page-title__heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-title__subheading {
  font-size: 1.25rem;
  font-weight: 300;
}

.blog-detail.blog-grid .blog-img {
  height: auto;
}

.blog-detail.blog-grid .blog-info {
  padding: 50px;
  text-align: justify;
}

.blog-detail.blog-grid .blog-info p {
  margin-bottom: 15px !important;
  text-align: justify !important;
  text-indent: 2rem !important;
  line-height:normal !important;
  font-family: "Montserrat", serif !important;
  font-size:1rem !important;
}

.blog-detail.blog-grid .blog-info * {
  font-family: "Montserrat", serif !important;
  font-size:1rem !important;
}

.blog-detail.blog-grid .blog-info img {
  max-width: 100%;
  height: auto;
}


@media (max-width: 991px) {
  .page-title {
    min-height: 180px;
    padding: 1.5rem 1rem;
  }

  .page-title__heading {
    font-size: 1.5rem;
  }
  .blog-detail.blog-grid .blog-info {
    padding: 15px;
    margin: 0;
    font-size: 0.9rem;
  }
  .blog-detail.blog-grid .blog-info p {
    text-indent: 0 !important;
    font-size: 0.9rem !important;
  }
  .blog-grid .blog-info h5 {
    height: auto;
  }
}

/* ========= Word Content Style Normalizer ========= */
.word-content-style p,
.word-content-style span,
.word-content-style div,
.word-content-style li,
.word-content-style td,
.word-content-style th,
.blog-detail .blog-info p,
.blog-detail .blog-info span,
.blog-detail .blog-info div,
.blog-detail .blog-info li,
.blog-detail .blog-info td,
.blog-detail .blog-info th,
.blog-detail .blog-info [class*="Mso"] {
    font-family: "Montserrat", serif !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #333 !important;
    background: none !important;
    background-color: transparent !important;
    margin: 0 0 1em 0 !important;
    padding: 0 !important;
    border: none !important;
    font-style: normal !important;
    font-weight: 400 !important;
    text-indent: 0 !important;
    text-align: left !important;
    widows: auto !important;
    orphans: auto !important;
}

.word-content-style p,
.blog-detail .blog-info p {
  text-indent: 2rem !important;
  text-align: justify !important;
  margin-bottom: 1.5em !important;
}

.word-content-style a,
.blog-detail .blog-info a {
    color: #0055a5 !important;
    text-decoration: underline !important;
}

.word-content-style a:hover,
.blog-detail .blog-info a:hover {
    color: #003f73 !important;
}

.word-content-style h1, .word-content-style h2, .word-content-style h3, .word-content-style h4, .word-content-style h5, .word-content-style h6,
.blog-detail .blog-info h1, .blog-detail .blog-info h2, .blog-detail .blog-info h3, .blog-detail .blog-info h4, .blog-detail .blog-info h5, .blog-detail .blog-info h6 {
    font-family: "Montserrat", serif !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin: 1.5em 0 0.5em 0 !important;
    line-height: 1.2 !important;
    text-indent: 0 !important;
}

.word-content-style img,
.blog-detail .blog-info img {
    border: none !important;
    margin: 1em auto !important; 
    padding: 0 !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important; 
}

.word-content-style table,
.blog-detail .blog-info table {
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    width: auto !important;
    margin: 1em 0 !important;
    font-size: 1rem !important;
}

.word-content-style th, .word-content-style td,
.blog-detail .blog-info th, .blog-detail .blog-info td {
    border: 1px solid #ccc !important; 
    padding: 8px !important; 
    vertical-align: top !important;
}

.word-content-style ul, .word-content-style ol,
.blog-detail .blog-info ul, .blog-detail .blog-info ol {
    margin: 0 0 1em 2em !important; 
    padding: 0 !important; 
    list-style-position: outside !important;
}

.word-content-style ul li, .word-content-style ol li,
.blog-detail .blog-info ul li, .blog-detail .blog-info ol li {
    margin-bottom: 0.5em !important;
}

/* =============================================== */

.hall-plan-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #ddd;
    padding: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.page-content-about-plans img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.Playbill-title {
    margin-bottom: 30px;
}

#calendar {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
   
   
}


.team-card {
    display: block;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07), 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 8px 15px rgba(0, 0, 0, 0.06);
}

.team-card__image-wrapper {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.team-card:hover .team-card__image {
    transform: scale(1.05);
}

.team-card__content {
    padding: 15px;
    text-align: center;
}

.team-card__name {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-card__position {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.team-card__title {
    font-size: 0.8rem;
    color: #777;
}


.team-single__image-card {
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
	text-align: center;
	background: #fff;
    overflow: hidden;
}

.team-single__image {
	width: 100%;
    height: auto;
    display: block;
}

.team-single__info {
	padding: 20px;
}

.team-single__name {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.team-single__position {
	font-size: 1.1rem;
	color: #6c757d;
	margin-bottom: 1rem;
}

.team-single__title {
	font-size: 0.9rem;
	color: #ae896e;
	font-weight: 500;
}

.team-single__bio {
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.team-single__bio p {
	line-height: 1.7;
	margin-bottom: 1rem;
}

.page.team-single .row {
    align-items: flex-start;
}

.team-single__sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
}


.team-single__image-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07), 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.team-single__image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-single__info {
    padding: 20px;
}

.team-single__name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-single__position {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
}

.team-single__title {
    font-size: 0.9rem;
    color: #777;
}

.team-single__bio {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07), 0 5px 15px rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.7;
}

.team-single__bio p {
    margin-bottom: 1rem;
}


.repertoire .block {
    margin-bottom: 30px;
}

.repertoire-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1), 0 8px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 400px;
}

.repertoire-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15), 0 12px 25px rgba(0, 0, 0, 0.12);
}

.repertoire-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.repertoire-item:hover img {
    transform: scale(1.05);
}

.repertoire-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.repertoire-item:hover .repertoire-overlay {
    opacity: 1;
}

.repertoire-content {
    color: #fff;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0;
}

.repertoire-item:hover .repertoire-content {
    transform: translateY(0);
    opacity: 1;
}

.repertoire-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    color: #fff;
}

.repertoire-age {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #0055a5;
    color: #fff;
    padding: 5px 10px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


.repertoire.single .row {
    align-items: flex-start;
}

.repertoire.single img.img-fluid {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}

.repertoire.single .col-md-7 {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07), 0 5px 15px rgba(0,0,0,0.05);
}

.performance-info {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.performance-info span {
    font-weight: 700;
    color: #000;
    margin-right: 10px;
}

.age-restriction {
    display: inline-block;
    background-color: #0055a5;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.1);
}

.repertoire.single p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

.order-ticket {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.25), 0 3px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.order-ticket:hover {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.35), 0 5px 12px rgba(0, 0, 0, 0.15);
}

.repertoire-filters {
    margin-bottom: 30px;
    text-align: center;
}

.repertoire-filters .btn {
    margin: 8px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 700;
    border: 2px solid #0055a5;
    background-color: transparent;
    color: #0055a5;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(0, 91, 165, 0.12);
}

.repertoire-filters .btn:hover,
.repertoire-filters .btn.active {
    background-image: linear-gradient(45deg, #0055a5 0%, #007bff 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 91, 165, 0.25), 0 8px 15px rgba(0, 91, 165, 0.2);
    transform: translateY(-3px);
}

.repertoire-filters .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 91, 165, 0.2);
}




.page.partners .blog-info .row {
   
    --bs-gutter-x: 1.5rem; 
   
    --bs-gutter-y: 1.5rem;
}

.page.partners .blog-info .block {
    margin-bottom: 30px; 
    padding: 15px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page.partners .blog-info .block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), 0 10px 25px rgba(0, 0, 0, 0.08);
}

.page.partners .blog-info .block img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.page.partners .blog-info .block:hover img {
    transform: scale(1.05);
}

.performance-tabs .nav-tabs {
    border-bottom: 2px solid #dee2e6;
}

.performance-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #495057;
    font-weight: 500;
}

.performance-tabs .nav-link.active,
.performance-tabs .nav-link:hover {
    border-color: #0055a5;
}

.performance-actions {
    margin-top: 15px;
}

.performance-actions .age-restriction,
.performance-actions .order-ticket {
    display: inline-block;
    vertical-align: middle;
}

.performance-actions .age-restriction {
    margin-right: 20px;
}
.navbar {
  --bs-navbar-nav-link-padding-x: 0.4rem !important;
}

/* Team Single Page Styles */
.team-single-photo {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 5px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-single-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15), 0 8px 15px rgba(0, 0, 0, 0.1);
}

.team-single-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.word-content-style p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: #333;
}

.word-content-style ul {
  padding-left: 20px;
  margin-bottom: 1.5em;
}

.word-content-style ul li {
  margin-bottom: 0.5em;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 2.5rem !important;
}