.footer__conference {
    position: relative;
    width: 100%;
    background-color: var(--generic-dark);
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer__conference div {
    color: var(--color-white);
}
.footer__conference-block {
    position: relative;
    z-index: 1;
    height: 146px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border-radius: 8px;
    padding: 30px;
    overflow: hidden;
    background-image: url("../../../new_icon/anonce_footer.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}
.footer__conference-logos {
    display: flex;
    justify-content: space-between;
    width: 327px;
    flex-wrap: nowrap;
    align-items: center;
    gap: 24px;
}
.footer__conference-logo {
    object-fit: contain;
}
.footer__conference-logo-left {
    flex: 1 1 0;
    min-width: 60px;
}
.footer__conference-logo-right {
    flex: 0 1 auto;
    max-width: 100%;
}
.footer__conference-logo-right img {
    max-width: unset;
}
.footer__conference-cross {
    flex: 0 0 auto;
}
.footer__conference-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__conference  .footer__conference-company-name {
    color: #DB3ABA;
}
.footer__conference-name {
    font-style: italic;
    font-weight: 700;
}
.footer__conference-info-stand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.footer__conference-info .text_semibold, .footer__conference-info .small_semibold_upc {
    color: var(--color-white);
}
.footer__conference-info-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.footer-conference-item {
    display: flex;
    padding: 5px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: #00003A;
    border-radius: 20px;
}
.footer-conference-stand {
    border-radius: 28px;
    border: 1px solid #FF492C;
}
.footer__conference-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.footer__conference-button {
    display: flex;
    width: 200px;
    height: 46px;
    padding: 24px 0 21px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary-blue);
    border-radius: var(--border-rd-small);
    border-color: var(--color-primary-blue);
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    height: 46px;
}

@media (hover: hover) {
    .footer__conference-button:hover {
        background-color: #6464A6;
        border-color: #6464A6;
    }
}
@media (max-width: 1280px) {
    .footer__conference-block {
        display: grid;
        grid-template-columns: 460px 246px;
        padding: 8px 32px 16px;
        gap: 8px;
    }
    .footer__conference-block {
        height: 142px;
        background-image: url("../../../new_icon/anonce_footer_tab.svg");
    }
    .footer__conference-logos {
        height: 46px;
        width: unset;
        gap: 16px;
        width: fit-content;
        margin: 0 auto;
    }
    .footer__conference-logos .conference-logo {
        height: 28px;
    }
    .footer__conference-info {
        grid-row: 2;
        gap: 4px;
    }
    .footer__conference-link {
        grid-row: span 2;
    }
}
@media (max-width: 1024px) {
    .footer__conference-block {
        height: 133px;
    }
}
@media (max-width: 820px) {
    .footer__conference-block {
        height: auto;
        background-image: url("../../../new_icon/anonce_footer_mob.svg");
    }
    .footer__conference-block {
        display: flex;
        flex-direction: column;
        padding: 16px 0 22px;
        gap: 16px;
    }
    .footer-conference-item {
        padding: 4px 6px;
    }
    .footer__conference-info-head, .footer__conference-info-content {
        flex-wrap: wrap;
        display: flex;
        justify-content: center;
        gap: 4px;
    }
}