/* footer css */
#footer .address{
    padding: 60px ;
    width: 100%;
    background: linear-gradient(rgba(72, 146, 251, 0.6), rgba(9, 112, 255, 0.6));
    position: relative;
    color: white;
    box-sizing: border-box;
    padding-bottom: 30px;
    display: flex;
    justify-content:space-around;
}

#footer .address h1{
    font-size: 34px;
}

#footer .address p,a{
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

#footer .address .icon{
    font-size: 16px;
    margin-left: 30px;
}


#footer .address::before {
    top: 0;
    background: url(../image/overlay-top.png) top center no-repeat;
    background-size: contain;
    position: absolute;
    content: "";
    width: 100%;
    height: 85px;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
}

#footer .new-letter{

}

#footer .new-letter input{
    font-size: 16px;
    padding: 2px;
    width: 20vw;
}

#footer .new-letter button{
    font-size: 16px;
    padding: 2px;
    background-color: rgb(64,112,165);
    color: white;
}

#footer .description{
    border-top: solid;
    position: relative;
    display: flex;
    background-color: rgb(29, 22, 48);
    justify-content: space-between;
    padding: 0 60px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
}

#footer .description a{
    font-size: 16px;
    color: white;
}

@media only screen and (max-width: 600px) {
    #footer .address{
        width: 100%;
        background-color: rgb(29, 22, 48);
        position: relative;
        color: white;
        box-sizing: border-box;
        display: flex;
        justify-content:space-around;
    }
    #footer .address .get-in-touch h1{
        font-size: 12px;
    }
    #footer .address .get-in-touch p{
        font-size: 10px;
    }
    #footer .address .icon {
        font-size: 10px;
        margin-left: 1px;
    }
    #footer .address{
        padding: 10px;
        width: 100%;
        background-color: rgb(29, 22, 48);
        position: relative;
        color: white;
        padding-bottom: 0px;
        float: left;
    }
    #footer .new-letter h1{
        font-size: 12px;
    }
    #footer .new-letter input{
        font-size: 10px;
    }
    #footer .new-letter button{
        font-size: 10px;
    }
    #footer .description {
        padding: 0 5px;
    }
    #footer .description a,p{
        font-size: 10px;
    }
}