/* ---------------------------
SCREEN STYLE CSS - RWD
--------------------------- */

/*START: NAV STYLES*/





/*START: GENERAL STYLES*/

#mainContent { 
    background: #F2F2F2;
}

#contentCard {
    background: #E9C46A;
}

.heroTitle {
    color: #fff;
}




/*START: BG STYLES*/
.hero {
    background-image: url(../image/slideHero_web.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
}




/*START: IPHONE LAYOUT STYLES*/
@media (max-width: 480px) {
    #header {
        height: 120px;
    }
    
    #mainContent {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 100px;
    }
    
    .nav {
        width: 30%;
    }
    
    .heroTitle {
        padding-top: 50px;
    }
}



/*SLIDE SHOW CAROUSEL STYLES*/

* {box-sizing:border-box}
/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    display: flex;
}

/* Hide the images by default */
.mySlides1 {
    display: none;
}

.mySlides2 {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
/*
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
*/

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.next {
    right: 0;
    border-radius: 0 3px 3px 0;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(164,81,84,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    display: none;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot3 {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #a45154;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}



/*START: NARROW LAYOUT STYLES*/
@media (min-width: 481px) and (max-width: 766px) {
    #header {
        height: 120px;
    }
    
    #mainContent {
        padding-top: 100px;
        padding-left: 50px;
        padding-right: 50px;
        padding-bottom: 100px;
    }
    
    .heroTitle {
        padding-top: 80px;
    }
}



/*START: MEDIUM LAYOUT STYLES*/
@media (min-width: 767px) and (max-width: 979px) {
    #header {
        height: 120px;
    }
    
    #mainContent {
        padding-top: 100px;
        padding-left: 70px;
        padding-right: 70px;
        padding-bottom: 100px;
    }
    
    .desktopWidth {
        width: 75%;
        margin: auto;
    }
    
    .heroTitle {
        padding-top: 80px;
    }
}



/*START: WIDE LAYOUT STYLES*/
@media (min-width: 980px) {
   #header {
        height: 120px;
    }
    
    #mainContent {
        padding-top: 100px;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 100px;
    }
    
    .desktopWidth {
        width: 75%;
        margin: auto;
    }
    
    .heroTitle {
        padding-top: 80px;
    }
    
}














