/* programmy/napravleniya */
:root {
    --primary-green-color: rgba(57, 234, 93, 1);
    --gradient-border-background: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 76.5%, rgba(255, 255, 255, 0.1) 100%);
    --gradient-border-mask: linear-gradient(rgba(27, 27, 35, 1) 0 0) exclude, 
                            linear-gradient(rgba(27, 27, 35, 1) 0 0) content-box;
    --default-fast-transition: all 0.2s ease;
    --sirius-font: "ALS Sirius";
    --side-margin-desc: 80px;
    --side-margin-tablet: 24px;
    --side-margin-mobile: 12px;
    --defaul-font-color: rgb(255, 255, 255);
    --white-opacity-05: rgba(251, 251, 251, 0.05);

    --paragraph-size-mobile: 14px;
}

html {
    opacity: 1 !important;
}

.vectors {
    background: none;
}
body * {
    font-family: var(--sirius-font);
}

.top_title p {
    padding-top: 24px;
    max-width: 900px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.directions_content {
    margin: 48px 80px 64px 80px;
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
}
.event_filter {
    margin: 0px;
    flex-direction: column;
    width: 25%;
    min-width: 25%;
}

/*  */
.event_filter > div {
    position: relative;
    margin-bottom: 6px;
}
.event_filter__elem {
    margin-top: 8px;
    flex: 0;

    &:first-child {
        margin: 0;
    }
}
.custom-select-filter {
    z-index: 10;
    width: 100%;
}
.options-container {
    margin-top: 8px;
    max-height: 0;
    padding: 0;
    position: relative;
    display: block;
    background: rgba(255, 255, 255, 0.05);

    transition: max-height 0.3s ease-out;
}
.options-container label {
    cursor: pointer;
}
.select-option {
    cursor: pointer;
}

.options-container[for-select="hidden-select-3"] {
    background: none;
}
.options-container[for-select="hidden-select-3"] > div {
    display: flex;
    gap: 16px;
}
.options-container[for-select="hidden-select-3"] > div > input {
    border-radius: 10px;
    background: none;
    border: none;
    padding: 0px;
    font-family: "ALS Sirius";
    font-size: 14px;
    line-height: 16px;
    color: var(--Text-Text-color-70, #FFFFFFB2);
    outline: none;

    padding: 0px 20px;
    min-height: 40px;
    backdrop-filter: blur(9px);
    background: rgba(255, 255, 255, 0.05);

    text-align: center;
    width: 100%;
}
.options-container[for-select="hidden-select-3"] > div > input::-webkit-outer-spin-button,
.options-container[for-select="hidden-select-3"] > div > input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*  */

.directions_list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 16px;
}

.directions_list__elem {
    display: flex;
    width: calc(100% - 48px);
    justify-content: space-between;
    padding: 24px;
    color: white;

    border-radius: 10px;
    backdrop-filter: blur(9px);
    gap: 64px;

    position: relative;
    background: rgba(251, 251, 251, 0.05);

    cursor: pointer;

    transition: background-color 0.2s ease;
}
.directions_list__elem::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: var(--gradient-border-background);
    mask: var(--gradient-border-mask);
    opacity: 1;
}
.directions_list__elem::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(170deg, rgba(123, 32, 230, 0.00) 33.59%, rgba(123, 32, 230, 0.20) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.directions_list__elem:hover::after {
    opacity: 1;
}

.directions_list__elem > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: 5;
}
.directions_elem__name {
    display: flex;
    margin-bottom: 8px;

    gap: 12px;
    fill: white;
}
.directions_elem__program__name {
    font-weight: bold;
    font-size: 20px;
}
.directions_elem__program__text {
    padding-top: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.directions_list__elem > div {
    &:first-child {
        /* padding-right: 64px; */
    }
    &:last-child {
        /* padding-left: 64px; */
    }
}

.event_header__tags {
    margin: 24px 0 0 0;

    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-wrap: wrap;
}
.event_header__tags__elem {
    padding: 6px 12px;
    line-height: 12px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 65.104px;
    background: linear-gradient(91deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(9px);
    color: #FFF;
    text-align: center;
    font-family: "ALS Sirius";
    font-size: 12px;
    font-weight: 400;
}
.event_header__tags .delimit {
    background: none !important;
    backdrop-filter: none !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}
.event_header__tags .ness {
    background: rgba(57, 234, 93, 0.15) !important;
    /* backdrop-filter: none !important; */
}

.vertical_stroke {
    background: var(--gradient-border-background);
    min-width: 1px;
    margin-left: auto;
    height: 100%;
}

.directions_elem__data {
    /* min-width: 280px; */
    min-width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}
.directions_elem__data div {
    min-width: fit-content;
}
.directions_elem__data p {
    font-size: 14px;
    white-space: nowrap;
}
.directions_elem__data span {
    min-width: 20px;
    padding: 2px 6px 3px;
    margin-left: 12px;

    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary-green-color);
}

.secondary_button {
    height: 40px;
    width: fit-content;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0px 24px 0px 28px;
    gap: 8px;
    border-radius: 41px;
    border: 1px solid rgba(255, 255, 255, 0);
    background: 
        linear-gradient(92.56deg, #4F8BFE 0%, #6F6BEE 34.5%, #D270F3 100%) padding-box, 
        linear-gradient(90deg, rgba(0, 227, 123, 0) 0%, rgba(255, 255, 255, 0) 76.5%, rgba(0, 227, 123, 0) 100%) border-box;
    color: #FFF;
    text-align: center;
    font-variant-numeric: lining-nums proportional-nums;
    font-family: "ALS Sirius";
    font-size: 14px;
    font-weight: bold;
    fill: white;
    transition: background 0.5s ease-in-out;

    cursor: pointer;
}
.secondary_button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 41px;
    border: none;
    background: 
        linear-gradient(273deg, #4F8BFE 0%, #6F6BEE 34.5%, #D270F3 100%) padding-box, 
        linear-gradient(90deg, rgba(0, 227, 123, 0.2) 0%, rgba(255, 255, 255, 1) 76.5%, rgba(0, 227, 123, 0.1) 100%) border-box;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
}
.secondary_button * {
    z-index: 2;
}
.secondary_button:hover:before {
    border: 1px solid white;
}
.secondary_button:hover:before {
    opacity: 1;
}
.secondary_button a {
    position: absolute;
    top: 0;
    left: 0;
    text-decoration: none;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.promo {
    position: relative;
    display: flex;
    background-image: url(/local/templates/abit_tpu/img/promo_back.svg);
    background-size: contain;
    background-position: center right 0;
    background-repeat: no-repeat;
    backdrop-filter: blur(12px);
}

.about_block {
    margin: 120px var(--side-margin-desc) 0px var(--side-margin-desc);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.secondary_promo__left {
    display: flex;
    flex-direction: column;
    width: calc((100% - 120px) / 2);
    align-items: flex-start;
    gap: 40px;
}

.calculator_block {
    /* margin: 120px var(--side-margin-desc) 120px var(--side-margin-desc);
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between; */
    display: none;
}
.calculator_block::before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    padding: 1px;
    border-radius: 20px;

    background: var(--gradient-border-background);
    mask: var(--gradient-border-mask);

    opacity: 0;
    transition: var(--default-fast-transition);
}
.calculator_block .secondary_promo__left {
    width: calc((100% - 120px) / 2);
}
.calculator_block .inputs_block {
    width: calc((100% - 120px) / 2);
}
.calculator_block > .secondary_button {
    display: none;
}
.inputs_block {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.inputs_block__elem {
    display: flex;
    flex-direction: column;
    width: calc((100% - 24px) / 2);
    gap: 12px;
}

.points_input {
    position: relative;
}
.points_input input {
    caret-color: var(--primary-green-color);
    color: var(--primary-green-color);

    font-size: 20px;

    border-radius: 10px;
    padding: 16px;
    background: var(--white-opacity-05);
    width: calc(100% - 32px);

    color: var(--primary-green-color);
    text-align: center;
    caret-color: var(--primary-green-color);

    border: none;
    outline: none;

    transition: 0.2s ease;
}
.points_input input:focus {
    caret-color: var(--primary-green-color);
    color: var(--primary-green-color);
    background: rgba(255, 255, 255, 0.0);
}
.points_input:focus-within:before {
    opacity: 1;
}
.points_input:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: var(--gradient-border-background);
    mask: var(--gradient-border-mask);

    opacity: 0;
    transition: 0.2s ease;
}

.inputs_block__elem input:focus {
    color: var(--defaul-font-color);
}
.inputs_block__elem input[type="number"]::-webkit-outer-spin-button,
.inputs_block__elem input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.inputs_block__elem input[type='number'],
.inputs_block__elem input[type="number"]:hover,
.inputs_block__elem input[type="number"]:focus {
    appearance: none;
    -moz-appearance: textfield;
}

.custom-select {
    position: relative;
    width: 100%;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
}
.selected-item {
    cursor: pointer;
    display: flex;

    min-width: 20px;
    width: fit-content;
    padding: 6px 8px;
    align-items: center;

    gap: 10px;
    line-height: 10px;

    border-radius: 40px;
    background: var(--white-opacity-05);

    color: var(--defaul-font-color);
    fill: var(--primary-green-color);
}
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;

    padding: 8px;

    border-radius: 10px;
    background: #0E0E16;
}
.dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    color: var(--defaul-font-color);
    border-bottom: 1px solid var(--white-opacity-05);

    &:last-child {
        border: none;
    }
}
.dropdown-item.selected {
    color: var(--primary-green-color);
}
.more_events__slider {
    margin: 0 50px 0 50px;
}

.blur_card {
    position: relative;
    background: rgba(251, 251, 251, 0.05);
}
.blur_card:before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: var(--gradient-border-background);
    mask: var(--gradient-border-mask);
}
.strange_block {
    padding: 24px;
    border-radius: 10px;
    backdrop-filter: blur(9px);
    height: fit-content;

    &:nth-child(even) {
        margin-top: 250px;
    }
}
.strange_block .secondary_button{
    width: fit-content;
}
.strange_block__header {
    color: var(--defaul-font-color);

    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;

    padding-bottom: 16px;
}
.strange_block__text {
    color: var(--defaul-font-color);

    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;

    padding-bottom: 32px;
}

