/* FOOTER START */

.footer-rast-top-title img{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #333333;
    padding: 0px 10px;
    position: static;
    z-index: 99;
    bottom: 0;
    left: 0;
}

.footer-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 1200px;
    padding: 50px 0px;
    gap: 20px;
}

.footer-rast {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
    width: 400px;
}

.footer-rast-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    text-align: justify;
}

.footer-rast-top-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.footer-rast-top-desc {
    color: #C3C5CB;
    font-size: 14px;
}

.footer-vasat {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    width: 300px;
}

.footer-vasat-title {
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    width: 100%;
}

.footer-vasat-links {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.footer-vasat-links-phone,
.footer-vasat-links-address,
.footer-vasat-links-email {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    color: #C3C5CB;
    font-size: 14px;
}

.footer-chap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    width: 300px;
}

.footer-chap-title {
    color: white;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.footer-chap-links {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 25px;
}

.footer-chap-links a {
    text-decoration: none;
    color: #C3C5CB;
    transition: all .5s;
}

.footer-chap-links a:hover {
    color: white;
}

/* FOOTER END */
/* COPYRIGHT START */

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
    color: gray;
    padding: 7px 10px 10px 10px;
    font-size: 14px;
    text-align: center;
}

.copyright p span {
    color: black;
}
.copyright p a{
    text-decoration: none;
    color: red;
}

/* COPYRIGHT END */





































/* RESPONSIVE START */

@media screen and (max-width:1080px) {

    .footer-container{
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
    }
    .footer-rast,
    .footer-vasat,
    .footer-chap{
        width: 100%;
        gap: 20px;
    }

    .copyright{
        font-size: 12px;
    }
    
}

/* RESPONSIVE END */