
.button {
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    line-height: 54px;
    background: #000;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 1.6px;
    padding: 0 50px;
    box-sizing: border-box;
    border: 3px solid transparent;
}
.button.pink {
    background-color: #000;
    color: #fff;
}
.button.pinkBorder {
    border-color: #000;
    color: #000;
    background: none;
}
.uppercase {
    text-transform: uppercase;
}
/* home banner */
.homeOverlay {
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    display: table;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
.homeOverlay .verticalAlign {
    width: 100%;
    height: 100%;
    display: table-cell;
    vertical-align: middle;
}
.homeOverlay .homeBanner {
    margin: 0 auto;
    width: 600px;
    border: 1px solid #000;
    box-shadow: rgba(0, 0, 0, 0.4);
    position: relative;
}
.homeOverlay .theImg {
    height: 350px;
    background: #ccc no-repeat center center / cover;
}
.homeOverlay .theText {
    text-align: center;
    padding: 20px;
    background: #fff;
    color: #54544b;
}
.homeOverlay .theText p:last-child {
    margin-bottom: 0;
}
.homeOverlay .theText h1 {
    margin-top: 0;
    font-family: "FenetexLight Regular", Arial, sans-serif;
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    color: #333;
}
.homeOverlay .theText a {
    color: #000;
    text-decoration: underline;
}
.homeOverlay .theText a.button {
    text-decoration: none;
    margin: 10px 0 0 0;
    color: #fff;
}
.homeOverlay .close {
    position: absolute;
    right: -15px;
    top: -15px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    box-sizing: border-box;
    background: #000;
    color: #fff;
    line-height: 25px;
    text-align: center;
    cursor: pointer;
}
.homeOverlay .close:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background: #fff;
    left: 7px;
    top: 14px;
    transform: rotate(45deg);
}
.homeOverlay .close:after {
    content: '';
    position: absolute;
    width: 15px;
    height: 1px;
    background: #fff;
    left: 7px;
    top: 14px;
    transform: rotate(-45deg);
}
@media screen and (min-width:0px) and (max-width:767px) {
    
    .button {
        font-size: 11px;
    }
    .homeOverlay .homeBanner {
        width: 280px;
    }
    .homeOverlay .theImg {
        height: 150px;
    }
    .homeOverlay .theText h1 {
        font-size: 20px;
    }
    .homeOverlay .theText {
        font-size: 14px;
    }
}