/* Mason Dellutri
Web Dev */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Muli', sans-serif;
}

body {
  height: 900px;
  font-size: 18px;
  font-family: sans-serif;
  color: #FFF;
  background-color:white;
}

.logo {
  margin-top: -5px;
}

a:link,
a:visited {
  color: #FFF;
  text-decoration: none;
  display: inline-block;
}
a:hover {
  display: inline-block;
  text-decoration: underline;
}

.header {
  height: 100px;
  position: sticky;
  top: 0px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: linear-gradient(45deg, rgba(197, 20, 79, .9),rgba(11, 60, 194, .9));
  background-size: 400% 400%;
animation: gradientBG 20s ease infinite;
box-shadow: 0px 0px 20px #630d8b;
  z-index: 3;
}


.logo h1 {
  padding: 30px;
  width: 300px;
  color: #FFF;
}

.logo a {
  box-shadow: none;
}
.menu {
  margin-top: 15px;
  display: none;
}

.small-menu {
  display: none;
}

.menu > li {
  display: inline-block;
  margin-right: 10px;
  
}

input {
    width: 50%;
    height: 30px;
    border-radius: 25px;
  }
  .dropdown {
    padding: 25px;
    width: 150px;
    font-size: 20px;
  }
.dropdown:hover {
    color: #FFF;
    text-decoration: underline;
    display: inline-block;
}

.dropdown:hover .features-menu { 
  color: #FFF;  
  display: flex;                    
  flex-direction: column;
  background: linear-gradient(45deg, rgb(197, 20, 79),rgb(11, 60, 194));
  box-shadow: 20px 10px 20px #630d8b;
  background-size: 400% 400%;
  animation: gradientBG 20s ease infinite;
  border-radius: 5px;
  padding-top: 60px;
  position: absolute;      
  top: -25px;
  left: -120px;
  right: -30px;
  z-index: 3;
}
.dropdown:hover .features-menu a:link, .dropdown:hover .features-menu a:visited, .features-menu li{
  color: #FFF;
  text-decoration: none;
  text-align: right;
  display: inline-block;
  padding-left: 10px;
}

.features-menu a:link, .features-menu a:visited, .features-menu li, .features-menu a:hover{
  text-decoration: underline;
}

.button {
  width: 100%;
  font-family: 'Muli', sans-serif;
  background-color: Transparent;
  border: 2px solid transparent;
  color: WHITE;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  outline: none;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}
.button:hover {
background-color: #FFFFFF; /* Green */
color: #630d8b;
}

.features-menu li {
  list-style: none;
  border-bottom: 1px solid #FFF;
  padding: 0 40px 10px 10px;
  margin: 10px;
  overflow: hidden;
}

.features-menu li a:link,
a:visited {
  color: #FFF;
  text-decoration: none;
  display: inline-block;
}

.features-menu li:last-of-type {
  border-bottom: none;
}
.features-menu {                 
  display: none;
}
.dropdown {
  position: relative;
}
.dropdown > span {
  z-index: 2;
  position: relative; 
  cursor: pointer;
}

.homepage-introduction {
  margin-top: 20px;
  z-index: -1;
  background-color: #FFF;
}

.introduction {
max-width: 660px;
padding-top: 20px;
padding-bottom: 20px;
position: relative;
left: -170px;
margin: auto;
color: #630d8b; 
display: block;
}

.introduction a, h1{
color: #630d8b;
padding-bottom: 30px;
}

@media only screen and (max-width: 1070px) {
  .logo h1 {
    padding: 30px;
    padding-top: 10px;
    width: 200px;
  }

  .introduction{
    left: 0;
    max-width: 100%;
    padding: 20px;
  }
  

}
@media only screen and (max-width: 850px) {
  .header .button {
    display: none;
  }
  
  .menu{
      display: inline;
  }
  }
}



* {box-sizing:border-box}
.mySlidesOne, .mySlidesTwo{display: none}
img {vertical-align: middle;}

.category-views {
    margin-top: 50px;
    margin-bottom: 50px;
    z-index: -1;
}


