.footer {
    position: relative;
    background: #0D0D0D;
    overflow: hidden;
    z-index: 1;
    padding-top: 200px;
}

.footer__background {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 30px;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.footer__holder {
    margin-bottom: 40px;
}

.footer__logo {
    margin-bottom: 30px;
}

.footer__logo img {
    max-width: 235px;
}

.footer__description {
    margin-bottom: 30px;
}

.footer__description p {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: #9D9D9D;
}

.footer__socials {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.footer__socials a img {
    max-width: 24px;
    height: auto;
}

.footer__first-column {
    margin-bottom: 40px;
}

.footer__right-side {
    margin-bottom: 40px;
}

.footer__second-column {
    margin-bottom: 40px;
}

.footer__second-column h3,
.footer__third-column h3 {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 24px;
    color: #fff;
    margin-bottom: 15px;
}

.footer__right-side ul {
    list-style-type: none;
    padding-left: 0;
}

.footer__right-side .menu {
    display: flex;
    flex-flow: column;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__right-side .menu-item a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #9D9D9D;
}

.footer__third-column ul {
    margin-bottom: 15px;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
}

.footer__third-column ul li a {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    color: #9D9D9D;
}

.footer__third-column ul li a.btn {
    justify-content: center;
}

.footer__rights {
    padding: 20px 0;
    border-top: 1px solid #383838;
}

.footer__rights span {
    display: inline-block;
    width: 100%;
    text-align: center;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    color: var(--color-primary);
}

@media only screen and (min-width: 991px) {
    .footer {
        padding-top: 270px;
    }

    .footer__background {
        width: 100%;
        height: auto;
        top: unset;
    }

    .footer__holder {
        display: flex;
        flex-flow: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .footer__first-column {
        width: 30%;
        max-width: 450px;
        margin-bottom: 0;
    }

    .footer__right-side {
        display: flex;
        flex-flow: row;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 115px;
    }

    .footer__second-column {
        margin-bottom: 0;
    }
}

/* Footer Single Events */

.footer__single-events {
    padding-bottom: 114px;
    padding-top: 80px;
    position: relative;
    z-index: 1;
}

.footer__single-events::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: #DE3B2B;
    background: linear-gradient(0deg, rgba(222, 59, 43, 1) 0%, rgba(120, 32, 23, 1) 100%);
}

.footer__single-events-holder {
    display: flex;
    flex-flow: column;
    gap: 40px;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__single-events-first {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 400px;
    gap: 20px;
}

.footer__single-events-description {
    font: 400 20px/1.2 var(--font-primary);
    color: var(--color-white);
}

.footer__single-events-second,
.footer__single-events-third {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer__single-events-second-title,
.footer__single-events-third-title {
    display: inline-block;
    margin-bottom: 24px;
    font: 700 16px/1.2 var(--font-primary);
    color: var(--color-white);
}

.footer__single-events-second-date,
.footer__single-events-second-location,
.footer__single-events-third-email {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font: 400 20px/1.2 var(--font-primary);
    color: var(--color-white);
    margin-bottom: 24px;
}

@media only screen and (min-width: 1024px) {
    .footer__single-events-holder {
        flex-flow: row;
        align-items: flex-start;
        justify-content: space-between;
    }
}