/* FOOTER START */

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #17234f;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    padding: 50px 10px 0 10px;
    width: 1200px;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.footer-top-rast {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 550px;
}

.footer-top-rast h3 {
    color: white;
}

.footer-top-rast h3 span {
    color: red;
}

.footer-top-rast p {
    color: whitesmoke;
    font-size: 13px;
    text-align: justify;
}

.footer-top-chap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    color: white;
    width: 550px;
}

.footer-top-chap-namad {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.footer-top-chap-namad img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 140px;
    padding: 20px;
    border-radius: 10px;
    background-color: white;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
    padding: 20px 0;
    border-top: 2px solid #1eac7a;
}

.footer-bottom #copyright {
    color: white;
    font-size: 14px;
}

.footer-bottom #tajdesign {
    color: white;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-bottom #tajdesign a {
    text-decoration: none;
    color: red;
}

/* FOOTER END */








/* RESPONSIVE START */

@media screen and (max-width:580px) {

    .footer-container{
        width: 100%;
    }

    .footer-top{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-top-rast,
    .footer-top-chap{
        width: 100%;
    }

    .footer-top-chap-namad{
        display: grid;
        grid-template-columns: repeat(1,auto);
        align-items: center;
        justify-content: center;
    }

    .footer-bottom{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
}

@media screen and (min-width:581px) and (max-width:1140px) {

    .footer-container{
        width: 100%;
    }

    .footer-top{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-top-rast,
    .footer-top-chap{
        width: 100%;
    }
    
}

/* RESPONSIVE END */