/*reset styles */
*{
  border: 0;
  margin: 0;
  padding: 0;
}

/* download fonts */
@font-face {
  font-family: BebasNeue;
  src: url(fonts/BebasNeue-Regular.otf);
  font-weight: normal;
  }
@font-face {
  font-family: BebasNeue;
  src: url(fonts/BebasNeue-Thin.otf);
  font-weight: 100;
  } 
@font-face {
  font-family: BebasNeue;
  src: url(fonts/BebasNeue-Light.otf);
  font-weight: 300;
  }
@font-face {
  font-family: BebasNeue;
  src: url(fonts/BebasNeue-Book.otf);
  font-weight: 500;
}
@font-face {
  font-family: BebasNeue;
  src: url(fonts/BebasNeue-Bold.otf);
  font-weight: bold;
} 
@font-face {
  font-family: Hind;
  src: url(fonts/Hind-Regular.ttf);
  font-weight: normal;
} 
@font-face {
  font-family: Hind;
  src: url(fonts/Hind-Light.ttf);
  font-weight: 100;
} 
@font-face {
  font-family: Hind;
  src: url(fonts/Hind-Medium.ttf);
  font-weight: 300;
} 
@font-face {
  font-family: Hind;
  src: url(fonts/Hind-SemiBold.ttf);
  font-weight: 500;
} 
@font-face {
  font-family: Hind;
  src: url(fonts/Hind-Bold.ttf);
  font-weight: bold;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Regular.ttf);
  font-weight: normal;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Italic.ttf);
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-ExtraLight.ttf);
  font-weight: 100;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-ExtraLightItalic.ttf);
  font-weight: 100;
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Thin.ttf);
  font-weight: 300;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-ThinItalic.ttf);
  font-weight: 300;
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Medium.ttf);
  font-weight: 500;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-MediumItalic.ttf);
  font-weight: 500;
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-SemiBold.ttf);
  font-weight: 700;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-SemiBoldItalic.ttf);
  font-weight: 700;
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Bold.ttf);
  font-weight: 900;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-BoldItalic.ttf);
  font-weight: 900;
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-ExtraBold.ttf);
  font-weight: bold;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-ExtraBoldItalic.ttf);
  font-weight: bold;
  font-style: italic;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-Black.ttf);
  font-weight: bolder;
} 
@font-face {
  font-family: Raleway;
  src: url(fonts/Raleway-BlackItalic.ttf);
  font-weight: bolder;
  font-style: italic;
} 

body {
  background-image:url('images/furley_bg.png');
}
/* colors used: 
   #d9dad4 light
   #b5c7d1 light blue
   #5e8ea2 blue
   #1e394c dark
   #b38176  pale orange pink? */

/*loading screen*/
#indexPage {
  display: none;
}
#loading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100vw;
  height: 100vh;
  background-color: rgba(238, 225, 216, 1);
  text-align: center;
}

#loading img {
  width: 500px;
  height: auto;
  position: absolute;
  top: 15%;
  left: 30%;
  animation: rotate 3s infinite;
}
#loading h3 {
  position: relative;
  text-align: center;
  top: 70%;
  right: 1%;
  font-size: 2.4em;
  font-family: 'BebasNeue','Raleway',sans-serif;
}

@-webkit-keyframes rotate {
  100% {
      transform: rotateY(360deg);
  }
}

