@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;
}

#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: 50px 0px 50px 0px;
}

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

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

#footer-right h3, #footer-left h3{
    font-size: 1em;
}

#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;
  }  

/* For mobile phones or all the time: */
[class*="col-"] {
    float: left;
    padding: 15px;
    /*border: 1px solid red;*/
}
  
/* For tablets: */
  @media only screen and (min-width: 600px) {
    .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%;}
  }

/* For desktop: */
  @media only screen and (min-width: 1000px) {
    .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%;}
  }