@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,300,300
  italic,400italic,600,600italic,700,700italic,800,800
  italic|Droid+Sans:400,700|PT+Sans:400,400italic,700,700italic|Lato:400,100,100
  italic,300,300italic,400italic,700,700italic,900,900italic|Oswald:400,300,700|
  Droid+Serif:400,400italic,700,700italic|Roboto:400,100,100italic,300,300italic,400
  italic,500,500italic,700,700italic,900,900italic|Lora:400,400italic,700,700
  italic|Libre+Baskerville:400,400italic,700|Josefin+Slab:400,100,100i
  talic,300,300italic,400italic,600,600italic,700,700italic|Arvo:400,400
  italic,700,700italic|Ubuntu:400,300,300italic,400italic,500,500italic,700,700
  italic|Raleway:400,100,200,300,500,600,700,800,900|Source+Sans+Pro:400,200,200
  italic,300,300italic,400italic,600,600italic,700,700italic,900,900
  italic|Lobster|PT+Serif:400,400italic,700,700italic|Old+Standard+TT:400,400
  italic,700|Gravitas+One|Merriweather:400,300,300italic,400italic,700,700italic,900,900italic);
/*
    font-family: 'Bruno Ace SC', cursive;

    font-family: 'Encode Sans', sans-serif;

    font-family: 'Lato', sans-serif;

    font-family: 'Oxygen', sans-serif;

    font-family: 'Poppins', sans-serif;




font-family: 'Open Sans', sans-serif;
  font-family: 'Droid Sans', sans-serif;
  font-family: 'PT Sans', sans-serif;
  font-family: 'Lato', sans-serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Droid Serif', serif;
  font-family: 'Roboto', sans-serif;
  font-family: 'Lora', serif;
  font-family: 'Libre Baskerville', serif;
  font-family: 'Josefin Slab', serif;
  font-family: 'Arvo', serif;
  font-family: 'Ubuntu', sans-serif;
  font-family: 'Raleway', sans-serif;
  font-family: 'Source Sans Pro', sans-serif;
  font-family: 'Lobster', cursive;
  font-family: 'PT Serif', serif;
  font-family: 'Old Standard TT', serif;
  font-family: 'Gravitas One', cursive;
  font-family: 'Merriweather', serif;

  ( 
  font-family: 'Open Sans', sans-serif; *****
  font-family: 'Droid Sans', sans-serif; *****
  font-family: 'PT Sans', sans-serif; *****
  font-family: 'Lato', sans-serif; *****
  font-family: 'Roboto', sans-serif; *****
  font-family: 'Source Sans Pro', sans-serif; *****  
  font-family: 'Roboto', sans-serif; *****
  font-family: 'Raleway', sans-serif; ***** 
  ) 

*/

.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition-property: opacity;
    overflow:hidden;
}
.item.active img {
    transition: transform 5000ms linear 0s;
    /* This should be based on your carousel setting. For bs, it should be 5second*/
    transform: scale(1.05, 1.05);
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}

.carousel-fade .carousel-control {
  z-index: 2;
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

nav {
  display: block;
  background: white;
  padding-top: 40px;
}

.menu { display: block; }

.menu li {
  display: inline-block;
  position: relative;
  z-index: 100;
}

.menu li:first-child { margin-left: 0; }

.menu li a {
  font-weight: normal;
  text-decoration: none;
  padding: 5px 12px;
  display: block;
  color: #000;
  transition: all 0.2s ease-in-out 0s;
}

.menu li a:hover,
.menu li:hover>a {
  color: #FF7900;
  background: #fff;
}

.menu ul {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
  width: 260px;
  position: absolute;
  left: 0px;
  background: #E8EAEC;
  z-index: 99;
  transform: translate(0, 20px);
  transition: all 0.2s ease-out;
}

.menu ul:after {
  bottom: 100%;
  left: 20%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-bottom-color: #fff;
  border-width: 6px;
  margin-left: -6px;
}

.menu ul li {
  display: block;
  float: none;
  background: none;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  font-size: 16px;
  font-weight: normal;
  display: block;
  color: #000;
  background: transparent;
  line-height: 16px;
  border-bottom: 1px solid #D4D4D4;
  padding: 15px 10px;
}

.menu ul li a:hover,
.menu ul li:hover>a {
  background-color: #FF7900;
  color: #fff !important;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.menu ul ul {
  left: 169px;
  top: 0px;
  visibility: hidden;
  opacity: 0;
  transform: translate(20px, 20px);
  transition: all 0.2s ease-out;
}

.menu ul ul:after {
  left: -6px;
  top: 10%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0);
  border-right-color: #fff;
  border-width: 6px;
  margin-top: -6px;
}

.menu li>ul ul:hover {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.responsive-menu {
  display: none;
  width: 100%;
  padding: 5px 15px;
  background: #fff;
  color: #000;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
}

.responsive-menu:hover {
  background: #fff;
  color: #FF7900;
  text-decoration: none;
}

a.homer {border: 1px solid #0095e5; }
 @media (min-width: 768px) and (max-width: 979px) {

.mainWrap { width: 768px; }

.menu ul { top: 37px; }

.menu li a { font-size: 12px; }

a.active { background: #E95546; color:red; }
}
 @media (max-width: 767px) {

.mainWrap {
  width: auto;
  padding: 50px 20px;
}

.menu { display: none; }

.responsive-menu { display: block; }

nav {
  margin: 0;
  background: none;
}

.menu li {
  display: block;
  margin: 0;
}

.menu li a {
  background: #fff;
  color: #000;
}

.menu li a:hover,
.menu li:hover>a {
  background: #FF7900;
  color: #FFF !important;
}

.menu ul {
  visibility: hidden;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  transform: initial;
}

.menu li:hover>ul {
  visibility: visible;
  opacity: 1;
  position: relative;
  transform: initial;
}

.menu ul ul {
  left: 0;
  transform: initial;
}

.menu li>ul ul:hover { transform: initial; }
} 
.dropdown-menu > li.kopie > a {
    padding-left:5px;
}
 
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
   top:0;left:100%;
   margin-top:-6px;margin-left:-1px;
   -webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;
 }
  
.dropdown-submenu > a:after {
  border-color: transparent transparent transparent #333;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
  display: block;
  float: right;  
  height: 0;     
  margin-right: -10px;
  margin-top: 5px;
  width: 0;
}
 
.dropdown-submenu:hover>a:after {
    border-left-color:#555;
 }

.dropdown-menu > li > a:hover, .dropdown-menu > .active > a:hover {
  text-decoration: none;
}  
  
@media (max-width: 767px) {

  .navbar-nav  {
     display: inline;
  }
  .navbar-default .navbar-brand {
    display: inline;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
  }
  .navbar-default .navbar-nav .dropdown-menu > li > a {
    color: red;
    background-color: #ccc;
    border-radius: 4px;
    margin-top: 2px;   
  }
   .navbar-default .navbar-nav .open .dropdown-menu > li > a {
     color: #000;
   }
   .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
   .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
     background-color: #ccc;
   }

   .navbar-nav .open .dropdown-menu {
     border-bottom: 1px solid white; 
     border-radius: 0;
   }
  .dropdown-menu {
      padding-left: 10px;
  }
  .dropdown-menu .dropdown-menu {
      padding-left: 20px;
   }
   .dropdown-menu .dropdown-menu .dropdown-menu {
      padding-left: 30px;
   }
   li.dropdown.open {
    border: 0px solid red;
   }

}

.act {
  color:#FF7900 !important; 
}
 
@media (min-width: 768px) {
  ul.nav li:hover > ul.dropdown-menu {
    display: block;
  }
  #navbar {
    text-align: center;
  }
}  

.panel-default > .panel-heading {
    background-color: white;
}
.panel-group .panel {
    margin-bottom: 20px;
}
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
    opacity: 0.7;
}


.nopad {
    padding: 0px;
    margin: 0px;
}
.navbar-nav > li > a {
    padding: 14px 18px;
    font-size: 16px;
}
.row {
    margin: 0px;
    padding: 0px;
}
body,
html {
    
    background-color: #fff;
   color: #555;
    font-family: 'Open Sans', sans-serif;
    
    font-size: 16px;
    line-height: 26px;
}
p {
    color: #555;
    
     font-family: 'Open Sans', sans-serif;
    /*font-family: 'PT Sans', sans-serif;
font-family: 'Droid Sans', sans-serif;
font-family: 'Lato', sans-serif;*/
    
    font-size: 16px;
    line-height: 26px;
    padding: 0px;
    padding-bottom: 10px;
    margin: 0px;
}
/*index page start*/

h1 {
    font-family: 'Roboto', sans-serif;
    font-family: 'Droid Sans', sans-serif;
    font-family: 'PT Sans', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Lato', sans-serif;
    font-family: 'Roboto', sans-serif;
    /*font-family: 'Roboto', sans-serif;
  font-family: 'PT Sans', sans-serif;
  font-family: 'Source Sans Pro', sans-serif;*/
    /*
  font-family: 'Lato', sans-serif;
  font-family: 'Merriweather', serif;
  font-family: 'Josefin Slab', serif;
  font-family: 'Arvo', serif;
  font-family: 'Source Sans Pro', sans-serif;
  
  /*font-family: 'Ubuntu', sans-serif;
  font-family: 'Raleway', sans-serif;
  
  font-family: 'Source Sans Pro', sans-serif;
  
  font-family: 'Droid Sans', sans-serif;*/
    
  
    font-size: 66px;
    text-align: left;
    font-weight: bold;
    text-transform: none;
}
.ih-item.square.effect7 .info h3 {
    color: #0d8cd4;
}
.ih-item.square {
    margin: 0 auto;
    width: auto;
    border: 3px solid #fff;
}
.ih-item.circle {
    margin: 0 auto;
}
.ih-item.circle.effect1 .spinner {
    width: 230px;
    height: 230px;
    border: 6px solid #000000;
    border-right-color: #0095e5;
    border-bottom-color: #0095e5;
    //border-radius: 50%;
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out
}
.ih-item.circle.effect1 .info h3 {
    color: #fff;
    text-transform: none;
    position: relative;
    letter-spacing: 1px;
    font-size: 15px;
    padding: 85px 0 0 0;
    height: 110px;
}
.ih-item.circle .img::before {
    box-shadow: inset 0 0 0 2px #0095e5;
    padding: 10px;
}
.ih-item.circle.effect20 .info .info-back {
    background-color: #0095e5;
}
.ih-item.circle.effect20 .info h3 {
    color: #fff;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0px;
    font-size: 16px;
    margin: 0 20px;
    padding: 55px 0 0 0;
    height: 110px;
    text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
    padding-top: 90px;
}
/* footer social icons */

ul.social-network {
    list-style: none;
    display: inline;
    margin-left: 0 !important;
    padding: 0;
}
ul.social-network li {
    display: inline;
    margin: 0 3px;
}
/* footer social icons */

.social-network a.icoRss:hover {
    background-color: #F56505;
}
.social-network a.icoFacebook:hover {
    background-color: #3B5998;
}
.social-network a.icoTwitter:hover {
    background-color: #33ccff;
}
.social-network a.icoGoogle:hover {
    background-color: #BD3518;
}
.social-network a.icoVimeo:hover {
    background-color: #0590B8;
}
.social-network a.icoLinkedin:hover {
    background-color: #007bb7;
}
.social-network a.icoRss:hover i,
.social-network a.icoFacebook:hover i,
.social-network a.icoTwitter:hover i,
.social-network a.icoGoogle:hover i,
.social-network a.icoVimeo:hover i,
.social-network a.icoLinkedin:hover i {
    color: #fff;
}
a.socialIcon:hover,
.socialHoverClass {
    color: #44BCDD;
}
.social-circle li a {
    display: inline-block;
    position: relative;
    margin: 0 auto 0 auto;
    //-moz-border-radius:50%;
    //-webkit-border-radius:50%;
    //border-radius:50%;
    text-align: center;
    width: 25px;
    height: 25px;
    font-size: 13px;
}
.social-circle li i {
    margin: 0;
    line-height: 20px;
    text-align: center;
}
.social-circle li a:hover i,
.triggeredHover {
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -ms--transform: rotate(360deg);
    transform: rotate(360deg);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -o-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
}
.social-circle i {
    color: #fff;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -o-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
}
.social-circle a {
    background-color: transparent;
    color: white;
}
#main {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#topbar {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #0e2332;
    padding: 10px 0px;
    padding-bottom: 0px;
}
#topbarmid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    color: white;
    font-size: 16px;
    font-weight: normal;
}
#topbarmid p a {
    text-decoration: none;
    color: white;
    background-color: transparent;
    padding-bottom: 0px;
}
#topbarmid p a:hover {
    text-decoration: none;
    color: white;
    background-color: transparent;
}
#topbarmid a {
    text-decoration: none;
    color: white;
    background-color: transparent;
    padding-bottom: 0px;
    font-size: 16px;
    font-weight: normal;
}
#topbarmid a:hover {
    text-decoration: none;
    color: white;
    background-color: transparent;
    font-size: 16px;
    font-weight: normal;
}
#topbarmid i {
    
    color: #FF7900;
    margin-right: 5px;
}
#header {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#headermid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#headermid img {
    margin: 10px 0px;
}
#banner {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#bannermid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.bluebtn {
  background-color: #0E2332;
  padding: 15px 35px;
  color: white !important;
}

