
footer{
    /*background-color: rgb(2, 29, 43);*/
    background-color: rgb(35, 35, 35);
    margin:0;
    padding: 0;
    padding:25px;
    margin-top:35px;
    position: relative;
    font-size: 14px; 
}
footer a{
    font-size: 13px; 
}
#wave {
    position: absolute;
    width: 100%;
    height:143px;
    bottom: 0px;
    left: 0;
    background: url(https://yposts.me/assets/img/wave.png);
    animation: animate 10s linear infinite;
}
#wave::before{
    content: "";
    height: 143px;
    width:100%;
    background: url(https://yposts.me/assets/img/wave.png);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.6;
    animation: animate-reverse 10s linear infinite;
}

#wave::after{
    content: "";
    height: 143px;
    width:100%;
    background: url(https://yposts.me/assets/img/wave.png);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.4;
    animation-delay: -5s;
    animation: animate 20s linear infinite;

}

@keyframes animate {
    0%{
        background-position: 0;
    }
    100%{
        background-position: 1360px;
    }
}
@keyframes animate-reverse {
    0%{
        background-position: 1360px;
    }
    100%{
        background-position: 0px;
    }
}


#display_language_selector {
    border-width:0;
    border-radius: 5px;
    padding:12px 25px;
}
#contacts_section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom:25px;
}
#contacts_section a {
    text-decoration: none;
    margin-left:35px;
    /*color: rgb(0, 140, 230);*/
}
#contacts_section a:hover {
    /*color:white*/
    text-decoration: underline;
}
#site_links_section {
    margin-top: 15px;
}
#site_links_section a {
    display:  block;
    margin-top: 15px;
}
#client_opinion {
    line-height: 1.6em;
    
}

#copyright {
    margin: 0;
    padding: 0;
    /*color:white;*/
    text-align: center;
    height: max-content;
}

footer a:hover {
    /*color:rgb(0, 140, 230);*/
    border-color:rgb(0, 140, 230)
}
#terms_and_conditions {
    text-decoration: none;
    /*color:rgb(0, 140, 230);*/
}
#terms_and_conditions:hover {
    text-decoration: underline;
}

/* for handling scroll to top button  */
#scroll_to_top_button_section {
    text-align:right;
    display:none;
    position:fixed;
    bottom:35px;
    left:90vw;
    z-index:1000;
    text-align:center
}
#scroll_to_top {
    display:inline-block;
    height:40px;
    width:40px;
    background-color:lightgray;
    border-width:0;
    border-radius:25px;
    box-sizing:border-box;
    text-align:center;
    transition: all .5s ease
}
#scroll_to_top:hover {
    cursor:pointer;
    background-color:white;
    box-shadow:0 0 15px 1px darkgray;
}
#scroll_to_top img {
    position:relative;
    top:8px;
    width:30px;
}

#welcome_address_section_wrapper {
    width:100vw;
    height:100vh;
    background-color: rgb(0, 0, 5, 0.775);
    position:fixed;
    top:0; 
    left:0;
    display:none
}
#welcome_address_section {
    box-sizing: border-box;
    text-align: center;
    width:95vw;
    max-width:350px;
    padding:25px;
    border-radius: 10px;
    background-color: white;
    color:dimgray;
    margin:auto;
    margin-top:150px;
    font-size:22px;
    line-height: 1.7em;
}
.darkmode-toggle{
    z-index: 10;
}
@media only screen and (max-width:602px){
    footer{
        font-size: 13px;
    }
    footer a{
        font-size: 12px;
    }
    #contacts_section {
        justify-content: center;
        margin-bottom:35px;
    }
    #contacts_section a {
        margin-left:15px;
    }
    
}