.navbar {
--bs-navbar-active-color: #FFAF01;
}
.btn-warning {
	
}
.dropdown-item.active, .dropdown-item:active {
	--bs-dropdown-link-active-color: #FFAF01;
}
a {
    color: #000;
    text-decoration: none;
}

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

body {
	   font-family: 'Merriweather', serif;
    font-weight: 400;
	background:#F3F3F9;
}
.navbar {
	transition: background 0.3s, padding 0.3s;
	background: transparent;
	padding: 10px 0;
	/*position: fixed;*/
	width: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}
.navbar.scrolled {
	top:0;
	position: fixed;
    background: white;
    padding: 0px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6); /* Тень снизу */
}

#wpadminbar + .navbar.scrolled {
	top:32px;
}

.navbar.inner__top {
	padding: 0px 0;
	background:#fff;
	box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6); /* Тень снизу */
}

.head-nav.navbar.inner__top .logo {
	
	background-color: #003F73;
}

.navbar.inner__top a {
	color:#000;
}

.navbar.inner__top .menu-toggle {
	color:#000;
}

.navbar .nav-link {
	color: white;
	font-size: 1.2rem;
	transition: color 0.3s;
}
.navbar.scrolled .nav-link {
	color: black;
}
.navbar-brand img {
	height: 100px;
	transition: opacity 0.3s, height 0.3s;
}
.navbar.scrolled .navbar-brand img {
	height: 80px;
}
.navbar-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}
.language-menu {
	display: flex;
	gap: 10px;
	align-items: center;
	
}
.language-menu a {
	color: white;
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s;
	margin-top:3px;
}
.navbar.scrolled .language-menu a {
	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 {
	color: black;
}

.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);
}


.logo {
	display:block;
    width: 188px;
    height: 120px;
	content: "";
    background-color: #fff;
    -webkit-mask-image: url("../img/logo.PNG");
    mask-image: url("../img/logo.PNG");
    -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 .logo.blue {
	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 0 30px rgba(31, 45, 61, 0.125);
  border-radius: 5px;
  background: #ffffff;
  padding: 20px;
  margin: -30px 20px 0;
  position: relative;
}
.blog-grid .blog-info h5 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
  height:80px;
  overflow:hidden;
}
.blog-grid .blog-info h5 a {
  color: #3a3973;
}
.blog-grid .blog-info h5 a:hover {
  color: #FFAF01;
}
.blog-grid .blog-info p {
  margin: 0;
}
.blog-grid .blog-info .btn-bar {
  margin-top: 20px;
}

.px-btn-arrow {
    padding: 0 50px 0 0;
    line-height: 20px;
    position: relative;
    display: inline-block;
    color: #FFAF01;
    -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; /* Двигаем стрелку вправо */
}


/*****************************/
.home-blog {
 /*  padding-top: 50px;
    padding-bottom: 30px;*/
}
@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%;
	height:auto;
}
.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: #FFAF01;
}
.media.blog-media:hover .media-body a.post-link {
    color: #FFAF01;
    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;
}

.all-show:hover {
    background-color: #ffcc00;
    transform: scale(1.05);
}

.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 !important;
    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.owl-prev {
    position: absolute;
    left: -15px; 
}


.owl-nav button.owl-next {
    position: absolute;
    right: -15px; 
}

/* Анимация при наведении */
.owl-nav button:hover {
    color: #FFAF01 !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: #FFAF01;
    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: #FFAF01;
    position: absolute;
    bottom: -10px;
    right: 50%;
    margin-right: 9px;
    transition-duration: 0.25s;
}
.our-team .title:after{
    content: "";
    width: 25px;
    height: 1px;
    background: #FFAF01;
    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: #FFAF01;
    margin: 0 auto;
    position: relative;
    top: -13px;
}
@media only screen and (max-width: 990px){
    .our-team{ margin-bottom: 30px; }
}












.team-member {
    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;
    text-align: center;
    height: 98%;
}

.team-member a h4 {
	color:#fff;
}


.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-name {
	margin: 15px 0 5px;
    font-weight: 600;
    font-size: 1rem;
    padding: 0 7px;
}

.team-job-title {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
    padding: 0 7px;

}

.team-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    transition: transform 0.3s ease;
}



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

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

.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;
	color:#fff;
}


.team-overlay a p {
	color:#fff;
}

.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: #FFAF01;
    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: #FFAF01; /* Можно заменить на любой цвет */
}



/* Контейнер логотипов */
.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: 80%;
    max-height: 80%;
    object-fit: contain;
     /*filter: grayscale(100%);
    transition: filter 0.3s ease;*/
}

/* Анимация при наведении */
.partner-item:hover img {
    /*filter: grayscale(0%);*/
}

.partners-slider .owl-nav {
	display:none !important;
}


.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #FFAF01;
}