.orangebtn {
  background-color: #FF7900;
  padding: 15px 35px;
  color: white !important;
}

.orangetext {
 
  color:  #FF7900 !important;
}



#about {
    width: 100%;
    height: auto;
    margin: 0 auto;
    margin-top: 100px;
}
#aboutmid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#aboutmid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    width: 300px;
    margin-bottom: 10px;
}
#aboutmid h2 {
    padding-top: 0px;
    color: #000;
    font-size: 22px;
    line-height: 40px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}
#aboutmid h2 b {
    color:#FF7900;
}

#aboutmid h3 {
    color: #0095e5;
    margin-top: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#aboutmid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    color: #333;
}
 #aboutmid .topimg {
        background-image: url(../images/about-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 250px;
      } 

     #aboutmid .topimg h1{
     font-size: 36px;
     color: white;
     text-align: center;
     padding: 50px 0px;
    position: absolute;
    left: 13%;
      }

#projectpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px;
    background-color: #fff;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
#projectpagemid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

#projectpagemid h2 {
    color:#000;
}
#casepage {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px;
    background-color: #fff;
    margin-bottom: 0px;
    padding-bottom: 0px;
}
#casepagemid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#casepagemid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    //width: 300px;
    margin-bottom: 10px;
    margin-top: 10px;
    margin:0 auto;
}
#casepagemid h2 {
font-size: 30px;
font-weight: 500;
color: #000;
margin: 0;
  margin-bottom: 0px;
margin-bottom:0px;
}
#casepagemid .description {
font-size: 16px;
text-align: center;
color: #777;
margin-bottom: 25px;
text-align: center;
text-transform: none;
}

#casepagemid h3 {
    color: #222;
    margin-top: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    padding-bottom: 15px;
    padding-top: 30px;
    padding-left: 15px;
}
}
#casepagemid p {
   font-size: 16px;
font-weight: 400;
color: #525f7f;
line-height: 26px;
margin: 0;
}
#casepagemid ul  {

list-style: none;
}
#casepagemid ul li {
margin-bottom: 50px;
}

#casepagemid ul li:before {
  content: '\f058';
  font-family: 'FontAwesome';
  float: left;
  margin-left: -1em;
  color: #FF7900;
  font-size: 20px;

}
#casepagemid .last {
margin-bottom: 0px;
}

#casepagemid h4 {
text-align: center;
font-weight: 500;
color: #000;
}
 #caseimg .topimg {
        background-image: url(../images/case-study-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 250px;
    background-size: cover;
      } 

     #caseimg .topimg h1{
     font-size: 36px;
     color: white;
     text-align: center;
     padding: 50px 0px;
    position: absolute;
    left: 13%;
      }
#casepage table{
  margin-left: 20px;
  margin-top: 20px;
}
#casepage table td {
  border:1px solid #999;
}
#casepagemid img {
  padding:0px 30px;
}

#services {
    width: 100%;
    height: auto;
    margin: 0 auto;
    //background-color: #0095e5;
    margin-top: 50px;
    padding-bottom: 30px;
   
}
#servicesmid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#servicesmid h2 {
    color: white;
    font-size: 50px;
    text-align: center;
    padding: 50px 0px;
    font-weight: bold;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#servicesmid p {
    background-color: transparent;
    color: 000;
    padding-bottom: 30px;
    text-align: center;
    padding: 20px 20px;
}
#servicesmid h3 {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-align: center;
    font-size: 20px;
    margin: 0px;
    padding: 0px;
}


#ben {
    width: 100%;
    height: auto;
    margin: 0 auto;
    //background-color: #0095e5;
    margin-top: 50px;
    padding-bottom: 30px;
    background-image: url(../images/why-bg.jpg);
    background-repeat: repeat;
}
#benmid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#benmid h2 {
    color: white;
    font-size: 50px;
    text-align: center;
    padding: 50px 0px;
    font-weight: bold;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#benmid p {
    background-color: transparent;
    color: white;
    padding-bottom: 30px;
}




#products {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 50px;
}
#productsmid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#productsmid h2 {
    color: #0095e5;
    font-size: 50px;
    text-align: center;
    padding: 50px 0px;
    font-weight: bold;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#productsmid img {
    margin-bottom: 20px;
    position: relative;
}
#products video {
    height: 400px;
}
#productsmid h3 {
    font-weight: 500;
    color: #0d8cd4;
    font-size: 18px;
    line-height: 10px;
    font-family: 'Roboto', sans-serif;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'Open Sans', sans-serif;
  font-family: 'Droid Sans', sans-serif;
  font-family: 'PT Sans', sans-serif; 
  font-family: 'Lato', sans-serif; 
  font-family: 'Roboto', sans-serif;
  font-family: 'Source Sans Pro', sans-serif; 
  
  font-family: 'Raleway', sans-serif;*/
}
#productsmid h4 {
    font-weight: 500;
    color: white;
    font-size: 16px;
    line-height: 0px;
    font-family: 'Roboto', sans-serif;
    font-family: 'Roboto', sans-serif;
    padding-top: 10px;
    text-transform: uppercase;
}
#productsmid h1 {
    font-weight: 500;
    color: #000;
    text-transform: none;
    text-align: left;
    font-size: 36px;
}

#productsmid ul {
   list-style: disc;
   font-weight: bold;
}

#productsmid h3 {
    color: #000;
}
#productsmid .padtop60 {
   margin-top: 130px;
}

@media screen and (min-width: 320px) and (max-width: 991px) {
#productsmid .padtop60 {
   margin-top: 20px;
}
}
#productpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px;
    background-color: #fff;
    padding-bottom: 0px;
}
#productpagemid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#productpagemid img {
    //margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    //width: 300px;
    margin-bottom: 10px;
}
#productpagemid h2 {
font-size: 30px;
font-weight: 500;
color: #000;
margin: 0;
  margin-bottom: 0px;
margin-bottom:0px;
}
#productpagemid h3 {
    padding-top: 0px;
color: #000;
font-size: 20px;
line-height: 40px;
font-weight: 500;
}
#productpagemid h2 b {
    color:#FF7900;
}

#productpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
    color: #333;
}


#productpagemid ul  {

list-style: none;
}
#productpagemid ul li {
margin-bottom: 20px;
margin-left: 25px;
}

#productpagemid ul li:before {
  content: '\f058';
  font-family: 'FontAwesome';
  float: left;
  margin-left: -1.5em;
  color: #FF7900;
  font-size: 20px;

}
 #productimg .topimg {
        background-image: url(../images/product-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 250px;
    background-size: cover;
      } 

     #productimg .topimg h1{
     font-size: 36px;
     color: white;
     text-align: center;
     padding: 50px 0px;
    position: absolute;
    left: 13%;
      }

#infra {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 50px;
}
#inframid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#inframid h2 {
    color: #0095e5;
    font-size: 50px;
    text-align: center;
    padding: 50px 0px;
    font-weight: bold;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#inframid img {
    margin-bottom: 20px;
    border: 2px solid gray;
}
#inframid h3 {
    font-weight: 500;
    color: #0d8cd4;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Roboto', sans-serif;
    font-family: 'Roboto', sans-serif;
    /* font-family: 'Open Sans', sans-serif;
  font-family: 'Droid Sans', sans-serif;
  font-family: 'PT Sans', sans-serif; 
  font-family: 'Lato', sans-serif; 
  font-family: 'Roboto', sans-serif;
  font-family: 'Source Sans Pro', sans-serif; 
  
  font-family: 'Raleway', sans-serif;*/
}
#book-appointment {
    width: 100%;
    height: 440px;
    margin: 0 auto;
    //background-color: #0095e5;
    padding: 105px 0px;
    background-image: url(../images/book-appointment.jpg);
    background-size: cover;
    border-radius: none;
    margin-top: 200px;
}
#book-appointmentmid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}

#book-appointmentmid h2 {
    color: white;
    font-size: 36px;
    font-weight: bold;
}
#book-appointmentmid h3 {
    color: white;
    font-size: 20px;
}
.img-up img {
   margin-top: -600px;
   width:500px;
   z-index: -1;
}
#three-sixty {
    width: 100%;
    height: auto;
    margin: 0 auto;
    //background-color: black;
    //padding: 70px 0px;
    background-color: white;
    border-radius: none;
    padding: 30px 0px;
}
#three-sixty {
   text-align: center;
}
#three-sixtymid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#three-sixtymid h1 {
    color: #000;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
}

#three-sixtymid i{
   font-size: 60px;
}
#three-sixtymid h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
      width: 100%;
  height: 200px;
  background: #FF7900;
  padding: 30px;
}
}
#three-sixtymid a {
    color: black;
    font-size: 20px;
    text-decoration: none;
}
#three-sixtymid a {
    color: black;
    font-size: 20px;
    text-decoration: none;
}
#three-sixtymid img {
    border: 1px solid #999;
    //border-radius: 50%;
    margin: 20px 0px;
}
.contact-form {
    margin-top: 15px;
}
.contact-form .textarea {
    min-height: 220px;
    resize: none;
}
.form-control {
    box-shadow: none;
    border-color: gray;
    height: 49px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #0095e5;
}
.form-control-feedback {
    line-height: 50px;
}
.main-btn {
    background: #00b09c;
    border-color: #00b09c;
    color: #fff;
}
.main-btn:hover {
    background: #00a491;
    color: #fff;
}
.form-control-feedback {
    line-height: 50px;
    top: 0px;
}
#contact {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px;
}
#contactmid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#containermid h2 {
    color: #0095e5;
    font-size: 50px;
    text-align: center;
    padding: 50px 0px;
    font-weight: bold;
    padding-bottom: 0px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#team {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #eae4e1;
    padding-bottom: 30px;
}
#teammid {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}
#teammid h2 {
    color: #0095e5;
    font-size: 50px;
    text-align: center;
    padding: 50px 0px;
    font-weight: bold;
    padding-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#teammid p {
    font-weight: 400;
    font-size: 3em;
}
#teammid .img-quadrata {
    border-radius: 50%;
    width: 250px;
    height: 250px;
    border: 2px solid white;
}
#teammid h4 {
    font-weight: 800;
    color: #000;
    font-size: 20px;
    line-height: 30px;
}
#teammid small {
    text-align: center;
    font-size: 14px;
    color: #333;
}
.info-back h3 span {
    text-align: center;
    font-size: 14px;
    color: #fff;
    margin-top: 20px;
}
.ih-item a {
    color: #fff;
}
#footer {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #353535;
    //background-image: url(../images/footer-bg.jpg);
    //background-repeat: repeat;
}
#footermid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    background-color: #353535;
    padding-top: 20px;
}

#footermid i {
    color: #0095e5;
    padding: 4px;
    //background-color: #0095e5;
    font-size: 20px;
}
#footermid h2 {
    color: white;
    font-size: 17px;
    text-align: left;
    line-height: 30px;
    margin-top: 50px;
    margin-bottom: 50px;
}
#footermid h2 b {
    color: white;
    font-size: 30px;
    text-align: left;
    line-height: 30px;
}
#footermid i {
    color: #0095e5;
    padding: 4px;
    //background-color: #0095e5;
    font-size: 20px;
}
#footermid h2 {
    color: white;
    font-size: 17px;
    text-align: left;
    line-height: 30px;
    margin-top: 35px;
    margin-bottom: 35px;
}
#footermid h2 b {
    color: white;
    font-size: 30px;
    text-align: left;
    line-height: 30px;
}
@media screen and (min-width: 320px) and (max-width: 600px) {
    #footermid h2 {
        color: white;
        font-size: 15px;
        text-align: left;
        line-height: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 10px;
        //background-color: #1aa4f4;
        opacity: 0.8;
        border-radius: 5px;
    }
    #servicesmid h2 {
        color: white;
        font-size: 30px;
        text-align: center;
        padding: 30px 0px;
        font-weight: bold;
        padding-bottom: 20px;
    }
    #teammid h2 {
        color: #0095e5;
        font-size: 30px;
        text-align: center;
        padding: 30px 0px;
        font-weight: bold;
        padding-bottom: 20px;
    }
    #productsmid h2 {
        color: #0095e5;
        font-size: 30px;
        text-align: center;
        padding: 30px 0px;
        font-weight: bold;
        padding-bottom: 20px;
    }
    #contactmid h2 {
        color: #0095e5;
        font-size: 30px;
        text-align: center;
        padding: 30px 0px;
        font-weight: bold;
        padding-bottom: 20px;
    }
    #footermid h2 b {
        color: white;
        font-size: 16px;
        text-align: left;
        line-height: 30px;
    }
    .footer-img img {
        display: none;
    }
}
@media screen and (min-width: 601px) and (max-width: 767px) {
    #footermid h2 {
        color: white;
        font-size: 16px;
        text-align: center;
        line-height: 30px;
        margin-top: 40px;
        margin-bottom: 40px;
        padding: 10px;
        //background-color: #1aa4f4;
        opacity: 0.8;
        border-radius: 5px;
        //margin-left: 50%;
    }
    #footermid h2 b {
        color: white;
        font-size: 20px;
        text-align: left;
        line-height: 30px;
    }
    .footer-img img {
        display: none;
    }
}
.footer-img {
    margin: 0 auto;
}
.footer-img img {
    margin-bottom: -365px;
    background-color: transparent;
}
#footerlast {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fff;
    padding: 10px 0px;
    padding-top: 15px;
}
#footerlastmid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    background-color: #fff;
}
 #footerlastmid .searchid2 {
}
#footerlastmid .searchid2:hover {
 display: none;
}
 #footerlastmid .searchid-wp2 {
}
#footerlastmid .searchid-wp2:hover {
 display: none;
}
#footerlastmid p {
    text-align: center;
    color: #000;
    font-size: 13px;
}
#footerlastmid a {
    color: #FF7900;
}
#footerlastmid a:hover {
    color: #FF7900;
}
.destacados {
    padding: 20px 0;
    text-align: center;
}
.destacados > div > div {
    padding: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: 0.2s;
}
.destacados > div:hover > div {
    margin-top: -10px;
    border: 1px solid rgb(200, 200, 200);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
    background: rgba(200, 200, 200, 0.1);
    transition: 0.5s;
}
.content {
    padding-top: 30px;
}
/* Heading */




