.btn-burger {
    width: 24px;
    height: 24px;
    cursor: pointer;
}
.btn-burger img.burger {
    display: block;
}
.btn-burger img.cross {
    display: none;
}
.header.media-nav-opened .btn-burger img.burger {
    display: none;
}
.header.media-nav-opened .btn-burger img.cross {
    display: block;
}

.media-nav {
    left: 0;
    top: calc(100% + 2px);
    width: 100%;
    display: none;
    position: absolute;
    height: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 15px 0 rgba(165, 163, 163, 0.46);
    border-radius: 12px;
    z-index: 1000;
    transition: display 0.3s ease-in-out, height 0.3s ease-in-out;
}
.header.media-nav-opened .media-nav {
    display: block;
    height: auto;
}
.media-nav-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.media-nav-content .btn-1 {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #2AABEE;
    padding: 10px;
    border: 1px solid #2AABEE;
    border-radius: 9px;
    text-align: center;
}
.media-nav .menu {
    padding: 0 !important;
}
.media-nav .menu li {
    list-style: none;
    font-weight: 500;
    font-size: 12px;
    line-height: 100%;
    margin-bottom: 15px;
    color: #000000;
}
.media-nav .menu a {
    text-decoration: none;
    color: #000000;
}

.section-1 > .section-1-container .header {
    position: relative;
}

.section-1 > .section-1-container .header .header-left .menu > li,
.section-1 > .section-1-container .header .header-left .menu > li > a {
    cursor: pointer;
    color: #072260;
}
.section-1 > .section-1-container .header .header-left .menu > li:hover,
.section-1 > .section-1-container .header .header-left .menu > li:hover > a {
    color: rgba(42, 171, 238, 1);
}

.menu-dropdown {
    position: relative;
    display: inline-block;
}

.menu-dropdown-chevron {
    transition: transform 0.3s ease;
}
.menu-dropdown.is-open .menu-dropdown-chevron,
.menu-dropdown:hover .menu-dropdown-chevron {
    transform: rotate(180deg);
}
.nav-media .menu-dropdown:hover .menu-dropdown-chevron,
.media-nav .menu-dropdown:hover .menu-dropdown-chevron {
    transform: none!important;
}
.nav-media .menu-dropdown.is-open .menu-dropdown-chevron,
.media-nav .menu-dropdown.is-open .menu-dropdown-chevron {
    transform: rotate(180deg)!important;
}
.nav-media .menu-dropdown,
.media-nav .menu-dropdown {
    cursor: pointer;
    display: block;
}
.menu-dropdown-list {
    /* Анимация появления */
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.section-1 .header .header-left .menu .menu-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    /*right: -68px;*/
    /*min-width: 180px;*/
    right: 0;
    transform: translateX(calc(55%));
    width: max-content;
    max-width: 1200px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    padding: 35px 20px!important;
    margin: 0;
    list-style: none;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
@media (max-width: 1099px) {
    .section-1 .header .header-left .menu .menu-dropdown-list {
        max-width: 930px;
    }
}
.menu-dropdown-pointer {
    position: absolute;
    top: -16px;
    left: 46%;
    transform: translateX(-35px);
    z-index: 10;

    filter: drop-shadow(0px -3px 2px rgba(0, 0, 0, 0.03));
}

.menu-dropdown.is-open .menu-dropdown-list,
.menu-dropdown:hover .menu-dropdown-list {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-media .menu-dropdown .menu-dropdown-list,
.media-nav .menu-dropdown .menu-dropdown-list {
    display: none!important;
}
.nav-media .menu-dropdown.is-open .menu-dropdown-list,
.media-nav .menu-dropdown.is-open .menu-dropdown-list {
    display: grid!important;
}
.section-1 .header .header-left .menu .menu-dropdown-list > ul {
    margin: 0!important;
    padding: 0 15px;
    border-right: 1px solid #E3E5E5;
}
.nav-media .menu-dropdown-list,
.media-nav .menu-dropdown-list {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки равной ширины */
    gap: 10px;
}
.media-nav .menu-dropdown-list > ul:nth-child(even) {
    border-right: 1px solid #E3E5E5;
}
.nav-media .menu-dropdown-list .menu-dropdown-pointer,
.media-nav .menu-dropdown-list .menu-dropdown-pointer {
    display: none;
}
.nav-media .menu-dropdown-list > ul,
.media-nav .menu-dropdown-list > ul {
    margin-top: 10px;
    padding: 0;
}
.section-1 .header .header-left .menu .menu-dropdown-list > ul:first-of-type {
    padding-left: 0;
}
.section-1 .header .header-left .menu .menu-dropdown-list > ul:last-of-type {
    border-right: 0 none;
    padding-right: 0;
}
.menu-dropdown-list > ul > li.menu-dropdown-list-col-header {
    text-transform: uppercase!important;
    color: #2AABEE!important;
    padding-left: 15px;
    margin-bottom: 15px!important;
    font-size: 18px!important;
    font-weight: 600!important;
    line-height: 14px!important;
}
.nav-media .menu-dropdown-list > ul > li.menu-dropdown-list-col-header,
.media-nav .menu-dropdown-list > ul > li.menu-dropdown-list-col-header {
    font-size: 12px!important;
    line-height: 100%;
    padding-left: 5px;
    margin-bottom: 5px!important;
}
.menu-dropdown-list > ul > li.menu-dropdown-list-col-item {
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.15s ease, color 0.15s ease;
}
.media-nav .menu-dropdown-list > ul > li.menu-dropdown-list-col-item {
    padding: 0!important;
    margin-bottom: 0!important;
    margin-right: 5px;
}
.menu-dropdown-list > ul > li.menu-dropdown-list-col-item > a {
    display: flex;
    flex-wrap: nowrap;
    white-space: normal;
    text-decoration: none;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    color: #000000;
}
.nav-media .menu-dropdown-list > ul > li.menu-dropdown-list-col-header,
.nav-media .menu-dropdown-list > ul > li.menu-dropdown-list-col-item > a,
.media-nav .menu-dropdown-list > ul > li.menu-dropdown-list-col-header,
.media-nav .menu-dropdown-list > ul > li.menu-dropdown-list-col-item > a {
    font-size: 12px!important;
    line-height: 100%;
    padding-left: 5px;
}

.menu-dropdown-list > ul > li.menu-dropdown-list-col-item > a:hover {
    color: #000000;
    text-decoration: none;
}

.menu-dropdown-list > ul > li.menu-dropdown-list-col-item:hover {
    background-color: #ECF6FF;
}
.menu-dropdown-list-soon {
    padding: 2px 6px;
    font-size: 10px;
    color: #2AABEE;
    background-color: #ECF6FF;
    border-radius: 10px;
}
