/* 1 Preloader css START */

#loader-wrapper {
  background: #fcfcfe;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  transition: all 0.4s ease-out 0s;
  width: 100%;
  z-index: 1000;
}

#loader {
  width: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: relative;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#loader-wrapper .loader-section {
  background: #ffffff none repeat scroll 0 0;
  height: 100%;
  position: fixed;
  top: 0;
  width: 51%;
  z-index: 1000;
}

#loader-wrapper .loader-section.section-left {
  display: none;
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  display: none;
  right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
  background: transparent none repeat scroll 0 0;
  transition: all 0.9s ease-out 0s;
}

.loaded #loader-wrapper .loader-section.section-right {
  background: transparent none repeat scroll 0 0;
  transition: all 0.9s ease-out 0s;
}

.loaded #loader {
  opacity: 0;
}

.loaded #loader-wrapper {
  background: transparent none repeat scroll 0 0;
  visibility: hidden;
}

/* 1 Preloader css CLOSE */

header {
  position: relative;
  width: 100%;
  background-color: #fafafa;
  -ms-transition: .4s all ease-in-out;
  -moz-transition: .4s all ease-in-out;
  -webkit-transition: .4s all ease-in-out;
  -o-transition: .4s all ease-in-out;
  transition: .4s all ease-in-out;
}

/*header ul{display:flex;justify-content:flex-end;padding:0px;align-items:center;}*/
/*header ul li{display:inline-block;}*/
/*header ul li a{display:block;padding:5px 15px;color:#000;font-size:13px;position: relative;}*/

header .container {
  width: 100%;
  max-width: 100%;
  padding: 8px 7%;
  z-index: 3;
  position: relative;
}

/*header.fixed{position: fixed; left: 0; width: 100%; top: 0; background:#fff;z-index:99;padding:25px 0px 20px; }*/


.headerinner {
  position: relative;
  width: 100%;
  padding: 0px;
}

.open_menu {
  display: none;
}

.site_logo {
  position: relative;
  width: 35%;
  /*max-width: 372px;*/
  max-width: 410px;
  display: inline-block;
}
.headerRT {
  position: relative;
  float: right;
  width: 65%;
  text-align: right;
}

.site_logo a {
  display: inline-block;
}

.site_logo a img {
  display: inline-block;
}