.heading h3 {
    font-size: 40px;
    font-weight: 500;
    margin: 0 0 20px;
    color: #444;
}
.heading p {
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #8693a7;
}
/* Team Members */

.team-members {
    width: 100%;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    margin-bottom: 35px;
}
.team-members .team-avatar {
    position: relative;
}
.team-members .team-avatar:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    position: absolute;
    background: rgba(129, 129, 129, 0.1);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.team-members .team-avatar img {
    display: block;
    margin: 0 auto;
    text-align: center;
}
.team-members .team-desc {
    left: auto;
    bottom: 0;
    width: 100%;
    padding: 0 20px;
    position: absolute;
    opacity: 0;
    color: #fff;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
    -webkit-transition: opacity 0.3s;
    -moz-transition: opacity 0.3s;
    -ms-transition: opacity 0.3s;
    -o-transition: opacity 0.3s;
    transition: opacity 0.3s;
}
.team-members .team-desc h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 10px;
    color: #fff;
}
.team-members .team-desc span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}
.team-members:hover .team-avatar:after {
    background: rgba(47, 60, 72, 0.5);
    transition-duration: 300ms;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.team-members:hover .team-desc {
    -webkit-transform: translate3d(0, -5%, 0);
    transform: translate3d(0, -5%, 0);
    -webkit-transform: translate3d(0, -10%, 0);
    transform: translate3d(0, -10%, 0);
}
.team-members:hover .team-desc {
    opacity: 1;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}
.centered-form {
    margin-top: 60px;
}
.centered-form .panel {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: rgba(0, 0, 0, 0.3) 20px 20px 20px;
}
/*index page end*/
/*about page start*/

#gallerypage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#gallerypagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#gallerypagemid h1 {
    font-weight: bold;
    padding: 40px 0px;
    color: #0095e5;
    font-size: 36px;
    line-height: 40px;
    text-transform: none;
}
/*about page start*/

#aboutpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 50px 0px;
    background-color: #fff;
    padding-bottom: 0px;
}
#aboutpagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#aboutpagemid img {
    width: auto;
    border-radius: 0px;
}
#aboutpagemid h1 {
    font-weight: bold;
    padding: 35px 0px;
    color: #0095e5;
    font-size: 36px;
    line-height: 40px;
    text-transform: none;
}
#aboutpagemid h3 {
    position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}
#aboutpagemid h3 span {
    color: #0095e5;
    margin-top: 0px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 20px;
}

#aboutpagemid .feature-content h4 {
    color: #333;
    margin-top: 20px;
   
}
#aboutpagemid h5 {
    color: #0095e5;
    margin-top: 10px;
    font-size: 15px;
}
#aboutpagemid h5 span {
    color: #555;
    margin-top: 0px;
    font-size: 12px;
}
#aboutpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 0px;
}
#aboutpagemid ul {
    list-style: square;
    padding-left: -25px;
    margin-left: -25x;
}
#aboutpagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    color: #555;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 16px;
}

 #aboutimg .topimg {
        background-image: url(../images/about-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 250px;
    background-size: cover;
      } 

     #aboutimg .topimg h1{
     font-size: 36px;
     color: white;
     text-align: center;
     padding: 50px 0px;
    position: absolute;
    left: 13%;
      }
/*about page end*/
/*about page start*/

#faqpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-top: 50px;
    background-color: #fff;
    margin-bottom: 0px !important;
}
#faqpagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#faqpagemid img {
    //margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    width: 500px;
    float: left;
}
#faqpagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
#faqpagemid h2 {
font-size: 30px;
font-weight: 500;
color: #000;
margin: 0;
  margin-bottom: 0px;
margin-bottom: 0px;
}
#faqpagemid .description {
font-size: 16px;
text-align: center;
color: #777;
margin-bottom: 25px;
text-align: center;
text-transform: none;
}

#faqpagemid h3 {
    color: #0095e5;
    margin-top: 0px;
}
#faqpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#faqpagemid ul {
    list-style: square;
}
#faqpagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
 #faqimg .topimg {
        background-image: url(../images/faq-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 250px;
    background-size: cover;
      } 

     #faqimg .topimg h1{
     font-size: 36px;
     color: white;
     text-align: center;
     padding: 50px 0px;
    position: absolute;
    left: 13%;
      }
/*about page end*/

#newspage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#newspagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#newspagemid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    margin-bottom: 20px;
    border: 1px solid #9d9999;
   
}
#newspagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
#newspagemid h3 {
    color: #0095e5;
    margin-top: 0px;
}
#newspagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#newspagemid ul {
    list-style: square;
}
#newspagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}



#news {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 100px 0px;
}
#newsmid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#newsmid .orangetext{
  text-align: center;
}
#newsmid .heading p{
  text-align: center !important;
}
#newsmid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    margin-bottom: 20px;
    border: 1px solid #9d9999;
   
}
#newsmid h1 {
    color: #000;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    padding-top: 10px;
    text-transform: none;
    text-align: center;
}
#newsmid h3 {
    color: #000;
    margin-top: 0px;
    font-weight: 600;
}

#newsmid h5 {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: center !important;
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
    color: #333;
}
#newsmid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    color: #333;
}
#newsmid p span{
   
    color: gray;
}
#newsmid ul {
    list-style: square;
}
#newsmid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}






#treatmentpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#treatmentpagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#treatmentpagemid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    width: 200px;
}
#treatmentpagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
#treatmentpagemid h3 {
    color: #0095e5;
    margin-top: 0px;
}
#treatmentpagemid h2 {
    color: #0095e5;
    font-size: 20px;
}
#treatmentpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#treatmentpagemid ul {
    list-style: square;
}
#treatmentpagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#equipmentpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#equipmentpagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#equipmentpagemid img {
    //margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    //width: 200px;
}
#equipmentpagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
#equipmentpagemid h3 {
    color: #0070a0;
    margin-top: 0px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 26px;
}
#equipmentpagemid h2 {
    font-weight: bold;
    color: #0070a0;
    margin-: 20px 0px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
}
#equipmentpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
    color: #555;
    font-family: 'Open Sans Condensed', sans-serif;
}
#equipmentpagemid ul {
    list-style: square;
}
#equipmentpagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#sp-servicepage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#sp-servicepagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#sp-servicepagemid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    width: 200px;
}
#sp-servicepagemid h2 {
    font-weight: bold;
    padding-top: 35px;
    color: #0095e5;
    font-size: 36px;
    line-height: 40px;
}
#sp-servicepagemid h3 {
    color: #0095e5;
    margin-top: 0px;
}
#sp-servicepagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#sp-servicepagemid ul {
    list-style: square;
}
#sp-servicepagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
}
#sp-servicepagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
#enquirypage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#enquirypagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#enquirypagemid h1 {
    font-weight: bold;
    padding: 35px 0px;
    color: #0095e5;
    font-size: 36px;
    line-height: 40px;
    text-transform: none;
}
/*about page start*/

#downloadpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#downloadpagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#downloadpagemid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    width: auto;
    margin-bottom: 5px;
}
#downloadpagemid h2 {
    color: #000;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    margin-top: 0;
    font-size: 20px;
}
#downloadpagemid h3 {
    color: #0070a0;
    margin-top: 0px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#downloadpagemid h4 {
    color: gray;
    margin-top: 0px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 24px;
}
#downloadpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#downloadpagemid b {
    color: #0070a0;
    font-family: "Oswald", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
}
#downloadpagemid ul {
    list-style: square;
    margin-left: -25px;
}
#downloadpagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    color: #555;
   font-family: 'Open Sans', sans-serif;
}
#downloadpagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
/*about page end*/

#treatpage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#treatpagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#treatpagemid img {
   
    padding-bottom: 0px;
    border: 2px solid gray;
    width: auto;
   
    margin-right: 20px;
}
#treatpagemid img:hover {
    
    border: 4px solid #0095e5;
    
}
#treatpagemid h2 {
    color: #000;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    margin-top: 0;
    font-size: 20px;
}
#treatpagemid h3 {
    color: #0070a0;
    margin-top: 0px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}
#treatpagemid h4 {
    color: #333;
    margin-top: 0px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    line-height: 24px;

}
#treatpagemid a {
    color: #0095e5;
    
}
#treatpagemid a:hover {
    color: #0095e5;
    
}
#treatpagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#treatpagemid b {
    color: #0070a0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-top: 0;
}
#treatpagemid ul {
    list-style: square;
    margin-left: -25px;
}
#treatpagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    color: #555;
    font-family: 'Open Sans', sans-serif;
}
#treatpagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}
/*about page end*/


#ficilitiespage {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#ficilitiespagemid {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
}
#ficilitiespagemid img {
    margin: 50px 0px;
    padding-bottom: 0px;
    //border: 1px solid black;
    width: 200px;
}
#ficilitiespagemid h2 {
    font-weight: bold;
    padding-top: 35px;
    color: #0095e5;
    font-size: 36px;
    line-height: 40px;
}
#ficilitiespagemid h3 {
    color: #0095e5;
    margin-top: 0px;
}
#ficilitiespagemid p {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: justify;
}
#ficilitiespagemid b {
    font-size: 14px;
}
#ficilitiespagemid ul {
    list-style: square;
}
#ficilitiespagemid ul li {
    max-width: 1170px;
    height: auto;
    margin: 0 auto;
    text-align: left;
}
#ficilitiespagemid h1 {
    color: #0095e5;
    font-size: 36px;
    font-weight: bold;
    line-height: 40px;
    padding: 35px 0;
    text-transform: none;
}