.footer i {
    font-size: 1.5rem;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer i:hover {
    transform: scale(1.2);
}


.all-show {
    background: linear-gradient(45deg, #FFD700, #FFAA00, #FFD700);
    background-size: 200% 200%;
   color: #382100;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(255, 223, 0, 0.4);
    transition: all 0.4s ease-in-out;
    position: relative;
    overflow: hidden;
}

/* Анимация градиента */
.all-show:hover {
    background-position: right center;
    transform: scale(1.05);
	color:#261500;
}

/* Эффект блеска */
.all-show::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -100%;
    width: 150%;
    height: 200%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: rotate(25deg);
    transition: all 0.7s ease-in-out;
}

.all-show:hover::before {
    left: 100%;
}
/*
.floating-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FFD700, #FFAA00, #FFD700);
	background-size: 200% 200%;
    color: #382100;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    font-size: 1rem;
    z-index: 1000;
    animation: pulse 2s infinite alternate ease-in-out;
    transition: all 0.3s ease-in-out;
}


@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.floating-banner:hover {
    transform: scale(1.15);
	background-position: right center;
	color:#261500;
    
}
*/

.floating-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff; /* Белый фон */
    color: #333; /* Тёмно-серый текст */
    
    font-weight: 400;
    font-size: 14px; /* Уменьшаем размер текста */
    padding: 8px 15px; /* Меньший внутренний отступ */
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Мягкая тень */
    transition: all 0.3s ease-in-out;
    z-index: 1000;
}

/* Эффект при наведении */
.floating-banner:hover {
    background: #f5f5f5; /* Светло-серый фон */
    color: #000; /* Чёрный текст */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Усиливаем тень */
    transform: scale(1.05);
}



.slider-text {
	text-align:justify;
	margin-bottom:15px;
}

.slider__content {
    max-width: 600px;
    
    float: right;
    
}

@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:-2px;
}
.header__afisha h4 {
	font-size:1rem;
}

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

.media-body {
	width:100%;
}

footer.footer .copyright {
	color:#5c5c5c;
	font-size:0.8rem;
}

footer.footer .copyright a {
	color:#5c5c5c;
}

footer.footer .copyright a:hover {
	color:#fff;
}

.eye {
	color:#fff;
	margin: 0 15px;
	margin-top:5px;
}

.eye a {
	color:#fff;
}


/* Основной слайдер */
.afisha-slider {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden; /* Убираем возможный скролл */
}

.afisha-slider-thumbs {
    width: 100%;
    padding:30px 0;
    position: relative;
    overflow: hidden;
	margin-top:-70px;
}

.main-slider {
    width: 100%;
    height: 90vh;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover; /* Подгоняет изображение без обрезки */
	/*background-size: auto; */
    background-position: center;
    background-repeat: no-repeat;
	aspect-ratio: 3 / 2; /* Пропорции 16:9 для 1920×1080 */
}
.main-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Миниатюры */
.thumbs-wrapper {
    position: absolute;
    bottom: -30px; /* Чуть ниже центра */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 70%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

/* Контейнер миниатюр */
.thumbs-slider {
    display: flex;
    justify-content: center;
    overflow: visible; /* Убираем обрезание */
}

/* Карточка миниатюры */
.thumbs-slider .swiper-slide {
    width: 120px;
    height: 120px;
    cursor: pointer;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

/* Изображения миниатюр */
.thumbs-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Поднимаем миниатюру при наведении */
.thumbs-slider .swiper-slide:hover img {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.5);
}

/* Активная миниатюра */
.thumbs-slider .swiper-slide.swiper-slide-thumb-active img {
    transform: translateY(-8px);
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.6);
}


.swiper-button-next, .swiper-button-prev {
	color:#003F73 !important;
}

.page-single {
	margin-bottom:30px;
}


.afisha-info {
    padding: 80px 0;
    /*background: #fdfdfd;*/
}

.afisha-title {
    font-size: 3rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    /*font-family: 'Playfair Display', serif;*/
}

.afisha-details {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.afisha-details li {
    margin-bottom: 8px;
    color: #444;
}

.afisha-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    
}

/* Стиль боковой информации */
.afisha-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 10px;
}