@keyframes rotate {
  100% {
      transform: rotateY(360deg);
  }
}
/*nav bar*/
.navigation {
  border: 1px solid #5e8ea2;
  max-width: 1066px;
  margin: 0.1% auto;
  height: 70px;
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.logo-top{
  max-width: 1066px;
  width: 20%;
  margin: auto;
}
.logo-top img {
  width: 100%;
}
.brand {
  position: absolute;
  padding-left: 20px;
  float: left;
  line-height: 70px;
  text-transform: uppercase;
  font-size: 1.4em;
}
.brand img {
  display: none;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
}

nav {
  float: right;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav ul li {
  float: left;
  position: relative;
}
nav ul li a,
nav ul li a:visited {
  display: block;
  padding: 0 20px;
  line-height: 70px;
  background: #ffffff;
  color: #000000;
  text-decoration: none;
}
nav ul li a:hover,
nav ul li a:visited:hover {
  color: #b38176 ;
}
nav ul li a:not(:only-child):after,
nav ul li a:visited:not(:only-child):after {
  padding-left: 4px;
  content: ' ▾';
}
nav ul li ul li {
  min-width: 190px;
}
nav ul li ul li a {
  padding: 15px;
  line-height: 20px;
}

.nav-dropdown {
  position: absolute;
  display: none;
  z-index: 1;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile navigation */
.nav-mobile {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #262626;
  height: 70px;
  width: 70px;
}
#nav-toggle {
  position: absolute;
  left: 18px;
  top: 22px;
  cursor: pointer;
  padding: 10px 35px 16px 0px;
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
  cursor: pointer;
  border-radius: 1px;
  height: 5px;
  width: 35px;
  background: #ffffff;
  position: absolute;
  display: block;
  content: '';
  transition: all 300ms ease-in-out;
}
#nav-toggle span:before {
  top: -10px;
}
#nav-toggle span:after {
  bottom: -10px;
}
#nav-toggle.active span {
  background-color: transparent;
}
#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}
#nav-toggle.active span:before {
  transform: rotate(45deg);
}
#nav-toggle.active span:after {
  transform: rotate(-45deg);
}
.sticky {
  position: fixed;
  top: 0;
  left: 10.4%;
  width: 100%;
  max-width: 1066px;
  z-index: 5;
}

/* Slideshow container & header*/
.header-text, .header-text2 {
  position: absolute;
  font-family: 'BebasNeue','Raleway',sans-serif;
  font-size: 10em;
}
.header-text {
  left: 34%;
  bottom: 25%;
}
.header-text2 {
  left: 20%;
  bottom: 25%;
}
.banner-content{
  padding: 1%;
  background: #ffffff;
}
.slideshow, .banner-container {
  max-width: 1066px;
  border: 1px solid #5e8ea2;
  margin: auto;
}
.banner-container{
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.slideshow-container{
  position: relative;
  padding: 1%;
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.banner {
  width: 100%;
}
.myslides fade img {
  vertical-align: middle;
}
/* The dots/bullets/indicators */
.dots {
  text-align: center;
}
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0.5% 1%;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #717171;
}
#text1,#text2,#text3 {
  position: absolute;
  text-align: center;
}
#text1 {
  
  bottom:15%;
  left: 53%;
  transform: translate(-75%,-50%);
  font-weight: bold;
  color: #b5c7d1;
}
#text2{
  top: 12%;
  left:3%;
  width: 80%;
  text-align: left;
}
#text3{
  top: 10%;
  right:3%;
  width: 40%;
  text-align: right;
}
#text2 h1, #text3 h1 {
  margin-bottom: 3%;
  font-family: 'BebasNeue','Raleway',sans-serif;
  font-size: 4.5em;
}
#text2 p, #text3 p {
  margin-bottom: 1%;
  font-family: 'Hind','Raleway',sans-serif;
  font-size: 1.2em;
}
/* Fading animation */
.fade {

  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}