.carousel-indicators li {
    background-color: #333;
}
.carousel-indicators .active {
    background-color: #0095e5;
}
.carousel-caption {
    left: 20%;
    padding-bottom: 30px;
    right: 40%;
    top: 30%;
}
.navbar-default {
    background-color: white;
    border: none;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:focus,
.navbar-default .navbar-nav > .active > a:hover {
    background-color: white;
}
hr {
    margin: 5px 0px;
}
.img-thumbnail {
    background-color: transparent;
    border: none;
    padding: 20px;
}
.card {
  background: #fff;
  border-radius: 4px;
  display: inline-block;
  //height: 300px;
  //margin: 1rem;
  position: relative;
  //width: 300px;

}
.card-3 {
  box-shadow: 0 2px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
/*bs custom end*/
/**********************************************************************************************************/
/* slider */

.carousel-indicators .active {
    background-color: #2980b9;
}
.carousel-inner img {
    width: 100%;
    //max-height: 500px
}
.carousel-control {
    width: 0;
}
.carousel-control.left,
.carousel-control.right {
    opacity: 1;
    filter: alpha(opacity=100);
    background-image: none;
    background-repeat: no-repeat;
    text-shadow: none;
}
.carousel-control.left span {
    padding: 15px;
}
.carousel-control.right span {
    padding: 15px;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-prev,
.carousel-control .icon-next {
    position: absolute;
    top: 45%;
    z-index: 5;
    display: inline-block;
}
.carousel-control .glyphicon-chevron-left,
.carousel-control .icon-prev {
    left: 0;
}
.carousel-control .glyphicon-chevron-right,
.carousel-control .icon-next {
    right: 0;
}
.carousel-control.left span,
.carousel-control.right span {
    background-color: #000;
}
.carousel-control.left span:hover,
.carousel-control.right span:hover {
    opacity: .7;
    filter: alpha(opacity=70);
}
/* Carousel Header Styles */

.header-text {
    position: absolute;
    top: 20%;
    left: 15%;
    right: auto;
    width: 50%;
    color: #fff;
}
.header-text h2 {
    font-size: 60px;
    color: #0095e5;
    font-weight: bold;
}
@media screen and (min-width: 320px) and (max-width: 600px) {
    .header-text h2 {
        font-size: 20px;
        color: #0095e5;
        font-weight: bold;
    }
    .header-text {
        left: 5%;
    }
}
.header-text h2 span {
    //background-color: #2980b9;
    padding: 5px;
}
.header-text h3 span {
    //background-color: #000;
    padding: 5px;
    color: #333;
    font-size: 20px;
}
.btn-min-block {
    min-width: 170px;
    line-height: 26px;
}
.btn-theme {
    color: #fff;
    background-color: #0095e5;
    ;
    border: 2px solid #fff;
    margin-right: 15px;
}
.btn-theme:hover {
    color: #000;
    background-color: #fff;
    border-color: #fff;
}
/*menu*/

.dropdown-submenu {
    position: relative;
}
.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}
.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}
.dropdown-submenu.pull-left {
    float: none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}
/*menu end*/

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    background-color: #fff;
    border-color: #ddd #ddd transparent;
    border-image: none;
    border-style: solid;
    border-width: 1px;
    color: #0095e5;
    cursor: default;
    font-weight: bold;
}
#abouthd {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    padding-top: 40px;
}
#abouthdtxt {
     font-family: 'Open Sans', sans-serif;

    font-weight: 400;
    font-size: 20px;
    color: #505050;
    line-height: 100px;
    text-align: center;
}
#abouttxt {
    width: 100%;
    height: auto;
    margin: 0 auto;
     font-family: 'Open Sans', sans-serif;

    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #505050;
    padding-left: 10px;
    padding-right: 10px;
}
.nopad {
  padding: 0px;
}
.about-section {
    padding-bottom: 0px;
    padding-top: 0px;
}
.site-title  {
    padding: 2em 0;
}
.site-title h3 {
    font-size: 3.5em;
    color: #14B9D5;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}
.site-title p {
    font-size: 1.1em;
    color: #333333;
    line-height: 1.8em;
    margin-top: 0.5em;
}

.about-inner-column h4 {
    font-size: 2.5em;
    color: #FFD001;
    font-family: 'Roboto', sans-serif;
}

.about-inner-column p {
    font-size: 16px;
    color: #333;
    line-height: 1.8em;
    margin: 1em 0 0;
}
.about-inner-column ul {
   
   margin: 20px 0px;
}
.about-inner-column ul li {
   text-align: left;
   list-style-type: circle;
   margin-left: 20px;
   margin-bottom: 10px;
}
.about-inner-column ul li a {
    color: #333333;
    font-size: 1.1em;
    padding-left: .3em;
}
.about-right {
   position: relative;
}

.about-right img {
    width: 100%;
}
.about-inner-column .orangetext {
  margin: 0px !important;
}
#productsmid .about-right .overtext {
   background-color:#FF7900;
   bottom: -105px;
   right: 15px;
   padding: 30px;
   text-align: center;
   width: 70%;
   float: right;
   position: absolute;
   color: white !important;
}
#productsmid .about-right .overtext h1{
   font-size: 28px;
   color: white !important;
   font-weight: bold;
}
.readmore {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    float: right;
    color: #b96e01;
}
#products {
    width: 100%;
    height: auto;
    margin: 0 auto;

    //background-color: #DEE4E9;
     //background-color: #F4F7FF;
     background-color: #B7C1C7;
    
    padding-top: 200px;
    margin-top: -150px;
}
#promid {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#prohd {
    width: 100%;
    height: 100px;
    padding: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 45px;
    color: #edbb43;
    text-align: center;
    margin: 0 auto;
}
#teamhd {
    width: 100%;
    height: 100px;
    padding: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 30px;
    color: #edbb43;
    text-align: center;
    margin: 0 auto;
}
#teamtxtmain {
    width: 80%;
    height: auto;
    margin: 0 auto;
}
#links {
    width: 100%;
    height: 90px;
    margin: 0 auto;
    background-color: #fbe4c1;
}
#linksmid {
    width: 100%;
    height: auto;
    margin: 0 auto;
    background-color: #fbe4c1;
}
#linktxt {
    width: 300px;
    height: 53px;
    float: left;
    font-family: ;
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: #edbb43;
    padding-top: 25px;
    padding-left: 30px;
}
#team1 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
}
#teamimg {
    text-align: center;
    width: 100%;
    height: auto;
    margin: 0 auto;
}
.teamimg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 10px solid #cccbcb;
    margin: 0 auto;
    text-align: center;
}
.context {
    font-family: 'Muli', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #505050;
}
#teamdesig {
    width: 100%;
    height: 30px;
    font-family: ;
    font-size: 14px;
    line-height: 18px;
    color: #b27825;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}
#teamtxt {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#team2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
}
#teamim2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#teamdesig2 {
    width: 100%;
    height: 30px;
    font-family: ;
    font-size: 14px;
    line-height: 18px;
    color: #b27825;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}
#teamtxt2 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#team3 {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 20px;
}
#teamimg3 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
#teamdesig3 {
    width: 100%;
    height: 30px;
    font-family: ;
    font-size: 14px;
    line-height: 18px;
    color: #b27825;
    margin: 0 auto;
    text-align: center;
    padding-top: 10px;
}
#teamtxt3 {
    width: 100%;
    height: auto;
    margin: 0 auto;
}
<!---Product Box-----> @import url('normalize.css');
/* General Demo Style */

.container {
    width: 100%;
    position: relative;
}
.clr {
    clear: both;
    padding: 0;
    height: 0;
    margin: 0;
}
.main {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
}
.container > header {
    /*margin: 10px;*/
    
    padding: 10px 10px 10px 10px;
    position: relative;
    display: block;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    text-align: center;
}
.container > header h1 {
    font-size: 32px;
    line-height: 32px;
    margin: 0;
    position: relative;
    font-weight: 300;
    color: #777;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.7);
}
.container > header h2 {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    padding: 15px 0 5px 0;
    color: #888;
    text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.9);
}
/* Header Style */

.codrops-top {
    line-height: 24px;
    font-size: 11px;
    background: #fff;
    background: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    z-index: 9999;
    position: relative;
    box-shadow: 1px 0px 2px rgba(0, 0, 0, 0.1);
}
.codrops-top a {
    padding: 0px 10px;
    letter-spacing: 1px;
    color: #333;
    display: inline-block;
}
.codrops-top a:hover {
    background: rgba(255, 255, 255, 0.3);
}
.codrops-top span.right {
    float: right;
}
.codrops-top span.right a {
    float: left;
    display: block;
}
/* Demo Buttons Style */

