body{
  /*------ user-select: none;*/
  font-family: "Poppins", sans-serif!important;
}

/* Prelaoder */

#preloader {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 9999;
   overflow: hidden;
   background: #fff;
 }
 
 #preloader:before {
   content: "";
   position: fixed;
   top: calc(50% - 30px);
   left: calc(50% - 30px);
   border: 6px solid #f2f2f2;
   border-top: 6px solid #007bff;
   border-radius: 50%;
   width: 60px;
   height: 60px;
   -webkit-animation: animate-preloader 1s linear infinite;
   animation: animate-preloader 1s linear infinite;
 }
 
 @-webkit-keyframes animate-preloader {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
   }
 
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
   }
 }
 
 @keyframes animate-preloader {
   0% {
     -webkit-transform: rotate(0deg);
     transform: rotate(0deg);
   }
 
   100% {
     -webkit-transform: rotate(360deg);
     transform: rotate(360deg);
   }
 }
 
/*----------header start*/
.tophead{  background-color: #000;}

.phone{  font-size: 15px;  font-weight: 500;  color: #fff;}
.email a{  font-size: 15px;  font-weight: 500;  color: #fff!important; text-decoration: none!important;}
 #header{
   background-color: #ffffff;
   height: 110px;
   z-index: 1100;
   transition: all 0.5s;
   padding: 0px;
 }
 #header.header-scrolled,
#header.header-pages {
  transition: all 0.5s;
 padding: 0px 0;
 background:#ffffff;
 box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
 min-height:110px;

}
#header.header-scrolled,
#header .logo img {
 padding: 0;
 margin:0px 0 0;
}
.main-pages {
 margin-top: 60px;
}

/*----------header start*/
.mobile-nav-toggle {display: block!important;}
 .clear {clear:both;}

 /*------dropdown css End*/
 .main-nav {
   /* Drop Down */
   /* Deep Drop Down */
 }
 
 .main-nav,
 .main-nav * {
   margin: 0;
   padding:2px 0 0px;
   list-style: none;
   background:transparent;
   border-radius:0px;
 }
 
 .main-nav > ul > li {
   position: relative;
   white-space: nowrap;
   float: left;
 
 }
 
 .main-nav a {
    display: block;
     position: relative;
     color: #000;
     padding:45px 10px 10px;
     transition: 0.3s;
     font-size: 14px;
     text-transform: uppercase;
     font-weight:500;
 }
 
 .main-nav .active > a{
     color: #000;
 }
 .main-nav .hover > a:active{
     color: #000;
 }
 .main-nav a:hover,
 .main-nav li:hover > a {
   color: #000;
 }
 
 .main-nav .drop-down ul {
   display: block;
   position: absolute;
   left: 0;
   top: calc(100% + 30px);
   z-index: 99;
   opacity: 0;
   visibility: hidden;
   padding: 10px 0;
   background: #ffffff;
   box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
   transition: ease all 0.3s;
   
 }
 
 .main-nav .drop-down:hover > ul {
   opacity: 1;
   top: 100%;
   visibility: visible;
 }
 
 .main-nav .drop-down li {
   min-width: 180px;
   position: relative;
 }
 
 .main-nav .drop-down ul a {
   padding: 6px 20px;
   font-size: 13px;
   color: #000;
 }
 
 .main-nav .drop-down ul a:hover,
 .main-nav .drop-down ul .active > a,
 .main-nav .drop-down ul li:hover > a {
   color:#000;
 }
 
 .main-nav .drop-down > a:after {
   content: "\f107";
   font-family: FontAwesome;
   padding-left: 10px;
 }
 
 .main-nav .drop-down .drop-down ul {
   top: 0;
   left: calc(100% - 30px);
 }
 
 .main-nav .drop-down .drop-down:hover > ul {
   opacity: 1;
   top: 0;
   left: 100%;
 }
 
 .main-nav .drop-down .drop-down > a {
   padding-right: 35px;
 }
 
 .main-nav .drop-down .drop-down > a:after {
   content: "\f105";
   position: absolute;
   right: 15px;
 }
 
 /* Mobile Navigation */
 
 .mobile-nav {
   position: fixed;
   top: 0;
   bottom: 0;
   z-index: 9999;
   overflow-y: auto;
   left: -260px;
   width: 260px;
   padding-top: 18px;
   background:#ffffff;
   transition: 0.4s;
 }
 
 .mobile-nav * {
   margin: 0;
   padding: 0;
   list-style: none;
 }
 
 .mobile-nav a {
   display: block;
   position: relative;
   color: #000;
   padding: 15px 20px 10px;
   font-weight: 500;
   border-bottom: 1px solid #858484;
     text-transform:uppercase;
   font-size:13px;
 } 
 
 .mobile-nav a:hover,
 .mobile-nav li:hover > a {
   color: #000;
   text-decoration: none;
 }
 
 .mobile-nav .drop-down > a:after {
   content: "\f078";
   font-family: FontAwesome;
   padding-left: 10px;
   position: absolute;
   right: 15px;
 }
 
 .mobile-nav .active.drop-down > a:after {
   content: "\f078";
 }
 
 .mobile-nav .drop-down > a {
   padding-right: 35px;
 }
 
 .mobile-nav .drop-down ul {
   display: none;
   overflow: hidden;
 }
 
 .mobile-nav .drop-down li {
   padding-left: 20px;
 }
 
 .mobile-nav-toggle {
   position: fixed;
   right: 0;
   top: 0;
   z-index: 9998;
   border: 0;
   background: none;
   font-size: 24px;
   transition: all 0.4s;
   outline: none !important;
   line-height: 1;
   cursor: pointer;
   text-align: right;
 }
 
 .mobile-nav-toggle i {
   margin:68px 50px 0 0;
   color: #000;
 }
 
 .mobile-nav-overly {
   width: 100%;
   height: 100%;
   z-index: 9997;
   top: 0;
   left: 0;
   position: fixed;
   background: rgba(19, 18, 18, 0.8);
   overflow: hidden;
   display: none;
 }
 
 .mobile-nav-active {
   overflow: hidden;
 }
 
 .mobile-nav-active .mobile-nav {
   left: 0;
 }
 
 .mobile-nav-active .mobile-nav-toggle i {
   color: #fff;
 }
   /*------story css */
