.footer_main {
    background-color: rgba(255, 255, 255, 0.5);
}

.footer_main__wrapper_info {
    display: flex;
    margin: 0 40px;
    padding: 40px 0;
    justify-content: space-between;
}

.footer_main__link {
    transition: font-size 0.3s;
    text-decoration: none;
    color: #000;
}

.footer_main__link:hover {
    font-size: 20px;
    transition: font-size 0.3s;
    text-decoration: none;
}

.footer_main__wrapper_info_right {
    display: flex;
    gap: 30px;
    font-weight: 700;
}

.footer_main__info_list {
    font-size: 0.875rem;
    list-style: none;
    padding-left: 0;
    text-transform: uppercase;
}

.footer_main__info_list__email {
    -webkit-user-select: text; /* Safari */
    -ms-user-select: text; /* IE 10 and IE 11 */
    user-select: text; /* Standard syntax */
}

.footer_main__left_info_wrapper {
    width: 40%;
}

.footer_main__black_line {
    border: 1px solid #000;
    border-radius: 20px;
}

.footer_main__black_line__contact {
    border: 3px solid #000;
}

.footer_main__wrapper__contact {
    display: flex;
    flex-direction: column;
}

.footer_main__wrapper__contact_heading::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #000;
    transition: all 200ms linear;
}

.footer_main__wrapper__contact_heading {
    position: relative;
    align-self: flex-start;
    margin-bottom: 21px;
    margin-top: 0;
    display: flex;
    padding-left: 30px;
    font-size: 0.875rem;
    text-transform: uppercase;
    padding-left: 63px;
    color: #000;
}

.footer_main__wrapper__contact_heading:hover::before {
    transform: rotate(45deg);
}

.footer_main__black_line {
    margin-bottom: 40px;
}

.footer_main__border {
    width: 100%;
    border: 2px solid #000;
}

@media (max-width: 1280px) {
    .footer_main__wrapper_info {
        justify-content: space-between;
        gap: 100px;
    }

    .footer_main__wrapper_text {
        font-size: 0.875rem;
    }

    .footer_main__left_info_wrapper {
        width: 35%;
    }

    .footer_main__wrapper_info_right {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .footer_main__wrapper_info_right {
        padding: 20px 0;
        gap: 15px;
    }

    .footer_main__wrapper_text {
        width: 100%;
    }

    .footer_main__wrapper_info {
        flex-direction: column;
        gap: 35px;
    }

    .footer_main__wrapper__contact_heading {
        margin-bottom: 10px;
    }

    .footer_main__left_info_wrapper {
        width: 100%;
    }

    .footer_main__wrapper__contact {
        margin-bottom: 20px;
    }

    .footer_main__info_list {
        margin: 0;
    }
}