.codrops-demos {
    text-align: center;
    display: block;
    line-height: 30px;
    padding: 5px 0px;
}
.codrops-demos a {
    display: inline-block;
    font-style: italic;
    margin: 0px 4px;
    padding: 0px 6px;
    color: #aaa;
    line-height: 20px;
    font-size: 13px;
    text-shadow: 1px 1px 1px #fff;
    border: 1px solid #fff;
    background: #ffffff;
    /* Old browsers */
    
    background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
    /* FF3.6+ */
    
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(47%, #f6f6f6), color-stop(100%, #ededed));
    /* Chrome,Safari4+ */
    
    background: -webkit-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
    /* Chrome10+,Safari5.1+ */
    
    background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
    /* Opera 11.10+ */
    
    background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
    /* IE10+ */
    
    background: linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ededed 100%);
    /* W3C */
    
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
    /* IE6-9 */
    
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.codrops-demos a:hover {
    color: #333;
    background: #fff;
}
.codrops-demos a:active {
    background: #fff;
}
.codrops-demos a.current-demo,
.codrops-demos a.current-demo:hover {
    background: #f0f0f0;
    border-color: #d9d9d9;
    color: #aaa;
    box-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f6f6f6', endColorstr='#f6f6f6', GradientType=0);
    /* IE6-9 */
}
.support-note span {
    color: #ac375d;
    font-size: 16px;
    display: none;
    font-weight: bold;
    text-align: center;
    padding: 5px 0;
}
.no-cssanimations .support-note span.no-cssanimations,
.no-csstransforms .support-note span.no-csstransforms,
.no-csstransforms3d .support-note span.no-csstransforms3d,
.no-csstransitions .support-note span.no-csstransitions {
    display: block;
}
.ch-grid {
    /*margin: 10px;*/
    
    padding: 0;
    list-style: none;
    display: block;
    text-align: center;
    width: 100%;
}
.ch-grid:after,
.ch-item:before {
    content: '';
    display: table;
}
.ch-grid:after {
    clear: both;
}
.ch-grid li {
    width: 30%;
    height: 30%;
    min-width: 300px;
    min-height: 380px;
    display: inline-block;
    margin: 10px;
}
.ch-item {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: relative;
    cursor: default;
    box-shadow: inset 0 0 0 0 rgba(200, 95, 66, 0.4), inset 0 0 0 16px rgba(255, 255, 255, 0.6), 0 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.ch-img-1 {
    background-image: url(../images/1.jpg);
    margin-left: 25%;
}
.ch-img-2 {
    background-image: url(../images/2.jpg);
    margin-left: 25%;
}
.ch-img-3 {
    background-image: url(../images/3.jpg);
    margin-left: 25%;
}
.ch-info {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    padding-left: 0px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-backface-visibility: hidden;
    /*for a smooth font */
}
.ch-info h3 {
    text-align: center;
    color: #fff;
    text-transform: capitalize;
    position: relative;
    letter-spacing: 1px;
    font-size: 30px;
    margin: 8 17px;
    padding: 50px 0 0 0;
    height: 100px;
    font-family: 'Roboto', sans-serif;
    text-shadow: 0 0 1px #fff, 0 1px 2px rgba(0, 0, 0, 0.3);
}
.ch-info p {
    color: #fff;
    padding: 10px 5px;
    font-style: italic;
    margin: 0 20px;
    font-size: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.ch-info p a {
    display: block;
    color: #fff;
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: 1px;
    padding-top: 4px;
     font-family: 'Open Sans', sans-serif;

}
.ch-info p a:hover {
    color: #fff222;
    color: rgba(255, 242, 34, 0.8);
}
.ch-item:hover {
    /*box-shadow: 
    inset 0 0 0 110px rgba(200,95,6, 0.7),
    inset 0 0 0 16px rgba(255,255,255,0.8),
    0 1px 2px rgba(0,0,0,0.1);
    */
}
.ch-item:hover .ch-info {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
#boxtxt {
    width: 100%;
    height: auto;
     font-family: 'Open Sans', sans-serif;

    font-weight: 400;
    font-size: 14px;
    color: #505050;
    line-height: 20px;
    text-align: justify;
    padding-top: 10px;
}
<!--End Product Box---> <!-----------Gallery------------------> <!-----------End Gallery----------------> <!--Team---> .meet-the-team-holder {
    text-align: center;
    width: 90%;
    margin: 0 auto 20px;
}
.meet-the-team-title {
    text-align: center;
}
.meet-the-team-image {
    width: 205px;
    height: 205px;
    margin: 0 auto;
    border: 3px dashed #999;
    border-radius: 100%;
}
.meet-the-team-image img {
    width: auto;
    height: auto;
    border-radius: 100%;
    display: block;
    margin: 0 auto;
}
.meet-the-team-name {
    margin-top: 15px;
}
.meet-the-team-name p {
    color: #0070a0;
    margin-top: 0px;
    font-size: 20px;
     font-family: 'Open Sans', sans-serif;

    font-weight: 400;
    text-align: center;
}
.meet-the-team-work {
    margin-top: 10px;
}
.meet-the-team-work p {
    text-transform: uppercase;
}
.meet-the-team-description {
    position: relative;
}
.read-more-about-me {
    color: #1b1f24;
    text-decoration: none;
}
.read-more-about-me-active .about-me-indicators-button {
    background-color: #7d7d7d;
}
.read-more-about-me-active,
.read-more-about-me:hover {
    color: #7d7d7d;
    text-decoration: none;
}
.read-more-about-me-arrow {
    position: relative;
    width: 20px;
    height: 13px;
    background-image: url("../images/read-more-about-me-arrow-1.png");
    -webkit-background-size: 20px 13px;
    background-size: 20px 13px;
    background-repeat: no-repeat;
    display: block;
    margin: 10px auto;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.about-me-info-holder {
    padding-right: 0;
}
.about-me-info {
    margin-top: 100px;
    position: relative;
}
.section-about-me {
    display: none;
}
.active-tab {
    display: block;
}
.about-me-media .fa-linkedin-square,
.about-me-media .fa-twitter-square {
    font-size: 24px;
    color: #fdb913;
    margin-right: 10px;
}
.about-me-media .fa-envelope {
    font-size: 20px;
    color: #fdb913;
    margin-right: 10px;
}
.about-me-media a {
    color: #7d7d7d;
    text-decoration: none;
}
.about-me-arrow-top {
    width: 59px;
    height: 38px;
    position: absolute;
    top: -36px;
    right: 10px;
    background-image: url("../images/about-me-arrow-top.png");
    -webkit-background-size: 59px 38px;
    background-size: 59px 38px;
}
.about-me-arrow-bottom {
    width: 15px;
    height: 60px;
    position: absolute;
    top: 200px;
    left: 10px;
    background-image: url("../images/about-me-arrow-bottom.png");
    -webkit-background-size: 15px 60px;
    background-size: 15px 60px;
}
.about-me-image-holder {
    padding-left: 50px;
}
.about-me-image {
    margin-top: 50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
}
.about-me-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid #c7c8c8;
    padding: 5px;
}
.about-me-article {
    position: relative;
    right: 0;
}
.about-me-article-title {
    text-align: right;
}
.about-me-article-description {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: right;
    line-height: 30px;
    color: #2e2e2e;
     font-family: 'Open Sans', sans-serif;

    font-weight: 400;
    font-size: 14px;
}
.about-me-article-description p:nth-of-type(1) {
    font-size: 18px;
}
.about-me-name p {
     font-family: 'Open Sans', sans-serif;

    font-size: 20px;
    font-weight: bold;
    color: #1b1f24;
}
.about-me-work p {
    text-transform: uppercase;
}
.about-me-indicators {
    width: 150px;
    margin: 0 auto;
}
.about-me-indicators-button {
    background-color: #ccc;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    float: left;
    margin: 10px;
}
.section-gray {
    background-color: #eee;
    margin-top: 0;
    padding-top: 30px;
    padding-bottom: 30px;
}
.border-left {
    height: 2px;
    background-color: #ccc;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 10px;
    width: 100%;
}
.border-left span {
    height: 100%;
    width: 20%;
    display: block;
    background-color: #fdb913;
}
.border-right {
    height: 2px;
    background-color: #ccc;
    margin: 0 auto;
    margin-top: 5px;
    margin-bottom: 10px;
    width: 100%;
}
.border-right span {
    height: 100%;
    float: right;
    width: 20%;
    display: block;
    background-color: #fdb913;
}
.mehd {
    color: #1b1f24;
     font-family: 'Open Sans', sans-serif;

    font-weight: 100;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 10px;
}

/*Register form*/
.register{
    background: #fff;
    margin-top: -200px;
    padding: 3%;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 5px 5px 2px;
      z-index: 999;
      position: relative;
      padding-top: 0%;
      margin-bottom: 100px;
}

.register-left{
    text-align: center;
    color: #fff;
    margin-top: 0px;
    background-color: red;
}

.register-left input{
    border: none;
    border-radius: 1.5rem;
    padding: 2%;
    width: 60%;
    background: #f8f9fa;
    font-weight: bold;
    color: #383d41;
    //margin-top: 30%;
    margin-bottom: 3%;
    cursor: pointer;
}
.register-right{
    background: green !important;
   margin-top: 0px;
}
.register-left img{
    margin-top: 15%;
    margin-bottom: 5%;
    width: 25%;
    -webkit-animation: mover 2s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}
.register-left p{
    font-weight: lighter;
    padding: 12%;
    margin-top: -9%;
    text-align: center !important;
}
.register .register-form{
    margin-top: -100px;
}
.btnRegister{
    float: left;
    margin-top: 5%;
    border: none;
    border-radius: .7rem;
    padding: 15px;
    background: #FF7900;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}


/*Footer*/
  .bg-grey {
        background: #fff;
     }
     .logo-footer {
        margin-bottom: 40px;
     }
     footer {
            color: #000;
     }
      footer p {
        margin-top: 20px;
      }
     footer p, a {
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}
footer h6 {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 40px;
    position: relative;
}
footer h6:after {
    position: absolute;
    content: "";
    background: #fff;
    width: 12%;
    height: 1px;
    left: 0;
    bottom: -20px;
}
     .btn-footer {
                 color: #000;
              
                text-decoration: none;
                border: 1px solid;
                border-radius: 43px;
                font-size: 13px;
                padding: 7px 30px;
                line-height: 47px;
     }
     .btn-footer:hover {
                
                text-decoration: none;
               
     }
    .form-footer input[type="text"] {
        border: none;
    border-radius: 16px 0 0 16px;
    outline: none;
    padding-left: 10px;
    
}
::placeholder {
    font-size: 10px;
    padding-left: 10px;
    font-style: italic;
}
 .form-footer input[type="button"] {
    border: none;
    background:#232323;
        margin-left: -5px;
    color: #fff;
    outline: none;
    border-radius: 0 16px 16px 0;
    padding: 2px 12px;
}
     .social .fa {
    color: #fff;
    font-size: 22px;
    padding: 10px 15px;
    background: #3c3c3c;
}
     footer ul li {
    list-style: none;
    display: block;
}
  footer ul  {
   margin-left: -15px;
   margin-top: 35px;
}
footer ul  li a{
  text-decoration: none;
  color: #333;
  text-decoration:none;
}
a:hover {
    text-decoration: none;
    color: #FF7900 !important;
    
}
.logo-part {
    border-right: 1px solid grey;
    height: 100%;
    }


    /*Clients slider slick*/

    .register h3 i{
    
    color: #FF7900 !important;
   font-size: 30px;
}
    .register h3 a{
    
    color: #333 !important;
   font-size: 20px;
}

footer {
  padding-bottom: 50px;
  padding-top: 50px;
}


/*Home*/
.slider .owl-nav.disabled + .owl-dots {
  margin-top: -50px;
  z-index: 9999;
  position: relative;
}

.slider .owl-dots .owl-dot.active span {
    background-color: #FF7900;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {

  background-color: #FF7900;
}

.owl-theme .owl-dots .owl-dot span {
  background-color: gray;
  border: 1px solid f5f5f5;
}
  .slider .one {
    width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider01.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    
  }

/*.slider .one h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .one p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .one .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .one .banbutton button{
   margin-right: 10px;
 }*/

.slider .one .container {
  //background-color: red; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .one .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .one .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .one .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .one .container .banbutton button{
   margin-right: 10px;
 }
 .slider .one .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }



  .slider .two {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider02.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .two .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .two .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .two .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
     //left: 13%;
    
 }
 .slider .two .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }

 .slider .two .container .banbutton button{
   margin-right: 10px;
 }

 .slider .two .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }



 .slider .three {
    width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider03.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .three .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .three .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .three .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
     //left: 13%;
    
 }
 .slider .three .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .three .container .banbutton button{
   margin-right: 10px;
 }
 .slider .three .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }

 .slider .four {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider04.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .four .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .four .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }


.slider .four .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .four .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .four .container .banbutton button{
   margin-right: 10px;
 }
 .slider .four .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }


 .slider .five {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider05.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .five .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .five .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .five .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .five .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .five .container .banbutton button{
   margin-right: 10px;
 }
 .slider .five .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }




 .slider .six {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider06.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .six .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .six .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .six .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .six .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .six .container .banbutton button{
   margin-right: 10px;
 }
 .slider .six .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }




  .slider .seven {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider07.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .seven .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .seven .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .seven .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .seven .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .seven .container .banbutton button{
   margin-right: 10px;
 }
 .slider .seven .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }



  .slider .eight {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider08.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .eight .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .eight .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .eight .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .eight .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .eight .container .banbutton button{
   margin-right: 10px;
 }
 .slider .eight .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }



  .slider .nine {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider09.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .nine .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .nine .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .nine .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .nine .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .nine .container .banbutton button{
   margin-right: 10px;
 }
 .slider .five .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }


  .slider .ten {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider10.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .ten .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .ten .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .ten .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .ten .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .ten .container .banbutton button{
   margin-right: 10px;
 }
 .slider .ten .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }


  .slider .eleven {
     width: 100%;
    height: 80vh;
    //background-color: #000;
      background-image: url(../images/slider11.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

/*.slider .two h1 {
    color: white;
    font-size: 9vh;
    position: absolute;
    top: 19%;
    left: 13%;
    
 }
.slider .two p {
    color: white;
    font-size: 16px;
    position: absolute;
    top: 50%;
     left: 13%;
    
 }
 .slider .two .banbutton {
    position: absolute;
    top: 60%;
    left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .two .banbutton button{
   margin-right: 10px;
 }*/



.slider .eleven .container {
  //background-color: green; 
  height: 70vh; 
  position: relative;
  padding: 0px;
}

.slider .eleven .container h3 {
    color: #fff;
    font-size: 5vh;
    position: absolute;
    top: 30%;
    //left: 13%;
    //font-family: 'Bruno Ace SC', cursive;
    line-height: 50px !important;
    text-shadow: 1px 1px #000;
    font-weight: bold;
    
 }
.slider .eleven .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 60%;
     //left: 13%;
    
 }
 .slider .eleven .container .banbutton {
    position: absolute;
    top: 70%;
    //left: 13%;
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
  
 }
 .slider .eleven .container .banbutton button{
   margin-right: 10px;
 }
 .slider .eleven .container img{
   width: 30vw;
   right: 0%;
   float: right;
 }





/*.slider .owl-item.active h1 {
   font-size: 60px;
   text-align: left;
   color: white;
   animation:fadeIn ease 1s;
   background-repeat: no-repeat;
   top: 50%;
   margin-left: 13.5%;
 }
.slider .owl-item.active p {
   font-size: 20px;
   text-align: left;
   color: white;
   animation:fadeIn ease 1s;
   background-repeat: no-repeat;
   left: 30%;
   padding: 40px 0px;
   margin-left: 13.5%;
 }
 .slider .owl-item.active .banbutton {
   
  
  animation:fadeIn ease 1s;
   background-repeat: no-repeat;
   margin-left: 13.5%;
 }*/

 .slider .owl-theme  .owl-dots {
    bottom: 50px;
    position: relative;
 }


 /**/
 
.client {
  padding: 50px 0px;
}
  .client .item {
    width: 100%;
    /*height: 200px;*/
    /*background-color: red;
    border-top-left-radius: 50%;
    border-bottom-right-radius: 50%;*/
  }
  .client .item h4{
   text-align: center;
   color: white;
   font-weight: bold;
   padding-top: 20px;
  }
  /*.client .owl-carousel .owl-nav button.owl-prev, 
  .owl-carousel .owl-nav button.owl-next, 
  .owl-carousel button.owl-dot {
   position: absolute;
   font-size: 30px;
   color: red;
  }
  .client .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -30px;
    top: 90px;
  }
  .client .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -30px;
    top: 90px;
  }*/






.testimonial .owl-dots .owl-dot.active span {
    background-color: #D6D6D6;
}



.testimonial {
  padding: 50px 0px;
}
  .testimonial .item {
    width: 100%;
   text-align: center !important;
  }

 .testimonial .item img{
    //width: 150px;
   //border-radius: 50%;
   //border:5px solid #f5f5f5;  
  } 
  .testimonial .item h4{
   text-align: center;
   color: white;
   font-weight: bold;
   padding-top: 20px;
  }
   .testimonial .owl-item.active p {
   font-size: 18px;
   text-align: center;
   color: #000;
   padding-left: 0px;
   left: 0%;
   padding: 0px !important;
   margin-left: 0%;
 }
    .testimonial .owl-item.active h3 {
  
   text-align: center;
   color: #000;
   
 }
.testimonial h3 {
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
      width: 100%;
  height: 200px;
  background: #FF7900;
  padding: 30px;
}
}
.testimonial a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}
.testimonial a {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
}

#achievement {
  width: 100%;
  background-color: white;
  padding:50px 0px;
  padding-bottom: 0px; 
}
#achievementmid {
  max-width: 100%;
}
#achievementmid h1 {
    color: #000;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
}
#achievement h4{ 
 text-align: center;
 color: #000;
 font-size: 20px;
}
#achievementmid .description {
   
    text-align: center;
}

 /* .testimonial .owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next, .owl-carousel button.owl-dot {
   position: absolute;
   font-size: 30px;
   color: red;
  }
  .testimonial .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    left: -30px;
    top: 90px;
  }
  .testimonial .owl-carousel .owl-nav button.owl-next {
    position: absolute;
    right: -30px;
    top: 90px;
  }*/
.testimonial .owl-theme .owl-nav {
  
}

.spacer30 {
  margin: 600px 0;
}
#go {
  float: right;
  width: 50px;
}
#searchItem {
  float: left;
  width: 200px;
  
}
.input-group {
  width: 260px;
}
.searchid {
  font-size:16px; 
  color: white; 
  background-color: #0077B5; 
  padding: 10px;
  border-radius: 50%; 
  float: right; 
  margin-top: -45px;
  margin-right: 40px;
}
.searchid:hover {
  color: white; 
  background-color:#FF7900; 
 transition: 0.5s ease;
}
.searchid-wp {
  font-size:16px; 
  color: white; 
  background-color: #4CC85A; 
  padding: 10px;
  border-radius: 50%; 
  float: right; 
  margin-top: -45px;
}
.searchid-wp:hover {
  color: white; 
  background-color: #FF7900; 
 transition: 0.5s ease;
}
iframe {
  border: none;
}


