html, body {
    overflow-x:hidden;
}
body {
    background-color:black;
    margin:0;
}
h1, h2, h3, h4, h5, h6, p {
    color:white;
}
@media (max-width:991px){
    h1 {
        padding-top:80px;
    }
}
.pageTitle {
    font-size:50px;
    font-family: 'Dancing Script', cursive;
    padding-top:20px;
}
@media (max-width:991px){
    .pageTitle {
        padding-top:0;
    }
}
nav {
    width:100%;
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:center;
    text-align:center;
    background:transparent;
    /*padding-top:10px;*/
    /*padding-bottom:10px;*/
}
nav a {
    color:white;
    margin:5px;
    font-size:27px;
    text-decoration:none;
}
.navlink {
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
    padding-left:10px;
    padding-right:10px;
    padding-top:5px;
    padding-bottom:5px;
}
.navlink:hover {
    background:#E21E79;
}
.header {
    background-color:white;
    width:100%;
    position:relative;
}
.header img {
    object-fit:cover;
    object-position:center center;
    width: 95%;
    height: 95%;
}
.headerSocial {
    position:absolute;
    bottom:10px;
    right: 20px;
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:space-between;
    width:190px;
}
.headerTel {
    position:absolute;
    top:10px;
    right:20px;
    font-size:35px;
    color:black;
    text-decoration:none;
}
.headerSocial a {
    width:40px;
    height:40px;
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:center;
    text-align:center;
    text-decoration:none;
}
.headerSocial a:first-child {
    background:#4267b2;
}
.headerSocial a:nth-child(2) {
    background:#d34836;
}
.headerSocial a:nth-child(3) {
    background:#d32323;
}
.headerSocial a:nth-child(4) {
    background:#C13584;
}
.headerSocial i {
    font-size:25px;
    color:white;
}
.mobileSocial {
    align-items:center;
    align-content:center;
    justify-content:space-between;
    min-width:190px;
    max-width:300px;
    width:auto;
    margin:20px auto 20px auto;
    display:none;
}
.mobileSocial a {
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:center;
    text-align:center;
    text-decoration:none;
}
.mobileSocial a:first-child {
    background:#4267b2;
}
.mobileSocial a:nth-child(2) {
    background:#d34836;
}
.mobileSocial a:nth-child(3) {
    background:#d32323;
}
.mobileSocial a:nth-child(4) {
    background:#C13584;
}
.mobileSocial i {
    font-size:35px;
    color:white;
}
@media (min-width:992px){
    .mobileSocialRow {
        display:none !important;
    }
}
@media (max-width:991px){
    .mobileSocial {
        display:flex;
    }
}
/** Mobile Nav **/
.mobileNav {
    display:none;
}
.mobileMenu {
    display:none;
}
@media (max-width:991px){
    nav, .header {
        display:none;
    }
    .mobileNav {
        display:flex;
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:80px;
        background:white;
        align-items:center;
        align-content:center;
        justify-content:center;
        z-index:9990;
    }
    .mobileNavContainer {
        display:flex;
        align-items:center;
        align-content:center;
        justify-content:space-between;
        width:95%;
        margin:auto;
    }
    .mobileNavBtn {
        width:45px;
        height:30px;
        display:flex;
        align-items:center;
        align-content:center;
        justify-content:space-between;
        flex-direction:column;
    }
    .mobileNavBtn span {
        height:1px;
        width:100%;
        background-color:black;
    }
    .mobileMenu {
        width:0px;
        height:100%;
        position:fixed;
        display:block;
        opacity:0;
        z-index:0;
        top:0;
        right:0;
        background:black;
        transition:all .25s linear;
    }
    .mobileMenu.open {
        width:100%;
        z-index:9991;
        opacity:1;
    }
    .mobileNavClose {
        position:absolute;
        top:20px;
        right:20px;
        color:white;
        font-size:55px !important;
        cursor:pointer;
    }
    .mobileMenuContainer {
        width:95%;
        margin:50px auto;
        height: auto;
        min-height: calc(100% - 100px);
        display:flex;
        align-items:center;
        align-content:center;
        justify-content:center;
        flex-direction:column;
        text-align:center;
    }
    .mobileMenuContainer a {
        color:white;
        font-family: 'Dancing Script', cursive;
        font-size:35px;
        text-decoration:none;
        margin-top:10px;
        margin-bottom: 10px;
    }
    .homeHeaderContainer {
        padding-top:100px;
    }
}
@media (min-width:700px) and (max-width:991px){
    .mobileNavContainer img {
        height:60px;
        margin-top:10px;
        width: auto;
    }
}
@media (max-width:699px){
    .mobileNavContainer img {
        height:auto;
        max-height:50px;
        max-width:calc(100% - 55px);
        width:auto;
    }
}

.container {
    width:100%;
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:center;
    flex-direction:column;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-image: url('../img/stripedbackground.jpg');
    height:100%;
}
@media (min-width:992px){
    .container {
        margin-top:-75px;
        padding-top:80px;
    }
}
.row {
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:space-between;
    width:95%;
    max-width:1300px;
    flex-wrap:wrap;
}
.full {
    width:100%;
}
.twoThirds {
    width: calc((100% / 3) * 2);
}
.third {
    width: calc(100%/3);
}
.half {
    width:50%;
}
@media (max-width:991px){
    .third {
        width:50%;
    }
}
@media (max-width:767px){
    .row {
        flex-direction:column;
    }
    .third, .twoThirds, .half {
        width:100%;
    }
}
.homeHeader {
    width:100%;
    height:400px;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
}
#slides {
    height:400px;
    position:relative;
    padding:0;
    margin:0;
}
@media (max-width:450px){
    #slides {
        height: 300px;
    }
}
.sliderImage {
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    opacity:0;
    z-index:1;
}
.sliderImage.showing {
    opacity:1;
    z-index:2;
}
.leftArrow, .rightArrow {
    position:absolute;
    top:50%;
    background-color:#E21E79;
    color:white;
    font-size:45px !important;
    cursor:pointer;
    transform:translate(0, -50%);
    z-index:5;
}
.leftArrow {
    left:0;
}
.rightArrow {
    right:0;
}
.homeLinksRow .third:nth-child(2) {
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:center;
}
.homeLinksRow .third:nth-child(3) {
    display:flex;
    align-items:center;
    align-content:center;
    justify-content:flex-end;
}
.homeImageLink {
    position:relative;
}
.homeImage {
    border:10px solid white;
}
.homeImageLink h4 {
    position:absolute;
    bottom:0px;
    left:15px;
    color:white;
    text-transform:uppercase;
}
@media (max-width:991px){
    .homeImageLink {
        width:100%;
        margin-bottom:20px;
    }
    .homeLinksRow .third:nth-child(1) {
        display:flex;
        align-items:center;
        align-content:center;
        justify-content:center;
    }
    .homeLinksRow .third:nth-child(3) {
        justify-content:center;
    }
}
@media (min-width:768px) and (max-width:991px) {
    .homeImage {
        width:92%;
        margin: 0 auto;
        height:350px;
    }
}
@media (max-width:767px){
    .homeImage {
        width:98%;
        margin: 10px auto;
        height: 370px;
    }
}
.nikiheadshot {
    width: 100%;
    max-width: 300px;
    text-align: center;
    height: auto;
}
.textAlign {
    text-align:center;
}
.quotes{
    font-family: 'Dancing Script', cursive;
    font-size: 30px;
}
.footer {
    padding-top:100px;
}
.footer a {
    color:#E21E79;
    text-decoration:none;
    font-size:20px;
}
