.foot-wave {
    width: 100%;
    height: auto;
}
.foot-container {
    width: 100%;
    margin-top: -5px;
    background-color: var(--theme);
    padding: 25px;
}

.foot-sn {
    text-align: center;
    width: 100%;
}

.foot-sn h2 {
    font-size: 25px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.foot-sn-line {
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-sn-line a {
    transition: all 0.5s;
    padding: 10px;
}

.foot-sn-line a img {
    transition: all 0.5s;
    width: 25px;
    height: auto;
    cursor: pointer;
    opacity: 0.5;
}

.foot-sn-line a:hover {
    padding: 5px;
}

.foot-sn-line a:hover img {
    width: 35px;
    height: auto;
    cursor: pointer;
    opacity: 1;
}

.foot-copyright {
    color: white;
    font-weight: bold;
    text-align: center;
    display: block;
    margin-top: 35px;
    width: 100%;
}

.foot-contact-us {
    display: flex;
    justify-content: center;
    align-items: center;
}

.foot-contact-us .cus-25, .foot-descript-us {
    text-align: center;
    display: inline-block;
    width: 25%;
    margin: 0%;
    padding: 25px;
    box-sizing: border-box;
    width: calc(25% - 50px);
}

.foot-descript-us {
    width: 50%;
}

.foot-contact-us div img  {
    width: 50px;
    height: auto;
}

.foot-contact-us div h2, .foot-descript-us h2 { 
    font-weight: bold;
    font-size: 25px;
}

.foot-descript-us h2 a { 
    font-size: 25px;
}

.foot-contact-us div h2, .foot-contact-us div p, .foot-contact-us div a  {
    color: white;
}

.foot-contact-us div a, .foot-descript-us a  {
    color: white;
    text-decoration: underline;
}

@media only screen and (max-width: 1000px) {
    .foot-contact-us .cus-25 {
        width: calc(50% - 50px);
    }
}

@media only screen and (max-width: 750px) {
    .foot-contact-us {
        text-align: center;
        display: inline-block;
        justify-content: auto;
        align-items: auto;
    }
}

@media only screen and (max-width: 560px) {
    .foot-contact-us .cus-25 {
        width: calc(100% - 50px);
    }

    .foot-descript-us {
        width: 100%;
    }
}