/*contactpage*/
 #contactpage {
        padding: 50px 0px;
        background-color: #fff;
        padding-bottom: 0px;
      }
 #contactpagemid {
        padding: 0px 0px;
        background-color: #fff;
      } 
       #contactpagemid a {
       color: #fff;
      }
        #contactpagemid a:hover {
       color: #fff !important;
      } 
  #contactimg .topimg {
        background-image: url(../images/contact-bg.jpg);
    background-repeat: no-repeat;
    position: relative;
    min-height: 250px;
    background-size: cover;
      } 

      #contactimg .topimg h1{
     font-size: 36px;
     color: white;
     text-align: center;
     padding: 50px 0px;
    position: absolute;
    left: 13%;
      }

.contact {
    padding-bottom: 0px;
}
.contact .heading {
    margin-bottom: 0px;
}
.contact .heading h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin: 0;
    margin-bottom: 0px;
}
.contact .heading h2 span {
    color: #7035cf;
    font-weight: 300;
}
.contact .heading p {
    font-size: 14px;
    font-weight: 400;
    color: #525f7f;
    line-height: 26px;
    margin: 0;
}
.contact .main {
    background: #ffffff;
    box-shadow: 1px 1px 20px 0 rgba(0,0,0,0.08);
    min-height: 700px;
    background-color: transparent;
}
.contact .main h3 {
    font-size: 20px;
    font-weight: 500;
    color: #4a545e;
    margin: 0;
    margin-bottom: 20px;
}
.contact .form-control {
    padding: 25px;
    font-size: 13px;
    margin-bottom: 10px;
    background: #f8f8f9;
    border: 0;
    border-radius: 5px;
}
.contact button.btn {
    padding: 10px;
    border-radius: 5px;
    font-size: 15px;
    background: #FF7900;
    color: #ffffff;
}

.contact .main .left {
    padding: 40px 60px;
    min-height: 100%;
    background-color: #fff;
}
.contact .main .right {
    background:#FF7900;
    //background-size: cover;
    padding: 40px 30px;
    color: #ffffff;
     min-height: 100%;
    background-color: #FF7900;
    height: 728px;
}
.contact .main .right h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}
.contact .main .right .info {
    margin-bottom: 35px;
}
.contact .main .right .info i {
    font-size: 25px;
    color: #ffffff;
}
.contact .main .right .info span {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin-left: 15px;
}
.contact .main .right .social a {
    text-decoration: none;
    font-size: 30px;
    color: #ffffff;
    margin-right: 20px;
} 

/*Faq*/

.faq-section {
    background: #fdfdfd;
    min-height: 100vh;
    padding: 10vh 0 0;
}
.faq-title h2 {
  position: relative;
  margin-bottom: 45px;
  display: inline-block;
  font-weight: 600;
  line-height: 1;
}
.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;
}
.faq-title p {
  padding: 0 190px;
  margin-bottom: 10px;
}

.faq {
  background: #FFFFFF;
  box-shadow: 0 2px 48px 0 rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.faq .card {
  border: none;
  background: none;
  border-bottom: 1px dashed #CEE1F8;
}

.faq .card .card-header {
  padding: 0px;
  border: none;
  background: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.faq .card .card-header:hover {
    background: rgba(233, 30, 99, 0.1);
    padding-left: 10px;
}
.faq .card .card-header .faq-title {
  width: 100%;
  text-align: left;
  padding: 0px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: #3B566E;
  text-decoration: none !important;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  padding-top: 20px;
  padding-bottom: 20px;
}

.faq .card .card-header .faq-title .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 14px;
  float: left;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  text-align: center;
  background: #E91E63;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
}

.faq .card .card-body {
  padding: 30px;
  padding-left: 35px;
  padding-bottom: 16px;
  font-weight: 400;
  font-size: 16px;
  color: #6F8BA4;
  line-height: 28px;
  letter-spacing: 1px;
  border-top: 1px solid #F3F8FF;
}

.faq .card .card-body p {
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .card .card-header .faq-title {
    line-height: 26px;
    margin-top: 10px;
  }
}

       h1,
        h2,
        h3,
        h4,
        h5,
        h6 {}
        a,
        a:hover,
        a:focus,
        a:active {
            text-decoration: none;
            outline: none;
            
        }
        
        a,
        a:active,
        a:focus {
            color: #6f6f6f;
            text-decoration: none;
            transition-timing-function: ease-in-out;
            -ms-transition-timing-function: ease-in-out;
            -moz-transition-timing-function: ease-in-out;
            -webkit-transition-timing-function: ease-in-out;
            -o-transition-timing-function: ease-in-out;
            transition-duration: .2s;
            -ms-transition-duration: .2s;
            -moz-transition-duration: .2s;
            -webkit-transition-duration: .2s;
            -o-transition-duration: .2s;
        }
        
        ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }
        img {
    max-width: 100%;
    height: auto;
}
        section {
            padding: 0px 0;
           /* min-height: 100vh;*/
        }

#aboutpage .heading h2 {
    font-size: 30px;
    font-weight: 500;
    color: #000;
    margin-bottom:10px;
    
}

#aboutpage .heading .border-org-at {
  width: 70px;
  height: 4px;
  border-radius: 2px;
  background-color:#FF7900;
  margin-bottom: 20px;
}
#aboutpage .marbot {
  
  margin-bottom: 120px;
}
.sec-title{
  position:relative;
  z-index: 1;
  margin-bottom:60px;
}

.sec-title .title{
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #FF7900;
  font-weight: 500;
  margin-bottom: 15px;
}

.sec-title h3{
  position: relative;
  display: block;
  font-size:40px;
  line-height: 1.28em;
  color: #222222;
  font-weight: 600;
  padding-bottom:18px;
}

.sec-title h3:before{
  position:absolute;
  content:'';
  left:0px;
  bottom:0px;
  width:50px;
  height:3px;
  background-color:#d1d2d6;
}

.sec-title .text{
  position: relative;
  font-size: 16px;
  line-height: 26px;
  color: #848484;
  font-weight: 400;
  margin-top: 35px;
}

.sec-title.light h2{
  color: #ffffff;
}

.sec-title.text-center h2:before{
  left:50%;
  margin-left: -25px;
}

.list-style-one{
  position:relative;
}

.list-style-one li{
  position:relative;
  font-size:16px;
  line-height:26px;
  color: #222222;
  font-weight:400;
  padding-left:35px;
  margin-bottom: 12px;
}

.list-style-one li:before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0px;
    display: block;
    font-size: 18px;
    padding: 0px;
    color: #ff2222;
    font-weight: 600;
    -moz-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1.6;
    font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
  color: #44bce2;
}

.btn-style-one{
  position: relative;
  display: inline-block;
  font-size: 17px;
  line-height: 30px;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: 600;
  overflow: hidden;
  letter-spacing: 0.02em;
  background-color: #FF7900;
}

.btn-style-one:hover{
  background-color: #000;
  color: #ffffff;
}
#aboutpage .about-section{
  position: relative;
  //padding: 120px 0 70px;
}

#aboutpage .about-section .sec-title{
  margin-bottom: 45px;
}

#aboutpage .about-section .content-column{
  position: relative;
  margin-bottom: 0px;
}

#aboutpage .about-section .content-column .inner-column{
  position: relative;
  padding-left: 0px;
}

#aboutpage .about-section .text{
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 26px;
  color: #333;
  font-weight: 400;
  text-align: left;
}

#aboutpage .about-section .list-style-one{
  margin-bottom: 45px;
}

#aboutpage .about-section .btn-box{
  position: relative;
}

#aboutpage .about-section .btn-box a{
  padding: 15px 50px;
}

#aboutpage .about-section .image-column{
  position: relative;
}

#aboutpage .about-section .image-column .text-layer{
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}

#aboutpage .about-section .image-column .inner-column{
  position: relative;
  padding-left: 80px;
  padding-bottom: 0px;
}
#aboutpage .about-section .image-column .inner-column .author-desc{
    position: absolute;
    bottom: 16px;
    z-index: 1;
    background: orange;
    padding: 10px 15px;
    left: 96px;
    width: calc(100% - 152px);
    border-radius: 50px;
}
#aboutpage .about-section .image-column .inner-column .author-desc h2{
    font-size: 21px;
    letter-spacing: 1px;
    text-align: center;
    color: #fff;
  margin: 0;
}
#aboutpage .about-section .image-column .inner-column .author-desc span{
    font-size: 16px;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
  display: block;
  font-weight: 400;
}
#aboutpage .about-section .image-column .inner-column:before{
    content: '';
    position: absolute;
    width: calc(50% + 80px);
    height: calc(100% + 160px);
    top: -80px;
    left: -3px;
    background: transparent;
    z-index: 0;
    border: 24px solid #FF7900;
}

#aboutpage .about-section .image-column .image-1{
  position: relative;
}
#aboutpage .about-section .image-column .image-2{
  position: absolute;
  left: 0;
  bottom: 0;
}

#aboutpage .about-section .image-column .image-2 img,
#aboutpage .about-section .image-column .image-1 img{
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
      border-radius: 46px;
}

#aboutpage .about-section .image-column .video-link{
  position: absolute;
  left: 70px;
  top: 170px;
}

#aboutpage .about-section .image-column .video-link .link{
  position: relative;
  display: block;
  font-size: 22px;
  color: #191e34;
  font-weight: 400;
  text-align: center;
  height: 100px;
  width: 100px;
  line-height: 100px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 30px 50px rgba(8,13,62,.15);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

#aboutpage .about-section .image-column .video-link .link:hover{
  background-color: #191e34;
  color: #fff;
}



#back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display:none;
     width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    background:#FF7900;
    border:none; 
    color: white;
}
#back-to-top:hover {
    color: white;
    background: #000;
    border:none; 
}

#back-to-top .fa {
  color: white;
  margin-top: 15px;
}
.align-center {
  
}
  #footerlastmid .searchid2 {
  //display: none;
}
#footerlastmid .searchid-wp2 {
  //display: none;
}
.social-footer {
  display: none;
}
@media screen and (min-width: 320px) and (max-width: 767px) {


     .slider .one {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
 .slider .two {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider02.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .three {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider03.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .four {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider04.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .five {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider05.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .six {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider06.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .seven {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider07.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .eight {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider08.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .nine {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider09.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
   .slider .ten {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider10.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
  .slider .eleven {
     width: 100%;
    height: 50vh;
    //background-color: #000;
      background-image: url(../images/slider11.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }
  .social-footer {
  display: block;
}
  #products video {
    height: 200px;
}
 #products{
    margin-top: -200px;
}
.searchid {
  display: none;
}
.searchid-wp {
  display: none;
}
  #footerlastmid .searchid2 {
  font-size:16px; 
  color: white; 
  background-color: #0077B5; 
  padding: 10px;
  border-radius: 50%; 
  margin-bottom: 20px;
}
#footerlastmid .searchid2:hover {
  color: white; 
  background-color: #FF7900; 
 transition: 0.5s ease;
}

#footerlastmid .searchid-wp2 {
  font-size:16px; 
  color: white; 
  background-color: #4CC85A; 
  padding: 10px;
  border-radius: 50%; 
  //float: right; 
  margin-top: -45px;
}
#footerlastmid .searchid-wp2:hover {
  color: white; 
  background-color: #FF7900; 
 transition: 0.5s ease;
}
  body {

    width: 100%;
    height: auto;
    overflow-x: scroll;
  }
  .searchid {
    display: none;
  }
    .searchid-wp {
    display: none;
  }
  #casepagemid ul {
    margin-left: 20px;
  }
  #aboutpage .image-column {
    margin-top: 60px;
  }
  #aboutpagemid .feature-content h4 {
   margin-top: 100px;
  }
  #aboutpage .marbot {
    margin-bottom: 40px;
  }
  nav {
    padding-top: 0px;
    margin-bottom: 20px;
    border: 1px solid #f5f5f5;
  }
.mart {
  padding-top: 50px;
}
.slider .one .container h3 {
    color: #fff;
    font-size: 3vh;
    position: absolute;
    top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }
.slider .one .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
    left: 13%;
    
 }
.slider .two .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
    top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }
.slider .two .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
    left: 13%;
    
 }
.slider .three .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }
.slider .three .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
    left: 13%;
    
 }
 .slider .four .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
 }
.slider .four .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
    left: 13%;
    
 }

 .slider .five .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }
