div.ex1 {
  width: 85%;
  height: 250px;
  overflow: auto;
  margin-top:18%;
margin-left:20%;

}
@media only screen and (max-width: 1000px){
	div.ex1{
		margin-left:10%;
	}
}


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: black; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffd000;
border-radius: 10px; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}



.content-width {
  width: 86%;
  height: 100vh;
  margin: 0 auto;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.slideshow-items {
  position: relative;
  width: 100%;
  height: 300px;
}

.item {
  position: absolute;
  width: 100%;
  height: auto;
}

.item-image-container {
  position: relative;
  width: 100%;
}

.item-image-containe::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 101%;
  height: 101%;
  background: #22222A;
  opacity: 0;
  z-index: 1;
}

.item-image {
  position: relative;
  width: 100%;
  height: auto;
  opacity: 0;
  display: block;
  /* transition: property name | duration | timing-function | delay  */
  transition: opacity .3s ease-out .45s;
}

.item.active .item-image {
  opacity: 1;
}

.item.active .item-image-container::before {
  opacity: .8;
}

.item-description {
  position: absolute;
  top: 55%;
  right: 0;
  width:100%;
  padding-right: 4%;
  line-height: 1.8;
  z-index:1000;
  color:white;
}

/* Staggered Vertical Items ------------------------------------------------------*/
.item-header {
  position: absolute;
  top: 20%;
  left: 5%;
  z-index: 100;
}

.item-header .vertical-part {
  margin: 0 -3px;
  font-family: 'Montserrat', sans-serif;
  -webkit-font-smoothing: auto;
  font-size: 4vw;
  color: #ffd000;
   text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

.vertical-part {
  overflow: hidden;
  display: inline-block;
}

.vertical-part b {
  display: inline-block;
  transform: translateY(100%);
}

.item-header .vertical-part b {
  transition: .5s;
}

.item-description .vertical-part b {
  transition: .21s;
  
}

.item.active .item-header .vertical-part b {
  transform: translateY(0);
}

.item.active .item-description .vertical-part b {
  transform: translateY(0);
}

/* Controls ----------------------------------------------------------------------*/
.controls {
  position: relative;
  text-align: right;
  z-index: 1000;
}

.controls ul {
  list-style: none;
}

.controls ul li {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 3px;
  background:#bdbdd5;;
  cursor: pointer;
}

.controls ul li.active {
  background:#6a6a77;;
}
.linkline{
	color:#ffd000;
	
}
.price .vertical-part b{
	font-size:40px; 
	color:RED;
	text-shadow: -0px 0 black 0 0px black, 0px 0 black, 0 -0px black;
}

.price{
	margin:-20% 0 0 78%; 
	font-size:20px;
	 
}

@media only screen and (max-width: 1000px){
.item-header .vertical-part{
	font-size: 8vw;
}
.item-description{
	top:40%;
}
.price{
	margin:-18% 0 0 68%; 
}
.price .vertical-part b{
font-size:30px;} 

#formHider{
	display:none;
}
}




