/* footer */

.footer{/* margin-top: 3.5em; */}
.footer,.copyright{
    padding: 40px 0 0 40px;
    background: var(--main-color-1);
}
.footer__layout-wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.footer__layout{
    width: 25%;
}
.footer__title{
    color: #fff;
}
.footer__ul{}
.footer__items{
}
.footer__items-link{
    color: var(--main-color-3);
    line-height: 1.5;
}
.copyright{
    padding-bottom: 40px;
    box-shadow: 2px 2px 5px 2px rgb(0 0 0 / 13%);
    color: #fff;
}
.copyright-span{
    margin-right: 40px;
}
.copyright__link{
    color: #fff;
    margin-right: 40px;
}
@media only screen and (max-width : 1200px) {
    
}

@media only screen and (max-width : 1080px) {
       .footer__layout{
    width: 50%;
    margin-bottom: 20px;
}
    .footer{
        padding:40px 20px;
    }
}

@media only screen and (max-width : 768px) {
.copyright-span{
    display:block;
    text-align:center;
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
}.copyright__link{
    width:50%;
    margin-right:0;
    margin-bottom: 10px;
}
    .copyright{
        display:flex;
        flex-wrap:wrap;
        padding: 20px;
    }
}

@media only screen and (max-width : 480px) {
   .copyright-span{
    margin-bottom: 15px;
    }
    .copyright__link, .footer__layout{
        width:100%;
    }
   
}

/* footer */