.slider .five .container p {
    color: #777;
    font-size: 16px;
    position: absolute;
    top: 52%;
    left: 13%;
    
 }


 .slider .six .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }

 .slider .seven .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }

 .slider .eight .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }
 .slider .nine .container h3 {
   color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }

 .slider .ten .container h3 {
    color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }

 .slider .eleven .container h3 {
    color: #fff;
    font-size: 3vh;
    position: absolute;
     top: 15%;
    left: 5%;
    right: 5%;
    line-height: 35px !important;
    
 }
 .slider .one .container br {
    display: none !important;
    
 }
 .slider .two .container br {
    display: none !important;
    
 }
 .slider .three .container br {
    display: none !important;
    
 }
 .slider .four .container br {
    display: none !important;
    
 }
 .slider .five .container br {
    display: none !important;
    
 }
 .slider .six .container br {
    display: none !important;
    
 }
 .slider .seven .container br {
    display: none !important;
    
 }
 .slider .eight .container br {
    display: none !important;
    
 }
 .slider .nine .container br {
    display: none !important;
    
 }
 .slider .ten .container br {
    display: none !important;
    
 }
.slider .eleven .container br {
    display: none !important;
    
 }
 .slider .one .container img {
  width: 35vh;
  right: 13%;
 }
  .slider .two .container img {
  width: 35vh;
  right: 13%;
 }
  .slider .three .container img {
  width: 35vh;
  right: 13%;
 }
  .slider .four .container img {
  width: 35vh;
  right: 13%;
 }
   .slider .five .container img {
  width: 35vh;
  right: 13%;
 }
  .slider .one .container p {
  font-size: 2vh;
  top:45%;
 }
  .slider .two .container p {
  font-size: 2vh;
  top:40%;
 }
  .slider .three .container p {
  font-size: 2vh;
  top:45%;
 }
 .slider .four .container p {
  font-size: 2vh;
  top:45%;
 }
 .slider .five .container p {
  font-size: 2vh;
  top:45%;
 }

 .slider .one .container .banbutton {
  left: 5%;
  top:50%;
 }
 .slider .two .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .three .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .four .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .five .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .six .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .seven .container .banbutton {
  left: 5%;
  top:55%;
 }
  .slider .eight .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .nine .container .banbutton {
  left: 5%;
  top:50%;
 }
  .slider .ten .container .banbutton {
  left: 5%;
  top:50%;
 }
   .slider .eleven .container .banbutton {
  left: 5%;
  top:50%;
 }
 .bluebtn {
  padding: 10px 15px !important;
  font-size: 12px;
 }

 .orangebtn {
  padding: 8px 15px !important;
  font-size: 12px;
 }
.slider .owl-nav.disabled + .owl-dots {
  margin-top: -40px;
}
.align-center {
  text-align: center !important;
}
#headermid img {
  margin-left: 13%;
}
.overtext {
  display: none;
}
.register .register-form {
  margin-top: 50px;
}
.btnRegister {
  padding: 10px;
  margin-bottom: 30px;
}
}


@media screen and (min-width: 1900px) and (max-width: 2400px) {

#aboutimg .topimg h1 {
  left: 20% !important;
}

#productimg .topimg h1 {
  left: 20% !important;
}

#faqimg .topimg h1 {
  left: 20% !important;
}

#caseimg .topimg h1 {
  left: 20% !important;
}

#contactimg .topimg h1 {
  left: 20% !important;
}

.slider .one .container h1 {

  font-size: 7vh;
 }
.slider .two .container h1 {

  font-size: 7vh;
 }
 .slider .three .container h1 {

  font-size: 7vh;
 }
.slider .four .container h1 {

  font-size: 7vh;
 }
 .slider .five .container h1 {

  font-size: 7vh;
 }

 #book-appointment {
  height: 540px;
 }
 .img-up img {
  margin-top: -725px;
 }

.mart{
  margin-top: -100px;
}
}


 .socials-link {
     margin-top: 50px;
    }

     .socials-link li {
      display: inline-block;
      margin: 0 15px;
    }

     .socials-link a {
      display: block;
      width: 50px;
      height: 50px;
      border: 1px solid gray;
      line-height: 50px;
      text-align: center;
      font-size: 20px;
      border-radius: 50%;
      position: relative;
      color: gray;
      transition: all .25s;
      margin-bottom: 10px;
    }
     .socials-link .fa {
     background-color: transparent;
    }
     .socials-link i {
      position: relative;
      z-index: 1;
    }

     .socials-link a:before,
    a:after {
      position: absolute;
      content: "";
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform-origin: 50% 50%;
      transform: scale(0);
      border-radius: 50%;
      z-index: -1;
      transition: all .25s;
    }

 .socials-link a.active:before,
    a.active:after {
      transition: all .25s;
    }

     .socials-link a.active:before,
    a:hover:before {
      background: #fff;
      transform: scale(1.1);
    }

     .socials-link a.active:after {
      background: #fff;
      z-index: -2;
      transform: scale(100);
    }

     .socials-link a.active.fb:after {
      background: #3b5998;
    }

     .socials-link a.fb:hover,
    a.active.fb {
      color: #3b5998;
    }

     .socials-link a.active.twitter:after {
      background: #55acee;
    }

    .socials-link a.twitter:hover,
    a.active.twitter {
      color: #55acee;
    }

    .socials-link a.active.pinterest:after {
      background: #cb2027;
    }

     .socials-link a.pinterest:hover,
    a.active.pinterest {
      color: #cb2027;
    }

     .socials-link a.active.gp:after {
      background: #dd4b39;
    }

     .socials-link a.gp:hover,
    a.active.gp {
      color: #dd4b39;
    }

    .banbutton a{
 
  color: white !important;
}
.banbutton a:hover{
 
  color: white !important;
}

#client{
width: 100%;
}
#clientmid{
  width: 100%;
  padding: 70px;
  background-color: #FF7900;
}
#clientmid h1{
color: #fff;
font-size: 36px;
font-weight: 500;
text-align: center;
}
.border-org {
  width: 70px;
  height: 2px;
  border-radius: 2px;
  background-color:#fff;
  margin: 0 auto; 
  margin-bottom: 20px;
}

.border-org-case {
  width: 70px;
  height: 2px;
  border-radius: 1px;
  background-color:#FF7900;
  margin: 0 auto; 
  margin-bottom: 40px;
  margin-top: 10px;
}
.border-org-at {
  width: 70px;
  height: 2px;
  border-radius: 1px;
  background-color:#FF7900;
  margin-bottom: 20px;
}


/*Fixed Menu Right*/

 #sidebar-wrapper {
    margin-right: -280px;
    right: 0;
    width: 280px;
    background: #FF7900;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.5s ease-in 0s;
    -webkit-transition: all 0.5s ease-in 0s;
    -moz-transition: all 0.5s ease-in 0s;
    -ms-transition: all 0.5s ease-in 0s;
    -o-transition: all 0.5s ease-in 0s;
  }

  .sidebar-nav {
    position: absolute;
    top: 0;
    width: 280px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
.sidebar-nav ul {
  list-style: none;
  margin-left: 20px;
  text-align: left;
}
  .sidebar-nav li {
    line-height: 20px;
    text-indent: 0px;
    margin-bottom: 30px;

    border-bottom: 1px solid #c45c22;
  }

  .sidebar-nav li a {
    color: #fff;
    display: block;
    text-decoration: none;
    font-weight: normal;
    margin-left: 0px;
    padding-bottom: 5px;
  }

  .sidebar-nav li a:hover {
    color: #fff !important;
    text-decoration: none;
  }

  .sidebar-nav li a:active, .sidebar-nav li a:focus {
    text-decoration: none;
    color: #fff !important;
  }

  .sidebar-nav > .sidebar-brand {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    background-color: #0e2332;
  }

  .sidebar-nav > .sidebar-brand a {
    color: #fff;
    margin-left: 15px;
    font-size: 22px;
    font-weight: bold;
  }

  .sidebar-nav > .sidebar-brand a:hover {
    color: #fff !important;
    background: none;
  }

  #menu-toggle {
    top: 45%;
    right: 0;
    position: fixed;
    z-index: 99999;
    opacity: 0.5;
  }

  #sidebar-wrapper.active {
    right: 280px;
    width: 280px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
  }

  .toggle {
    margin: 5px 5px 0 0;
  }
  .bt-orgright {
   //padding: 10px;
    color: white;
    background-color: #000;

  }
  .bt-orgright a{
    padding: 10px;
    color: white;
     background-color: #000;
     border-top-left-radius:5px;
    border-bottom-left-radius:5px;  
  }



 #sidebar-wrapper-two {
    margin-right: -280px;
    right: 0;
    width: 280px;
    background: #C9D0D6;
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.5s ease-in 0s;
    -webkit-transition: all 0.5s ease-in 0s;
    -moz-transition: all 0.5s ease-in 0s;
    -ms-transition: all 0.5s ease-in 0s;
    -o-transition: all 0.5s ease-in 0s;
  }

  .sidebar-nav-two {
    position: absolute;
    top: 0;
    width: 280px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
.sidebar-nav-two ul {
  list-style: none;
  margin-left: 20px;
  text-align: left;
}
  .sidebar-nav-two li {
    line-height: 20px;
    text-indent: 0px;
    margin-bottom: 30px;

    border-bottom: 1px solid #f7f7f7;
  }

  .sidebar-nav-two li a {
    color: #000;
    display: block;
    text-decoration: none;
    font-weight: normal;
    margin-left: 0px;
    padding-bottom: 5px;
  }

  .sidebar-nav-two li a:hover {
    color: #000 !important;
    text-decoration: none;
  }

  .sidebar-nav-two li a:active, .sidebar-nav-two li a:focus {
    text-decoration: none;
    color: #000 !important;
  }

  .sidebar-nav-two > .sidebar-brand-two {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
    background-color: #0e2332;
  }

  .sidebar-nav-two > .sidebar-brand-two a {
    color: #fff;
    margin-left: 15px;
    font-size: 22px;
    font-weight: bold;
  }

  .sidebar-nav-two > .sidebar-brand-two a:hover {
    color: #fff !important;
    background: none;
  }

  #menu-toggle-two {
    top: 55%;
    right: 0;
    position: fixed;
    z-index: 99999;
    opacity: 0.5;
  }
  #menu-toggle-three {
    top: 65%;
    right: 0;
    position: fixed;
    z-index: 99999;
    opacity: 0.5;
  }
  #menu-toggle-four {
    top: 75%;
    right: 0;
    position: fixed;
    z-index: 99999;
    opacity: 0.5;
  }
  #sidebar-wrapper-two.active {
    right: 280px;
    width: 280px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
  }

  .toggle-two {
    margin: 5px 5px 0 0;
  }
  .bt-orgright-two {
   //padding: 10px;
    color: white;
    background-color: #000;

  }
  .bt-orgright-two a{
    padding: 10px;
    color: white;
     background-color: #000;
     border-top-left-radius:5px;
    border-bottom-left-radius:5px;  
  }

.bt-orgright-three {
   //padding: 10px;
    color: white;
    background-color: #000;

  }
  .bt-orgright-three a{
    padding: 10px;
    color: white;
     background-color: #000;
     border-top-left-radius:5px;
    border-bottom-left-radius:5px;  
  }

.bt-orgright-four {
   //padding: 10px;
    color: white;
    background-color: #000;

  }
  .bt-orgright-four a{
    padding: 10px;
    color: white;
     background-color: #000;
     border-top-left-radius:5px;
    border-bottom-left-radius:5px;  
  }
  /*Contact ul li icon*/
    .listone ul {
  --icon-space: 1.3em;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.listone li {
  padding-left: var(--icon-space);
}

.listone li:before {
  content: "\f041"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: calc( var(--icon-space) * -1 );
  width: var(--icon-space);
  font-size: 20px;
}

.listtwo ul {
  --icon-space: 1.3em;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.listtwo li {
  padding-left: var(--icon-space);
}

.listtwo li:before {
  content: "\f095"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: calc( var(--icon-space) * -1 );
  width: var(--icon-space);
  font-size: 20px;
}

.listthree ul {
  --icon-space: 1.3em;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.listthree li {
  padding-left: var(--icon-space);
}

.listthree li:before {
  content: "\f0e0"; /* FontAwesome Unicode */
  font-family: FontAwesome;
  display: inline-block;
  margin-left: calc( var(--icon-space) * -1 );
  width: var(--icon-space);
  font-size: 20px;
}


#testimonials {
  width: 100%;
  background-color: white;
  padding:50px 0px;
  padding-bottom: 0px; 
}
#testimonialsmid {
  max-width: 100%;
}
#testimonialsmid h1 {
    color: #000;
    font-size: 36px;
    font-weight: 500;
    text-align: center;
}
#testimonialsmid .description {
   
    text-align: center;
}
#testimonialsmid h4 {
    margin: 30px 0px; 
    text-align: center;
    color: #000;
    font-weight: bold;
}
#testimonialsmid h4 span{
    margin: 30px 0px; 
    text-align: center;
    color: #777;
    font-size: 16px;
    font-weight: normal;
}

.feature-box {
    margin-top: 100px;
}

