body{
  background-color: #f0f3f5;

}
.navbar{
    padding: 10px;

}
#nav-text{
  font-size: 18px;
}
.active{
  color: #005da7;
}

.dropdown-item{
  border-bottom: 1px solid gray;
  padding: 10px;
}
.dropdown-item:hover{
  background-color: #005da7;
  color: white;
}
#logo{
    color: white;
}
.bg{
    /* width: 100%;
    background-size: cover;
    display: block;
    overflow: hidden;
    position: absolute;
    inset: 0px;
    box-sizing: border-box;
    margin: 0px */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.intro-page{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    /* margin-top: 120px; */
    height: 680px;
}
.intro-page:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
  
.page-title{
    text-align: center;
    z-index: 10;
}
.page-title h1{
    color: white !important;
    text-align: center !important;
    font-size: 50px;
}

.nav-link{
    color: white !important;
}

/* --------------------------
    1.3 Slick slider
-------------------------- */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:after, .slick-track:before {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.intro-slider {
  position: relative;
}

@media (max-width: 992px) {
  .intro-slider {
    margin-top: 0;
  }
}

.intro-slider .container-dots {
  position: absolute;
  width: 100%;
  top: 50%;
  margin-top: -50px;
  transform: translateY(-50%);
  z-index: 10;
  text-align: right;
}

@media (max-width: 992px) {
  .intro-slider .container-dots {
    display: none;
  }
}

.intro-slider .container-dots .slick-dots {
  display: inline-block;
}

.intro-slider .container-dots button {
  position: relative;
  font-family: 'poppins', sans-serif;
  font-size: 22px;
  color: #8c8c8c;
}

.intro-slider .container-dots button:before {
  content: '0';
}

.intro-slider .container-dots .slick-active button {
  font-size: 28px;
  font-weight: 500;
  color: rgb(33, 150, 243);
}

.green .intro-slider .container-dots .slick-active button {
  color: #3AE374;
}

.lightblue .intro-slider .container-dots .slick-active button {
  color: #3BA2FF;
}

.red .intro-slider .container-dots .slick-active button {
  color: #ff4d4d;
}

.intro-slider .container-dots .slick-active button:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
  display: inline-block;
  width: 20px;
  height: 5px;
  border-radius: 4px;
  background-color: rgb(33, 150, 243);
}

.green .intro-slider .container-dots .slick-active button:after {
  background-color: #3AE374;
}

.lightblue .intro-slider .container-dots .slick-active button:after {
  background-color: #3BA2FF;
}

.red .intro-slider .container-dots .slick-active button:after {
  background-color: #ff4d4d;
}

.no-radius .intro-slider .container-dots .slick-active button:after {
  border-radius: 0;
}

/* increase the size of slider */
.intro-slider .slide {
  position: relative;
  height: 700px;
}

@media (max-width: 992px) {
  .intro-slider .slide {
    height: auto;
    padding: 100px 0;
  }
} 
/* to disable the -1 to -6 buttons on slider */
.slick-dots li button {
  display: none;
}

/* slider background color i.e grey  */
.intro-slider .slide:after { 
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6)
}

