.footer {
    padding: 55px 150px;
    background-color: #151414;
}

.footer h3 {
    color: #FFFBD9;
}

.footer-first-layer {
    display: flex;
    padding-bottom: 45px;
    border-bottom: 1px solid #373636;
}

.footer-info-detail {
    width: 33%;
    display: flex;
    align-items: center;
}

.footer-info-detail-left {
    color: #ff2222;
    margin-bottom: 5px;
    margin-right: 15px;
    font-size: 35px;
}

.footer-info-title {
    color: #FFFBD9;
    margin-bottom: 5px;
}

.footer-info-desc {
    font-size: 14px;
    color: #757575;
}

.footer-second-layer {
    display: flex;
    margin-top: 50px;
}

.footer-second-layer-item:first-child {
    width: 60%;
    display: flex;
}

.footer-second-layer-title {
}

.footer-second-layer-title .mt-footer-logo {
    border-radius: 50%;
    width: 150px;
}

.footer-second-layer-content1 {
    font-size: 14px;
    color: #757575;
    margin-top: 5px;
    margin-left: 20px;
}

.footer-second-layer-item:first-child .footer-hr-1 {
    margin-bottom: 20px;
    width: 100%;
    height: 1px;
    background-color: red;
}

.middle-item {
    width: 15%;
    margin-left: 50px;
}

.middle-item .footer-second-layer-title h3 {
    margin-bottom: 8px;
}

.footer-second-layer-item:last-child {
    width: 25%;
    margin-left: 50px;
}

.terms-and-conditions-content {
    margin-top: 7px;
    margin-bottom: 17px;
}

.terms-and-conditions-content a {
    color: #757575;
    text-decoration: none;
}

.footer-second-layer-content2 {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

.footer-second-layer-content2 a {
    margin-bottom: 4px;
    color: #757575;
    text-decoration: none;
}

.footer-hr-2 {
    width: 50px;
    height: 3px;
    background-color: red;
}

.follow-us-h3 {
    margin-bottom: 20px;
}

.contact-us-images {
    display: flex;
    flex-wrap: nowrap;
}

.contact-us-images img {
    width: 35px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 25px;
}

.footer-third-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    color: #757575;
    background-color: #333333;
}

.footer-third-layer a {
    text-decoration: none;
    color: red;
}

@media (max-width: 1200px) {
    .footer {
        padding: 55px 90px;
    }
}

@media (max-width: 900px) {
    .footer {
        padding: 55px 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 55px 20px;
    }

    .footer-first-layer {
        flex-direction: column;
    }

    .footer-second-layer {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-second-layer-item:first-child {
        width: 100%;
    }

    .footer-info-detail {
        margin-top: 15px;
        width: 100%;
    }

    .footer-info-detail:first-child {
        margin-top: 0;
    }

    .middle-item {
        display: none;
    }

    .footer-second-layer-item:last-child {
        display: flex;
        flex-direction: column;
        align-items: start;
        justify-content: start;
        margin-left: 0;
        width: 100%;
    }
    
    .terms-and-conditions-content a {
        margin-left: 20px;
    }

    .footer-second-layer-item:last-child h3 {
        margin-top: 19px;
        margin-left: 20px;
    }

    .contact-us-images {
        margin-left: 40px;
    }

    .footer-third-layer {
        display: none;
    }
}