.modal {
      display: none; /* Hidden by default */
      position: absolute; /* Stay in place */
      z-index: 2; /* Sit on top */
      width: 100%; /* Full width */
      height: 100%; /* Full height */
      overflow: auto; /* Enable scroll if needed */
    color: whitesmoke;
}

/* Modal Content */
.model-img
{
    background-image: url(../images/bg_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.model-text
{
    height: 100%;
    padding-top:15%;
    background-image: url(../images/body-bg.jpg);

}
.modal-text-title
{
    margin-left: 20%;
}
.modal-text-title h1
{
    letter-spacing: 12px;
}
.modal .list ul
{
    list-style: none
}
.modal .list ul li a
{
    color: whitesmoke;
    text-decoration: none;
    line-height: 5;
}
.modal .list ul li a:active
{
    color: maroon;
}
.dropdown-item{color: black;}
/* The Close Button */
.close {
    position: relative;
    right: 2%;
    top: 4%;
    color: white;
    font-size: 28px;
    font-weight: bold;
}
.brand
{
    letter-spacing: 6px;
    font-family: Calibri;
}
#myBtn
{
    color: whitesmoke;
    position: absolute;
    right: 3%;
    top: 10%;
    border: none;
    z-index: 2;
    background-color: transparent;
    font-size: 30px;
    font-weight: bold;
}

header{
  background-image: url(../images/bg_4.jpg);
    background-attachment: fixed;
    background-size: cover;
  height:100vh;
  position:absolute;
    top: 0px;
  overflow:hidden;
}
header:before{
  content:"";
  display:block;
  position : absolute;
  width:750px;
  height:100px;
  background:#fff;
  bottom:-54px;
  left:-20px;
  -ms-transform: rotate(7deg);
  -webkit-transform: rotate(7deg);
  transform: rotate(7deg);
}
header:after{
  content:"";
  display:block;
  position : absolute;
  width:750px;
  height:100px;
  background:#fff;
  bottom:-54px;
  right:-20px;
  -ms-transform: rotate(-7deg);
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
}
.headtitle
{
    position: relative;
    top: 40%;
    color: snow;
    font-size: 10vw;
}
/*************************************************************/
.section1
{position: relative;top: 90vh;}
.section1 h2
{
    color: darkslategrey;
}
.section1 .btnSection1
{
    color: white;
    background-color: darkslategrey; 
    border: none;
    border-bottom: 2px solid darkslategrey;
}
.section1 .btnSection1:hover
{
    color: darkslategrey;
    background-color: white;
}
.section1 p
{font-family: sans-serif;letter-spacing: 4px;}
.ui-card-slider {
  position: relative;
  width: 80%;
  height: 300px;
  overflow: hidden; }
  .ui-card-slider .slide {
    display: block;
    -webkit-user-select: none;
    position: absolute;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    transition-property: all;
    -webkit-transition-property: all;
    overflow: hidden; }
    .ui-card-slider .slide img {
      width: 100%;
      height: 100%; }
  .ui-card-slider .center-slide {
    -webkit-user-select: none;
    z-index: 30;
    bottom: 12px;
    left: 75px;
    width: 170px;
    height: 212px; }
  .ui-card-slider .left-slide {
    -webkit-user-select: none;
    z-index: 20;
    bottom: 30px;
    left: -30px;
    width: 140px;
    height: 175px; }
  .ui-card-slider .right-slide {
    -webkit-user-select: none;
    z-index: 20;
    bottom: 30px;
    left: 210px;
    width: 140px;
    height: 175px; }
  .ui-card-slider .left-hidden-slide {
    z-index: 10;
    bottom: 30px;
    left: -160px;
    width: 120px;
    height: 130px; }
  .ui-card-slider .right-hidden-slide {
    z-index: 10;
    bottom: 30px;
    left: 360px;
    width: 120px;
    height: 130px; }
  .ui-card-slider .hidden-slide {
    visibility: hidden;
    display: none; }



/*********************************************/
.section2{position: relative;top: 90vh}
.product
{
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    border-radius: 5px;
    height: 350px;
    overflow: hidden;
}
.product .imgbox
{
    box-sizing: border-box;
}
.product .imgbox img
{
    display: block;
    margin: auto;
}
.product .details
{
    position: absolute;
    bottom: -174px;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: .3s;
}
.product:hover .details
{
    bottom: 0;
}
.product .details h2
{
    font-size: 16px;
}
.product .details h2 span 
{
    font-size: 12px;
    color: #ccc;
    font-weight: normal;
}
.product .details .price
{
    font-weight: bold;
    color: #ff4faf;
    font-size: 20px;
}
.product label
{
    display: block;
    font-weight: bold;
    font-size: 14px;
}
.product .details ul 
{
    display: flex;
    flex: row;
}
.product .details ul li
{
    list-style: none;
    margin: 5px 5px 0;
    font-size: 12px;
    font-weight: normal;
    color: #ccc;
}
.product .details ul li:first-child
{
    margin-left: 0;
}
ul.colors li
{
    width: 16px;
    height: 16px;
}
ul.colors li:nth-child(1)
{
    background: #ff0;
}
ul.colors li:nth-child(2)
{
    background: #f00;
}
ul.colors li:nth-child(3)
{
    background: #f0f;
}
ul.colors li:nth-child(4)
{
    background: #0ff;
}
ul.colors li:nth-child(5)
{
    background: #00f;
}
.product .details a
{
    display: block;
    width: 90%;
    padding: 5px;
    color: #fff;
    margin: 15px 0 0;
    background: #ff4faf;
    text-align: center;
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
}
.product .details a:hover
{
    color: #fff;
    background: #ff209a;
}

/*****************************************/
.section3
{
    position: relative;
    top: 95vh;
}
.section4
{position: relative;top: 100vh}
/************************Start footer******************************************/
.footer-area{position: relative;top: 100vh; background-color: black;color: whitesmoke}
.single-footer-widget h3{letter-spacing: 4px;}
.single-footer-widget h4{letter-spacing: 2px;}
.single-footer-widget p{color: darkgray;letter-spacing:1.5px;font-size: 17px}
.inputemail{border: none;background-color: black;border-bottom: 1px solid gray}
.instafeed{list-style: none}
.iconSoicalMedia{
    padding: inherit;
    text-align: center;
    font-size: 30px;
    color: ghostwhite;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgb(51, 51, 51);
}
.iconSoicalMedia a{color: whitesmoke}
.iconSoicalMedia a:hover{color: deeppink}
.footer-bottom{color: darkgray}
/********************End Footer****************************/







