/* Custom styles to complement Bootstrap */

/* Base styles */
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
    font-family: "Raleway", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #05073C;
    background-color: #F7F8FD;
}

@media (max-width: 576px) {
    body {
        font-size: 16px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
}

button:focus-visible {
    outline: 2px solid #4a90e2;
    outline: -webkit-focus-ring-color auto 5px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

@media (max-width: 1890px) {
    .container {
        padding-right: calc(var(--bs-gutter-x) * 1.5);
        padding-left: calc(var(--bs-gutter-x) * 1.5);
    }
}

@media (max-width: 576px) {
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
}

h2 {
    font-family: "RAYDIS", Helvetica;
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    line-height: 130%;
}

@media (max-width: 576px) {
    h2 {
        font-size: 26px;
        word-break: break-word;
    }
}

.mr-1 {
    margin-right: 0.25rem !important;
}
.mr-2 {
    margin-right: 0.5rem !important;
}
.mr-3 {
    margin-right: 1rem !important;
}
.mr-4 {
    margin-right: 1.5rem !important;
}
.mr-5 {
    margin-right: 3rem !important;
}

.pt-6 {
    padding-top: 4.5rem !important;
}
.pb-6 {
    padding-bottom: 4.5rem !important;
}
.py-6 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
}

/* btn */

.btn-big {
    --bs-btn-padding-y: 0.6rem;
    --bs-btn-padding-x: 2.0rem;
    --bs-btn-font-size: 1.5rem;
    --bs-btn-border-radius: 0.6rem;
}

.btn--white-filled, .btn--white-filled:hover {
    color: #0F33D3;
    background-color: #fff;
}

.btn--blue-filled{
    color: #fff;
    background-color: #0F33D3;
}
.btn--blue-filled:hover{
    color: #fff;
    background-color: #2745cb;
}

.btn-outline, .btn-outline:hover{
    color: #0F33D3;
    background-color: none;
    border: 2px solid #E3E9FF;
}
.btn-big, .btn-big:hover{
    font-weight: 600;
    border-radius: 15px;
    padding: 32px 42px;
}

.btn-big-m, .btn-big-m:hover{
    font-weight: 600;
    border-radius: 15px;
    padding: 22px 42px;
}

.btn.btn-square-blue{
    background-color: #0F33D3;
    color: white;

    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;

    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 2px 4px 0px 0px #B3C8FF;
}
.btn.btn-square-blue:hover{
    box-shadow: none;
    background-color: #0F33D3;
    color: white;
}

.btn-middle, .btn-middle:hover{
    font-weight: 600;
    border-radius: 15px;
    padding: 16px 42px;
}

/* upButton */

.upButton {
    transform: translateY(calc(100% + 64px));
    transition: transform 0.3s linear;
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 100;
}

.upButton._scrolled {
    transform: translateY(0);
}

.upButton img {
    width: 56px;
    height: 56px;
}

/**/

main.home {
    background-image: url('assets/img/background-main.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
}

.modal-xl {
    max-width: 95%;
}

/* Картинка карточки увеличивается */

.hover-resize .hover-resize-img-container {
    overflow: hidden;
}

.hover-resize .hover-resize-img-container img {
    transition: transform 0.3s ease;
    object-fit: cover;
    object-position: center;
}

.hover-resize:hover .hover-resize-img-container img {
    transform: scale(1.05); /* Увеличиваем на 5% */
}

/* Sections */

.section-home {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.section-yellow {
    background-color: rgba(255, 227, 190, 0.5);
}

.section-title-red{
    color: #FF3B00;
}

.section-title-blue{
    color: #0F33D3;
}

.section-title-orange{
    color: #FF7B00;
}

@media (max-width: 576px) {
    .section-home {
        padding-top: 48px;
        padding-bottom: 60px;
    }
}

/* Hero section */

.hero-section {
    /*height: 100vh;
    min-height: 600px;
    max-height: 900px;*/
}


/* Header */
.header-empty {
    height: 133px;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 98;
    padding: 26px 0;
    background-color: #ffffff;
    border-bottom: 1px solid transparent;
    border-bottom-color: #B3C8FF;
    transition: all 0.3s;
}
body.is_index .header  {
    background: transparent;
    border-bottom-color: transparent;
}

.scrolled-after-top .header {
    padding: 16px 0;
}
.scrolled-after-top body.is_index .header  {
    background-color: #ffffff;
    border-bottom-color: #B3C8FF;
}

.scrolled-after-top.scrolled-down .header {
    top: -142px;
}

.overlay-gradient {
    display: none;
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
}
body.is_index .overlay-gradient {
    display: block;
    opacity: 1;
    background-image: url('/local/templates/tic-bootstrap-25/assets/img/header-back.png');
    background-size: auto 100%;
}
.scrolled-after-top body.is_index .overlay-gradient {
    opacity: 0;
    height: 100%;
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: block;
}

.logo-container {
    margin-left: 1.5rem !important;
}
.logo-img {
    transition: all 0.3s;
}

.scrolled-after-top .logo-img {
    height: 60px;
}

@media (max-width: 576px) {
    .header-empty {
        height: 70px;
    }
	.header {
		padding: 16px 0;
	}
    .overlay-gradient {
        height: 150px;
		top: -35px;
    }
    .scrolled-after-top body.is_index .overlay-gradient {
        height: 100%;
    }
    .logo-container {
        margin-left: 0px !important;
    }

    .logo-img, 
    .scrolled-after-top .logo-img {
        height: 36px;
    }
}

.nav-container {
    display: flex;
    align-items: center;
}

.language-switcher {
    padding: 4px;
    display: flex;
    margin-right: 34px;
}

.glasses-icon {
    margin-right: 55px;
}
.glasses-icon img{
    min-width: 31px;
}

.right-section {
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
}

.navigation {
    gap: 30px; /* Увеличиваем расстояние между элементами в правой части */
}


.language-button {
    padding: 2px 15px 0px 15px;
    border: none;
    background-color: transparent;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 16px;
    color: #5A7FFF;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.language-button.active {
    background-color: #E3E9FF;
    color: #0f33d3;
    box-shadow: 0 2px 4px rgba(15, 51, 211, 0.1);
}

.header .social-icons {
    display: flex;
    align-items: center;
    margin-right: 84px;
}

.login-block{
    margin-right: 55px;
}

.favourites-block{
    margin-right: 55px;
}

.header__search{
    margin-right: 55px;
}

.header .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f33d3;
    transition: opacity 0.3s ease;
}

.header .social-icon:hover {
    opacity: 0.8;
}

.nav-item {
    text-decoration: none;
    color: #0f33d3;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.nav-item:hover {
    opacity: 0.8;
}

@media (max-width: 992px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav-container {
        margin-top: 10px;
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .language-button{
        font-size: 12px;
        padding: 2px 13px 0px 13px;
    }
    .language-switcher{
        margin-right: 14px;
    }
    .glasses-icon {
        margin-right: 35px;
    }
}

.category-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
}


.category-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0) 50%);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}
@media (max-width: 576px) {
    .section-header {
        margin-bottom: 36px;
    }
}

