/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Footer */
.footer {
    padding: 1px;
    background: #1a1a1a;
    height: auto;
    color: #fff;
    padding-top: 20px;
    /* padding: 60px 0 20px; */
}

.footer__cols {
    display: flex;
    height: 68vh;
    justify-content: space-between;
    
    gap: 40px;
    flex-wrap: wrap;
    /* background-color: azure; */
}

.footer__col {
    flex: 1;
    min-width: 250px;
}

.footer__col img {
    width: 180px;
    margin-bottom: 15px;
}

.footer__text {
    color: #ccc;
    line-height: 1.3;
    font-size: 15px;
}
.footer__text:hover{
    color: red;
}

/* Headings */
.footer__heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    
}

.footer__heading::after {
    content: "";
    width: 50px;
    height: 2px;
    background:red;
    position: absolute;
    left: 0;
    bottom: -8px;
}
.footer__divider{
    margin-bottom: 10px;
}
.last_section{
    bottom: 10%;
   
}
/* Lists */
.footer__list {
    list-style: none;
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer__list a:hover {
    color: red;
    padding-left: 5px;
}

/* Contact Section */
.contact-section {
    flex: 1;
    min-width: 280px;
	margin-right: 50px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.icon,
.icon1 {
    width: 50px;
    height: 50px;
    background: red;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.content h3 {
    margin-bottom: 5px;
    font-size: 18px;
}
.contact-item .content a{
    color: #ccc;
}
.content p,
.content a {
    color: #ccc;
    line-height: 1.6;
    text-decoration: none;
}
/* .content a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
} */
.content p:hover{
    color:red;
}
.content a:hover {
    text-decoration: underline;
    color: red;
}

/* Divider */
.footer__divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 40px 0 20px;
}

/* Bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    
}
.footer__bottom p{
    font-size: 15px;
    color: white;
    margin-left: 50px;
}

.footer__copy {
    color: #ccc;
    font-size: 14px;
}

.footer__copy a {
    color: #ff6b00;
    text-decoration: none;
}

/* Social Icons */
.footer__social {
    list-style: none;
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: #2b2b2b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: red;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .footer {
        text-align: center;
    }

    .footer__cols {
        flex-direction: column;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer__bottom {
        flex-direction: column;
    }

    .footer__social {
        justify-content: center;
    }
}

/* --------------------------------------------------- */

/* ================= TABLET ================= */
@media (max-width: 992px) {

    .footer__cols {
        flex-direction: column;
        height: auto;
        gap: 30px;
    }

    .contact-section {
        margin-right: 0;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer__bottom p {
        margin-left: 0;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .footer {
        padding: 40px 20px;
    }

    .footer__cols {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__col {
        width: 100%;
        min-width: unset;
    }

    .footer__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon,
    .icon1 {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {

    .footer__heading {
        font-size: 16px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__list li {
        margin-bottom: 8px;
    }

    .social-btn {
        width: 35px;
        height: 35px;
    }

    .footer__bottom p {
        font-size: 13px;
    }
}