.info-maneger{
    -webkit-box-align:start;
    -webkit-align-items:flex-start;
    -ms-flex-align:start;
    align-items:flex-start
}
.information-left{
    width: 260px;
}
.information-right {
    width: -webkit-calc(100% - 350px);
    width: calc(100% - 260px);
}


/* section top start */

.top {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 32px;
    /* max-width: 1920px; */
    margin: 0 auto;
    margin-bottom: 130px;
}

.index-page-slider {
    width: 100%;
}

.index-page-slider .slick-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 420px;
}

.index-page-slider .slick-dots {
    background-color: #fff;
    bottom: 0;
    display: flex;
    gap: 10px;
    padding: 10px 20px;
}

.index-page-slider .slick-dots li{
    margin: unset;
    display: flex;
}

.top__left, 
.top__right {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 10px;
}

.top__link {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@media(max-width: 767px) {
    .top {
        flex-direction: column;
    }
    
    .top__left, .top__right {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
    
    .index-page-slider {
        max-width: 100%;
    }
}

/* section top end */

/* index-catalog start */

.index-catalog {
    margin-bottom: 140px;
}

.index-catalog__inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
}

.index-catalog .item {
    border-radius: 5px;
    width: 100%;
    height: auto;
    min-height: 220px;
}

.index-catalog .item::after {
    background-color: #fafafa;
    background-image: url('./img/cat/item-bg.png');
    background-repeat: no-repeat;
    background-position: bottom;
    transition: background-size .3s ease-in-out, background-image .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.index-catalog .item:hover:after {
    background: none;
    background-image: url('./img/cat/item-bg.png');
    background-repeat: no-repeat;
    background-position: bottom;
    background-color: #fafafa;
}

.index-catalog .item span {
    top: 25px;
    bottom: auto;
    font-weight: 400;
    font-size: 16px;
    color: #131313;
}

.index-catalog .item img {
    top: auto;
    bottom: 4px;
}


@media(max-width: 1200px) {
    
    .index-catalog {
        margin-bottom: 100px;
    }
    
    .index-catalog__inner {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .top {
        margin-bottom: 100px;
    }
}

@media(max-width: 991px) {
    .index-catalog {
        margin-bottom: 80px;
    }
    
    .index-catalog__inner {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .index-catalog .item {
        margin: 0;
    }
    
    .index-about {
        margin-bottom: 80px;
    }
    
    .top {
        margin-bottom: 80px;
    }
}

@media(max-width: 767px) {
    .index-catalog {
        margin-bottom: 60px;
    }
    
    .index-catalog__inner {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
    
    .index-catalog .item {
        min-height: 200px;
    }
    
    .index-about {
        margin-bottom: 60px;
    }
    
    .top {
        margin-bottom: 60px;
    }
}

/* index-catalog stop */

/* index-about stop */

.index-about {
    background-image: url('./img/about/bg.jpg');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    margin-bottom: 100px;
}

.about__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}

.about__list li {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background-color: #2c3675;
    padding: 20px;
    padding-top: 25px;
    font-weight: 900;
    font-size: 13px;
}

.about__list span {
    font-weight: 400;
    font-size: 48px;
    line-height: 1;
    color: #d71a17;
    margin-bottom: 12px;
}

.top__block{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.top__block-item{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    padding: 30px;
    background: #313b80;
    transition: .4s;
    text-decoration: unset;
}

.top__block-item span{
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    color: #fff;
}

.top__block-item:hover{
    background: #d71a17;
}

.top__block-item svg{
    align-self: end;
}

.container{
    width: 100%;
    max-width: 1202px;
    padding: 0 16px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Мобильное меню */
.menu-burger, .burger-open, .nav-menu, .catalog-menu{
    display: none;
}
/* Мобильное меню */

.overflow-hidden{
    overflow: hidden;
}


@media(max-width: 1200px) {
    .about__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 991px){
    .top__block{
        gap: 15px;
    }
    .top__block-item{
        gap: 20px;
        padding: 10px;
    }
    
    .top__block-item svg{
        width: 60px;
        height: 60px;
    }
}
@media(max-width: 767px) {
    .top{
        gap: 20px;
    }
    .about {
        margin-bottom: 30px;
    }
    
    .index-page-slider .slick-dots{
        padding: 6px 10px;
        gap: 4px;
    }
    
    .index-page-slider .slick-dots li button{
        width: 8px;
        height: 8px;
    }
    
    .index-page-slider .slick-dots li.slick-active button{
        width: 16px;
    }
}

@media(max-width: 575px){
    .top__block{
        grid-template-columns: 1fr;
        gap: 2px;
    }
    
    .top__block-item{
        flex-direction: row;
        align-items: center;
        gap: 15px;
        padding: 12px 20px;
    }
    
    .top__block-item span{
        font-size: 16px;
    }
    
    .top__block-item svg{
        width: 32px;
        height: 32px;
    }
    
    .nav-menu{
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        background: #fafafa;
        z-index: 4;
    }
    
    .nav-menu__link{
        font-weight: 600;
        font-size: 12px;
        line-height: 120%;
        text-align: center;
        color: #1a1a1a;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: unset;
        gap: 6px;
        padding: 12px 0;
        border-top: 1px solid #eff0f1;
    }

    .nav-menu__link.active{
        background: #313b80;
        color: #fff;
        border-color: #313b80;
    }
    
    .nav-menu__link.active svg path{
        stroke: #fff;
    }
    
    /* Мобильное меню */
    
    .menu-burger{
        position: fixed;
        top: 60px;
        right: -100%;
        transition: .4s;
        background: #fff;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100% - 60px);
        overflow: auto;
        overscroll-behavior: none;
        z-index: 10;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;   
    }
    
    .menu-burger.show{
        right: 0;
    }
    
    .menu-list{
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .menu-link{
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        color: #1a1a1a;
        background: #fafafa;
        padding: 15px 16px;
        display: flex;
        text-decoration: unset;
        gap: 11px;
        align-items: start;
        justify-content: space-between;
    }
    
    .menu-link.active, .menu-link--hover-red:hover{
        background: #d71a17;
        color: #fff;
    }
    
    .menu-link--hover-red:hover svg path{
        stroke: #fff;
    }
    
    .menu-link__catalog{
        font-weight: 600;
        line-height: 140%;
        text-transform: uppercase;
        color: #fff;
        background: #313b80;
        padding: 16px;
    }
    
    .menu-link__catalog svg{
        display: block !important;
    }
    
    .menu-burger__contacts{
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 0 16px 20px;
    }
    
    .menu-burger__contact{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .menu-burger__contact-text{
        font-weight: 600;
        font-size: 16px;
        line-height: 120%;
        color: #1a1a1a;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .menu-burger__contact-text span{
        font-weight: 400;
        font-size: 14px;
    }
    
    .menu-burger__contact-link{
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        text-decoration: underline;
        text-decoration-skip-ink: none;
        color: #d71a17;
    }
    
    .menu-burger__main-phone{
        font-weight: 600;
        font-size: 32px;
        line-height: 120%;
        color: #1a1a1a;
        text-decoration: unset;
    }
    
    .menu-burger__contact-subtext{
        font-weight: 600;
        font-size: 14px;
        line-height: 120%;
        color: #1a1a1a;
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    
    .menu-burger__second-phone{
        font-weight: 600;
        font-size: 24px;
        line-height: 120%;
        color: #1a1a1a;
        text-decoration: unset;
    }
    
    .catalog-menu{
        position: fixed;
        top: 60px;
        height: calc(100% - 60px);
        right: -100%;
        width: 100%;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 10px;
        z-index: 10;
        transition: .4s;
    }
    
    .catalog-menu__btn-back{
        font-weight: 600;
        font-size: 16px;
        line-height: 140%;
        text-transform: uppercase;
        color: #fff;
        background: #313b80;
        padding: 16px;
        display: flex;
        align-items: center;
        gap: 10px
    }
    
    .menu-item:not(:has(> .catalog-menu)) svg{
        display: none;
    }
    
    .catalog-menu .menu-link{
        font-weight: 600;
        line-height: 140%;
    }
    
    .catalog-menu__subtitle{
        font-weight: 600;
        font-size: 16px;
        line-height: 110%;
        color: #c6c6c6;
        padding: 10px 16px;
    }
    
    .catalog-menu.show{
        right: 0;
    }
    
    .burger-open{
        width: 32px;
        height: 32px;
        border-radius: 4px;
        background: #313b80;
        position: relative;
        padding: unset;
        border: unset;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        margin: auto 0;
    }
    
    .burger-open span{
        position: absolute;
        display: block;
        border-radius: 20px;
        width: 12px;
        margin: 0 auto;
        height: 2px;
        border-radius: 2px;
        background-color: #fff;
        -webkit-transition: .3s;
        transition: .3s;
    }
    
    .burger-open span::before {
        content: "";
        position: absolute;
        top: -5px;
        left: 0;
        width: 12px;
        height: 2px;
        -webkit-transition: top .25s .25s, -webkit-transform .25s;
        transition: transform .25s, top .25s .25s, -webkit-transform .25s;
        background-color: #fff;
        border-radius: 20px;
        transition-duration: .25s;
    }
    
    .burger-open span::after {
        content: "";
        position: absolute;
        top: 5px;
        left: 0;
        width: 12px;
        height: 2px;
        -webkit-transition: top .25s .25s, -webkit-transform .25s;
        transition: transform .25s, top .25s .25s, -webkit-transform .25s;
        background-color: #fff;
        border-radius: 20px;
        transition-duration: .25s;
    }
    
    .burger-open.show span {
        background: 0 0;
    }
    
    .burger-open.show span::before {
        top: 0;
        -webkit-transform: rotateZ(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotateZ(-45deg);
        -webkit-transition: top .25s, -webkit-transform .25s .25s;
        transition: top .25s, transform .25s .25s, -webkit-transform .25s .25s;
    }
    
    .burger-open.show span::after {
        top: 0;
        -webkit-transform: rotateZ(45deg);
        -ms-transform: rotate(45deg);
        transform: rotateZ(45deg);
        -webkit-transition: top .4s, -webkit-transform .25s .25s;
        transition: top .4s, transform .25s .25s, -webkit-transform .25s .25s;
    }
    
    .catalog-menu .menu-list{
        overflow-y: auto;
        overscroll-behavior: none;
    }
    
    .catalog, .fixed-header .nav, .header .menu-button{
        display: none;
    }
    
    /* Мобильное меню */
}

/* index-about stop */

/* index-news stop */

.index-news {
    margin-bottom: 40px;
}

.index-news .item button {
    width: 230px;
    height: 50px;
}

.index-news .item {
    margin-bottom: 0;
}

@media(max-width: 991px) {
    .index-news .item button {
        width: 90%;
        height: 40px;
        padding: 0;
    }
}

/* index-news stop */

/* index-map start */

#index-map [class*="copyrights-pane"] {
	display: none !important;
}

#index-map [class*="ground-pane"] {
	filter: grayscale(1);
}

/* index-map stop */

/*  */