h1, h2, h3{
  color:#806f5d;
font-family: 'Cinzel', serif;
}

.thumb{
  margin-top:-300px;
}

@media only screen and (max-width: 992px) {
  .thumb {
    margin-top:0;
  }
}

p{
 font-family: 'Josefin Sans', sans-serif;
}

.hero{
  background-color:rgba(251,255,255,0.9); 
  padding:30px 200px 30px 100px; 
  max-width:700px; 
  color:#806f5d; 
  margin-top:10%;
}

@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;
  opacity: 1 9; /*just in case ie*/
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:3s;
  -moz-animation-duration:3s;
  animation-duration:3s;
}

.fade-in.one {
  -webkit-animation-delay: 0.1s;
  -moz-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.fade-in.two {
  -webkit-animation-delay: 2s;
  -moz-animation-delay: 2s;
  animation-delay: 2s;
}

.fade-in.three {
  -webkit-animation-delay: 4s;
  -moz-animation-delay: 4s;
  animation-delay: 4s;
}

.myButton {
	box-shadow: 3px 4px 0px 0px #1564ad;
	background:linear-gradient(to bottom, #79bbff 5%, #378de5 100%);
	background-color:#79bbff;
	border-radius:5px;
	border:1px solid #337bc4;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	font-weight:bold;
	padding:12px 44px;
	text-decoration:none;
	text-shadow:0px 1px 0px #528ecc;
}
.myButton:hover {
	background:linear-gradient(to bottom, #378de5 5%, #79bbff 100%);
	background-color:#378de5;
}
.myButton:active {
	position:relative;
	top:1px;
}

.container .box .product__img {
  opacity: 0;
  animation: fadeImg 2s ease-in-out forwards;
  animation-delay: 1s;
}
.container .box .product__video {
  
}
.container .box .product__video .video {
  display: flex;
  opacity: 0;
  animation: upVideo 1s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 1.2s;
}


.container .box .product__disc {
  background-color:#d3d3d3;var(--accent-color);
  display: flex;
  padding:10px 20px;
  color:black;
  animation: showDisc 1s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
}
.container .box .product__disc .product__disc--content {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  animation: fadeContent 1s ease-in-out forwards;
  animation-delay: 1s;
  opacity: 0;
}
.container .box .product__disc .product__disc--content .disc__content--about {
}
.container .box .product__disc .product__disc--content .disc__content--about h1 {
  font-size: 32px;
}
.container .box .product__disc .product__disc--content .disc__content--about span {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  opacity: 0.5;
}
.container .box .product__disc .product__disc--content .disc__content--about p {
  font-size: 14px;
}
.container .box .product__disc .product__disc--content .product__view--more {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.container .box .product__disc .product__disc--content .product__view--more .view__more--block {
  background: #f6f6f6;
  z-index: 1;
  transition: cubic-bezier(0.68, -0.55, 0.27, 1.55) 320ms;
}
.container .box .product__disc .product__disc--content .product__view--more p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  z-index: 2;
  margin-left: 15px;
}
.container .box .product_buttons {
  text-align:center;
  
}
.container .box .product_buttons .btn {
  color:#316D4F;
  width: 150px;
  padding:10px 0px;
  font-size: 16px;
  font-weight: bold;
  -webkit-transition: ease-in-out 220ms;
  -moz-transition: ease-in-out 220ms;
  -ms-transition: ease-in-out 220ms;
  -o-transition: ease-in-out 220ms;
  transition: ease-in-out 220ms;
  cursor: pointer;
}
.container .box .product_buttons .contact {
  border: 2px solid #316D4F;
  background: transparent;
  opacity: 0;
  animation: fadeWish 1s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 1s;
}
.container .box .product_buttons .contact:hover {
  background: #358546;
  color: #FFF;
  box-shadow: 0 0 10px #358546;
}

.container .box .product_buttons .warranty {
  border: 2px solid #316D4F;
  background: transparent;
  opacity: 0;
  animation: fadeWish 1s cubic-bezier(0.74, 0.06, 0.4, 0.92) forwards;
  animation-delay: 1s;
}
.container .box .product_buttons .warranty:hover {
  background: #358546;
  color: #FFF;
  box-shadow: 0 0 10px #358546;
}


/*
  keyframes
 */
@keyframes openBox {
  0% {
    width: 0px;
    left: 15%;
  }
  100% {
    left: 15%;
  }
}
@keyframes fadeImg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes upVideo {
  0% {
    opacity: 0;
    bottom: -20px;
  }
  100% {
    opacity: 1;
    bottom: 0px;
  }
}
@keyframes showDisc {
  0% {
    width: 0px;
    left: 450px;
  }
  100% {
    width:100%; 
    left: 450px;
  }
}
@keyframes fadeContent {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeWish {
  0% {
    opacity: 0;
    bottom: -25px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes fadeBuy {
  0% {
    opacity: 0;
    bottom: -25px;
  }
  100% {
    opacity: 1;
    bottom: 0;
  }
}