#story{
   padding:50px 0px 30px;
   text-align: center;
}
#story h1 {
   line-height: 70px;
   color: #000000;
   padding: 0px 0% 0px;
   font-size: 80px;
   font-weight: 500;
   text-align: center !important;
  text-transform: uppercase;
}
.content {
   padding: 30px 7%  30px;
   position: relative;
   
}


#story .content p {
   line-height: 26px;
   font-size: 17px;
   color: #000;
   padding: 20px 10% 20px;
   font-weight: 500;
}
a.learnbtn{
   padding: 7px 15px;
   font-size: 16px;
   text-align: center;
   color: #000;
   background: transparent;
   border: 1px solid #000;
   border-radius: 4px;
   text-transform: uppercase;
   font-weight: 500;
}
a.learnbtn:hover{
   text-decoration: none;
   background-color: #000;
   transition: 0.5s;
   color: #fff;
}
 /*------story css */
 #about{
  padding:50px 0px 30px;
  text-align: center;
     margin-top:60px;
}
#about h1 {
  line-height: 70px;
  color: #000000;
    padding: 20px 0px 20px 0px !important;
    margin: 0px !important;
  font-size: 65px;
  font-weight: 500;
  text-align: center !important;
 text-transform: uppercase;
}
.abtcontent {
  padding: 30px 7%  30px;
  position: relative;
  
}


#about .abtcontent p {
  line-height: 26px;
  font-size: 17px;
  color: #000;
  padding: 20px 10% 20px;
  /*font-weight: 500;*/
}

#about h2{
    font-size: 33px;
    color: #000;
    margin: 15px 0px 10px 0px;
    font-weight: bold;
    width: 100%;
}