.intro-slider .slide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 992px) {
  .intro-slider .slide img {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.intro-slider .slide .content {
  max-width: 600px;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  transform: translateY(-50%);
  z-index: 10;
}

@media (max-width: 992px) {
  .intro-slider .slide .content {
    max-width: 100%;
    position: relative;
    top: 0;
    left: 0;
    margin-top: 0;
    transform: none;
    text-align: center;
  }
}

.intro-slider .slide .content .d-line {
  margin-bottom: 10px;
}

.intro-slider .slide .content h1,
.intro-slider .slide .content h2 {
  color: white;
  font-size: 40px;
  line-height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#DP{
  margin-left: -120PX;
}
#LB{
  margin-left: -5px;
}
.intro-slider .slide .content p {
  color: white;
  font-size: 20px;
  line-height: 36px;
  margin-top: 20px;
  margin-bottom: 15px;
}

.intro-slider .slide .content h6 {
  color: #bfbfbf;
  margin-top: 15px;
  margin-bottom: 30px;
}
 

/* Banner Text animation */


.slider-wrapper {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider {
    height: 50px;
    overflow: hidden;
    padding: 0 10px;
  }


  
/* ------- slider Design Sample-1 ----------- */
  /* .slider > div {
    box-sizing: border-box;
    font-size:30px;
    border-radius: 5px;
    color: #FFF;
    height: 50px;
    margin-bottom: 50px;
    padding: 0 10px;
    line-height: 45px;
    text-align: center;
  }
  
  .text1 {
    background-color: #2ed573;
    animation: slide 5s linear infinite;
  }
  
  .text2 {
    background-color: #ffa502;
  }
  
  .text3 {
    background-color: #0d6efd;
  } */
/* ------- slider Design Sample-1 ----------- */


/* ------- slider Design Sample-2 ----------- */
  .slider > div {

    font-size:30px;
    background-color: transparent;
    color: #FFF;
    height: 50px;
    margin-bottom: 50px;
    padding: 0 10px;
    line-height: 45px;
    text-align: center;
  }
  
  .text1 {
  border-radius : 2px;
  border: 1px solid #ffa502;
    animation: slide 5s linear infinite;
  }
  
  .text2 {
    border-radius:3px;
     border: 1px solid #2ed573;;
  }
  
  .text3 {
    border-radius:3px;
     border: 1px solid #3498db;
  }
  /* ------- slider Design Sample-2 ----------- */
  
  @keyframes slide {
    0% { margin-top: -300px; }
    5% { margin-top: -200px; }
    33% { margin-top: -200px; }
    38% { margin-top: -100px; }
    66% { margin-top: -100px; }
    72% { margin-top: -0; }
    100% { margin-top: 0; }
  }
/* Banner Text animation */

#book{
    margin-top: -10px;

}
#book1{
    margin-top: -10px;
    float: right;
}
#book1-about{
  margin-top: -10px;
  float: left;
  margin-left:-40px
}
#bglink{
    margin-top: 70px;
}
#bglinkrow{
    padding: 10px;
}
#book2{
    margin-top: -10px;
    float: left;
    font-size:20px;
}
#underline{
    height: 4px;
    margin-top:10px;
    /* color: #0d6efd; */
    background-color: #0d6efd;
}

.hr{
	margin: 1em 0 .6em 0;
	padding: 0 0 0 20px;
	font-weight: normal;
	font-family: 'Hammersmith One', sans-serif;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
	position: relative;
	font-size: 30px;
	line-height: 40px;
}
.hr:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	border-radius: 2px;
	background-color: #005da7;
	box-shadow: 
		inset 0 1px 1px #005da7, 
		0 1px 1px #005da7;
}
.hr2{
	padding: 0 0 0 20px;
	font-weight: normal;
	font-family: 'Hammersmith One', sans-serif;
	text-shadow: 0 -1px 0 rgba(0,0,0,0.4);
	position: relative;
	font-size: 30px;
	line-height: 40px;
}
.hr2:after {
	position: absolute;
	content: "";
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	border-radius: 2px;
	background-color: #005da7;
	box-shadow: 
		inset 0 1px 1px #005da7, 
		0 1px 1px #005da7;
}
/* #title-underline :after{
  content: '';
  height: 4px;
  width: 25%;
  display:block;
  margin:auto;
  margin-top:10px;
  background-color: #0d6efd;
} */
#dot1{
    color: #0d6efd;
    font-size: 40px;
    margin-left:-6px
}
#dot{
    color: #0d6efd;
    font-size: 40px;
    margin-left:0px
}
#dot2{
  color: #0d6efd;
  font-size: 40px;
  margin-left:-8px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#dot-about{
    color: #0d6efd;
    font-size: 40px;
    margin-left:-8px
}
#desc1{
  background-color: #005da7;
  padding: 50px;
  color: white
}
#desc1-h3{
  text-align: center;
  font-weight:500;
  margin-top: 10px;
  margin-bottom: 10px;
}