.slideshow-container {
  margin-top: 100px;
  padding-bottom: 100px;
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.slideshow-container p {
  text-align: left;
  position: absolute;
  top: -20px;
  left: 20px;
  padding: 5px;
  z-index: 1;
  background: #FFF;
  color: #630d8b;
  box-shadow: 0px 0px 20px #c0d0e0;
}

.mySlidesOne, .mySlidesTwo {
  box-shadow: 0px 0px 20px #c0d0e0;
}

.mySlidesOne img, .mySlidesTwo img{
  width: 100%;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 0%;
  width: 50px;
  height:100%;
  padding-top: 30%;
  padding-left: 22px;
  color: #FFF;
  text-shadow:0px 0px 2px black;
  font-size: 20px;
  transition: 0.6s ease;
  /* border-radius: 0px 50px 50px 0px; */
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  /* border-radius: 50px 0px 0px 50px; */
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover {
  background: linear-gradient(90deg,rgb(250, 250, 255,.5),rgba(250, 255, 255, .0));
}

 .next:hover {
  background: linear-gradient(90deg, rgba(250, 250, 255, 0),rgb(250, 255, 255,.5));
}

/* Caption text */
.text {
  background: #FFF;
  color: #630d8b;
  font-size: 18px;
  padding: 8px 12px;
  position: absolute;
  bottom: 125px;
  text-align: right;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

.products-section {
  padding: 10px;
  max-width:100%; 
  height:auto; 
}

.product-single {
  padding: 10px;
}

.product-single img{
  max-width:100%; 
  height:auto; 
}

.product-single h2{
  position: relative;
  top:20 px
}

#main-image {
  max-width: 50%;
  height: auto;
}

.thumbnails {
  margin: 15px;
}

#first-thumbnail {
  margin-right: 15px;
  max-width: 100px;
  height: auto;
  cursor: pointer;

}

#second-thumbnail {
  margin-right: 15px;
  max-width: 100px;
  height: auto;
  cursor: pointer;

}

#third-thumbnail {
  margin-right: 15px;
  max-width: 100px;
  height: auto;
  cursor: pointer;

}

.category-section {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

.category-section h1{
  position: relative;
  display: table;
  top: 10px;
  padding: 5px;
  background: #FFF;
  color: #630d8b;
  box-shadow: 0px 0px 20px #c0d0e0;
}

.product-container {
    margin-top: 50px;
}

.product-in-category {
}

.product-in-category p1{
  position: relative;
  top: 10px;
  left: 20px;
  padding: 5px;
  background: #FFF;
  color: #630d8b;
  box-shadow: 0px 0px 20px #c0d0e0;
  z-index: 1;
}

.product-in-category p2{
  position: relative;
  top: -75px;
  padding: 5px;
  background: #FFF;
  color: #630d8b;
  z-index: 1;
}


.product-in-category img, .product-in-category a, .product-in-category iframe{
  position: relative;
  width: 100%;
  height: 600px;
  box-shadow: 0px 0px 20px #c0d0e0;
}

.shapes-content {
    box-shadow: none;
    color: #630d8b;
}

.shaders-content {
    box-shadow: none;
    color: #630d8b;
}

.websiteDesc p{
    color: #630d8b;
    position: static;
    width: 50%;
     margin: auto;
     text-shadow:none;
     margin-bottom: 10px;
}

.article-image {
  float: right;
  width: 33.33%;
  margin: 50px;
}

.article-image img{
  width: 100%;
  position: static;
  margin-top: 10px;
  margin: 25px ;
  justify-content: right;
  box-shadow: 0px 0px 10px #5D6063;
}

.article-image h1{
  position: absolute;
  padding: 40px ;
  padding-top: 30px;
  justify-content: right;
  background: #FFF;
  color: #630d8b;
  box-shadow: 0px 0px 20px #c0d0e0;
}

.article-content{
  position: absolute;
  float: left;
  width: 60%;
  height: 55%;
  margin: 50px;
  background-color: rgb(253, 254, 255);
  box-shadow: 0px 0px 20px #c0d0e0;
  border-radius: 5px;
  overflow-y: scroll;
}

.article-content h1{
  position: absolute;
  padding: 25px ;
  color: rgb(49, 57, 85);
  justify-content: right;
}
.article-content p{
  display: inline-block;
  text-indent: 5em;
  position: relative;
  text-align: justify;
  top:50px;
  padding-left: 50px;
  padding-right:50px;
  padding-top: 25px;
  padding-bottom: 25px;
  color: rgb(49, 57, 85);
  justify-content: left;
  text-size-adjust: 15px;
}

@media only screen and (max-width: 850px) {
  .article-image{
    position: static;
    float: left;
    width: 100%;
    margin: 0px;
  }
  .article-image img{
    margin: 0;
  }
  .article-content{
    position: static;
    float: left;
    width: 100%;
    margin: 0px;
  }
  .article-content h1{
    position: static;
  }
}



@-webkit-keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}


@keyframes gradientBG {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