#about h3{
    font-size: 27px;

    margin: 15px 0px 12px 0px;
    font-weight: bold;
    width: 100%;
}


 /*------services css */
#services{
   padding: 50px 0px;
 background-color: #646464;
}
#services h1 {
 text-align: center;
   line-height: 70px;
   color: #ffffff;
   padding: 0px 0% 50px;
   font-size: 60px;
   font-weight: 400;
   margin: 0px !important;
   text-transform: uppercase;
}
#services .text h2 a{
 text-align: left!important;
   line-height: 50px;
   color: #ffffff;
   padding: 25px 0% 50px;
   font-size: 40px;
   font-weight: 400;
   margin: 0px !important;
   text-transform: uppercase;
}
#services .text h2{padding-top: 25px!important;}
#services .text h2 a{text-decoration: none;}
#services .col-lg-7{padding-left:0px!important;}
#services  .iconbox{text-align: left;}
/*--------------------------------------------------------------
# quality
--------------------------------------------------------------*/
#quality h1{
padding: 10px 0px;
background-color: #000;
color: #fff;
font-size: 40px;
font-weight: 400;
}
#quality .innertext{pading:20px 0px;}
#quality .innertext p{
 line-height: 26px;
 font-size: 17px;
 color: #000;
 padding: 40px 18% 0px;
 font-weight: 500;
}
#quality .innertext h5{
 line-height: 26px;
 font-size: 20px;
 color: #000;
 padding: 10px 0 20px;
 font-weight: 700;
}

/*--------------------------------------------------------------
# testimonials sec
--------------------------------------------------------------*/
#testimonials{
 padding:40px 0px 20px;text-align: center!important;
 background: #ffffff;position: relative;
}

#testimonials h1 {
 color: #ffffff;
 font-size: 45px;
 text-align: center !important;
 font-weight: 500;
 padding: 50px 0px 50px;
 margin: 0px;
 text-transform: uppercase;
 background-image: url("../images/testi.png");
 background-position: center center;
 background-size: cover;
 background-repeat: no-repeat;
}
.testinner{background: #f6f6f6;padding:40px 20px 20px;margin-top:30px;}
.testinner img{margin:auto;width:20%!important;}

.testinner p{
 color: #000000;
 font-size: 20px;
 text-align: center !important;
 font-weight: 500;
 padding: 20px 10px 20px;
}
.testinner h5{
 color: #000000;
 font-size: 20px;
 text-align: center !important;
 font-weight: 500;
 padding: 0px 20px 20px 10px;
}
a.seeall1 {
 font-size: 16px;  text-transform: uppercase; color: #417745;
   margin-top:0px;font-weight:500; text-decoration:underline;   
 }

a.seeall1:hover {
   font-size: 16px;  text-transform: uppercase; color: #417745;
   margin-top:0px;font-weight:500; text-decoration:none!important;
}
.review h3 a{color: #000000;
 font-size: 40px;
 text-align: center !important;
 font-weight: 500;
 padding:10px 0px;
text-decoration: underline;
}
/*--------------------------------------------------------------
# footer sec
--------------------------------------------------------------*/
#footer{
 padding:30px 0px 10px;
 background-image: url("../images/footer_bg.jpg");
 background-position: center center;
background-repeat: no-repeat;
background-size: cover;
}
#footer  .ftrlogo h3{color: #ffffff;
 font-size: 22px;
 text-align: center !important;
 font-weight: 500;
 padding:10px 0px;
}
#footer  h4 {
 font-size: 18px;
 font-weight:500;
 color: #fff;
 text-transform: uppercase;
 position: relative;
 padding: 20px 0px;
 
}

#footer  .footer-links {
 margin-bottom: 0px!important; margin-left: 100px;
}

#footer  .footer-links ul {
 list-style: none;
 padding: 0;
 margin: 0;
}

#footer  .footer-links ul li {
 padding: 5px 0;
 font-size:13px;

}
#footer .footer-links ul li a {
 color: #fff!important;
 font-weight:500;
}