#desc2{
  padding: 20px;
  margin-top: 40px;
}
#services{
  width: 18rem;
  background-color: white;
  height: 380px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#more-services{
  background-color: white;
  height: 380px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#service-portfolio{
  display: block;
  margin: auto;
}
#service-img{
  height: 170px;
}



#lm1{
  margin-top: 30px;
}

#about{
  margin-left: 20px;
  margin-top: 30px;
  font-weight: normal;
  font-size: 17px;
  text-align: justify;
  margin-right:20px;
}

#know{
  margin-left: 30px;
  background-color: #005da7;
  height: 40px;
  border-color: unset;
}
#know2{
  margin-left: 20px;
  background-color: #005da7;
  height: 40px;
  border-color: unset;
}

#know3{
  display: block;
  margin: auto;
  background-color: #005da7;
  height: 40px;
  border-color: unset;
}
#aboutList{
  margin-left: 10px;
  margin-top:20px
}
#aboutList li{
	margin:0 0 13px;
	padding:0 0 0 25px;
  font-weight: 500;
}
#poster{
  color: white;
  height: 550px;
  background-color: #005da7;
}
#banner{
  margin-top: 60px;
  height: 550px;
}
#poster-img{
  border-radius: unset;
  height: 550px;
}
#poster-img1{
  border-radius: unset;
  height: 550px;
}

#img-div:after{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}

#poster-text{
padding: 80px;
}

#about-text{
  padding: 55px;
}
#poster-text1{
  margin-top: 30px;
  font-size:25px;
  font-weight:300;
  text-align:left;
  }
.nopadding {
  padding: 0 !important;
  margin: 0 !important;
}

#connect{
  border: 1px solid white;
  border-radius: 5px;
  padding: 20px;
}

/* #img1{
  background: url(/images/panelWash.jpg)  center center ; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
} */

#poster-button{
  font-size:30px;
  background-color: transparent;
  color: #FFF;
  border-color:white;
  height: 50px;
  margin-top: 20px;
  padding: 0 10px;
  line-height: 45px;
  text-align: center;
}

/* Testimonial  */
/* .demo{ 
  background: #f8f8f8;
 } */
.testimonial{
    margin: 0 20px 40px;
}
.testimonial .testimonial-content{
    padding: 35px 25px 35px 50px;
    margin-bottom: 35px;
    background: #fff;
    border: 1px solid #f0f0f0;
    position: relative;
}
.testimonial .testimonial-content:after{
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 22px;
    transform: rotate(45deg);
}
.testimonial-content .testimonial-icon{
    width: 50px;
    height: 45px;
    background: #005da7;
    text-align: center;
    font-size: 22px;
    color: #fff;
    line-height: 42px;
    position: absolute;
    top: 37px;
    left: -19px;
}
.testimonial-content .testimonial-icon:before{
    content: "";
    border-bottom: 16px solid #005da7;
    border-left: 18px solid transparent;
    position: absolute;
    top: -16px;
    left: 1px;
}
.testimonial .description{
    font-size: 15px;
    font-style: italic;
    color: #8a8a8a;
    line-height: 23px;
    margin: 0;
}
.testimonial .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #525252;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin: 0 0 5px 0;
}
.testimonial .post{
    display: block;
    font-size: 14px;
    color: #005da7;
}
.owl-theme .owl-controls{
    margin-top: 20px;
}
.owl-theme .owl-controls .owl-page span{
    background: #ccc;
    opacity: 1;
    transition: all 0.4s ease 0s;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
    background: #005da7;
}


/* 
footer */
footer{
  background-color: #1a1a1a;
  color: white;
  padding: 30px;
}

#footerlist li{
  margin-left: -30px;
  text-decoration: none;
}
#footerlist2 li{
  margin-top: 10px;
  margin-bottom: 10px;
  margin-left: -30px;
  font-size: 15px;
}
#footerlist a{
  text-decoration: none;
  color: white;
}

#dot3{
  color: #0d6efd;
  margin-left:-6px;
}


#work{
	padding:40px;
  background-color: white;
  height: 350px;
  margin-top: 20px;
  margin-bottom: 20px;
}

#work-img{
  display: block;
  margin: auto;
  height: 80px;
  width: 80px;
}