@media screen and (min-width: 320px) and (max-width: 991px) {
.feature-box {
   margin-top: 20px;
}
}
h1, h2, h3, h4, h5, h6 {
   /* font-family: 'Roboto', sans-serif;
    font-family: 'Droid Sans', sans-serif;
    font-family: 'PT Sans', sans-serif;
    font-family: 'Source Sans Pro', sans-serif;
    font-family: 'Lato', sans-serif;*/
    font-family: 'Roboto', sans-serif !important;


}
hr {
    border-top: 1px solid #505050;
}

.social-icons a i{
    color: #ff7900;
    font-size: 22px;
    margin-left: 10px;
}
.social-icons a i:hover{
    color: #fff;
    font-size: 22px;
    margin-left: 10px;
}
/* Footer */

#myfooter {
    background-color: #111;
}

 #myfooter .footer-top {
      background: #111;
      padding: 40px 60px;
      width: 90%;
      margin: 0 auto;
      padding-top: 70px;
      margin-top: 0px;

    }

    #myfooter .footer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }

    #myfooter a {
        color: #f9f9f9;
    }
    #myfooter a:hover {
        color: #ff7900;
    }  
    #myfooter .logo img {
      //height: 50px;
    }

    #myfooter .btn-call {
      background: #ff7900;
      color: #fff;
      padding: 12px 25px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }
    #myfooter .footer-header a {
        color: white;
    }
    #myfooter .footer-header a:hover {
        color: white !important;
    }

    #myfooter .footer-columns {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 40px;
    }

    #myfooter .footer-col h5 {
      font-weight: 700;
      margin-bottom: 20px;
      font-size: 20px;
      color: #ff7900;
    }

    #myfooter .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    #myfooter .footer-col ul li {
      margin-bottom: 10px;
      font-size: 15px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    #myfooter .footer-col ul li::before {
       content: "\f00c";
      color: #ff7900;
      font-size: 14px;
      font-family: FontAwesome;

    
  
    }
    #footer-bt {
       width: 100%;
        background: #000;
    }
    .footer-bottom {
      background: #000;
      color: #fff;
      padding: 15px 0px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      width: 90%;
      margin:  0 auto;
      font-size: 12px;
    }

    #myfooter .social-icons i {
      color: #F24C28;
      margin-left: 15px;
      font-size: 18px;
      cursor: pointer;
      background-color: #F24C28;
    }

    /* Responsive */
    @media (max-width: 768px) {
      #myfooter .footer-top {
        padding: 30px 20px;
      }

      #myfooter .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      #myfooter .footer-columns {
        flex-direction: column;
        width: 100%;
      }

      #myfooter .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }

    .section-image {
    padding: 60px 0;
}

.section-image .flex-grid {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}

.section-image .box {
    width: 25%;
    padding: 20px;
    padding-bottom: 0px;

}

.section-image .box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0px;
     transition: 0.3s;
      filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}
.section-image .box img:hover {
   transform: scale(1.1);
   filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
}
}
.section-image .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 0px;
}

.section-image .icon {
    font-size: 40px;
    margin-bottom: 15px;
    color: #888;
    width: 50px;
}

.section-image .title {
    color: #ff4d2d;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.section-image .text {
    color: #555;
    font-family: 'Open Sans', sans-serif;
    
    font-size: 16px;
    line-height: 26px;
}

/* Responsive */
@media (max-width: 992px) {
    .section-image .box {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .section-image .box {
        width: 100%;
    }
}

.section-counter {
    padding: 60px 20px;
    text-align: center;
    background-color: #ff4d2d;
}

.section-counter .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.section-counter .stat-box {
    flex: 1;
    //padding: 20px;
    position: relative;
}

.section-counter .stat-box:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #ccc;
}

.section-counter .number {
    font-size: 35px;
    font-weight: bold;
    color: #fff;
}

.section-counter .label {
    
    margin-top: 20px !important;;
   
    font-weight: normal;
    display: inline-flex;
     color: #fff !important;
    font-family: 'Open Sans', sans-serif;
    
    font-size: 16px !important;
    line-height: 26px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-counter .flex-container {
        flex-direction: column;
    }

    .section-counter .stat-box {
        margin-bottom: 30px;
    }

    .section-counter .stat-box::after {
        display: none;
    }
}


.logo-section {
    padding: 40px 20px;
    background: #f5f5f5;
}

/* Flexbox alignment */
.logo-section .owl-carousel .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo image */
.logo-section .logo-box img {
    width: 120px;
    height: auto;
    //filter: grayscale(100%);
    //transition: 0.3s;
}

.logo-section .logo-box img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Custom arrows */
.logo-section .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: gray !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px !important;
}

.logo-section .owl-nav .owl-prev {
    left: -20px;
}

.logo-section .owl-nav .owl-next {
    right: -20px;
}

/* Hide dots */
.logo-section .owl-dots {
    display: none;
}
#servicesmid button {
    text-align: center !important;
    margin: 0 auto;
}
body,
html {
    
    background-color: #fff;
   color: #555;
    font-family: 'Open Sans', sans-serif;
    
    font-size: 16px;
    line-height: 26px;
}
p {
    color: #555 !important;
    
     font-family: 'Open Sans', sans-serif;
    /*font-family: 'PT Sans', sans-serif;
font-family: 'Droid Sans', sans-serif;
font-family: 'Lato', sans-serif;*/
    
    font-size: 16px;
    line-height: 26px;
    padding: 0px;
    padding-bottom: 10px;
    margin: 0px;
}

/*Aboutpage*/

.tabs-container {
    display: flex;
    //max-width: 900px;
    margin: 15px auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Left Tabs */
.tabs {
    display: flex;
    flex-direction: column;
    width: 220px;
    background: #f68220;
}

.tab-btn {
    padding: 20px;
    border: none;
    background: transparent;
    color: #fff;
    text-align: left;
    cursor: pointer;
    font-size: 26px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-weight: bold;
}

.tab-btn i {
    font-size: 18px;
}

.tab-btn:hover,
.tab-btn.active {
    background: #ff4d2d ;
}

/* Content Area */
.tab-content {
    flex: 1;
    padding: 30px;
    background-color: #f8f8f8;
}

.tab-content .content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.content.active {
    display: block;
}

.tab-content .content h2 {
    margin-top: 0;
    color: #0d6efd;
}

/* Animation */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* Responsive */
@media(max-width: 768px) {
    .tabs-container {
        flex-direction: column;
    }

    .tabs {
        flex-direction: column;
        width: 100%;
    }

    .tab-btn {
        flex: 1;
        justify-content: center;
        text-align: center;
    }
}
#aboutpage .about-section .text {
     color: #555 !important;
    font-family: 'Open Sans', sans-serif;
    
    font-size: 16px !important;
    line-height: 26px !important;
}
#aboutpage h2{
    color: #222;
    padding-top: 30px;
}



/*Case Studypage*/

 #flexone .container {
        display: flex;
        gap: 30px;
        max-width: 1200px;
        margin: auto;
    }

    #flexone .left,
    #flexone .right {
        flex: 1;
    }

    #flexone .left img{
        width: auto !important;
    }
    
     #flexone .top-img img {
        width: 250px !important;

    }


    #flexone .right {
        display: flex;
        flex-direction: column;
        gap: 15px;
        flex-grow: 1.5;
    }
   

    #flexone .top-img {
        width: auto !important;
        height: auto;
    }

    #flexone .content {
        background: #fff;
        padding: 0px;
        border-radius: 0px;
        padding-left: 0px;
        color: #555 !important;
        padding-top: -8px !important;
    }

    #flexone .content h4 {
        margin-bottom: 10px;
        color: #222;
        font-size: 20px;
        text-align: left !important;
        margin-top: -5px !important;
    }
    #flexone .contents h4 {
        margin-bottom: 10px;
        color: #222;
        font-size: 20px;
        text-align: left !important;
    }
    #flexone .content p {
        line-height: 1.6;
        font-size: 15px;
        color: #555 !important;
    }



 #flextwo {
        display: flex;
        gap: 20px;

        margin-top: 20px;
      
    }

     #flextwo h5 {
       font-size: 18px;
       padding-bottom: 15px;
      
    }

     #flextwo .lefts{
        flex: 1;
    }

#flextwo .rights {
        flex: 1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        #flexone .container {
            flex-direction: column;
        }

        #flexone .top-img {
            height: auto;
        }
        #flexone .content {
            padding-top: 0px;
        }
    }
    #casepagemid img {
        padding: 0px;
     
    }
    #casepagemid h2 {
        text-align: center !important;
    }
    #casepagemid p {
     color: #555 !important;
    font-family: 'Open Sans', sans-serif;
    
    font-size: 16px !important;
    line-height: 26px !important;
}

/*Contact us page*/
/* Main Container */
#contactpage .contact-bar{
  background:#fff;
  color:#555;
  //padding:30px 20px;
  width: 80%;
  margin:0 auto;
  padding-top: 30px;
  padding-bottom: 60px;
}

/* Flex Row */
#contactpage .contact-row{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

/* Each Column */
#contactpage .contact-col{
  flex:1;
  min-width:220px;
}

/* Headings */
#contactpage .contact-col h3{
  font-size:18px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}

#contactpage .contact-col p{
  font-size:14px;
  line-height:1.6;
}

/* Phone & Email */
#contactpage .contact-col .info{
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
}

/* Social Icons */
#contactpage .social{
  display:flex;
  gap:15px;
  margin-top:10px;
}

#contactpage .social a{
  width:45px;
  height:45px;
  background:#333;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
}

#contactpage .social a:hover{
  background:#000;
}
#contactpage .social .fa{
    padding: 0px;
}
/* Responsive */
@media(max-width:992px){
  #contactpage .contact-row{
    flex-direction:column;
  }
}
#contactpage .header {
  text-align: center;
  margin-bottom: 40px;
}

#contactpage .header h1 {
  color: #1e3a5f;
  font-size: 36px;
  font-weight: 700;
}

#contactpage .header h2 {
  margin-top: 10px;
  font-weight: 500;
}

#contactpage .header p {
  margin-top: 10px;
  color: #666;
}

#contactpage .header span {
  color: #caa64b;
  font-weight: 500;
}

#contactpage .form-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

#contactpage .card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

#contactpage .card-header {
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

#contactpage .card-header img {
  width: 40px;
}

#contactpage .blue {
  background: #ff4d2d;
  color: #fff;
}

#contactpage .gold {
  background: #f58424;
  color: #fff;
}

#contactpage .card-body {
  padding: 20px;
}

#contactpage .card-body p {
  margin-bottom: 15px;
  font-size: 14px;
  color: #666;
}

#contactpage .form-group {
  margin-bottom: 15px;
}

#contactpage .form-group label {
  font-size: 13px;
  margin-bottom: 5px;
  display: block;
}

#contactpage .form-group input,
#contactpage .form-group select,
#contactpage .form-group textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

#contactpage textarea {
  resize: none;
  height: 80px;
}

#contactpage .btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

#contactpage .btn-blue {
  background: #ff4d2d;
}

#contactpage .btn-gold {
  background: #f58424;
}

/* Responsive */
@media (max-width: 768px) {
  #contactpage .form-wrapper {
    flex-direction: column;
  }
}
.custom20 {
    margin-top: 20px;
}
.testimonial-mains .logo-box img {
    width: 160px;
    height: auto;
    //filter: grayscale(100%);
    //transition: 0.3s;
    border:2px solid #d5d5d5;
}
.testimonial-mains .owl-prev {
   top: 30%;
  position: absolute;
  margin-left: -30px;
}

.testimonial-mains .owl-next {
   top: 30%;
   right: 0;
  position: absolute;
  margin-left: -30px;
}
 
#banner .slider p {
    color: white !important;
}
.section-image .flex-grid br{
    display: none;
}

.bor-box {
    
}

@media (max-width: 767px) {
.section-image {
    //padding: 0px;
    //border-bottom: 1px solid gray;
}
.section-image .box {
    //padding: 0px;

}
.section-image .flex-grid br{
    display: block;
}
#services .card {
    margin-bottom: 20px;
}
.bor-box {
    border-bottom:1px solid gray;
    margin-bottom: 20px;
}
#aboutmid h2 br {
    display: none;
}
.section-image .box {
    padding: 0px;
}
}


/*Cta*/

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CTA Section */
.cta {
  background-color: #fff; /* red background */
  padding: 20px 40px;
}

/* Flex Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: auto;
  padding: 40px 20px;
}

/* Logo */
.cta-logo img {
  height: 90px;
  background: #fff;
  padding: 10px 20px;
}

/* Button */
.cta-btn {
  background: linear-gradient(90deg, #ff8c00, #ff6600);
  color: #fff;
  padding: 14px 28px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s ease;
}

/* Hover effect */
.cta-btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .cta-logo img {
    height: 50px;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

.lgo {
    width: 80%; 
    margin: 0 auto;
}
.lgo a{
   padding-left: 20px;
}