/*breadcrumbs*/
.breadcrumb{
  text-align: center;
}
ul.breadcrumb {
  padding: 10px 16px;
  list-style: none;
}
ul.breadcrumb li {
  display: inline;
  font-size: 18px;
}
ul.breadcrumb li+li:before {
  padding: 8px;
  color: black;
  content: "/\00a0";
}
ul.breadcrumb li a {
  color: #0275d8;
  text-decoration: none;
}
ul.breadcrumb li a:hover {
  color: #01447e;
  text-decoration: none;
}
/*main content*/
.main-content {
  max-width: 1066px;
  border: 1px solid #5e8ea2;
  padding: 0.2% 0;
  margin: 2% auto;
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.main-content-bg {
  margin:1% 1%;
  background-image:url('images/marble.png');
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

}
.category-container {
  margin-bottom: 5%;
}
.blocks{
  display: inline-block;
  width: 40%;
  vertical-align: top;
}
.space {
display: inline-block;
width: 16%;
}
.category-img-left img {
  margin-left:5%;
  width:100%;
  height: 100%;
}
.category-img-right img {
  margin-top: 15%;
  margin-right:15%;
  width:100%;
  height: 100%;
  vertical-align: middle;
}
.category-article-right{
  text-align: right;
  width: 95%;
  height: 100%;
}
.category-article-left {
  margin-left: 10%;

}
.category-article-right h1,.category-article-left h1 {
  margin-bottom: 7%;
  margin-top: 8%;
  font-family: 'BebasNeue', 'Hind','Raleway', 'Sans-serif';
  font-weight: bold;
  font-size: 4em;
}
.category-article-right p,.category-article-left p {
  font-family: 'Hind','Raleway', 'Sans-serif';
  font-weight: normal;
  font-size: 1.4em;
  margin-bottom: 15%;
}
.image{
  margin-bottom: 5%;
  padding: 3%;
  background-color: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  opacity: 1;
  transition: .5s ease;
  backface-visibility: hidden;
}
.row {
  text-align: center;
  padding-top: 3%;
}
.row img {
  width:100%;
}
.column {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 30%;
  padding: 10px;
  font-family: 'Hind','Raleway', 'Sans-serif';
  text-align: center;
}
.row:after{
  content: "";
  display: block;
  clear: both;
  text-align: center;
}
/*overlay*/

.image:hover {
  opacity: 0.75;
}
/*links*/
#shopnow {
  cursor: pointer;
  font-family: 'Hind','Raleway', 'Sans-serif';
  font-size: 1.2em;
}
.link {
  cursor: pointer;
  font-family: 'Hind','Raleway', 'Sans-serif';
  color: #1e394c;
  font-size: 1.2em;
  text-decoration: none;
}
.link:active{
  color: #5e8ea2;
}
.link:hover {
  color: #5e8ea2;
}
.link--arrowed {
  display: inline-block;
  height: 2rem;
  line-height: 2rem;
}
.link--arrowed .arrow-icon {
  position: relative;
  top: -1px;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  vertical-align: middle;
}
.link--arrowed .arrow-icon--circle {
  transition: stroke-dashoffset .3s ease;
  stroke-dasharray: 95;
  stroke-dashoffset: 95;
}
.link--arrowed:hover .arrow-icon {
          transform: translate3d(5px, 0, 0);
}
.link--arrowed:hover .arrow-icon--circle {
  stroke: #5e8ea2;
  stroke-dashoffset: 0;
}
.link--arrowed:hover .arrow-icon--arrow {
  stroke: #5e8ea2;
}

/*footer*/
footer {
  max-width: 1066px;
  border: 1px solid #5e8ea2;
  padding: 0.2% 0;
  margin: 2% auto;
  background: #ffffff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.footer-column {
  display: inline-block;
  width: 30%;
  padding: 2% 0 2% 2%;
  vertical-align: top;
}
.footer-column h3 {
  padding-bottom: 3%;
  margin-left: 20%;
  font-family: 'BebasNeue','Hind',sans-serif;
  font-size: 1.4em;
  
}
.footer-column p {
  margin-left: 20%;
  font-family: 'Hind', 'Raleway',sans-serif;

}
.footer-column a {
  text-decoration: none;
}
.icons {
  margin-left: 18%;
  margin-top: 2%;
}
#insta, #deviantart, #youtube {
  display: inline-block;
  margin-left: 4%;
}
#insta i:hover, #deviantart i:hover, #youtube i:hover {
  color: #b38176;
}
/*media styles */
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
.text {font-size: 11px}
}
@media only screen and (max-width: 798px) {
  .logo-top {
    display: none;
  }
  .brand img {
    display: block;
    width:200px;
  }
  .nav-mobile {
    display: block;

  }

  nav {
    width: 100%;
    padding: 70px 0 15px;
  }
  nav ul {
    display: none;
  }
  nav ul li {
    float: none;
  }
  nav ul li a {
    padding: 15px;
    line-height: 20px;
  }
  nav ul li ul li a {
    padding-left: 30px;
  }

  .nav-dropdown {
    position: static;
  }
}
@media screen and (min-width: 799px) {
  .nav-list {
    display: block !important;
  }
}
