





.cd-hero {
    z-index: 2;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
     /* background-image: url(../images/ba7.png); */
    background-repeat: no-repeat;
    background-size: cover; 
	background-color: rgba(0, 0, 0, 0);
 

    
  }
  
  .cd-hero-slider {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    
    
  }
  .cd-hero-slider li {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
  .cd-hero-slider li.selected {
    /* this is the visible slide */
    position: relative;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .cd-hero-slider li.move-left {
    /* slide hidden on the left */
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  .cd-hero-slider li.is-moving, .cd-hero-slider li.selected {
    /* the is-moving class is assigned to the slide which is moving outside the viewport */
    -webkit-transition: -webkit-transform 0.5s;
    -moz-transition: -moz-transform 0.5s;
    transition: transform 0.5s;
  }
  @media only screen and (min-width: 768px) {
   
  }
  @media only screen and (min-width: 1170px) {
    
  }
  
  .cd-slider-nav {
    text-align: center;
  }
  
  .cd-slider-nav ul {
    padding: 0;
    margin: 0;
  }
  
  .cd-slider-nav ul li {
    display: inline-block;
    margin: 60px 50px;
  }
  
  .cd-slider-nav ul li a {
    text-decoration: none;
  }
  
  .cd-slider-nav ul li h6 {
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    color: #ffbb05;
    margin-top: 15px;
  }
  
  .cd-slider-nav ul .selected h6 {
    color: #ff03d0;
    text-decoration: none;
  }
  
  .cd-slider-nav .image-icon {
    margin: 0 auto;
    margin-bottom: 15px;
    display: block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    text-align: center;
    margin: 0px;
    padding: 0px;
    background-color: #ffbb05;
  }
  
  .cd-slider-nav .image-icon:hover {
    background-color: #6b2c94;
    transition: all 0.2s linear;
  
  }
  
  .content {
    margin-bottom: 100px;
    margin-top: -150px;
    background-color: white;
    /* border-top: 15px solid #ffbb05; */
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
   
  }
  
  
  /*
  =====================
  ----- TOP PART ------
  =====================
  */
  
  .top-part img {
    width: 100%;
   
    background-size: cover;
    position: absolute;
    overflow: hidden;
    top:0;
    left: 0;
  }
  
  
  /*
  =======================
  ----- FIRST SLIDE -----
  =======================
  */
  

  
  .first-slide {
    background-color: #ffbb05;
    width: 100%;
    text-align: center;
  }
  
  .heading {
    text-align: center;
    margin-bottom: 140px;
  }
  
  .heading h1 {
    margin-top: 0px;
    font-size: 35px;
    text-transform: uppercase;
    color: #ffbb05;
    font-weight: 800;
    letter-spacing: 1px;
  }
  
  .heading span {
    font-size: 14px;
    text-transform: uppercase;
    color: #ff03d0;
    font-weight: 400;
    letter-spacing: 0.5px;
  }
  

  
  /*
  =======================
  ----- FOURTH SLIDE ----
  =======================
  */
  
  .fourth-slide {
    text-align: center;
    /* background-color: #ffbb05; */
    width: 100%;
  }
  
  /* .fourth-slide .heading h1 {
    margin-top: 30px;
    font-size: 28px;
    text-transform: uppercase;
    color: #ffbb05;
    font-weight: 900;
    letter-spacing: 1px;
  } */
  
  .fourth-slide .heading span {
    font-size: 15px;
    text-transform: uppercase;
    color: #6b2c94;
    font-weight: 300;
    letter-spacing: 0.5px;
  }
  
  .fourth-content {
    padding: 15px 30px;
    border: 1px solid #d68d06;
	   display: inline-block;
  
  }
  
  .fourth-content .project-item {
    margin: 15px 0px;
    /* border-right: 0.4px solid gray; */
  }
  
  .fourth-content img {
     /* width: 100%; 
     border: 1px solid #d68d06;*/
    overflow: hidden;
    
	   display: inline-block; 
     object-fit: cover;
 width: 55px;
height: 220px; 
     border-radius: 5px;
  }
  
  .fourth-content img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0,0,0,0.3);
    transition: all 0.5s ;}


    .preview-box{
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.9);
      background: #fff;
      max-width: 700px;

      width: 100%;
      z-index: 5;
      opacity: 0;
      pointer-events: none;
      border-radius: 3px;
      padding: 0 5px 5px 5px;
      box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
    }
    .preview-box.show{
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) scale(1);
      transition: all 0.3s ease;
    }
    .preview-box .details{
      padding: 13px 15px 13px 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .details .title{
      display: flex;
      font-size: 18px;
      font-weight: 400;
    }
    .details .title p{
      font-weight: 500;
      margin-left: 5px;
    }
    .details .icon{
      color: #007bff;
      font-style: 22px;
      cursor: pointer;
    }
    .preview-box .image-box{
      width: 100%;
      display: flex;
    }
    .image-box img{
      width: 100%;
      border-radius: 0 0 3px 3px;
    }
    .shadow{
      position: fixed;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      z-index: 2;
      display: none;
      background: rgba(0,0,0,0.4);
    }
    .shadow.show{
      display: block;
    }
    
    @media (max-width: 1000px) {
      .gallery .image{
        width: calc(100% / 3);
      }
    }
    @media (max-width: 800px) {
      .gallery .image{
        width: calc(100% / 2);
      }
    }
    @media (max-width: 700px) {
      .wrapper nav .items{
        max-width: 600px;
      }
      nav .items span{
        padding: 7px 15px;
      }
    }
    @media (max-width: 600px) {
      .wrapper{
        margin: 30px auto;
      }
      .wrapper nav .items{
        flex-wrap: wrap;
        justify-content: center;
      }
      nav .items span{
        margin: 5px;
      }
      .gallery .image{
        width: 100%;
      }
    }
    
  
  
  /*
  ========================================
  ---------- RESPONSIVE STYLE ------------
  ========================================
  */
  
  @media (max-width: 350px){
    .cd-slider-nav ul li h6 {
      font-size: 13px;
      text-transform: uppercase;
      text-align: center;
      font-weight: 400;
      color: #6b2c94;
      margin-top: 15px;
      display: none;
    }
  
    .cd-slider-nav .image-icon img {
      width: 10px;
    }
  
    .cd-slider-nav ul .selected img {
      border-bottom: 3px solid #6b2c94;
      padding-bottom: 10px;
      /* -moz-transition: all 0.2s linear;
      -o-transition: all 0.2s linear;
      -webkit-transition: all 0.2s linear; */
    }
  
    .cd-slider-nav .image-icon {
      width: 0px;
      height: 0px;
      line-height: 40px;
      margin: 60 auto;
      
    }
  
    .cd-slider-nav {
      background-color: #ffbb05;
      width: 100%;
      height: 80px;
      line-height: 80px;
      margin: 60 auto;
      text-align: center!important;
    }
  
    .cd-slider-nav ul {
      padding: 0;
      margin: 60;
      text-align: center!important;
    }
  
    .cd-slider-nav ul li {
      display: inline-block;
      margin-top: 60px;
      margin-left: 15px;
    }
  
    .heading h1 {
      margin-top: 50px;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0px;
    }
  
    .heading span {
      font-size: 13px;
      letter-spacing: px;
    }
  
    .content {
      margin-bottom: 100px;
      margin-top: -100px;
      background-color: #6b2c94;
      border-top: 15px solid #ffbb05;
      box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2);
    }
  
    .first-content h4 {
      margin-left: 15px;
      margin-right: 15px; 
    }
  
    .first-content p {
      margin: 0px 30px;
    }
  
   
  
  }
  
  
 /*
========================================
----------- LIGHT BOX STYLE ------------
========================================
*/

/* Preload images */
body:after {
  content: url(../images/icons/close.png) url(../images/icons/loading.gif) url(../images/icons/prev.png) url(../images/icons/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  margin-top: 5%;
  left: 0;
  width: 100%; 

  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
 
   /* height: auto; */
  max-width: inherit;
  max-height: none; 
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
  
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/icons/loading.gif) no-repeat;
  
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/icons/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/icons/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/icons/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}