.footer {
    padding: 70px 0 50px;
    background-color: #21409A;

    .container {
        max-width: 100%;
        width: 1440px;
    }

    .echFooter {
        .ftLogo {
            width: 280px;
            height: auto;
            margin: 0 auto;
            margin-bottom: 50px;

            a {
                display: block;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                }
            }
        }

        .footerInn {
            .ftTle {
                color: #F15A29;
                font-size: 28px;
                font-weight: 500;
                font-family: 'Helvetica Neue';
                margin-bottom: 17px;
            }

            .echFtLst {

                &:nth-child(3) {
                    display: flex;
                    align-items: center;

                    p {
                        width: 50%;
                        margin-bottom: 0;
                        position: relative;

                        &:first-child {
                            &::after {
                                content: "";
                                position: absolute;
                                top: 50%;
                                right: 12px;
                                transform: translateY(-50%);
                                width: 1px;
                                height: 18px;
                                background-color: #fff;
                            }
                        }
                    }
                }

                &:not(:last-child) {
                    margin-bottom: 22px;
                }

                p {
                    color: #fff;

                    span {
                        color: #fff;
                    }

                    a {
                        color: #fff;
                    }
                }
            }
        }

        &.ftAddress {
            position: relative;

            &::after {
                content: "";
                position: absolute;
                top: 50%;
                right: 100px;
                transform: translateY(-50%);
                width: 1px;
                height: 100%;
                background-color: #ffffff65;
            }

            .footerInn {
                width: 78%;
            }

            .echFtLst {
                &:first-child {
                    margin-bottom: 30px;

                    p {
                        span {
                            font-size: 20px;
                            font-weight: 700;
                            font-family: 'Helvetica Neue';
                        }
                    }
                }
            }
        }

        &.ftfile {
            .footerInn {
                ul {
                    width: 70%;

                    li {
                        &:not(:last-child) {
                            margin-bottom: 20px;
                        }

                        a {
                            position: relative;
                            display: block;
                            width: 100%;
                            height: 100%;
                            padding-right: 40px;
                            color: #fff;

                            &::after {
                                content: '';
                                position: absolute;
                                right: 0;
                                background-image: url(../images/home/DownloadSimple.png);
                                background-repeat: no-repeat;
                                background-size: 100% 100%;
                                width: 23px;
                                height: 23px;
                                top: 50%;
                                transform: translateY(-50%);
                            }

                        }
                    }
                }
            }
        }
    }
}

/* responsivve */
@media(max-width: 1440px) {
    .footer {
        .echFooter {
            .ftLogo {
                width: 254px;
            }
        }
    }
}

@media(max-width: 1366px) {
    .footer {
        .echFooter {
            .ftLogo {
                width: 230px;
            }

            .footerInn {
                .ftTle {
                    font-size: 26px;
                }
            }

            &.ftAddress {
                .echFtLst {
                    &:first-child {
                        p {
                            span {
                                font-size: 16px;
                            }
                        }
                    }
                }
            }
        }
    }
}

@media (max-width: 1280px) {}

@media (max-width: 1199px) {
    .footer {
        .echFooter {
            .footerInn {
                .ftTle {
                    font-size: 20px;
                }

                .echFtLst {
                    &:nth-child(3) {
                        p {
                            &:first-child {
                                &::after {
                                    right: 0;
                                }
                            }
                        }
                    }

                    &:not(:last-child) {
                        gap: 15px;
                    }
                }
            }
        }
    }

}

@media(max-width: 991px) {
    .footer {
        .echFooter {
            .footerInn {
                .echFtLst {
                    &:not(:last-child) {
                        gap: 10px;
                        flex-direction: column;
                        justify-content: flex-start;
                        align-items: flex-start;
                        margin-bottom: 12px;
                    }

                    &:nth-child(3) {
                        p {
                            &:first-child {
                                &::after {
                                    display: none;
                                }
                            }
                        }
                    }
                }
            }

            &.ftAddress {
                width: 55%;

                &::after {
                    display: none;
                }

                .footerInn {
                    width: 100%;
                    border-right: 1px solid #ffffff65;
                    padding-right: 10px;
                }

                .echFtLst {
                    &:first-child {
                        margin-bottom: 12px;
                    }
                }
            }

            &.ftfile {
                width: 45%;
            }
        }
    }
}

@media(max-width: 767px) {
    .footer {
        .echFooter {
            &.ftAddress {
                width: 100%;

                &::after {
                    display: none;
                }

                .footerInn {
                    border: none;
                }
            }

            &.ftfile {
                width: 100%;
                margin-top: 20px;
                /* .footerInn {
                    ul {
                        width: 100%;
                    }
                } */
            }
        }
    }
}

@media (max-width: 575px) {
    .footer {
        .echFooter {
            .ftLogo {
                width: 200px;
            }
        }
    }
}

@media (max-width: 480px) {
    .footer {
        .echFooter {
            &.ftfile {
                .footerInn {
                    ul {
                        width: 100%;
                    }
                }
            }

            &.ftAddress {
                .echFtLst {
                    &:first-child {
                        margin-bottom: 15px;
                    }
                }
            }
        }
    }
}