.app-footer {
    background-color: #f3f3f3;
    padding-top: 10px;
    font-family: 'PT Sans';
    color: #050100;
}

.app-footer .container {
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    background: #FFFFFF;
    border-radius: 8px 8px 0px 0px;
}

.app-footer .app-footer-t{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.app-footer-t-1{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}
.app-footer-t-1 .logo{
    width: 219px;
    height: 29.13px;
    background-size: contain;
}
.app-footer-t-1 .buttons{
    display: flex;
    flex-direction: row;
    gap: 16px;
}
.app-footer-t-2{
    height: 3px;
    background: #EBEBEB;
    width: 100%;
}
.app-footer-t-3{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    height: 16px;
}
.app-footer-t-3 .app-footer-t-3-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    height: 16px;
}
.app-footer-t-3 .app-footer-t-3-1 a {
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.01em;
    opacity: 0.6;
    text-decoration: none;
    color: #050100;
}
.app-footer-t-3 .app-footer-t-3-2{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    height: 16px;
}
.app-footer-t-3 .app-footer-t-3-2 div{
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.01em;
    opacity: 0.6;
}
.app-footer-b{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 12px;
}
.app-footer-b a{
    color: #050100;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.01em;
    text-decoration-line: underline;
    color: #050100;
    opacity: 0.6;
}

/* tablet  */
@media (min-width: 766px) and (max-width: 1455px) {
    .app-footer .container {
        gap: 14px;
        width: 768px;
        margin: 0 auto;
    }
    .app-footer-t-3 {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        height: 58px;
    }
}

@media (max-width: 765px) {
    .app-footer .container {
        width: 375px;
        margin: 0 auto;
        gap: 8px;
    }
    .app-footer-t-1 {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        height: 95px;
    }
    .app-footer-t-3 {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 220px;
    }
    .app-footer-t-3 .app-footer-t-3-1 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        height: 125px;
        border-bottom: 3px solid #EBEBEB;
        width: 100%;
    }
    .app-footer-t-3 .app-footer-t-3-2 {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        height: 100px;
        padding-top: 18px;
    }
}