/* Back to Top scroller */
#scroll {
  position:fixed;
  right:10px;
  bottom:10px;
  cursor:pointer;
  width:40px;
  height:40px;
  background-color:#0d6efd;
  text-indent:-9999px;
  display:none;
  -webkit-border-radius:5px;
  -moz-border-radius:5px;
  border-radius:5px
}
#scroll span {
  position:absolute;
  top:50%;
  left:50%;
  margin-left:-8px;
  margin-top:-12px;
  height:0;
  width:0;
  border:8px solid transparent;
  border-bottom-color:#ffffff;
}
#scroll:hover {
  background-color:#005da7;
  opacity:1;filter:"alpha(opacity=100)";
  -ms-filter:"alpha(opacity=100)";
}


/* About Page */

#better{
  display: block;
  margin: auto;
}


button.accrodion {
  background-color: #005da7;
  border: 0;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 21px;
  font-weight: 500;
  text-align: left;
  color: rgba(255,255,255,1); 
}
button.accrodion1 {
  background-color: #005da7;
  border: 0;
  padding: 10px;
  border-radius: 3px;
  margin-bottom: 5px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  color: rgba(255,255,255,1); 
}
.accrodion,.panel{
  width: 100%;
}
.accrodion1,.panel{
  width: 100%;
}
.panel{
  display:none;
  padding: 10px 20px 20px;
  box-shadow: 0 5px 5px lightgray;
  border-radius: 3px;
  background-color: white;
}
.active .panel{
  display:block;
}
/* 
Contact Us Page */
#contact-button{
  background-color: #005da7;
  height: 40px;
  width: 50%;
  font-size: 20px;
  line-height:2px;
  
  border-color: unset;
}
#contact-right1{
  padding: 20px;
  text-align: center;
  background-color: #005da7;
  color: white;
}
#contact-right3{
  padding:30px;
  text-align: center;
  background-color: #005da7;
  color: white;
}
#location{
  width: 100%;
  height: 500px;
}
#footerlist3 li{
  /*   margin-top: 10px; */
    margin-bottom: 10px;
    text-align:left;
    /* margin-left: -30px; */
    font-size: 18px;
  }


@media (max-width: 768px) {
    .slider-wrapper
        {
            display: block;
            margin-top:200px;
        }
     .slider{
       margin-top:25px;
       margin-bottom:25px
     }   
     #underline{
        width:30%; 
        margin-left:35% !important; 
        margin-right:35% !important;
    }
     #book1{
         float: none;
     }
     #book2{
         float: none;
         margin-top:10px;
         color: white;
     }
     /* .navbar{
         background-color: white;
     } */
     #logo{
         color: white;
     }
     .nav-link{
         color: black !important;
     }
     #dot{
        margin-left:-10px
      }
      .intro-page{
        height:750px
      }
      .navbar-toggler {
          /* border-color: white !important; */
          color: white;
      }
      #desc1{
        padding: 20px;
      }
      #desc1-h3{
        margin-top: 20px;
        margin-bottom: 20px;
      }
      #service-img{
      height: unset;
      }
      #services{
        height: 450px;
        width:unset;
      }
      #poster{
      	height:unset;
      	margin-bottom:60px;
      }
      #poster-text{
        padding: 10px;
        }
           #poster-text-about{
             padding: 20px;
           }
      #poster-img{
        height: 350px;
      }
      #poster-img1{
        display: none;
      }
      #banner{
        height: unset;
      }
      #dot3{
        color: #0d6efd;
        margin-left:-6px;
        font-size:40px;
      }
      #about-text{
  padding: 20px;
}

#banner{
  margin-top:10px;
}
#better-card{
  margin-bottom: 30px;
}

#more-services{
height:420px;
}      

button.accrodion {

  padding: 10px;

}   
#contact-right1{
  padding: 30px;
} 
#contact-right2{
  padding: 30px;
} 
#contact-right3{
  padding: 30px;
} 
    }

@media (min-width: 768px) {
    .navbar-brand.abs
        {
            position: absolute;
            width: 100%;
            left: 0;
            text-align: center;
        }
    
    }