@import url('https://fonts.googleapis.com/css?family=Raleway');
@import url('https://fonts.googleapis.com/css?family=Martel');

body,html {
    padding: 0;
    margin: 0;
    font-family:'Poppins', sans-serif;
    background-color: #fff;
    height: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}
a{text-decoration: none}
button{cursor: pointer;transition-duration: .25s}
input:focus{outline: none}
button:focus{outline: none}
select:focus{outline: none}
textarea:focus{outline: none}
textarea{font-family:'Poppins', sans-serif;font-size: 16px}
.horiz_align {
    position: relative;
    margin: 0px;
    top: 50%;
    webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.cover {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background: rgba(0,0,50,.5);
}
.display_block {display: block;}

.footer {
    position: relative;
    width: calc(100vw - 100px);
    padding: 50px;
    background: #333;
    text-align: left;
}
.footer td span {
    font-weight: normal;
    font-size: 19px;
    color: #C6B45E;
}
.footer td {
    font-family: 'Martel', serif;
    color: rgba(255,255,255,.7);
}
.footer i {
    font-size: 19px;
    font-weight: bold;
    text-decoration: #fff underline solid;
    color: #fff;
}
@media screen and (min-width: 0px) and (max-width:651px) {
    .footer {
        //padding: 50px;
    }
    .footer td{
        position: relative;
        display: block;
    }
}