@import url('https://fonts.googleapis.com/css?family=Quicksand');
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
}

.wrapper {
    height: 100%;
    font-family: 'Quicksand', sans-serif;
    line-height: 1.5;
    word-spacing: 4px;
    letter-spacing: 1px;
    margin: 0;
}

.fixed-bg {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    height: 100%;
    width: 100%;
    color: white;
    text-align: center;
    display: table;
}

.fixed-bg h1 {
    font-size: 100px;
    color: #CCA42F;
    display: table-cell;
    vertical-align: middle;
    font-weight: 100px;
    text-shadow: 0 0 0 5px black;
}

.scroll-bg {
    background-color: #0f0f0a;
    padding: 10px 70px;
    color: #676767;
}

.hvr-grow {
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale;
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.02);
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    /* Black see-through */
    color: #f1f1f1;
    width: 97%;
    transition: .5s ease;
    opacity: 0;
    color: white;
    font-size: 20px;
    padding: 20px;
    text-align: center;
    margin: 0px 0px 6px 8.9px;
}

td:hover .overlay {
    opacity: 1;
}


/* first section */

.bg-1 {
    background-image: url('Exterior/ex14.jpg');
}