/*this is the CSS for the sidebar and to align all text into the centre right space; to be used for ALL product pages*/
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans&display=swap');

* {
    margin-left: 0;
}
.wrapper{
  display: flex;
  position: relative;
}

.wrapper .sidebar{
    margin-top: -60px;
  width: 300px;
  height: 100%;
  background-image: url(../images/banner/finalsidebar.png);
background-size: contain;
  position: fixed;
}

.wrapper .sidebar h2{
  color: steelblue;
    text-decoration: bold;
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px ;
  padding-bottom: 0px;
  margin-bottom: 5px;
}

.ourproducts {
    padding: 0;
    margin-left: 7px;
    margin-top: 60px ;
    height: 25px;
    width: 110px;
}

ul {
    list-style: none;
    margin-left: -40px; 
}

.wrapper .sidebar ul {
    margin-top: 88px;
}

.wrapper .sidebar ul li{
    width: 230px;
font-size: 16px;
    margin-left: 0px;
    margin-right: 30px;
  padding:8px;
  margin-top:0px;
  padding-bottom: 5px;
  border-bottom: 1.1px solid black;
    background-color: rgb(255, 255, 255, 0.0);
    color: black;
}    

.wrapper .sidebar ul li a{
    font-size: 19px;
  color: darkgoldenrod;
    font-weight: bold;
  display: block;
    text-decoration: none;
}

.wrapper .sidebar ul li a .fas{
  width: 5px;
}

.wrapper .sidebar ul li:hover{
  background-color: skyblue;
    opacity: 0.9;
}

.wrapper .sidebar ul li:active{
  background-color: skyblue;
    opacity: 0.9;
}
    
.wrapper .sidebar ul li:hover a{
  color: black;
}



.wrapper .main_content{
  width: 1000px;
    margin-top: -30px ;
  margin-left:  280px;

}

.wrapper .main_content .header{
  padding: 20px;
  color: #717171;
  border-bottom: 1px solid #e0e4e8;
}

.wrapper .main_content .info{
  margin: 20px;
  color: #717171;
  line-height: 25px;
}

.wrapper .main_content .info div{
  margin-bottom: 20px;
}


/* page to page (within) */

.wrapper .main_content #showroom {
    height: 680px;
    background: transparent;
    margin-top: -30px;
    margin-left: 15px;
    padding-top: 0px;
    background-color: ;

    
}

.wrapper .main_content #slider {
    position: relative;
    width: 1000px;
    height: 500px;
    
}

.wrapper .main_content .slide {
    margin-left: 10px;
    position: absolute;
    width: 100%;
    height:100%;
    margin: 0;
    display: none;
}

.wrapper .main_content .slide.active {
    display: block;
}





/*sidebar image*/
#cornerimage {
    margin-left: 100px;
    margin-top: -100px;
    padding-top:0px; 
    margin-bottom: -40px ;
    height: 50px;
    width: 100px;
}

/*for modal lightbox*/
.gallery {
    margin: 10px 50px;
    height: 450px;
}

.gallery img {
    width: 120px;
    padding: 5px;
    transition: 0.2s;
}

.gallery img:hover {
    transform: scale(1.1);
}