.section-footer{
    margin-top: 26px;
}

.view-all {
    text-decoration: none;
    color: #ff3b00;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 18px;
    transition: opacity 0.3s ease;
}

.view-all:hover {
    opacity: 0.8;
}

.date-text {
    font-family: "Raleway", Helvetica;
    font-weight: 500;
    color: #232323;
    font-size: 14px;
}

/* Стили для стрелок (увеличенные и опущенные) */

.slider-button:hover {
    background-color: rgba(255, 59, 0, 0.2);
    transform: scale(1.05);
}

.slider-button:active {
    transform: scale(0.95);
}

.slider-button svg {
    transition: transform 0.2s ease;
}

/* Адаптация для планшетов */
@media (max-width: 991.98px) {
    .slider-button {
        width: 54px;
        height: 54px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 767.98px) {
    .slider-button {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {

    .view-all {
        font-size: 16px;
    }

    .slider-button {
        width: 44px;
        height: 44px;
    }

    .slider-button svg {
        width: 20px;
        height: 20px;
    }
}

.category-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    font-family: "RAYDIS", Helvetica;
    font-weight: 700;
    color: #f9f9f9;
    font-size: 20px;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: flex-end;
    min-height: 100%;
}

.category-text {
    position: relative;
    z-index: 1;
    padding: 20px;
    font-family: "RAYDIS", Helvetica;
    font-weight: 700;
    color: #f9f9f9;
    font-size: 20px;
    width: 100%;
    margin: 0;
}

.view-all {
    text-decoration: none;
    color: #ff3b00;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 18px;
}

.advertising-banner-home{
    padding-top: 18px;
}

/* Featured Categories */

.banners-most-home{
    background-image: url('assets/img/background-banners-most-home.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box;
}

@media (max-width: 576px) {
    .banners-most-home .section-header {
        margin-bottom: 21px;
    }
}

.banners-most-home .card{
    min-height: 240px;
    margin-bottom: 0px;
}

/* Routes section */
.routes-section {
    background-color: #e9efff;

    background-image: url('assets/img/background-routes-section-home.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box;

    padding-bottom: 150px;
}

.view-all-routes {
    text-decoration: none;
    color: #0f33d3;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 18px;
}

.duration-text {
    font-family: "Raleway", Helvetica;
    font-weight: 500;
    color: #232323;
    font-size: 16px;
}

@media (max-width: 992px) {
    .routes-section {
        padding-top: 80px;
        padding-bottom: 130px;
    }
}

@media (max-width: 576px) {
    .routes-section {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

/* popular destinations section */

.popular-destinations-section {
    background-color: #e9efff;

    background-image: url('assets/img/background-routes-section-home.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box;

    padding-bottom: 150px;
}

@media (max-width: 992px) {
    .popular-destinations-section {
        padding-top: 80px;
        padding-bottom: 130px;
    }
}

@media (max-width: 576px) {
    .popular-destinations-section {
        padding-top: 60px;
        padding-bottom: 50px;
    }
}

/* events-section */

.events-section {
    padding-bottom: 150px;
}

@media (max-width: 768px) {
    .events-section {
        padding-top: 80px;
        padding-bottom: 106px;
    }
}

@media (max-width: 576px) {
    .events-section {
        padding-top: 60px;
        padding-bottom: 45px;
    }
}

/* services-section */

.services-section{
    background-image: url('assets/img/background-services-section-home.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box;

    padding-top: 100px;
    padding-bottom: 188px;
}

@media (max-width: 992px) {
    .services-section{
        padding-top: 80px;
        padding-bottom: 169px;
    }
}

@media (max-width: 576px) {
    .services-section{
        padding-top: 58px;
        padding-bottom: 120px;
    }
    .services-section .section-header {
        margin-bottom: 30px;
    }
}

/* About region section */
.about-region {
    position: relative;
    padding-top: 92px;
    padding-bottom: 0px;
}

.about-region .video-container {
    background-size: cover;
    background-position: center;
    height: fit-content;
    overflow: hidden;
    position: relative;
}

.about-region .video-container video{
    object-fit: cover;
}


.about-region .articles-overlay {
    position: absolute;
    bottom: 68px;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 45px;
}

.about-region .article-card {
    background: rgba(199, 198, 198, 0.8);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 215px; /* Фиксированная высота */
}

.about-region .article-title {
    font-family: "Raleway", Helvetica;
    font-weight: 700 !important; /* Жирный шрифт */
    color: #232323;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 10px; /* Уменьшен отступ */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Ограничение в 2 строки */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 48px; /* Фиксированная высота под 2 строки */
    text-transform: uppercase;
    white-space: normal;
}

@media (max-width: 1400px) {
    .about-region .articles-overlay {
        padding: 0px;
        margin-top: 30px;
    }
    .about-region .article-card{
        padding: 20px !important;
        background: #AFAFAF00;
        min-height: unset;
        box-shadow: 0px 48px 64px 0px #0000000A;
    }
    .about-region .article-category{
        margin-bottom: 11px;
    }
}

@media (max-width: 768px) {
    .about-region {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .container.about-region-container{
        padding-right: 0px;
        padding-left: 0px;
    }
}

@media (max-width: 576px) {
    .about-region {
        padding-top: 60px;
        padding-bottom: 78px;
    }
    .about-region .section-header {
        margin-bottom: 20px;
    }
}


/* .article-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.17px;
  border-radius: 24px;
  background: linear-gradient(314deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.49) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
} */
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1),
    0px 6px 6px rgba(0, 0, 0, 0.05);
}

.article-image {
    width: 166px;
    height: 175px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin-right: 15px;
}

.article-details {
    padding: 15px 0px;
    display: inline-block;
    vertical-align: top;
    position: relative;
}

.category-indicator {
    width: 6px;
    height: 6px;
    background-color: #ff3b00;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0px;
}

.slider-button
.article-title {
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    color: #232323;
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 36px;
}

.read-more {
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    color: #232323;
    font-size: 14px;
    text-decoration: none;
    margin-top: auto; /* Прижимаем к низу */
    padding-top: 10px; /* Отступ сверху */
    display: flex;
    align-items: center;
}


.read-more img {
    width: 11px;
    height: 11px;
}

.read-more:hover {
    color: #0f33d3;
}

.article-category {
    font-family: "Raleway", Helvetica;
    font-weight: 600;
    color: rgba(35, 35, 35, 0.83);
    font-size: 14px;
    margin-bottom: 24px;
    padding-left: 16px;
    position: relative;
}

@media (max-width: 1640px) {
    .article-image {
        width: 166px;
        height: 175px;
        margin-bottom: 15px;
    }
    .article-details{
        max-width: calc(100% - 186px);
    }
}

/* Адаптация для ноутбуков (992px - 1400px) */
/* About region section - адаптация */
@media (max-width: 1400px) {

    .about-region .articles-overlay {
        position: initial;
    }

    .about-region-content {
        display: flex;
        flex-direction: column;
    }

    .articles-overlay {
        position: static;
        padding: 0;
    }

    .article-card {
        margin-bottom: 5px;
        width: 100%;
    }

    .article-image {
        width: 166px;
        height: 175px;
        margin-bottom: unset;
    }

    .article-details {
        padding: 0px;
        max-width: calc(100% - 140px);
    }

    .about-region .article-title {
        min-height: unset;
    }

}

@media (max-width: 991.98px) {
    .video-container {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .video-container {
        height: 350px;
    }

    .article-image {
        width: 133px;
        height: 140px;
    }
}

@media (max-width: 575.98px) {
    .video-container {
        height: 250px;
    }

    .play-button {
        width: 45px;
        height: 45px;
    }

    .play-button img {
        width: 15px;
        height: 15px;
    }
}

/* Statistics section */

.statistics-section{
    padding-top: 90px;
    padding-bottom: 80px;
}

@media (max-width: 992px) {
    .statistics-section{
        padding-top: 60px;
        padding-bottom: 24px;
    }
}
@media (max-width: 576px) {
    .statistics-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


/* History section */
.history-section {
    background-color: #ff9270;
    border-radius: 20px;
    color: #ffffff;
    padding: 40px;

    background-image: url('assets/img/background-history-section-home.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-origin: border-box;
    background-clip: border-box;
}

.history-title {
    font-family: "RAYDIS", Helvetica;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
}

.history-text {
    font-family: "Raleway", Light;
    font-size: 18px;
    line-height: 1.5;
}

.history-highlight {
    font-weight: 700;
}

.history-number {
    font-weight: 900;
    font-size: 22px;
}

.history-text-normal {
    font-weight: 500;
}

/* News section */
section.news {
    padding-top: 100px;
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    section.news {
        padding-top: 80px;
        padding-bottom: 125px;
    }
}

@media (max-width: 767px) {
    section.news .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-link {
    display: flex;
    align-items: center;
    color: #ff3b00;
    text-decoration: none;
    font-weight: 700;
    font-family: "Raleway", Helvetica;
}

.section-link-blue {
    color: #0F33D3;
}

.section-link img {
    margin-left: 8px;
}

@media (max-width: 576px) {
    section.news {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    section.news .section-header {
        margin-bottom: 18px;
    }
    section.news .section-link{
        margin-top: 46px;
    }
}

/* Главная новость */
.main-news {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 570px;
    margin-right: 40px;
}
@media (max-width: 992px) {
    .main-news {
        margin-right: 0px !important;
    }
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.category-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    color: #222;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
}

.main-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.main-excerpt {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
    font-family: "Raleway", sans-serif;
    font-weight: 200;

}

.main-title_1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 100px;
    font-family: 'RAYDIS', Helvetica, Arial, sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    padding: 0;
    word-break: break-word;
}


@media (max-width: 1200px) {
    .main-title_1 {
        font-size: 60px;
        line-height: 80px;
    }
}

@media (max-width: 992px) {
    .main-title_1 {
        font-size: 50px;
        line-height: 70px;
    }
}

@media (max-width: 768px) {
    .main-title_1 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 576px) {
    .main-title_1 {
        font-size: 28px;
        line-height: 36px;
        word-break: normal;
    }
}

@media (max-width: 400px) {
    .main-title_1 {
        font-size: 24px;
        line-height: 32px;
    }
}

.history-text-bold {
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    /* Black */
    font-size: 20px;
    line-height: 1.5;
}

.news-date {
    font-size: 14px;
    opacity: 0.9;
}

/* Footer */
.site-footer {
    background-color: #0f33d3;
    color: #ffffff;
    background-position: top left;
    background-repeat: no-repeat;
    background-size: auto;
    position: relative;
    background-image: url(assets/img/background-footer-map.svg);
}
@media (max-width: 767px) {
    .site-footer {
        text-align: center;
    }
}
@media (max-width: 576px) {
    .footer {
        background-size: 100vw auto;
    }
}

.footer-logo {
    max-width: 185px;
}

.footer-heading {
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-transform: uppercase;
}

.contact-label {
    color: #95acf7;
}

.contact-value {
    text-decoration: underline;
    color: #ffffff;
}

.email-label {
    color: #b2c8ff;
}

.email-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-links a {
    color: #b2c8ff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.footer-links a.footer-heading {
    color: #ffffff;
}

.contact-button {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-family: "Raleway", Helvetica;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
}

.copyright {
    font-family: "Raleway", Helvetica;
    font-weight: 500;
    font-size: 14px;
    color: #B3C8FF;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .header .navigation {
        display: none;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Tektur:wght@400..900&display=swap');

/* Custom font for RAYDIS */
@font-face {
    font-family: 'RAYDIS';
    src: url('/fonts/ofont.ru_Raydis.ttf');
    src: url("/fonts/ofont.ru_Raleway.ttf");
    src: url("/fonts/RAYDIS.ttf");
    font-weight: 700;
    font-style: normal;
}

/* Стили для стрелок */
.main-slider-controls {
    position: absolute;
    bottom: -96px;
    right: 0px;
    z-index: 10;
}

.main-slider-controls .slider-button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(15, 51, 211, 0.1);
    backdrop-filter: blur(2px);
}

.main-slider-controls .slider-button:hover {
    background-color: rgba(15, 51, 211, 0.2);
    transform: scale(1.05);
}

.main-slider-controls .slider-button:active {
    transform: scale(0.95);
}

/* Адаптация для планшетов */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 32px;
        line-height: 38px;
    }

    .main-slider-controls {
        bottom: -64px;
    }

    .main-slider-controls .slider-button {
        width: 54px;
        height: 54px;
    }
}

/* Адаптация для мобильных */
@media (max-width: 767.98px) {

    .main-slider-controls {
        bottom: -50px;
        gap: 16px;
    }

    .main-slider-controls .slider-button {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 575.98px) {
    .section-title {
        font-size: 28px;
        line-height: 34px;
    }

    .main-slider-controls .slider-button {
        width: 44px;
        height: 44px;
    }

    .main-slider-controls .slider-button svg {
        width: 20px;
        height: 20px;
    }
}



.red-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #ff3b00;
    border-radius: 50%;
    margin-right: 7px;
    margin-bottom: 2px;
}

.text_1 {
    font-size: 10px;
}

@media (max-width: 767.98px) {
    .category-text {
        font-size: 18px;
        padding: 15px;
    }
}

@media (max-width: 768px) {

    .header .social-icons {
        display: none;
    }

    .section-title {
        font-size: 32px;
        line-height: 38px;
    }

    .statistic-number {
        font-size: 48px;
    }
}

@media (max-width: 576px) {

    .category-item {
        height: 200px;
    }

    .article-image {
        width: 120px;
        height: 120px;
    }

    .article-title {
        font-size: 18px;
    }

    .statistic-number {
        font-size: 36px;
    }

    .statistic-unit,
    .statistic-description {
        font-size: 16px;
    }
}


/* Общие стили для всех кнопок */
.routes-slider-controls .slider-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Ховер-эффекты */
.routes-slider-controls .slider-button:hover {
    transform: scale(1.05);
}

.routes-slider-controls .slider-button:active {
    transform: scale(0.95);
}

/* Общие стили для кнопок */
.slider-button_next_1,
.main-slider-controls .slider-button,
.routes-slider-controls .slider-button {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    display: inline-block;
    margin-left: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.routes-slider-controls .slider-button {
    background-color: rgba(15, 51, 211, 0.3);
}
.routes-slider-controls .slider-button:hover {
    background-color: rgba(15, 51, 211, 0.9);
}

.main-slider-controls.main-slider-controls-red .slider-button{
    background-color: rgba(255, 59, 0, 0.1);
}

.main-slider-controls.main-slider-controls-red .slider-button:hover {
    background-color: #FF3B00;
    transform: scale(1.05);
}

.main-slider-controls.main-slider-controls-red .slider-button:active {
    transform: scale(0.95);
    background-color: #FF3B00;
}

.main-slider-controls.main-slider-controls-orange .slider-button{
    background-color: rgba(255, 123, 0, 0.2);
}
.main-slider-controls.main-slider-controls-orange .slider-button:hover {
    background-color: #FF7B00;
}
.main-slider-controls.main-slider-controls-orange .slider-button:active {
    background-color: #FF7B00;
}

/* Ховер-эффекты */
.main-slider-controls .slider-button:hover,
.routes-slider-controls .slider-button:hover {
    transform: scale(1.05);
}

.main-slider-controls .slider-button:active,
.routes-slider-controls .slider-button:active {
    transform: scale(0.95);
}


/* Адаптация для мобильных */
@media (max-width: 767.98px) {
    .main-slider-controls,
    .routes-slider-controls {
        bottom: -50px;
        gap: 12px;
    }

    .slider-button_next_1,
    .main-slider-controls .slider-button,
    .routes-slider-controls .slider-button {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 575.98px) {
    .main-slider-controls,
    .routes-slider-controls {
        bottom: -64px;
    }

    .slider-button_next_1,
    .main-slider-controls .slider-button,
    .routes-slider-controls .slider-button {
        width: 48px;
        height: 48px;
    }
}

/* popup */

.popup {
    z-index: -100;
    -webkit-transition: opacity .4s, z-index 0s .4s;
    -o-transition: opacity .4s, z-index 0s .4s;
    transition: opacity .4s, z-index 0s .4s;
    opacity: 0;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 1.96);
    overflow-y: auto
}

.popup.active {
    -webkit-transition: opacity .4s, z-index 0s 0s;
    -o-transition: opacity .4s, z-index 0s 0s;
    transition: opacity .4s, z-index 0s 0s;
    opacity: 1;
    display: inherit;
    z-index: 1500
}

.popup-inner {
    position: relative
}

.popup-inner.container {
    padding-top: 120px
}

@media (max-width: 659px) {
    .popup-inner.container {
        padding-top: 70px
    }
}

.popup-close {
    width: 40px;
    height: 40px;
    position: absolute;
    right: 41px;
    top: 48px;
    cursor: pointer
}

@media (max-width: 659px) {
    .popup-close {
        right: 28px;
        top: 14px
    }
}

.popup-close:focus, .popup-close:hover {
    opacity: .7
}

.popup-close__line {
    width: 46px;
    height: 4px;
    position: absolute;
    top: 50%;
    left: -10%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #0F33D3;
    border-radius: 2px
}

.popup-close__line:last-child {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.popup form {
    width: 100%;
    max-width: 540px;
    margin: 40px auto
}

@media (max-width: 659px) {
    .popup form {
        margin-top: 20px;
        margin-bottom: 20px
    }
}

.popup form h2 {
    text-align: center
}

.popup form .formGroup {
    width: 100%;
    text-align: center;
    position: relative;
    margin: 0 0 40px
}

.popup form .formGroup-inner {
    width: 100%
}

.popup form input, .popup form select, .popup form textarea {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.4;
    padding: 10px 10px 0;
    border-width: 0;
    border-bottom: 1px solid rgba(10, 27, 89, .3);
    background-color: rgba(0, 0, 0, 0)
}

.popup form input::-webkit-input-placeholder, .popup form select::-webkit-input-placeholder, .popup form textarea::-webkit-input-placeholder {
    color: #0F33D3;
    opacity: .8
}

.popup form input::-moz-placeholder, .popup form select::-moz-placeholder, .popup form textarea::-moz-placeholder {
    color: #0F33D3;
    opacity: .8
}

.popup form input:-ms-input-placeholder, .popup form select:-ms-input-placeholder, .popup form textarea:-ms-input-placeholder {
    color: #0F33D3;
    opacity: .8
}

.popup form input::-ms-input-placeholder, .popup form select::-ms-input-placeholder, .popup form textarea::-ms-input-placeholder {
    color: #0F33D3;
    opacity: .8
}

.popup form input::placeholder, .popup form select::placeholder, .popup form textarea::placeholder {
    color: #0F33D3;
    opacity: .8
}

.popup form textarea {
    resize: none;
    padding-bottom: 10px;
    border: 1px solid rgba(10, 27, 89, .3);
    height: 250px
}

@media (max-width: 659px) {
    .popup form textarea {
        height: 180px
    }
}

.popup form .form-error {
    position: absolute;
    top: 100%;
    padding: 0 10px;
    color: #820505;
    left: 0;
    text-align: left;
    font-size: 70%
}

.errorMes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative
}

@media (max-width: 659px) {
    .errorMes {
        display: block
    }
}

.errorMes-left {
    padding: 0 50px 0 0
}

@media (max-width: 659px) {
    .errorMes-left {
        padding-right: 0;
        padding-top: 20px
    }
}

@media (max-width: 659px) {
    .errorMes-right {
        position: absolute;
        top: 0;
        right: 0
    }
}

@media (max-width: 659px) {
    .errorMes-right svg {
        width: 47px;
        height: 54px
    }
}

.errorMes a {
    color: #0F33D3;
    text-decoration: underline
}

/* Окно Поиск */

.header__searchForm .form-control {
    border-radius: 8px 0 0 8px;
    height: 48px;
}

.header__searchForm .btn {
    border-radius: 0 8px 8px 0;
    height: 48px;
    padding: 0 20px;
}

/* Адаптация для мобильных */
@media (max-width: 576px) {
    .modal-xl {
        max-width: 98%;
    }
    .header__searchForm .btn {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    #searchModal .modal-dialog{
        top: -20vh;
    }
}

/* Пагинация */

.sectpr-pagination__single{
    text-decoration: none !important;
    flex-direction: revert;
    width: 40px;
    height: 40px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.sectpr-pagination__single.selected{
    border-radius: 4px;
    background-color: #0F33D3;
    color: #ffffff;
}

.sectpr-pagination__single.disabled svg path {
    fill: #B0B4BF;
}

/* Каталог */

.sectpr-list__item{
    font-size: 14px;
    position: relative;
}
.sectpr-list__item-img {
    display: block;
    border-radius: 12px;
    margin: 0 0 16px 0;
    position: relative;
    overflow: hidden;
}
.sectpr-list__item-img img{
    width: 100%;
}
.sectpr-list__item-geo {
    display: inline-flex;
    align-items: center;
    background-color: #E3E9FF;
    border-radius: 4px;
    padding: 4px 10px;
    position: absolute;
    top: 8px;
    left: 8px;
}
.sectpr-list__item-geo-img {
    width: 13px;
    height: 13px;
    color: #FF3B00;
    margin: 0 6px 0 0;
}
.sectpr-list__item-geo-text{
    display: inline-block;
    color: #0F33D3;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}
.sectpr-list__item-title{
    color: #0F33D3;
    font-size: 18px;
    font-weight: 700;
    line-height: 130%;
}
.sectpr-list__item-title a{
    color: inherit;
}

        
.sectpr-filters{
    background-color: #ECF0FF;
    padding: 15px;
    border-radius: 12px;
}

.sectpr-list__item-age_marker{
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    border-radius: 999px;
    padding-top: 7px;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    top: 8px;
    right: 9px;
    width: 30px;
    height: 30px;
    text-align: center;
}

.btn.sectpr-side__link, .btn.sectpr-side__link:hover{
    width: 100%;
    padding-top: 22px;
    padding-bottom: 22px;
}

.sectpr-side__link-text{
    font-size: 14px;
    vertical-align: middle;
}

.product-age_marker{
    display: inline-block;
    width: 40px;
    height: 40px;
    padding-left: 2px;
    font-weight: 500;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    border-radius: 999px;
    background-color: #ffffff;
}

/* checkbox-custom */

.custom-checkbox{
    color: #0F33D3;
}

/* Скрываем оригинальный чекбокс */
.custom-checkbox input {
    position: absolute !important;
    opacity: 0;
    cursor: pointer;
    height: 20px;
    width: 20px;
    top: 7px !important;
}

/* Контейнер иконки */
.checkbox-icon {
    display: block;
    position: absolute;
    top: 10px;
    width: 20px;
    height: 20px;
    background-image: url(assets/img/checkbox-custom.svg);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all 0.2s ease;
}

/* При checked — меняем иконку */
.custom-checkbox input:checked ~ .checkbox-icon {
    background-image: url(assets/img/checkbox-custom-checked.svg);
}

.custom-checkbox label{
    display: inline-block !important;
}

.custom-checkbox .bx_filter_param_text{
    margin-left: 30px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Карта */

/* map */
.mapContainer{
    position: relative;
    padding-top: 50px;
    font-size: 1rem;
}

.conventionsMap{
    max-width: 285px;
    max-height: 300px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    color: #000000;
    font-size: 14px;
    line-height: 18px;
    border: 1px solid #D3D2CC;
    border-radius: 10px;
    box-shadow: 0 4px 6px #D3D2CC;
    bottom: 45px;
    left: 18px;
    z-index: 80;
    padding: 14px 20px 14px 20px;
}

@media (max-width: 550px) {
    .conventionsMap{
        left: 4px;
        font-size: 14px;
        padding: 14px 10px 14px 10px;
    }
}

.conventionsMap__content{
    display: flex;
    margin-bottom: 5px;
}

.conventionsMap__content:last-child{
    margin-bottom: 0;
}

.conventionsMap__img{
    margin-top: -1px;
    margin-right: 4px;
}

@media (max-width: 550px) {
    .conventionsMap__img{
        margin-top: -3px;
    }
}

.conventionsMap__content-text{
    margin-left: 4px;
}

@media (max-width: 460px) {
    .conventionsMap__content-text{
        max-width: 90px;
    }
}

/* conventionsPage -- end */


/* adaptive-products-page -- end */

.map-baloon-content{
    text-align: center;
}

.mapTitleLink{
    font-weight: bold;
    color: #0F33D3;
}

.mapImg{
    margin-top: 13px;
}

.buildRoute{
    background-color: #091D64;
    padding: 5px 8px;
    color: #fff;
    border: 1px solid #000;
    cursor: pointer;
    transition: all .4s;
}

.buildRoute:hover{
    opacity: 0.7;
}

.map-buttons {
    width: 100%;
    text-wrap: nowrap;
    margin-top: 10px;
}

.map-buttons .map-button-route{
    display: inline-block;
    vertical-align: top;
    height: 32px;
}

.map-buttons .map-resident-card-discount{
    display: inline-block;
    vertical-align: top;
    margin: 0px 5px 0px 0px;
    padding: 6px 7px 7px 34px;
    border: 1px #b9b9b9 solid;
    height: 32px;
    position: relative;
}

.map-buttons .map-resident-card-discount img{
    height: 22px;
    position: absolute;
    left: 5px;
    top: 3px;
}
.map-buttons .map-resident-card-discount span{

}

.resetCoordBtn{
    border: none;
    background-color: inherit;
    margin: 12px 0 0 1px;
    cursor: pointer;
    transition: all .4s;
}

.resetCoordBtn:hover{
    opacity: 0.7;
}

.catalogLinkContent{
    margin: 16px 0 5px 0;
}

.catalogLinkBtn{
    color: #091D64;
    padding: 4px 0 4px 0;
    transition: all .4s;
}

.catalogLinkBtn:hover{
    opacity: .7;
}


.interactiveMapBtn{
    padding: 5px 10px;
    background-color: #0F33D3;
    border: 1px solid #0F33D3;
    color: #fff;
    transition: all .4s;
    cursor: pointer;
    margin-right: 20px;
}

.interactiveMapBtn:last-child{
    margin-right: 0;
}

.interactiveMapBtn:hover{
    /*background-color: #fff;*/
    /*color: #000;*/
    /*border: 1px solid #000;*/
    opacity: .7;
}

#map{
    width: 100%;
    height: 600px;
}

#map .ymaps-2-1-79-controls__control_toolbar{
    margin-bottom: 12px;
}
#map .ymaps-2-1-79-controls__toolbar_left{
    max-width: calc(100% - 110px);
}


#map .map-reset-all-filters{
    box-sizing: border-box !important;
    border-width: 1px;
    border-style: solid;
    border-radius: 3px;
    background-clip: border-box;
    color: #ffffff;
    vertical-align: middle;
    text-decoration: none;
    font-family: Arial,Helvetica,sans-serif;
    cursor: pointer;
    display: inline-block;
    text-align: left;
    height: 28px;
    white-space: nowrap;
    background-color: #2099ff;
    border-color: transparent;
    box-shadow: 0 1px 2px 1px rgba(0,0,0,.15),0 2px 5px -3px rgba(0,0,0,.15);
    padding: 2px 5px 0px 5px;
    user-select: none;
    line-height: 1.4rem;
}
/* Внутренние секции */

.inner-section{
    padding-top: 2.0rem !important;
    padding-bottom: 3rem !important;
}

.inner-section-white{
    background-color: white;
}

.background-picture-wave{
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-image: url('/local/templates/tic-bootstrap-25/assets/img/background-main.png');
    background-position: top center;
    background-size: 100% auto;
}

.inner-section h1{
    font-family: "RAYDIS", Helvetica;
    text-transform: uppercase;
    line-height: 130%;
    font-weight: 700;
    font-size: 46px;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .inner-section h1{
        font-size: 26px;
        word-break: break-word;
    }
}

.inner-section h3{
    font-weight: 700;
    font-size: 32px;
    line-height: 150%;
    vertical-align: middle;
}

@media (max-width: 576px) {
    .inner-section h3{
        font-size: 26px;
        word-break: break-word;
    }
}

.rounded-12px {
    border-radius: 12px !important;
}

/* */

.inner-section .visual-block-row iframe{
    border-radius: 12px !important;
}

/* documents-links */
.documents-links .card{
    background: #E3E9FF;
    padding-left: 54px;
    display: flex;
    align-items: center;
    min-height: 80px;
}
.documents-links .card-body {
    display: flex;
    align-items: center;
    padding: 1rem;
    width: 100%;
}
.documents-links .filesList__img-tag{
    position: absolute;
    top: calc(50% - 24px);
    left: 5px;
}
.documents-links .card-title{
    font-weight: 600;
    font-size: 17.72px;
    line-height: 27px;
    margin-bottom: 0px;
}
/* */


/*Список тегов.*/
.sectpr-filters_select .sectpr-filters_select-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}
.tags-list__item_title {
    position: relative;
    top: -2px;
}
.tags-list__item.btn {
    font-weight: 600;
    font-size: 14px;
    padding-left: 16px;
    padding-right: 16px;
    margin-bottom: 10px;
}
.tags-list__close {
    color: #98A0B4;
    font-weight: 600;
    font-size: 14px;
    top: 3px;
    position: relative;
}
.tags-list__item.tags-more-hide {
    display: none;
}
.tags-list__more {
    color: #0F33D3;
    margin-left: 10px;
    top: -4px;
    position: relative;
    font-weight: 600;
    font-size: 14px;
    padding-left: 6px;
    margin-bottom: 10px;
}
@media (max-width: 576px) {
    .tags-list__item.btn {
        font-size: 12px;
    }
}


/*Слайдеры на текстовых страницах.*/
.about-region__slider {
    margin: 80px 0 70px 0;
}

@media (max-width: 1279px) {
    .about-region__slider {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

.about-region__wrapper {
    height: 477px
}

@media (max-width: 1279px) {
    .about-region__wrapper {
        height: 260px
    }
}

@media (max-width: 659px) {
    .about-region__wrapper {
        height: 180px
    }
}

.about-region__slide {
    display: block;
    height: 477px
}

@media (max-width: 1279px) {
    .about-region__slide {
        height: 260px
    }
}

@media (max-width: 659px) {
    .about-region__slide {
        height: 180px
    }
}

.about-region__slide img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.about-region__controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 230px;
    margin: 70px auto 0
}

@media (max-width: 1279px) {
    .about-region__controls {
        max-width: 100%;
        margin-top: 15px;
        display: block
    }
}

.about-region__button {
    display: block;
    width: 62px;
    outline: none;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer
}

@media (max-width: 1279px) {
    .about-region__button {
        display: none
    }
}

.about-region__button--prev svg {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.about-region__button.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.about-region__pagination2 {
    display: none;
    line-height: 0;
    width: 100%;
    height: 4px;
    position: relative
}

.about-region__pagination2-bar {
    background-color: #bbb;
    opacity: .5;
    border: .5px solid #000;
    border-radius: 1px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: left .4s;
    -o-transition: left .4s;
    transition: left .4s
}

.about-region__pagination3 {
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 0 13px;
    font-weight: 700
}

@media (max-width: 1279px) {
    .about-region__pagination3 {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

@media (max-width: 659px) {
    .about-region__pagination3 {
        display: none
    }
}

.about-region__pagination {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    padding: 0 10px;
    font-weight: 700;
    font-size: 2.4rem;
    white-space: nowrap;
}

@media (max-width: 1279px) {
    .about-region__pagination {
        display: none
    }
}

.about-region__pagination .swiper-pagination-current {
    margin-right: -6px
}

.about-region__pagination .swiper-pagination-total {
    margin-left: -6px
}

/* ============================================================
   NEW FORM STYLES — Auth, Register, Forgot Password
   Classes use unique prefixes to avoid conflicts:
     form-auth / form-register / form-register-partner / form-forgot
   ============================================================ */


/* =====================================================
   Форма
   ===================================================== */
.section-form-auth {
    .input-wrapper {
        margin-bottom: 16px;
    }

    .input-wrapper input[type="text"],
    .input-wrapper input[type="email"],
    .input-wrapper input[type="password"],
    .input-wrapper textarea,
    .section-form__captcha input {
        width: 100%;
        padding: 18px 20px;
        margin-bottom: 5px;
        border: none;
        border-radius: 8px;
        background: #eef1fb;
        font-size: 16px;
        color: #282828;
        height: 60px;
    }

    .input-wrapper textarea {
        height: 200px;
        margin-bottom: 0;
    }

    .input-wrapper p {
        color: #6993FF;
    }

    input::placeholder {
        color: #878787;
    }

    label.section-form__agree {
        display: flex;
        align-items: center;
        gap: 12px;
        color: #6f8ffb;
        line-height: 1.4;
        margin-bottom: 30px;
        cursor: pointer;
    }

    label.section-form__agree input[type="checkbox"] {
        width: 20px;
        height: 20px;
        accent-color: #2f4bff;
        flex-shrink: 0;
        border-radius: 8px;
        background: #eef1fb;
        outline: #eef1fb;;
    }

    .section-form__captcha {
        display: flex;
        gap: 16px;
        align-items: stretch;
    }

    .section-form__captcha input {
        margin-bottom: 0;
        width: 300px;
    }

    .section-form__captcha img {
        width: auto;
        border-radius: 6px;
        border: 1px solid #2f4bff;
        height: 60px;

    }

    .section-form__button {
        display: block;
        padding: 18px 40px;
        border: none;
        border-radius: 30px;
        background: #ff7a1a;
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
    }

    .section-form__button.section-form__button-second {
        display: inline-block;
        padding: 18px 40px;
        border: none;
        border-radius: 30px;
        border: 1px solid #A2C1FF;
        background-color: #fff;
        color: #6993FF;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
    }

    .section-form__button.section-form__button-blue {
        display: inline-block;
        padding: 18px 40px;
        border: none;
        border-radius: 30px;
        background-color: #0F33D3;
        color: #fff;
        font-size: 17px;
        font-weight: 600;
        cursor: pointer;
    }

    .section-form__button.section-form__button-blue:hover {
        opacity: .9;
        text-decoration: none;
    }

    button.section-form__button:hover {
        background: #e96e12;
    }

    .section-form__button.section-form__button-second:hover {
        text-decoration: none;
        color: #0F33D3;
    }

    .section-form__button-column {
        margin-top: 24px;
    }

    .section-form__button-row {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .required-note {
        margin-top: 24px;
        color: #2f4bff;
        font-weight: 600;
        font-size: 14px;
    }

    .section-form__banner {
        width: 440px;
    }

    .section-form__banner img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .section-form {
        display: flex;
        gap: 60px;
    }

    .input-wrapper__flex {
        display: flex;
        gap: 16px;
    }

    img.icon-social-svg {
        width: 40px;
        height: 40px;
    }

    .section-form__banner2 img {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .section-form__banner-content {
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        background-color: #6993FF;
        padding: 40px 40px 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .section-form__banner-content h2 {
        font-size: 35px;
        color: #fff;
    }

    .section-form__banner-content a {
        display: flex;
        gap: 24px;
        padding: 10px 40px;
        border-radius: 30px;
        background-color: #fff;
        align-items: center;
        font-size: 20px;
        font-weight: 500;
    }

    .section-form__banner-content p {
        color: #fff;
    }

    .section-form__banner-content a:hover {
        text-decoration: none;
        opacity: .9;
    }

    hr {
        display: block;
        margin: 24px 0;
        border: none;
        border-top: 1px solid #6993FF;
    }

    .section-form__banner-content__buttons {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
}

/* ---- End of new form styles ---- */

/* ---- favorites ---- */

.favourites-link{
    width: 20px;
    height: 18px;
    --icon-fill: #ffffff;
    --icon-fill-opacity: 0.7;
    --icon-stroke: #ffffff;
    --icon-inner-stroke: #0F33D3;
}

.favourites {
    width: 32px;
    height: 29px;
    --icon-fill: #ffffff;
    --icon-fill-opacity: 0.7;
    --icon-stroke: #ffffff;
    --icon-inner-stroke: #282828;
    cursor: pointer;
}

.favorites-icon-heart-outer {
    fill: var(--icon-fill);
    fill-opacity: var(--icon-fill-opacity);
    stroke: var(--icon-stroke);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.favorites-icon-heart-inner {
    fill: none;
    stroke: var(--icon-inner-stroke);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* синяя */

.icon-heart-blue:hover{
    --icon-inner-stroke: #0F33D3;
}

.icon-heart-blue.active {
    --icon-fill: #0F33D3;
    --icon-fill-opacity: 1;
    --icon-inner-stroke: transparent;
}

/* оранжевая */

.icon-heart-orange:hover{
    --icon-inner-stroke: #FF3B00;
}

.icon-heart-orange.active {
    --icon-fill: #FF3B00;
    --icon-fill-opacity: 1;
    --icon-inner-stroke: transparent;
}

/* если понадобится менять внешнюю обводку */
.icon-heart--outer-stroke-black {
    --icon-stroke: #000000;
}

/* Изменение размера иконки */
.favourites.icon-heart--lg {
    width: 50px;
    height: 46px;
}

/* favorites позиционирование */

.favourites.favourites-position-def {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.favourites.favourites-position-top {
    position: absolute;
    top: 20px;
    right: 20px;
}

/* ---- End of favorites ---- */

/*Временные стили для личного кабинета пользователя.-НАЧАЛО-*/
.profile-button-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.profile-button {
    display: inline-block;
    padding: 0 19px;
    margin: 0 6px 12px 0;
    border-radius: 19px;
    height: 38px;
    line-height: 38px;
    color: #ffffff;
    background-color: #0F33D3;
}
.profile-button-orange {
    display: inline-block;
    padding: 0 19px;
    margin: 0 6px 12px 0;
    border-radius: 19px;
    height: 38px;
    line-height: 38px;
    color: #ffffff;
    background-color: #ff7a1a;
}

.profile-button.active{
    border: 1px solid #A2C1FF;
    background-color: #fff;
    color: #6993FF;
}


/*Временные стили для личного кабинета пользователя.-КОНЕЦ-*/

/* Форма Расскажите */

.popup form.js-feedback-form{
    width: 100%;
    max-width: unset;
    margin: 0px;
}

.popup form.js-feedback-form .formGroup {
    width: 100%;
    margin: 0px;
}

/* */

.description-blue {
    color: #6993FF;
}


/* =====================================================
   Верстка Тисарева 2026 07 14
   ===================================================== */
.section-rich__gallery__slider {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.section-rich__gallery__slider{
    margin-bottom: 80px;
}
.section-rich__gallery__slider.slick-initialized {
    opacity: 1;
}
.slick-list{
    border-radius: 8px;
}
.section-rich__gallery__slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}
.section-rich__gallery__slide {
    padding: 0 10px;
}
.slick-prev,
.slick-next {
    z-index: 10;
    width: 60px;
    height: 60px;
}

.slick-prev {
    left: -15px;
}

.slick-next {
    right: -15px;
}
.slick-prev, .slick-next {
    position: absolute;
    bottom: -80px;
    top: auto;
    -webkit-transform: translate(0);
    -ms-transform: translate(0);
    transform: translate(0);
    right: 0;
    left: auto;
}
.slick-prev{
    right: 80px;
}
.slick-prev::before,
.slick-next::before {
    content: "";
    display: block;
    opacity: 0.2;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}
.slick-prev::before{background: url(/images/forms-26-auth/slick-icon-left.svg) 0 0 no-repeat;}
.slick-next::before{background: url(/images/forms-26-auth/slick-icon-right.svg) 0 0 no-repeat;}
.slick-prev:hover::before,
.slick-next:hover::before {
    opacity: 1;
}
.section-rich__text{
    margin-bottom: 2rem;
}
.section-rich__text h3{
    font-size: 2rem;
    margin-bottom: 1rem;
    text-wrap: balance;
}
.section-rich__params{
    border-radius: 8px;
    background-color: #E3E9FF;
    padding: 20px 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}
.section-rich__params-item{
    width: 220px;
}
.section-rich__params-item__title{
    display: flex;
    gap: 8px;
    align-items: center;
    line-height: 1;
    margin-bottom: 5px;
}
.section-rich img.section-rich__big-img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}
/* Главная */
.banners-birds__slider__slide{
    position: relative;
    height: 570px;
    border-radius: 8px;
}
.banners-birds__slider__slide h3{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 54px;
    padding: 80px 0 100px;
    font-family: "RAYDIS", Helvetica;
    font-weight: 700;
    background: url(/images/forms-26-auth/bird-fon.svg) center top -20px no-repeat;
    background-size: cover;
    z-index: 2;
    text-wrap: balance;
    color: #fff;
}
.banners-birds__slider__slide img{
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 570px;
    border-radius: 8px;
}
.banners-birds__slider{
    position: relative;

}
.banners-birds__slider::after{
    content:"";
    display: block;
    width: 130px;
    height: 150px;
    position: absolute;
    top: 150px;
    left: 40px;
    z-index: 3;
    background: url(/images/forms-26-auth/bird1.png) 0 0 no-repeat;
}
.banners-birds__slider::before{
    content:"";
    display: block;
    width: 220px;
    height: 254px;
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
    background: url(/images/forms-26-auth/bird2.png) 0 0 no-repeat;
}
.banners-birds{
    background: #F2F6FF url(/images/forms-26-auth/banners-birds__fon.png) right 0 top no-repeat;
}
.banners-birds__slider__btn {
    position: absolute;
    bottom: 100px;
    width: 100%;
    text-align: center;
    z-index: 3;
}
.btn.btn-square-orange {
    background-color: #FF7B00;
    color: white;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    vertical-align: middle;
    border-radius: 8px;
    padding: 10px 24px;
    box-shadow: 2px 4px 0px 0px #FFEAD0;
}
.btn.btn-square-orange:hover {
    box-shadow: none;
    background-color: #FFB555;
    color: white;
}
.section-slider{
    padding-bottom: 140px;
}
.type-tourism{
    background: url(/images/forms-26-auth/type-tourism__fon.png) center top 200px no-repeat;
    background-size: contain;
}
.type-tourism__slide{
    display: flex;
    flex-direction: column;
    padding: 0 10px;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    text-wrap: balance;
}
.type-tourism__slide img{
    height: 350px;
    width: 100%;
    border-radius: 150px;
    object-fit: cover;
    margin-bottom: 30px;
}
.footer-gallery-sl__slide{
    display: flex;
    flex-direction: column;
    height: 650px;
    padding: 0 10px;
}
.footer-gallery-sl__slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}
.footer-gallery-sl__slide.footer-gallery-sl__slide-2.slick-slide{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, calc(50% - 10px));
    gap: 20px;
}
.footer-gallery-sl__slide-2 img:nth-child(1n){
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}
.footer-gallery-sl__slide-2 img:nth-child(2n){
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.footer-gallery-sl__slide.footer-gallery-sl__slide-3.slick-slide{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, calc(50% - 10px));
    gap: 20px;
}
.footer-gallery-sl__slide-3 img:nth-child(1n){
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}
.footer-gallery-sl__slide-3 img:nth-child(2n){
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}
.footer-gallery-sl__slide-3 img:nth-child(3n){
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Главная  */
@media screen and (max-width: 1024px){
    .container {
        padding: 0 20px;
    }
    .banners-birds__slider::after{
        width: 110px;
        height: 127px;
        top: 250px;
        left: 40px;
        background: url(/images/forms-26-auth/bird1.png) 0 0 no-repeat;
        background-size: cover;
    }
    .banners-birds__slider::before{
        width: 180px;
        height: 208px;
        bottom: 30px;
        right: 30px;
        background: url(/images/forms-26-auth/bird2.png) 0 0 no-repeat;
        background-size: cover;
    }
    .hide-1024{
        display: none;
    }
    .section-form__content {
        width: 100%;
        order: 1;
    }
    .section-form__banner {
        width: 100%;
    }
    .section-form {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
    h1 {
        font-size: 36px;
        margin-bottom: 24px;
    }
    .footer-form-block{
        padding-bottom: 80px;
    }
    .section-form__banner-content h2 {
        font-size: 30px;
    }
    .section-form__banner-content {
        padding: 20px;
        border-radius: 8px;
    }
    .section-form__banner-content__buttons{
        flex-direction: row;
        flex-wrap: wrap;
    }
    .section-form__banner-content a{
        font-size: 16px;
    }
}
@media screen and (max-width: 768px){
    .section-rich img.section-rich__big-img{
        height: 340px;
    }
    .gallery__slide img {
        height: 200px;
    }
    .section-rich__params,
    .section-rich img.section-rich__big-img{
        margin-bottom: 20px;
    }
    .slick-prev{
        right: 70px;
    }
    .section-rich__params{
        padding: 20px;
    }
    .footer-gallery-sl__slide{
        height: 360px;
        padding: 0 5px;
    }
    .footer-gallery-sl__slide.footer-gallery-sl__slide-2.slick-slide{
        grid-template-rows: repeat(2, calc(50% - 5px));
        gap: 10px;
    }
    .footer-gallery-sl__slide.footer-gallery-sl__slide-3.slick-slide{
        grid-template-rows: repeat(2, calc(50% - 5px));
        gap: 10px;
    }
    .banners-birds__slider__slide h3{
        font-size: 40px;
    }
    .banners-birds__slider__slide{
        height: 570px;
    }
    .banners-birds__slider__slide h3{
        padding: 60px 0 60px;
        background: url(/images/forms-26-auth/bird-fon.svg) center top -60px no-repeat;
        background-size: cover;
    }
    .banners-birds__slider__slide img{
        width: 100%;
        height: 570px;
    }
    h2 {
        font-size: 36px;
    }
    .section-header {
        margin-bottom: 40px;
    }
    .section-home {
        padding-top: 80px;
    }
    .section-form__banner-content__buttons img{
        display: none;
    }
    .section-form__captcha input {
        width: 100%;
    }
}
@media screen and (max-width: 520px){
    .section-rich img.section-rich__big-img{
        height: 300px;
    }
    .gallery__slide {
        padding: 0;
    }
    .banners-birds__slider__slide h3{
        font-size: 26px;
    }
    .banners-birds__slider__slide{
        height: 450px;
    }
    .banners-birds__slider__slide h3{
        padding: 40px 0 40px;
        background: url(/images/forms-26-auth/bird-fon.svg) center top -100px no-repeat;
        background-size: cover;
    }
    .banners-birds__slider__slide img{
        width: 100%;
        height:450px;
    }
    .banners-birds__slider::after{
        display: none;
    }
    .banners-birds__slider::before{
        display: none;
    }
    h2 {
        font-size: 32px;
    }
    .section-header {
        margin-bottom: 32px;
    }
    .section-home {
        padding-top: 60px;
    }
    .input-wrapper__flex{
        flex-direction: column;
    }
    .input-wrapper textarea {
        height: 120px;
    }
    .section-form__captcha {
        flex-direction: column;
    }
}
/* =====================================================
   End: Верстка Тисарева 2026 07 14
   ===================================================== */