
.InteriorPage{
   background: url(/Resources/Buildings/Projects/Resource/60x80houseelevation/3D%20View%20291.jpg) no-repeat  center center/cover; 
    position: relative;
    background-repeat: repeat-x;
    animation: backgroundScroll 55s linear infinite ;
    opacity: 0.9;
}

#page-2{
/*    background: url(/Resources/Buildings/Civil.jpg) no-repeat  center center/cover; */
    position: relative;
}

#page-2 *{
    z-index: 10;
}


.InteriorPage::before{
     content: '';
    position: absolute;
    backdrop-filter: blur(5px);
    background-color:wheat;
/*    background-color: linear-gradient(10deg, lavender  30%, white 10%);*/
}

.InteriorPage::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    backdrop-filter: blur(5px);
    background-color:transparent;
    background: linear-gradient(to right, #ffcccc, #ffebcc, #ffffcc, #ccffcc, #cceeff, #ccccff, #f5ccff);
}

.InteriorPage .service-title{
    margin-top: 60px;
}

/* Slideshow container */
.InteriorContainer {
     width: 80vw;
    height: 80vh ;
    position: relative;
    align-self: center;
    overflow: hidden;

  }
  
  /* Hide the images by default */
  .InterriorSlider {
    position: absolute;
    margin: 0px;
    align-items: center;
    align-content: center;
    opacity: 1;
    overflow: hidden;

  }

 .InterriorSlider img{ 
    width: 80vw;
    height: 80vh ;
    opacity: 1;

}
  
  /* Next & previous buttons */
  .prevInteriors, .nextInteriors {
    position:absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 0px;
    color: black;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }

  
  /* Position the "next button" to the right */
 .prevInteriors {
    left: 10px;
    border-radius: 3px 0 0 3px;
  }
  .nextInteriors {
    right: 10px;;
    border-radius: 3px 0 0 3px;
  }
  
  
  /* Caption text */
  .textInteriors {
    color: black;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    top: 0px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertextInteriors {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 2.5s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }