.Footer {
    display: flex;
    flex-direction: column;
}

.Footer .MobileApp {
    width: 100%;
    padding: 100px 210px 0 210px;
    background: #F9F9F9;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.Footer .MobileApp_Screen {
    width: 600px;
    height: 600px;
}

.Footer .MobileApp_Info,
.Footer .MobileApp_Additional {
    width: 100%;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.Footer .MobileApp_Info h3 {
    font-size: 30px;
    font-weight: 500;
    color: #262626;
}

.Footer .MobileApp_Info p {
    font-size: 16px;
    font-weight: 500;
    color: #727272;
    line-height: 24px;
}

.Footer .MobileApp_AdditionalBox {
    display: flex;
    align-items: center;
    gap: 20px;
}

.Footer .MobileApp_AdditionalBox img {
    width: 160px;
    height: 160px;
}

.Footer .MobileApp_AdditionalBox div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.Footer .MobileApp_AdditionalBox h3 {
    font-size: 24px;
    color: #262626;
    font-weight: 500;
}

.Footer .MobileApp_AdditionalBox p {
    font-size: 14px;
    color: #262626;
    font-weight: 400;
    line-height: 22px;
}

.Footer .FooterContent {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 210px;
}

.FooterLinks {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.FooterLinks div {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.FooterLinks div ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
}

.FooterLinks div p {
    font-size: 16px;
    font-weight: 400;
    color: #262626;
}

.FooterLinks div ul li {
    font-size: 14px;
    font-weight: 400;
    color: #727272;
}

.FooterLegalInfo {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.FooterLegalInfo div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.FooterLegalInfo div p {
    font-size: 14px;
    color: #262626;
}

.FooterContacts {
    padding-bottom: 20px;
    border-bottom: 1px solid #E6E6E6;
}

.FooterContacts p,
.FooterLegal p {
    padding-right: 20px;
    border-right: 1px solid #E6E6E6;
}

.FooterContacts p:last-child,
.FooterLegal p:last-child {
    border: none;
    padding: 0;
}

.FooterCopyright p {
    color: #727272 !important;
}

@media (max-width: 1200px) {

    .Footer .MobileApp,
    .Footer .FooterContent {
        padding-left: 40px;
        padding-right: 40px;
    }

    .Footer .MobileApp_Screen {
        width: 400px;
        height: auto;
    }
}

@media (max-width: 992px) {
    .Footer .MobileApp {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 60px;
    }

    .Footer .MobileApp_Info,
    .Footer .MobileApp_Additional {
        padding-top: 40px;
        align-items: center;
    }

    .FooterLinks {
        flex-wrap: wrap;
        gap: 30px;
    }

    .FooterLinks div {
        min-width: 150px;
    }
}

@media (max-width: 576px) {

    .Footer .MobileApp,
    .Footer .FooterContent {
        padding-left: 20px;
        padding-right: 20px;
    }

    .Footer .MobileApp_Screen {
        width: 100%;
        max-width: 300px;
    }

    .Footer .MobileApp_AdditionalBox {
        flex-direction: column;
        text-align: center;
    }

    .FooterLegalInfo div {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .FooterContacts p,
    .FooterLegal p {
        border-right: none;
        padding-right: 0;
    }
}