#footer  .footer-links ul a:hover {
 color: #fff;
  font-weight:500;text-decoration:underline;
}

#footer  .footer-contact {
 margin-bottom: 0px;
}

#footer  .footer-contact p {
 line-height: 28px;
 color:#fff;
  font-weight:500;
  font-size:13px;
}
#footer  .footer-contact a {
 font-size: 13px;
 background: transparent;
 color: #fff;
 line-height: 1;
 padding: 8px 0;
 text-align: left;
 transition: 0.3s;
}
#footer  .footer-contact a:hover {text-decoration:underline;}
#footer .copyright p{
 text-align: center;
 font-size:15px;
 color:#fff;
  padding:20px 0px 0px;
margin-top:0px;
margin: 0px!important;
}
/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 992px) and (max-width: 1260px){
 #story .content p {
   line-height: 26px;
   font-size: 17px;
   color: #000;
   padding: 20px 5% 20px;
   font-weight: 500;
}
#quality .innertext p {
 line-height: 26px;
 font-size: 17px;
 color: #000;
 padding: 40px 10% 0px;
 font-weight: 500;
}
 #services .text h2 a {
   text-align: left !important;
   line-height: 18px;
   color: #ffffff;
   padding: 25px 0% 50px;
   font-size: 32px;
   font-weight: 400;
   margin: 0px !important;
   text-transform: uppercase;
}
}


@media (min-width: 768px) and (max-width: 991px) {

 #services .iconbox {
   text-align: center;
   margin-bottom: 20px;
}
#story .content p {
 line-height: 26px;
 font-size: 17px;
 color: #000;
 padding: 20px 0% 20px;
 font-weight: 500;
}
 #quality .innertext p {
   line-height: 26px;
   font-size: 17px;
   color: #000;
   padding: 40px 0% 0px;
   font-weight: 500;
}
 #footer .footer-links {
   margin-bottom: 0px !important;
   margin-left: 40px;
}

}
@media (min-width: 575px) and (max-width: 767px) {

#footer h4 {
   padding: 30px 0px 10px!important;
}
 #services .iconbox {
   text-align: center;
   margin-bottom: 20px;
}
#story .content p {
 line-height: 26px;
 font-size: 17px;
 color: #000;
 padding: 20px 0% 20px;
 font-weight: 500;
}
 #quality .innertext p {
   line-height: 26px;
   font-size: 17px;
   color: #000;
   padding: 40px 0% 0px;
   font-weight: 500;
}
 #footer .footer-links {
   margin-bottom: 0px !important;
   margin-left: 40px;
}
.content {
 padding: 30px 0% 30px;
 position: relative;
}
}
@media (min-width: 320px) and (max-width: 574px) {
 #banner{    padding-top: 50px;}
 #story h1 {
   line-height: 70px;
   color: #000000;
   padding: 0px 0% 0px;
   font-size: 50px;
 }
 .content {
   padding: 30px 5% 30px;
   position: relative;
}
 #footer h4 {
     padding: 30px 0px 10px!important;
 }
   #services .iconbox {
     text-align: center;
     margin-bottom: 20px;
 }
 #quality h1 {
   padding: 10px 0px;
   background-color: #000;
   color: #fff;
   font-size: 27px;
   font-weight: 400;
}
.review h3 {
 font-size: 22px;
}
 #story .content p {
   line-height: 26px;
   font-size: 17px;
   color: #000;
   padding: 20px 0% 20px;
   font-weight: 500;
 }
   #quality .innertext p {
     line-height: 26px;
     font-size: 17px;
     color: #000;
     padding: 40px 0% 0px;
     font-weight: 500;
 }
   #footer .footer-links {
     margin-bottom: 0px !important;
     margin-left: 40px;
 }

    #about h1 {
        line-height: 65px;
        color: #000000;
        padding: 20px 0px 20px 0px !important;
        margin: 0px !important;
        font-size: 56px;
        font-weight: 500;
        text-align: center !important;
        text-transform: uppercase;
    }
 
 }