.landing_footer {
    position: relative;
    background-color: #E8EEFF;
}
.landing_footer .landing_wrap {
    display: flex;
    flex-direction: column;
}
.landing_footer_contacts {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    width: 100%;
}
.landing_footer_contacts > div:first-of-type {
    display: flex;
    flex-direction: column;
}
.landing_footer_contacts > div:first-of-type > span {
    font-size: 20px;
    font-weight: 300;
    margin-top: 24px;
    max-width: 510px;
    color: #848A9C;
}
.landing_footer_contacts > div:first-of-type ul {
    padding: 0;
    margin: 48px 0 0 0;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 16px;
    list-style: none;
    color: black;
}
.landing_footer_contacts a {
    color: black;
    transition: 300ms;
}
.landing_footer_contacts a:hover {
    color: #72C9FA;
}
.landing_footer_contacts > div:last-of-type {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.landing_footer_contacts > div:last-of-type > div {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}
.landing_footer_contacts > div:last-of-type span {
    font-size: 20px;
}
.landing_footer_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    width: 100%;
}
.landing_footer_info span {
    font-size: 20px;
}
.landing_footer_info div {
    display: flex;
    flex-direction: row;
    gap: 24px;
}
@media (max-width: 1224px) {
    .landing_footer .landing_wrap {
        padding: 20px 20px;
        gap: 22px;
    }
    .landing_footer_contacts {
        flex-direction: column;
    }
    .landing_footer_info {
        flex-direction: column-reverse;
    }
}
@media (min-width: 1224px) {
    .landing_footer .landing_wrap {
        padding: 60px 120px;
        gap: 92px;
    }
    .landing_footer_contacts {
        flex-direction: row;
    }
    .landing_footer_info {
        flex-direction: row;
    }
    .landing_footer_contacts > div:first-of-type {
        max-width: 50%;
    }
}
@media (max-width: 740px) {
    .landing_footer_contacts > div {
        align-items: center;
        text-align: center;
    }
    .landing_footer_contacts > div > ul {
        justify-content: center;
        text-align: center;
    }
    .landing_footer_info {
        text-align: center;
        align-items: center;
    }
}