.headerTitle {
  position: relative;
  /*font-family: 'Poppins-Medium';*/
  font-family: 'Poppins', sans-serif;
  text-align: center;
  display: inline-block;
  color: #000000;
  /*margin-top: 45px;*/
  margin-top: 20px;
  font-weight: 500;
}
.headerTitle ul{
  position: relative;
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1;
  padding-left: 15px;
}
.headerTitle ul li {
  position: relative;
  display: inline-block;
  text-align: center;
  color: #000000;
  font-size: inherit;
  line-height: inherit;
}
.headerTitle ul li a {
  position: relative;
  padding: 10px;
  color: #000000;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.headerTitle ul li a:hover,.headerTitle ul li a:focus,
.headerTitle ul li a.headercallBtn:hover, .headerTitle ul li a.headercallBtn:focus {
  color: #b02401;
}
.headerTitle ul li a.headercallBtn, .headercallBtn {
  color: #1dad3e;
}
.headerTitle ul li a.headercallBtn i, .headercallBtn i {
  margin-right: 5px;
}

.headercallBtn {
  position: relative;
}
.headerApprovedby {
  position: relative;
  display: inline-block;
  float: right;
}
.headerLoc {
  position: relative;
  display: inline-block;
  text-align: left;
}
.headerLoc a {
  position: relative;
  color: #000000;
  font-size: 15px;
  line-height: 1;
  font-family: 'Poppins-Medium';
  display: inline-block;
  padding: 0 0 0 24px;
  background: url(../images/logos/location_pin.png) no-repeat left center;
}
.headerLoc a span {
  font-family: 'Poppins-SemiBold';
  font-family: 'Poppins-Bold';
  display: block;
}
.headerLoc a small {
  font-size: 90%;
}
.headerLocinner {
  position: relative;
  width: 100%;
  float: left;
  padding-left: 20px;
}
.headerApprovedby ul {
  position: relative;
  margin: 0px;
}
.headerApprovedby ul li{
  position: relative;
  display: inline-block;
}
.headerApprovedby ul li span {
  position: relative;
  width: 100%;
  text-align: center;
  font-family: 'Poppins-Regular'; 
  color: #ffffff;
  opacity: .9;
  font-size: 13px;
  display: inline-block;
}
.headerApprovedby ul li img {
  position: relative;
  width: 84px;
  margin: 0 auto;
}

.headerTitle small {
  /*font-size: 19px;*/
  font-size: 26px;
  display: block;
  line-height: 1.2;
  font-family: 'Poppins-Bold';
  margin-bottom: 2px;
}

.headerTitle label {
  font-family: 'Poppins-Regular'; 
  font-size: 22px;
  display: block;
}

/* STICKY ANV BAR */    
.fixedHeader{
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 10;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;  
}

.stripLogo {
  position: relative;
  max-width: 100%;
  display: inline-block;
  width: 200px;
  cursor: default;
}


/* Responsive Media CSS Start here */

@media screen and (min-width:768px) {}

@media screen and (max-width:1599px) {}

@media screen and (max-width:1399px) {}

@media screen and (max-width:1199px) {
  .site_logo {
    /*max-width: 232px;*/
  }
  .headerTitle small {
    font-size: 24px;
  }
  .headerTitle label {
    font-size: 20px;
  }
  .headerTitle ul {
    font-size: 14px;
    padding: 0;
  }
  .headerTitle ul li a {
    padding: 10px;
  }
  .headerLocinner {
    padding-left: 7px;
  }
  .headerLoc a {
    font-size: 13px;
  }
  .headerTitle {
    margin-top: 10px;
  }


}

@media screen and (max-width: 1024px) {
  .headerTitle ul li a {
    padding: 0 8px;
  }
  .headerTitle ul {
    font-size: 13px;
  }
  .headerLoc a {
    font-size: 12px;
    background: url(../images/logos/location_pin.png) no-repeat left center;
    background-size: 12px;
    padding: 0 0 0 20px;
  }
  .headerTitle {
    /*margin-top: 28px;*/
    margin-top: 0px;
  }
  .site_logo {
    /*max-width: 215px;*/
    max-width: 350px;
  }

}

@media screen and (max-width:991px) {
  header .container {
    /*padding: 10px 6% 10px 3%;*/
    padding: 10px 3.5% 10px 2%;
  }
  .headerTitle small {
    font-size: 22px;
  }
  .headerTitle label {
    font-size: 18px;
  }
  .site_logo {
    max-width: 100%;
  }
  .site_logo {
    width: 32%;
  }
  .headerRT {
    width: 68%;
  }
  .headerTitle ul {
    font-size: 11px;
  }


}

@media screen and (max-width:767px) {
  .headerTitle small {
    font-size: 15px;
    text-align: center;
  }
  .headerTitle label {
    font-size: 12px;
    text-align: center;
    margin-top: 2px;
  }
  header .container {
    padding: 12px 20px 10px;
  }
  .headerinner {
    text-align: center;
    padding: 0px;
  }
  .site_logo {
    width: 95%;
    max-width: 292px;
    float: none;
    margin: 0 auto;
  }
  .headerTitle {
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 10px 0;
  }
  .headerRT {
    position: relative;
    float: left;
    width: 100%;
    text-align: center;
  }
  .headerApprovedby {
    float: none;
  }
  .headerApprovedby ul li img {
    width: 60px;
  }
  .headerTitle ul li a {
    padding: 0 8px; 
    line-height: 1.6;
  }
  .headerTitle ul {
    font-size: 18px;
  }
  .headerLoc a {
    font-size: inherit;
  }

  .mobHide{
    display: none !important;
  }




}

@media screen and (max-width:480px) {}