body {
    padding-top: 100px;
    background: #F7F7F7;
}

/* Флекс */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex--top-left {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--top-center {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--top-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--top-space {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--top-space-a {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--center-left {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--center-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--center-right {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--center-space {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--center-space-a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--bottom-left {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex--bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex--bottom-center {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex--bottom-space {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex--bottom-space-a {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex--row {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
}

.flex--column {
  -webkit-box-align: unset;
      -ms-flex-align: unset;
          align-items: unset;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex--nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex-1 {
    flex: 1;
}

.pos--relative {
  position: relative;
}

.pos--absolute {
  position: absolute;
}

.pos--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.container {
    max-width: 1220px;
    margin: 0 auto;
}

/* Шапка */
.header_new {
    background: #fff;
    z-index: 100;
}

.header_new__container {
    height: 100px;
    gap: 20px;
    padding: 0 20px;
}

.header_new .logo-icon {
    background: url(../images/new-logo-goriz2.png) left center / contain no-repeat;
    width: 130px;
}

.header_new .logo {
    margin-right: 20px;
    flex-shrink: 0;
}

.language-select {
    margin-left: auto;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1;
}

.language-select__ico {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    background: url(../images/new-main/spoiler.svg) center / contain no-repeat;
}

.language-select__title.open .language-select__ico {
    transform: rotate(180deg);
}

.language-select__drop {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
}

.language-select__title.open ~ .language-select__drop {
    display: block;
}

.language-select__drop a {
    display: inline-block;
    text-decoration: none;
    transition: .2s;
}

.language-select__drop a:hover {
    color: #025EA1;
}

.search-icon {
    width: 20px;
    height: 20px;
    margin: 0;
    background: url(../images/new-main/searche.svg) center / contain no-repeat;
}

.menu_top {
    gap: 20px;
}

.menu_top__item {
    position: relative;
}

.menu_top__link {
    text-transform: uppercase;
    transition: .2s;
    text-decoration: none !important;
    position: relative;
}

.menu_top__link::before {
    content: '';
    display: block;
    width: calc(100% + 40px);
    height: calc(100% + 50px);
    position: absolute;
    top: -20px;
    left: -20px;
}

.menu_top__link:hover {
    color: #025EA1;
}

.menu_top__dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: -20px;
    width: 385px;
    padding: 20px;
    background: #EEE;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: .2s;
}

.menu_top__item:hover .menu_top__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.menu_top__sub_link {
    transition: .2s;
    text-decoration: none !important;
}

.menu_top__sub_link:hover {
    color: #025EA1;
}

.burger {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(2, 94, 161, .20);
    border-radius: 4px;
    cursor: pointer;
    transition: .2s;
}

.burger__line {
    width: 20px;
    height: 2px;
    background: #025EA1;
    border-radius: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.burger__line:first-child {
    margin-top: -7px;
}

.burger__line:last-child {
    margin-top: 7px;
}

.burger.open {
    background: #EEEEEE;
}

.burger.open .burger__line:first-child {
    margin: 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.burger.open .burger__line:last-child {
    margin: 0;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.burger.open .burger__line:nth-child(2) {
    opacity: 0;
}

.burger_menu {
    gap: 20px;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: calc((var(--vh,1vh) * 100) - 100px);
    background: #EEEEEE;
    padding: 40px 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s;
}

.burger_menu .menu_top__dropdown {
    display: none;
}

.burger_menu .menu_top__link {
    flex: 1;
    font-size: 36px;
    line-height: 125%;
    text-transform: initial;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.burger_menu .menu_top__link::before {
    display: none;
}

.burger_arrow {
    display: none;
    width: 44px;
    height: 44px;
    background: url(../images/new-main/menu.svg) center / 24px no-repeat;
    cursor: pointer;
}

.burger_menu__sub .menu_top__item {
    display: none;
}

.burger_menu__sub .active_burger_item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}
.active_burger_item .menu_top__dropdown {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
    position: relative;
    top: 0;
    left: 0;
    padding: 0 0 0 60px;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: 0s;
}
.active_burger_item .burger_arrow {
    order: -1;
    transform: rotate(180deg);
}

@media (max-width: 1280px){
    .menu_top .menu_top__item:nth-child(4) ~ .menu_top__item {
        display: none;
    }
    .burger {
        display: block;
    }
    .burger_menu.open {
        visibility: visible;
        opacity: 1;
    }
    .burger_menu .burger_arrow {
        display: block;
    }
}
@media (max-width: 950px){
    .header_new .logo {
        margin-right: 0;
    }
    .menu_top {
        gap: 18px;
    }
}
@media (max-width: 900px) {
    .menu_top {
        display: none;
    }
}
@media (max-width: 767px){
    body {
        padding-top: 60px;
    }
    .header_new__container {
        height: 60px;
    }
    .header_new .logo-icon {
        width: 88px;
        height: 40px;
    }
    .burger_menu {
        top: 60px;
        height: calc((var(--vh,1vh) * 100) - 60px);
    }
    .burger_menu .menu_top__link {
        font-size: 24px;
    }
    .burger_arrow {
        width: 24px;
        height: 24px;
    }
    .active_burger_item .menu_top__dropdown {
        padding-left: 34px;
    }
}

/* Слайдер */
.index-slider__slide-wrapper {
	padding-top: 100px;
	padding-bottom: 100px;
	height: auto;
	display: table;
}
.index-slider__slide {
    min-height: 474px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: flex-start;
}
.index-slider__slide-wrapper {
    padding-top: 20px;
    padding-bottom: 40px;
}
.index-slider .slick-dots {
    position: relative;
    bottom: auto;
    height: 60px;
    background-color: #fff;
    border-bottom: 1px solid #EEE;
    margin: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 60px;
}
.index-slider .slick-dots li {
    margin: 0;
    width: 20px;
    height: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}
.index-slider .slick-dots li button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #025EA1;
    overflow: visible;
}
.index-slider .slick-dots li button::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    transition: .2s;
}
.index-slider .slick-dots li.slick-active button {
    transform: scale(2);
}
.index-slider .slick-slider .slick-prev,
.index-slider .slick-slider .slick-next {
	margin-top: 0;
	width: 60px;
	height: 60px;
    top: auto;
    bottom: 0;
    z-index: 10000;
    cursor: pointer;
}
.index-slider .slick-slider .slick-prev {
    left: 0;
}
.slick-slider .slick-prev::before {
	content: url("../images/new-main/arrow-left.svg");
}
.index-slider .slick-slider .slick-next {
    right: 0;
}
.slick-slider .slick-next::before {
	content: url("../images/new-main/arrow-right.svg");
}
@media (max-width: 1280px){
    .index-slider__slide {
        min-height: 38.8vw;
    }
}

/* Новости */
.h2 {
    color: #000;
    font-family: Arial;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: 20px;
}
.press_main__tabs {
    gap: 6px 20px;
    margin-bottom: 20px;
    align-items: unset;
}
.press_main__tab {
    padding: 5px 20px;
    background: #eee;
    color: #025EA1;
    cursor: pointer;
    transition: .2s;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 140%;
}
.press_main__tab:hover {
    background: #025EA1;
    color: #eee;
}
.press_main__tab.active {
    background: #013274;
    color: #eee;
}
.press_main__item {
    display: none;
}
.press_main__item.active {
    display: block;
}
.press_main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 240px;
    gap: 20px;
    color: #fff;
    text-decoration: none !important;
    margin-bottom: 20px;
}
.press_main__link {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 26px;
    text-decoration: none !important;
}
.press_main__link:first-child {
    grid-row: span 2;
}
.press_main__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    object-fit: cover;
    object-position: center;
    transition: .2s;
}
.press_main__link::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    background: rgba(1, 50, 116, 0.4);
    transition: .2s;
}
.press_main__link:hover .press_main__image {
    transform: scale(1.1);
}
.press_main__link:hover::after {
    opacity: .6;
}
.press_main__top {
    position: relative;
    z-index: 1;
}
.press_main__type {
    padding: 0 18px;
    line-height: 40px;
    background: rgba(125, 125, 125, 0.5);
    border-radius: 5px;
    text-transform: uppercase;
}
.press_main__date {
    margin-left: auto;
    gap: 8px;
    line-height: 1;
}
.press_main__day {
    font-size: 33px;
    font-weight: bold;
}
.press_main__bottom {
    position: relative;
    z-index: 1;
    margin-top: auto;
    font-size: 18px;
    line-height: 125%;
}
@media (max-width: 767px){
    .h2 {
        font-size: 24px;
    }
    .mobile-hide {
        display: none;
    }
    .press_main__tab {
        padding: 10px 0;
        background: none !important;
        font-size: 14px;
        line-height: 125%;
        color: #000;
        border-bottom: 1px solid transparent;
    }
    .press_main__tab:hover {
        color: #025EA1;
    }
    .press_main__tab.active {
        color: #025EA1;
        border-color: #025EA1;
    }
    .press_main__grid {
        grid-template-columns: 1fr;
    }
    .press_main__link {
        padding: 20px;
    }
    .press_main__bottom {
        font-size: 14px;
    }
}

/* Баннеры */
.main_banners {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 20px;
}
.banner {
    grid-column: span 2;
    text-decoration: none !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 20px;
    gap: 30px;
    min-height: 240px;
}
.banner--big {
    grid-column: span 3;
}
.banner_color--gray {
    background: #EEE;
    color: #000;
}
.banner_color--blue {
    background: #2767B7;
    color: #fff;
}
.banner_color--white {
    background: #FFF;
    color: #000;
    box-shadow: inset 0 0 0 1px #2767B7;
}
.banner--image_background {
    color: #fff;
}
.banner--image_background::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: -1;
    opacity: 0.4;
    background: #025EA1;
}
.banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}
.banner__image {
    width: 146px;
    height: 146px;
    margin-left: auto;
}
.banner__image img {
    max-width: 100%;
    max-height: 100%;
}
.banner__bottom {
    margin-top: auto;
    gap: 8px;
}
.banner__title {
    font-size: 18px;
    line-height: 135%;
    font-weight: 700;
}
.banner__arrow {
    flex-shrink: 0;
}

.banner_color--blue .banner__arrow path,
.banner--image_background .banner__arrow path {
    stroke: #fff;
}
@media (max-width: 767px){
    .main_banners {
        grid-template-columns: 100%;
    }
    .banner {
        grid-column: 1 !important;
    }
}