@charset "UTF-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

body{
    font-family: 'Goudy Bookletter 1911';
}

h1{
    font-size: 2em;
}

h2{
    font-size: 1.5em;
}

h3{
    font-size: 1.25em;
}

footer{
    background-color: #16325a;
    color: white;
}

aside hr {
    width: 90%;
    margin: 20px auto;
    border-top: 1px solid #16325a;
}

.team h3, .team p{
    margin-top: 10px;
}

#header-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;

}

#header-content li{
    display: inline;
    text-decoration: none;
}

#header-content li a{
    padding: 5px 15px 5px 15px;
    text-decoration: none;
    margin: 0px 7.5px 0px 7.5px;
    color: #16325a;
}

#header-content li a:hover{
    background-color: #16325a;
    color: white;
}

#header-content nav{
    margin-top: 105px;
}

#banner{
    margin: 0;
    padding: 0;
    display: flex;
}

#banner img{
    width: 100%;
}

#slideshow-wrapper img{
    width: 100%;
    height: 100%;
    display: inline-block;
}

#slideshow-wrapper{
    width: 100%;
    height: 441px;
}

#slideshow{
    height: 441px;
    overflow: hidden;
    white-space: nowrap;
}

#slideshow-wrapper #circle-nav{
    margin-top: -50px;
    text-align: center;
}

#color-bar{
    color: white;
    background-color: #a32973;
}

#color-bar h3{
    padding: 15px;
}

#wrapper-white{
    padding: 50px 0px 50px 0px;
}

#wrapper-white h1,p{
    padding-bottom: 10px;
}

#wrapper-white p{
    font-size: 1.15em;
}

#wrapper-shop{
    background-color: #f4f3f0;
    padding: 25px 0px 25px 0px;
}

#footer-left{
    text-align: left;
}

#footer-right{
    text-align: right;
}

#footer-right h3, #footer-left h3{
    font-size: 1em;
    text-transform: uppercase;
    padding-bottom: 5px;
}

#footer-right p, #footer-left p{
    font-size: .75em;
    font-family: 'Lato';
}

.circle{
    display:inline-block;
    background-color: lightgray;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 15px;
}

.shop-box h3{
    padding: 5px;
}

.shop-box p{
    text-align: center;
}

.shop-box img{
    opacity: 70%;
    transition: opacity 1s;
}

.shop-box img:hover{
    opacity: 100%;
}

.book-details{
    border: 2px solid #16325a !Important;
    position: relative;
    transition: opacity 0.5s;
    opacity: 100%;
}

.book-details:hover{
    transition: all 0.5s ease-in 0s;
}

.book-details h2{
    padding-bottom: 15px;
}

aside .mask{
    opacity: 0%;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #a32973;
    transition: linear 1s;
}

.mask:hover{
    opacity: 100%;
    transition: all 0.5s ease-out 0s;
}

.mask h2,
.mask p,
.mask .learn {
     opacity: 0;
}

.mask:hover h2{
    font-size: 32px;
    color: white;
    opacity: 100%;
    margin-top: 25%;
}

.mask:hover p{
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
    opacity: 100%;
}

.mask:hover .learn{
    background-color: #16325a;
    color: white;
    font-family: 'Lato';
    font-size: 20px;
    opacity: 100%;
    text-transform: capitalize;
    text-decoration: none;
    padding: 16px 34px;
}

.uppercase{
    text-transform: uppercase;
}

.center{
    margin-left: auto;
    margin-right: auto;
    display: table;
    float: none !Important;
}

.pink-text{
    color: #a32973;
}

.pink-button{
    background-color: #a32973;
    color: white;
    text-decoration: none;
    padding: 5px 15px;
}

/* Responsive Web Design - Grid View */
.row::after {
    content: "";
    clear: both;
    display: table;
    padding: 0;
    margin: 0;
  }  

[class*="col-"] {
    float: left;
    padding: 15px;
}
  

/* For desktop: */
@media only screen and (min-width: 1025px) {
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
  }

/* For tablets: */
  @media only screen and (max-width: 1024px) and (min-width: 481px) {
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}

    #header-content img{
        width: 25%;
        margin-left: auto;
        margin-right: auto;
        float: none;
        display: table;
    }

    #header-content ul{
        width: auto;
        float: none;
        text-align: center;
    }

    #header-content nav{
        margin-top: 0px;
    }

    .shop-box img{
        width: 75%;
        height: 120px;
        object-fit: cover;
        object-position: top;
        opacity: 100%;
    }

    #wrapper-white p{
        font-size: 1em;
    }

    #slideshow-wrapper #circle-nav {
        margin-top: -30px;
        text-align: center;
    }
    
    .circle {
        display: inline-block;
        background-color: lightgray;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 10px;
    }

    #slideshow-wrapper{
        height: 200px;
    }

    #slideshow{
        height: 200px;
    }
  }


  /* For Phones*/
@media only all and (max-width: 480px) and (min-width: 10px) {
    .col-xs-1 {width: 8.33%;}
    .col-xs-2 {width: 16.66%;}
    .col-xs-3 {width: 25%;}
    .col-xs-4 {width: 33.33%;}
    .col-xs-5 {width: 41.66%;}
    .col-xs-6 {width: 50%;}
    .col-xs-7 {width: 58.33%;}
    .col-xs-8 {width: 66.66%;}
    .col-xs-9 {width: 75%;}
    .col-xs-10 {width: 83.33%;}
    .col-xs-11 {width: 91.66%;}
    .col-xs-12 {width: 100%;}

    #header-content img{
        margin-left: auto;
        margin-right: auto;
        display: table;
        float: none !Important;
    }

    #header-content ul{
        list-style-type: none;
        margin: 0;
        padding: 0;
        float: none;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    #header-content li{
        display: block;
        text-decoration: none;
        padding: 10px 0px;
        margin: 2px auto;
        background-color: #a32973;
    }
    
    #header-content li a{
        text-decoration: none;
        color: white;
        font-size: 1.5em;
    }
    
    #header-content li a:hover{
        background-color: #16325a;
        color: white;
    }
    
    #header-content nav{
        margin-top: 10px;
    }

    #wrapper-white p{
        font-size: 1em;
    }

    #wrapper-shop p{
        font-size: 1em;
    }

    .shop-box img{
        opacity: 100%;
    }

    #footer-right, #footer-left{
        text-align: center;
    }

    #footer-right{
        border-top: #f4f3f0 solid 1px;
    }

    #slideshow-wrapper #circle-nav {
        margin-top: -30px;
        text-align: center;
    }
    
    .circle {
        display: inline-block;
        background-color: lightgray;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin: 10px;
    }

    #slideshow-wrapper{
        height: 200px;
    }

    #slideshow{
        height: 200px;
    }
}