/* СВИТЧЕР НАПРАВЛЕНИЯ\ПРОГРАММА */
.filter__search-block {
    margin: 32px 80px 32px 80px;
    display: flex;
    gap: 24px;
}
.event_filter__search {
    margin: 0;
}
.program-type-switcher {
    width: 25%;
    border-radius: 48px;
    height: 48px;
    padding: 6px 8px;
    box-sizing: border-box;
    background: var(--Surface-Surface-light, rgba(255, 255, 255, 0.05));
    display: flex;
    flex-direction: row;
    gap: 12px;
}
.program-type-switcher__item {
    height: 36px;
    padding: 10px;
    border-radius: 72px;
    border: none;
    flex: 1 1 50%;
    background: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}
.program-type-switcher__item--active {
    background: rgba(57, 234, 93, 0.2);
    color: rgba(57, 234, 93, 1);
}
/* /СВИТЧЕР НАПРАВЛЕНИЯ\ПРОГРАММА */

/* ЗАГЛУШКА КАТАЛОГА ПРОГРАММ */
.edlvl-buttons {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 48px 80px 0px 80px;
}
.edlvl-buttons__item {
    flex: 1;
    padding: 16px;
    box-sizing: border-box;
    height: 62px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: white;
    font-size: 14px;
    border-radius: 10px;

    transition: background-color 0.2s ease;
}
.edlvl-buttons__item::before {
    transition: opacity 0.2s ease;
}
.edlvl-buttons__item::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(91deg, rgba(123, 32, 230, 0.00) 33.59%, rgba(123, 32, 230, 0.20) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.edlvl-buttons__item:hover::after {
    opacity: 1;
}
.edlvl-buttons__item:hover {
    background-color: rgba(255,255,255,0);
}
.edlvl-buttons__item svg {
    stroke: white;
}
.empty-edlvl__notify {
    display: flex;
    align-items: center;
    border-radius: 10px;
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    gap: 24px;
    padding: 40px;
    height: 192px;
    box-sizing: border-box;
    justify-content: center;
}
.empty-edlvl__notify svg {
    fill: rgba(57, 234, 93, 1);
    min-height: 24px;
    min-width: 24px;
}
/* /ЗАГЛУШКА КАТАЛОГА ПРОГРАММ  */

@media (max-width: 575px) {

    .directions_content {
        margin: 24px var(--side-margin-mobile) 80px var(--side-margin-mobile);
        flex-direction: column;
    }
    /*  */
    .options-container {
        margin-top: 6px;
        position: absolute;
        background: #0E0E16;
        transition: none;
    }
    .options-container[for-select="hidden-select-3"] > div > input {
        /* width: 100%; */
        background: #0E0E16;
    }
    .options-container[for-select="hidden-select-3"] > div {
        /* display: block; */
        /* gap: 16px; */
    }
    .event_filter {
        width: 100%;
    }
    .event_filter {
        gap: 0px;
    }
    /*  */
    .directions_list__elem {
        gap: 0px;
        flex-direction: column;
        padding: 16px;
        width: calc(100% - 32px);
    }
    .directions_list__elem > div {
        width: 100% !important;
        padding: 0 !important;
    }
    .directions_elem__name {
        flex-direction: column;
    }
    .event_header__tags {
        margin: 20px 0;
    }
    .directions_elem__data {
        gap: 8px;
    }

    .select-trigger {
        font-size: 12px;
    }

    .directions_elem__name {
        font-size: 14px;
    }
    .directions_elem__program__name {
        font-size: 16px;
    }
    .directions_elem__program__text {
        display: none;
    }
    
    .secondary_promo {
        margin: 80px var(--side-margin-mobile) 80px var(--side-margin-mobile);
        padding: 24px;
    }
    .secondary_promo__left {
        max-width: 100%;
        width: 100%;
        min-width: 100%;
        gap: 40px;
    }
    .secondary_promo .promo__title { 
        font-size: 24px;
    }
    .promo__text {
        font-size: 14px;
    }
    .promo {
        background-image: url(/local/templates/abit_tpu/img/mobile_promo.svg) !important;
        background-size: 150% !important;
    }
    .promo:last-of-type {
        margin-bottom: 0px !important;
    }

    .about_block {
        margin: 80px var(--side-margin-mobile) 0px var(--side-margin-mobile);
        flex-direction: column;
        align-items: baseline;
        gap: 32px;

        font-size: var(--paragraph-size-mobile);
    }
    .about_block img {
        width: 100%;
    }

    .calculator_block {
        margin: 80px var(--side-margin-mobile) 80px var(--side-margin-mobile);
        padding: 24px;
        border-radius: 20px;

        flex-direction: column;
        align-items: flex-start;
    }
    .calculator_block::before {
        border-radius: 20px;
        opacity: 1;
    }
    .calculator_block .inputs_block {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        width: 100%;
    }
    .custom-select {
        width: 100%;
    }
    .selected-item {
        justify-content: space-between;
    }
    .dropdown {
        width: calc(100% - 16px);
    }
    .inputs_block__elem {
        width: 100%;
    }
    .calculator_block > .secondary_button {
        margin-top: 40px;
        display: flex;
    }
    .calculator_block .secondary_promo__left .secondary_button {
        display: none;
    }
    .points_input input {
        font-size: 16px;
    
        border-radius: 10px;
        padding: 14px 16px;
    }
    
    .strange_block {
        &:nth-child(even) {
            margin-top: 0px;
        }
    }
    .strange_block__header {
        font-size: 16px;
    }
    .strange_block__text {
        font-size: 14px;
    }

    /* СВИТЧЕР НАПРАВЛЕНИЯ\ПРОГРАММА */
    .filter__search-block {
        flex-direction: column;
        gap: 12px;
        margin: 32px var(--side-margin-mobile) 32px var(--side-margin-mobile);
    }
    .program-type-switcher {
        width: 100%;
    }
    /* /СВИТЧЕР НАПРАВЛЕНИЯ\ПРОГРАММА */
    /* ЗАГЛУШКА КАТАЛОГА ПРОГРАММ */
    .edlvl-buttons {
        flex-direction: column;
        gap: 14px;
        margin: 24px var(--side-margin-mobile) 0px var(--side-margin-mobile);
    }
    .empty-edlvl__notify {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    /* /ЗАГЛУШКА КАТАЛОГА ПРОГРАММ  */
}

@media (min-width: 576px) and (max-width: 768px) {
    .top_title {
        margin: 24px 48px 24px 48px;
    }
    .filter__search-block {
        margin: 32px 48px 24px 48px;
    }
    /* .event_filter__search {
        margin: 32px 48px 24px 48px;
    } */
    .edlvl-buttons {
        margin: 48px 48px 0px 48px;
    }
    .directions_content {
        margin: 24px 48px 80px 48px;
        flex-direction: column;
    }
    .select-trigger {
        font-size: 12px;
    }

    .directions_elem__name {
        font-size: 14px;
    }
    .directions_elem__program__name {
        font-size: 16px;
    }
    .directions_elem__program__text {
        display: none;
    }

    .directions_list__elem {
        gap: 0px;
        flex-direction: column;
        padding: 16px;
        width: calc(100% - 32px);
    }

    .event_header__tags {
        margin: 20px 0 0 0;
    }
    .directions_list__elem > div {
        &:last-child {
            margin: 20px 0 0 0;
            padding-left: 0px;
        }
    }
    .directions_elem__data {
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 12px;
        justify-content: left;
    }
    .directions_elem__data > div {
        width: calc(100% / 2 - 60px);
        padding: 4px 0px;
    }

    .event_filter {
        width: 100%;
    }
    .event_filter {
        gap: 0px;
    }

    .secondary_promo {
        margin: 80px 48px 80px 48px;
        padding: 24px;
    }
    .secondary_promo__left {
        width: calc((100% - 120px));
    }

    .promo {
        background-image: url(/local/templates/abit_tpu/img/mobile_promo.svg) !important;
        background-size: 150% !important;
    }
    .promo:last-of-type {
        margin-bottom: 0px !important;
    }

    .about_block {
        margin: 80px 48px 0px 48px;
        flex-direction: column;
        align-items: baseline;
        gap: 32px;

        font-size: var(--paragraph-size-mobile);
    }
    .about_block img {
        width: 60%;
    }

    .calculator_block {
        margin: 80px 48px 80px 48px;
        padding: 24px;
        border-radius: 20px;

        flex-direction: column;
        align-items: flex-start;
    }
    .calculator_block::before {
        border-radius: 20px;
        opacity: 1;
    }
    .calculator_block .inputs_block {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        width: 100%;
    }

    /* СВИТЧЕР НАПРАВЛЕНИЯ\ПРОГРАММА */
    .filter__search-block {
        flex-direction: column;
        gap: 12px;
        margin: 32px 48px 32px 48px;
    }
    .program-type-switcher {
        width: 100%;
    }
    /* /СВИТЧЕР НАПРАВЛЕНИЯ\ПРОГРАММА */
}

@media (min-width: 768px) and (max-width: 1024px) {
    .top_title {
        margin: 24px 48px 24px 48px;
    }
    .filter__search-block {
        margin: 32px 48px 24px 48px;
    }
    /* .event_filter__search {
        margin: 32px 48px 24px 48px;
    } */
    .edlvl-buttons {
        margin: 48px 48px 0px 48px;
    }
    .directions_content {
        margin: 24px 48px 80px 48px;
        /* flex-direction: column; */
    }
    .select-trigger {
        font-size: 12px;
    }

    .directions_elem__name {
        font-size: 14px;
    }
    .directions_elem__program__name {
        font-size: 16px;
    }
    .directions_elem__program__text {
        display: none;
    }

    .directions_list__elem {
        gap: 0px;
        flex-direction: column;
        padding: 16px;
        width: calc(100% - 32px);
    }

    .event_filter {
        width: 25%;
    }

    .event_header__tags {
        margin: 20px 0 0 0;
    }
    .directions_list__elem > div {
        &:last-child {
            margin: 20px 0 0 0;
            padding-left: 0px;
        }
    }
    .directions_elem__data {
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 12px;
        justify-content: left;
    }
    .directions_elem__data > div {
        width: calc(100% / 2 - 30px);
        padding: 4px 0px;
    }

    .about_block {
        margin: 80px 48px 0px 48px;
        flex-direction: column;
        align-items: baseline;
        gap: 32px;
        font-size: var(--paragraph-size-mobile);
    }

    .secondary_promo__left {
        width: 70%;
    }

    .promo__left {
        max-width: 60%;
        align-items: start;
    }
}

@media (min-width: 1025px) and (max-width: 1280px) {
    .top_title {
        margin: 24px 80px 24px 80px;
        width: 60%;
    }
    .filter__search-block {
        margin: 32px 80px 24px 80px;
    }
    /* .event_filter__search {
        margin: 32px 80px 24px 80px;
    } */
    .directions_content {
        margin: 24px 80px 80px 80px;
    }

    .event_filter {
        width: 25%;
    }

    .event_header__tags {
        margin: 20px 0 0 0;
    }

    .directions_list__elem {
        gap: 0px;
        flex-direction: column;
        padding: 16px;
        width: calc(100% - 32px);
    }
    .directions_list__elem > div {
        &:last-child {
            margin: 20px 0 0 0;
            padding-left: 0px;
        }
    }
    /* .directions_list__elem > div {
        &:first-child {
            padding-right: 40px;
        }
        &:last-child {
            padding-left: 40px;
        }
    } */
    .directions_elem__data {
        flex-direction: row;
        flex-wrap: wrap;
        font-size: 12px;
        justify-content: left;
    }
    .directions_elem__data > div {
        width: calc(100% / 2 - 60px);
        padding: 4px 0px;
    }

    .about_block {
        margin: 80px 80px 0px 80px;
        flex-direction: column;
        align-items: baseline;
        gap: 32px;
        font-size: var(--paragraph-size-mobile);
    }

    .secondary_promo__left {
        width: 70%;
    }

    .promo__left {
        max-width: 60%;
        align-items: start;
    }
}