/* Блок "Купить билет" */
.buy-ticket-box {
    margin-top: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.buy-ticket-box p {
    font-size: 1rem;
    margin: 5px 0;
}

.buy-ticket-box .btn {
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    background: linear-gradient(135deg, #FFC107, #FF8C00);
    color: #fff;
    border: none;
    width: 100%;
}

.buy-ticket-box .btn:hover {
    background: linear-gradient(135deg, #FF8C00, #FFC107);
}

/* Иконки */
.ticket-time i,
.ticket-location i {
    margin-right: 5px;
    color: #FFC107;
}

.media.blog-media .media-body .about-afisha h5 {
	font-size:16px;
	font-weight:normal;
}

.afisha-image {
    float: left;
    margin-right: 20px; /* Отступ справа от текста */
    margin-bottom: 10px;
}

.afisha-img {
    width: 250px; /* Фиксированная ширина */
    height: auto; /* Автоматическая высота */
    border-radius: 8px; /* Скругление углов */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Тень для эффекта объема */
}


.afisha-description ul, .afisha-description ol {
    list-style-position: inside;
	
}

.roles {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}

.roles td {
    padding: 10px;
	background:none;
 
}

.roles a {
    color: --bs-navbar-active-color;
    text-decoration: none;
}

.roles a:hover {
    text-decoration: underline;
}


table.roles tr td {
    border-bottom: 1px dotted #363635;
    margin-top: 20px;
    padding: 10px;
}

.afisha-description div {
	margin-bottom:15px;
}

.pagination-container {
    margin-top: 30px;
}

.pagination .page-numbers {
    padding: 7px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 5px;
    text-decoration: none;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all 0.3s ease-in-out;
}

.pagination .page-numbers:hover {
    background-color: #f8b400; /* Золотистый */
    color: #fff;
    border-color: #f8b400;
}

.pagination .current {
    background-color: #f8b400;
    color: white;
    border-color: #f8b400;
    cursor: default;
}

.pagination .prev,
.pagination .next {
    font-size: 18px;
}




.news-page {
    padding-top: 50px;
}

.news-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.news-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}
.news-thumbnail {
    max-width: 400px; /* Максимальная ширина */
    float: left; /* Выравнивание влево */
    margin-right: 20px; /* Отступ справа, чтобы текст не прилипал */
    margin-bottom: 20px; /* Отступ снизу */
}



.news-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 0px !important;
    margin-bottom: 20px;
}

.news-content {
    font-size: 16px;
    line-height: 1.7;
	text-align:justify;
}

.sidebar {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.latest-news {
    list-style: none;
    padding: 0;
}



.latest-news .blog-grid .blog-info h5 {
	height:auto;
	margin-bottom:0;
}

.news-page {
	margin-bottom:30px;
}


#teamTabsContent .team-member {
	margin-bottom:15px;
}


 .team-page {
            padding-top: 50px;
        }
        .nav-tabs .nav-link {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            transition: 0.3s;
        }
        .nav-tabs .nav-link.active {
            background-color: #f8b400;
            color: white;
        }
        
		
		

/* Основной контейнер галереи */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Элементы галереи */
.gallery-item {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
    padding: 5px;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

/* Изображения в галерее */
.gallery-icon img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

/* Легкая тень под изображениями */
.gallery-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Выравнивание картинок разного формата */
.gallery-icon.portrait img {
    height: 220px;
}

.gallery-icon.landscape img {
    height: 150px;
}

/* Отступы для изображений */
.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Подписи под изображениями */
.gallery-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 5px;
}


.news-content a {
	color:#FFAF01;
}

.news-content a:hover {
	text-decoration:underline;
}

.roles a {
	color:#cfb36b;
}


.artist-photo-frame {
    border: 2px solid #B2BFCA;
    border-radius: 12px;
    padding: 10px;
    background-color: #B2BFCA;
    display: inline-block;
}

.artist-name {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
}

.artist-position {
    font-size: 1.2rem;
    
}

.artist-social-links .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #e0eae0;
    color: #003F73;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 63, 115, 0.05);
}

.artist-social-links .social-icon:hover {
    background-color: #FFAF01;
    color: #fff;
}


.artist-tabs .nav-tabs {
    border-bottom: 1px solid #aaa;
}

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

.artist-tabs .nav-link.active {
    border-bottom: 2px solid #fff;
    background: #003F73;
}
.afisha-slider-thumbs .swiper-slide {
    width: 100px; 
    margin-right: 10px; 
    flex-shrink: 0; 
}


.afisha-slider-thumbs .swiper-slide {
    width: calc((100% - 7 * 10px) / 8); 
    margin-right: 10px;
    flex-shrink: 0;
}

.repertuar-download-container {
  padding: 40px 15px; 
  text-align: center;  
}

.repertuar-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  
  background-color: #8B0000; 
  color: #ffffff !important;
  border: 2px solid #8B0000; 
  border-radius: 5px;

  font-family: "Montserrat", sans-serif; 
  font-size: 18px;
  font-weight: 600;
  text-decoration: none !important; 
  
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); 
  transition: all 0.3s ease;
}

.repertuar-download-btn:hover {
  background-color: #A52A2A; 
  border-color: #A52A2A;
  color: #ffffff !important;
  transform: scale(1.05);
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25); 
}

.repertuar-download-btn .fas {
  margin-right: 12px; 
  font-size: 1.2em;  
}




