/*======================================*/
@import url(http://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700);

/* 1 - MENU CONTAINER
======================================*/
body {
  margin: 0
}

.menuzord,
.menuzord * {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.menuzord {
  width: 100%;
  padding: 0 30px;
  position: fixed;
  z-index: 999999999;
  float: left;
  position: fixed;
  background: #fff;
  border-bottom: 1px groove #00000017;
}

.menuzord a {
  -o-transition: color .3s linear, background .3s linear;
  -moz-transition: color .3s linear, background .3s linear;
  -webkit-transition: color .3s linear, background .3s linear;
  transition: color .3s linear, background .3s linear;
}

.menuzord-menu.scrollable>.scrollable-fix {
  display: none;
}

/* 2 - BRAND
======================================*/
.menuzord-brand:hover {
  color: #fff;
  text-decoration: none;
}

.menuzord-brand h1 {
  /* margin: 10px 30px 0 0; */
  float: left;
  padding: 7px;
  color: #d35432;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 22px;
  font-weight: 600;
  font-family: Schoolbook-Bold;
  /* background: #d35432; */
}

.menuzord-brand span {

  font-family: 'Open Sans', sans-serif;
  /*Schoolbook-Bold;*/
  /* background: #d35432; */
}

/* 3 - MENU
======================================*/
.menuzord-menu {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

/* Right alignment */
.menuzord-menu.menuzord-right {
  float: right;
}

/* Menu items */
.menuzord-menu>li {
  display: inline-block;
  float: left;
}

.menuzord-menu>li>a {
  padding: 15px 20px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #d04621;
  outline: 0;
  line-height: 1.42857143;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

/* Active/hover state (Menu items) */
.menuzord-menu>li.active>a,
.menuzord-menu>li:hover>a {
  color: #333;
}

/* 4 - DROPDOWN
======================================*/
.menuzord-menu ul.dropdown,
.menuzord-menu ul.dropdown li ul.dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 999;
  min-width: 180px;
  white-space: nowrap;
  background: #fff;
}

.menuzord-menu ul.dropdown li ul.dropdown {
  left: 100%;
}

/* Dropdown items */
.menuzord-menu ul.dropdown li {
  clear: both;
  width: 100%;
  border: 0 none;
  font-size: 12px;
  position: relative;
}

.menuzord-menu ul.dropdown li a {
  width: 100%;
  background: none;
  padding: 10px 25px 10px 22px;
  color: #888;
  text-decoration: none;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
  outline: 0;
  -o-transition: padding .2s linear;
  -moz-transition: padding .2s linear;
  -webkit-transition: padding .2s linear;
  transition: padding .2s linear;
}

/* Hover state (dropdown items) */
.menuzord-menu ul.dropdown li:hover>a {
  padding-left: 28px;
  padding-right: 19px;
  color: #333;
}

/* Dropdown left alignment */
.menuzord-menu ul.dropdown.dropdown-left {
  left: none;
}

.menuzord-menu ul.dropdown li ul.dropdown.dropdown-left {
  left: -100%;
}

/* 5 - DROPDOWN/MEGAMENU INDICATORS
======================================*/
.menuzord-menu li .indicator {
  margin-left: 3px;
}

.menuzord-menu li ul.dropdown li .indicator {
  position: absolute;
  top: 8px;
  right: 10px;
  font-size: 15px;
}

/* 6 - MEGAMENU
======================================*/
.menuzord-menu>li>.megamenu {
  width: 100%;
  padding: 20px 30px;
  left: 0;
  position: absolute;
  display: none;
  z-index: 99;
  border-top: solid 1px #f0f0f0;
  background: #fff;
}

/* 7 - MEGAMENU WIDTHS
======================================*/
/* Half width */
.menuzord-menu>li>.megamenu.megamenu-half-width {
  width: 50%;
  left: auto;
}

/* Quarter width */
.menuzord-menu>li>.megamenu.megamenu-quarter-width {
  width: 25%;
  left: auto;
}

/* 8 - GRID SYSTEM
======================================*/
.menuzord-menu>li>.megamenu .megamenu-row {
  width: 100%;
  margin-top: 15px;
}

.menuzord-menu>li>.megamenu .megamenu-row:first-child {
  margin-top: 0;
}

.menuzord-menu>li>.megamenu .megamenu-row:before,
.menuzord-menu>li>.megamenu .megamenu-row:after {
  display: table;
  content: "";
  line-height: 0;
}

.menuzord-menu>li>.megamenu .megamenu-row:after {
  clear: both;
}

.menuzord-menu>li>.megamenu .megamenu-row .col1,
.menuzord-menu>li>.megamenu .megamenu-row .col2,
.menuzord-menu>li>.megamenu .megamenu-row .col3,
.menuzord-menu>li>.megamenu .megamenu-row .col4,
.menuzord-menu>li>.megamenu .megamenu-row .col5,
.menuzord-menu>li>.megamenu .megamenu-row .col6,
.menuzord-menu>li>.megamenu .megamenu-row .col7,
.menuzord-menu>li>.megamenu .megamenu-row .col8,
.menuzord-menu>li>.megamenu .megamenu-row .col9,
.menuzord-menu>li>.megamenu .megamenu-row .col10,
.menuzord-menu>li>.megamenu .megamenu-row .col11,
.menuzord-menu>li>.megamenu .megamenu-row .col12 {
  display: block;
  min-height: 20px;
  float: left;
  margin-left: 3%;
}

.menuzord-menu>li>.megamenu .megamenu-row [class*="col"]:first-child {
  margin-left: 0;
}

.menuzord-menu>li>.megamenu .megamenu-row .col1 {
  width: 5.583333333333%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col2 {
  width: 14.166666666666%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col3 {
  width: 22.75%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col4 {
  width: 31.333333333333%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col5 {
  width: 39.916666666667%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col6 {
  width: 48.5%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col7 {
  width: 57.083333333333%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col8 {
  width: 65.666666666667%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col9 {
  width: 74.25%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col10 {
  width: 82.833333333334%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col11 {
  width: 91.416666666667%;
}

.menuzord-menu>li>.megamenu .megamenu-row .col12 {
  width: 100%;
}

/* 9 - SHOW/HIDE BUTTON (MOBILE MODE)
======================================*/
.menuzord .showhide {
  width: 60px;
  height: 46px;
  padding: 13px 0 0;
  display: none;
  float: right;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

/* Show/hide button icon */
.menuzord .showhide em {
  width: 20px;
  height: 3px;
  margin: 3.5px 20px 0;
  float: right;
  background: #777;
}

/* 10 - ICONS (parent menu items)
======================================*/
.menuzord-menu>li>a>i {
  margin: 0 5px 0 0;
  font-size: 18px;
  float: left;
  line-height: 20px;
  font-family: 'FontAwesome';
}

/* 11 - SEARCH FIELD
======================================*/
/* Form */
.menuzord-menu>li.search form {
  float: left;
  padding: 22px 16px 17px;
}

/* Input */
.menuzord-menu>li.search form input[type="text"] {
  width: 160px;
  padding: 5px 10px;
  font-family: 'Open Sans', sans-serif;
  border: none;
  background: #f0f0f0;
  border-radius: 2px;
  outline: 0;
  -o-transition: width 1s ease-out;
  -moz-transition: width 1s ease-out;
  -webkit-transition: width 1s ease-out;
  transition: width 1s ease-out;
}

.menuzord-menu>li.search form:hover input[type="text"] {
  width: 160px;
}

/* 12 - VERTICAL TABS
======================================*/
.menuzord-tabs {
  width: 100%;
  float: left;
}

.menuzord-tabs-nav {
  width: 20%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

.menuzord-tabs-nav>li>a {
  width: 100%;
  padding: 7px 16px;
  float: left;
  font-size: 13px;
  text-decoration: none;
  color: #666;
  border: solid 1px #f0f0f0;
  outline: 0;
}

.menuzord-tabs-nav li.active a,
.menuzord-tabs-nav li:hover a {
  background: #f0f0f0;
}

.menuzord-tabs-content {
  width: 80%;
  min-height: 30px;
  padding: 20px;
  float: right;
  display: none;
  font-size: 13px;
  border: solid 1px #f0f0f0;
}

.menuzord-tabs-content.active {
  display: block;
}

/* 13 - COLOR SCHEMES
======================================*/
/* blue */
.menuzord.blue .menuzord-menu>li.active>a,
.menuzord.blue .menuzord-menu>li:hover>a,
.menuzord.blue .menuzord-menu ul.dropdown li:hover>a {
  color: #4A89DC;
}

/* green */
.menuzord.green .menuzord-menu>li.active>a,
.menuzord.green .menuzord-menu>li:hover>a,
.menuzord.green .menuzord-menu ul.dropdown li:hover>a {
  color: #37BC9B;
}

/* red */
.menuzord.red .menuzord-menu>li.active>a,
.menuzord.red .menuzord-menu>li:hover>a,
.menuzord.red .menuzord-menu>li.active>a,
.menuzord.red .menuzord-menu>li:hover>a,
.menuzord.red .menuzord-menu ul.dropdown li:hover>a {
  color: #fff;
  background-color: #d35432;
}

/* orange */
.menuzord.orange .menuzord-menu>li.active>a,
.menuzord.orange .menuzord-menu>li:hover>a,
.menuzord.orange .menuzord-menu ul.dropdown li:hover>a {
  color: #ff670f;
}

/* yellow */
.menuzord.yellow .menuzord-menu>li.active>a,
.menuzord.yellow .menuzord-menu>li:hover>a,
.menuzord.yellow .menuzord-menu ul.dropdown li:hover>a {
  color: #F6BB42;
}

/* purple */
.menuzord.purple .menuzord-menu>li.active>a,
.menuzord.purple .menuzord-menu>li:hover>a,
.menuzord.purple .menuzord-menu ul.dropdown li:hover>a {
  color: #967ADC;
}

/* pink */
.menuzord.pink .menuzord-menu>li.active>a,
.menuzord.pink .menuzord-menu>li:hover>a,
.menuzord.pink .menuzord-menu ul.dropdown li:hover>a {
  color: #D770AD;
}

/* 14 - MOBILE MODE (RESPONSIVE MODE)
======================================*/
@media (max-width: 768px) {

  /* Responsive menu container */
  .menuzord-responsive.menuzord {
    padding: 0;
  }

  /* Brand */
  .menuzord-responsive .menuzord-brand {
    margin: 8px 30px 10px 20px;
    font-size: 20px;
    line-height: 1.55;
  }

  /* Show/hide button */
  .menuzord-responsive .showhide {
    margin: 0;
  }

  /* Menu */
  .menuzord-responsive .menuzord-menu {
    width: 100%;
    float: left !important;
  }

  /* scrollable menu*/
  .menuzord-responsive .menuzord-menu.scrollable {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .menuzord-responsive .menuzord-menu.scrollable>.scrollable-fix {
    display: block;
  }

  /* Menu items */
  .menuzord-responsive .menuzord-menu>li {
    width: 100%;
    display: block;
    position: relative;
  }

  .menuzord-responsive .menuzord-menu>li>a {
    width: 100%;
    padding: 12px 20px;
    display: block;
    border-bottom: solid 1px #f0f0f0;
  }

  .menuzord-responsive .menuzord-menu>li:first-child>a {
    border-top: solid 1px #f0f0f0;
  }

  /* Dropdown */
  .menuzord-responsive .menuzord-menu ul.dropdown,
  .menuzord-responsive .menuzord-menu ul.dropdown li ul.dropdown {
    width: 100%;
    left: 0;
    position: static;
    border: none;
    background: #fff;
    float: left;
  }

  /* Dropdown items */
  .menuzord-responsive .menuzord-menu ul.dropdown li {
    position: relative;
  }

  .menuzord-responsive .menuzord-menu ul.dropdown li a {
    border-bottom: solid 1px #f0f0f0;
  }

  .menuzord-responsive .menuzord-menu.menuzord-indented>li>ul.dropdown>li>a {
    padding-left: 40px !important;
  }

  .menuzord-responsive .menuzord-menu.menuzord-indented>li>ul.dropdown>li>ul.dropdown>li>a {
    padding-left: 60px !important;
  }

  .menuzord-responsive .menuzord-menu.menuzord-indented>li>ul.dropdown>li>ul.dropdown>li>ul.dropdown>li>a {
    padding-left: 80px !important;
  }

  .menuzord-responsive .menuzord-menu.menuzord-indented>li>ul.dropdown>li:hover>a {
    padding-left: 50px !important;
  }

  .menuzord-responsive .menuzord-menu.menuzord-indented>li>ul.dropdown>li>ul.dropdown>li:hover>a {
    padding-left: 70px !important;
  }

  .menuzord-responsive .menuzord-menu.menuzord-indented>li>ul.dropdown>li>ul.dropdown>li>ul.dropdown>li:hover>a {
    padding-left: 90px !important;
  }

  /* Dropdown/megamenu indicators */
  .menuzord-responsive .menuzord-menu li .indicator {
    width: 60px;
    height: 45px;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 22px;
    text-align: center;
    line-height: 43px;
    border-left: solid 1px #f5f5f5;
  }

  .menuzord-responsive .menuzord-menu li ul.dropdown li .indicator {
    height: 38px;
    right: 0;
    top: 0;
    font-size: 18px;
    line-height: 36px;
  }

  /* Megamenu */
  .menuzord-responsive .menuzord-menu>li>.megamenu {
    width: 100% !important;
    left: 0 !important;
    position: static;
    border-top: none;
    border-bottom: solid 1px #f0f0f0;
  }

  .menuzord-responsive .menuzord-menu>li>.megamenu .megamenu-row [class*="col"] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
  }

  .menuzord-responsive .menuzord-menu>li>.megamenu .megamenu-row:first-child [class*="col"]:first-child {
    margin-top: 0;
  }

  .menuzord-responsive .menuzord-menu>li>.megamenu .megamenu-row {
    margin-top: 0;
  }

  /* Search field */
  .menuzord-responsive .menuzord-menu>li.search form {
    width: 100%;
    margin: 4px 0;
    padding: 10px 16px !important;
  }

  .menuzord-responsive .menuzord-menu>li.search form input[type="text"] {
    width: 100%;
  }

  /* Tabs */
  .menuzord-responsive .menuzord-tabs-nav {
    width: 100%;
  }

  .menuzord-responsive .menuzord-tabs-content {
    width: 100%;
  }
}

/*\\\\\\\\\\\\\\\\\\\\\\\\\\\start///////////////////////*/


/*<<<<<<<<<<<<<<<<<<<<<<<<<<< Footer >>>>>>>>>>>>>>>>>>>>>>>>*/

.site-footer {
  width: 100%;
  height: auto;
  float: left;
  background-color: #26272b;
  margin-top: 50px;
  padding: 16px 0 0px;
  font-size: 15px;
  color: #737373;
}

.site-footer hr {
  border-top-color: #bbb;
  opacity: 0.5
}

.site-footer hr.small {
  margin: 20px 0
}

.site-footer h6 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 5px;
  letter-spacing: 2px
}

.site-footer a {
  color: #737373;
}

.site-footer a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links {
  padding-left: 0;
  list-style: none
}

.footer-links li {
  display: block
}

.footer-links a {
  color: #737373
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
  color: #3366cc;
  text-decoration: none;
}

.footer-links.inline li {
  display: inline-block
}

.site-footer .social-icons {
  text-align: right
}

.site-footer .social-icons a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 6px;
  margin-right: 0;
  border-radius: 100%;
  background-color: #33353d
}

.copyright-text p {
  margin: 0 auto;
}

@media (max-width:991px) {
  .site-footer [class^=col-] {
    margin-bottom: 30px
  }
}

@media (max-width:767px) {
  .site-footer {
    padding-bottom: 0
  }

  .site-footer p {
    margin: 0 auto
  }

  p.copyright-text {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
  }

  .site-footer .copyright-text,
  .site-footer .social-icons {
    text-align: center
  }
}

.social-icons {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none
}

.social-icons li {
  display: inline-block;
  margin-bottom: 4px
}

.social-icons li.title {
  margin-right: 15px;
  text-transform: uppercase;
  color: #96a2b2;
  font-weight: 700;
  font-size: 13px
}

.social-icons a {
  background-color: #eceeef;
  color: #818a91;
  font-size: 16px;
  display: inline-block;
  line-height: 44px;
  width: 44px;
  height: 44px;
  text-align: center;
  margin-right: 8px;
  border-radius: 100%;
  -webkit-transition: all .2s linear;
  -o-transition: all .2s linear;
  transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
  color: #fff;
  background-color: #29aafe
}

.social-icons.size-sm a {
  line-height: 34px;
  height: 34px;
  width: 34px;
  font-size: 14px
}

.social-icons a.facebook:hover {
  background-color: #3b5998
}

.social-icons a.twitter:hover {
  background-color: #00aced
}

.social-icons a.linkedin:hover {
  background-color: #007bb6
}

.social-icons a.dribbble:hover {
  background-color: #ea4c89
}

@media (max-width:767px) {
  .social-icons li.title {
    display: block;
    margin-right: 0;
    font-weight: 600
  }
}


/*<<<<<<<<<<<<<<<<<<<<<<<<<<< End Footer >>>>>>>>>>>>>>>>>>>>>>>>*/
.about {
  width: 100%;
  height: auto;
  padding: 25px 0px;
  float: left;
  padding: 20px;
  overflow: hidden;
  background-color: #22222214;
}

.about h4 {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  padding: 0px 15px;
  border-width: 1px;
}

.abo {
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
  margin-top: 7px;
  background-color: #fff;
  padding: 20px 30px;
}

.abo p {
  text-align: justify;
  color: #000000c9;
  font-weight: 500;
}



.abo1 {
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
  margin-top: 7px;
  background-color: #fff;
  padding: 20px 30px;
}

.abo1 p {
  text-align: justify;
  color: #000000c9;
  font-weight: 500;
}



.product {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
  text-align: center;
}

.product h4 {
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto;
  margin-bottom: 30px;
}

.product img {
  margin-top: -2px;
  width: 200px;
}

.product a {
  background: #22222214;
  color: #000;
  padding: 7px 20px;
  text-decoration: none;
  transition: .9s ease;
  margin: 0 auto;
  margin-top: 30px;
}

.product a:hover {
  background: #d04621;
  color: #fff;
  text-decoration: none;
  transition: .9s ease;
}

.client h4 {
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto;
}

.client img {
  margin-top: 30px;
}

.client {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}

.client a {
  background: #22222214;
  color: #000;
  padding: 7px 20px;
  box-shadow: 2px 2px 1px 1px rgb(206, 205, 211);
  text-decoration: none;
  transition: .9s ease;
  margin: 0 auto;
  margin-top: 30px;
}

.client a:hover {
  background: #d04621;
  color: #fff;
  text-decoration: none;
  transition: .9s ease;
}

.infra {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
  background: #22222214;
  padding: 20px 0px;
}

.infra h4 {
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  margin: 0 auto;
}


.infra {
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
  margin-top: 7px;
  background-color: #22222214;
  padding: 20px 30px;
  margin-top: 50px;
}

.inf1 p {
  text-align: justify;
  margin-top: 20px;
  margin-bottom: 30px;

}

.inf1 a {
  background: #22222214;
  color: #000;
  padding: 7px 20px;
  box-shadow: 2px 2px 1px 1px rgba(0, 0, 255, .2);
  text-decoration: none;
  transition: .9s ease;
}

.inf1 a:hover {
  background: #d04621;
  color: #fff;
  padding: 7px 20px;
  box-shadow: 2px 2px 1px 1px rgba(0, 0, 255, .2);
  text-decoration: none;
  transition: .9s ease;
}

.inf2 p {
  text-align: justify;
  margin-top: -25px;
  width: 100%;
  margin-left: 95px;
  float: left;
}

.inf2 a {
  background: #22222214;
  color: #000;
  padding: 7px 20px;
  box-shadow: 2px 2px 1px 1px rgba(0, 0, 255, .2);
  text-decoration: none;
  transition: .9s ease;
}

.inf2 a:hover {
  background: #d04621;
  color: #fff;
  padding: 7px 20px;
  box-shadow: 2px 2px 1px 1px rgba(0, 0, 255, .2);
  text-decoration: none;
  transition: .9s ease;
}

.inf2 i {
  float: left;
  margin-left: 50px;
  margin-top: 35px;
  margin-right: 15px;
  font-size: 35px;
  color: #d04621;
}

.inf2 h5 {
  font-size: 1.25rem;
  float: left;
  margin-top: 21px;
}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<< Footer >>>>>>>>>>>>>>>>>>>>>>>>*/


/*<<<<<<<<<<<<<<<<<<<<<<<<<<< End Footer >>>>>>>>>>>>>>>>>>>>>>>>*/
@import url(https://fonts.googleapis.com/css?family=Roboto:400,300,600,400italic);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}



.container {
  max-width: 300px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea,
#contact button[type="submit"] {
  font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif;
}

#contact {
  background: #F9F9F9;
  padding: 15px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

#contact h3 {
  display: block;
  font-size: 30px;
  font-weight: 300;
  margin-bottom: 10px;
}

#contact h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact input[type="url"],
#contact textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#contact input[type="text"]:hover,
#contact input[type="email"]:hover,
#contact input[type="tel"]:hover,
#contact input[type="url"]:hover,
#contact textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #aaa;
}

#contact textarea {
  max-width: 100%;
  resize: none;
}

#contact button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #75af25;
  color: #FFF;
  margin: 0 0 5px;
  padding: 10px;
  font-size: 15px;
}

#contact button[type="submit"]:hover {
  background: #43A047;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#contact button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
}

#contact input:focus,
#contact textarea:focus {
  outline: 0;
  border: 1px solid #aaa;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}



.inf2 {
  width: 100%;
  height: auto;
  float: left;
  text-align: center;
  margin-top: 7px;
  background-color: #fff;
  padding: 20px 30px;
}

.inf2 p {
  text-align: justify;
}

.infras img {
  width: 522px;
  margin-top: 7px;
  margin-left: 46px;
}

.client h3 {
  color: #000;
  text-align: center;
  font-size: 20px;


}

.center p {
  color: #000;
  text-align: center;
  font-size: 18px;
  padding: 10px;
}

.center h5 {
  color: #000;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
}

p.copyright-text a {
  color: #fff;
  margin-left: 2px;
}

.bannar {
  width: 100%;
  height: auto;
  float: left;
  margin: 0px !important;
}


.client {
  margin-top: 50px;
  width: 100%;
  height: auto;
  float: left;
  text-decoration: bold;
 

}
.our_clients {
    padding: 9px 9px;
    border-radius: 0;
	border-color: #000;
	
}

.client .thumbnail:hover {
  background: rgba(0, 0, 0, 0.55);
  -webkit-transform: scale(1.1);
  transition: all .5s ease-in-out;

}

img.thumbnail.img-responsive {
  width: 150px;
  border: 1px solid #ccc;
  transition: all .4s ease-in-out;

}

.pr-1 {
  border: 1px solid #fff;
  margin: 0px;
}

.pr-2 {
  border: 1px solid #fff;
  margin: 0px;
}


.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default;
  background: transparent !important;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  opacity: 0;
  /* background-color: #bcfbdc5c; */
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
}

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transform: translatey(-100px);
  -ms-transform: translatey(-100px);
  transform: translatey(-100px);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  padding: 10px;
}

.hovereffect a.info {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  border: 1px solid #fff;
  background-color: #272626;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  margin: 80px 0 0;
  padding: 3px 10px;
}

.hovereffect a.info:hover {
  box-shadow: 0 0 5px #fff;
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
}

.hovereffect:hover h2,
.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-transform: translatey(0);
  -webkit-transform: translatey(0);
  transform: translatey(0);
}

.hovereffect:hover a.info {
  -webkit-transition-delay: .2s;
  transition-delay: .2s;
}

.product img {
  margin: 0 auto;
}

/*about page*/

.carousel-caption.d-none.d-md-block h4 {
  float: left;
  margin-top: 20px;
  font-size: 31px;
  color: #000;
  font-weight: 600;
  margin-left: 400px;
  margin-bottom: 0px;
}

.about-page {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
}

.about-page img {
  float: left;
  width: 450px;
}

.about-page h4 {
  float: right;
  font-size: 15px;
  margin-bottom: 0px;
  text-align: justify;
  color: #444;
  line-height: 22px;
}

/*product page*/

.product-page {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;

}

.product-img {
  width: 100%;
  float: left;
  height: auto;
  text-align: center;
  background-color: #cccccc40;
  margin-top: 20px;
}

.product-img img {
  width: 100%;
}

.product-img h4 {
  font-size: 15px;
  letter-spacing: 1px;
  width: 100%;
  background: #0000000d;
  padding: 10px 0px;
  color: #000;
}

/*Quality page*/

.quality-page {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;

}

.quality img {
  width: 400px;
  border: 2px solid #dc2236;
}

.quality h4 {
  font-size: 20px;
  margin-top: 0px;
  text-align: justify;
  line-height: 27px;
}

.quality h5 {
  margin-top: 50px;
  text-align: center;
  font-family: initial;
  font-weight: 600;
  text-decoration: underline;
}

/*infra page*/

.infra-page {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
}

.infra-page h4 {
  font-size: 19px;
  text-align: justify;
  line-height: 25px;
}




.infra-page table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  margin-top: 50px;
  width: 100%;

}

.infra-page td,
th {
  border: 1px solid #dddddd;
  text-align: center;
  padding: 8px;
}

.infra-page th {
  text-align: center;
}

.infra-page tr:nth-child(even) {
  background-color: #dddddd;
}





/*<check bob>*/

.book {
  padding: 15px 0;
  background-color: #cf46212e;
}

.book p {
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 30px;
}

.booking-form-aits {
  background-color: #FFF;
  padding: 30px;
}

.booking-form-aits input[type="text"],
.booking-form-aits input[type="email"],
.booking-form-aits textarea {
  width: 48%;
  padding: 15px 0;
  margin-bottom: 20px;
  border: none;
  color: #000;
  border-bottom: 2px solid #777;
  font-weight: 600;
  outline: none;
}

.booking-form-aits input[type="number"],
.booking-form-aits input[type="number"],
.booking-form-aits textarea {
  width: 48%;
  padding: 15px 0;
  margin-bottom: 20px;
  border: none;
  color: #000;
  border-bottom: 2px solid #777;
  font-weight: 600;
  outline: none;
}

input.margin-right {
  margin-right: 18px;
}

.booking-form-aits textarea {
  width: 100%;
  height: 60px;
  margin-bottom: 30px;
}

.send-button button.btn {
  font-weight: 600;
  color: #EEE;
  padding: 10px 30px;
  border: none;
  outline: none;
  background-color: #75af25;
  border-radius: 0;
  margin-left: 40%;
}

.send-button button.btn:hover {
  color: #FFF;
  background-color: #000;
}

/*<end check box>*/


h4 {
  color: #232e6a !important;
}

.add {
  background-color: #232e6a;
  padding: 10px 0px 10px 0px;
  margin: -30px;
  margin-top: 0px;
  color: #fff;
}

.add h4 {
  letter-spacing: 0px;
  text-align: center;
}

.add p {
  margin-bottom: 0px;
  padding: 19.7px 30px;
  font-size: 17px;
  font-weight: 400;
}


.add i {
  font-size: 20px
}

.infra-page hr {
  margin-top: 0rem;
  margin-bottom: 0rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}


p.copyright-text {
  width: 100%;
  float: left;
  text-align: center;
  height: auto;
}

.map {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
}

.about-banner {
  width: 100%;
  height: auto;
  float: left;
  margin-top: 50px;
}

.product-img:hover {
  background-color: #00000026;
  transition: .9s ease;
}

.carousel-caption h4 {
  float: right;
  margin-bottom: -15px;
  font-size: 31px;
  color: #000;
  font-weight: 600;
  margin-right: 400px;
}

.imagess img {
  width: 236px;
  margin-top: 40px;
  border: 3px solid#ccc;
  border-radius: 3px;
}

.carrier {
  width: 100%;
  height: auto;
  float: left;
}

.carrier img {
  margin-left: 239px;
}

.add a {
  color: #fff;
}

.add a:hover {
  color: #fff;
  text-decoration: none;
}

a.menuzord-brand img {
  width: 360px;
  margin: 2px;
  margin-top: 5px;
}


/*////// MEDIA \\\\*/

@media only screen and (max-width: 1280px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 980px) {}

@media only screen and (max-width: 800px) {}

@media only screen and (max-width: 768px) {

  .bannar {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 64px;
  }

  .carousel-caption h4 {
    font-size: 25px;
    font-weight: 600;
    color:
      #000;
    float: right;
    margin-bottom: 38px;
    margin-right: -50px;
  }

  .about {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px;
    overflow: hidden;
    margin-top: 40px;
    background-color: #2222220f;
  }

  .infras img {
    width: 376px;
    margin-top: 65px;
    margin-left: -14px;
  }

  .about h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 0px;
    margin-top: -15px;
  }

  .abo {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .abo1 {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .quality img {
    width: 272px;
    border: 2px solid #dc2236;
  }

  .menuzord {
    width: 100%;
    padding: 0 30px;
    position: fixed;
    z-index: 999999999;
    float: left;
    position: fixed;
  }

  .about-banner {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 63px;
  }

  .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: -56px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    display: block !important;
  }

  .about-page {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 28px;
  }

  .about-page img {
    float: left;
    width: 266px;
  }

  .client {
    margin-top: 30px;
  }

  .product img {
    margin: 0 auto;
    width: 150px;
  }

  .pr-1,
  .px-1 {
    padding-right: .25rem !important;
    width: 50% !important;
  }

  .pr-2,
  .px-2 {
    padding-right: .5rem !important;
    width: 50% !important;
  }

  .hovereffect a.info {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    border: 1px solid#fff;
    background-color: #272626;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 62px 0 0;
    padding: 1px 5px;
    font-size: 15px;
  }

  img.thumbnail.img-responsive {
    width: 110px;
    border: 1px solid #ccc;
    transition: all .4s ease-in-out;
    float: left;
  }

  #contact {
    background: #F9F9F9;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    width: 100%;
  }

  .infra-page img {
    width: 270px;
  }

  .booking-form-aits input[type="text"],
  .booking-form-aits input[type="email"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid#777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits input[type="number"],
  .booking-form-aits input[type="number"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid #777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits {
    background-color: #FFF;
    padding: 5px;
  }

  .carousel-caption {
    position: absolute;
    bottom: -18px !important;
    left: 62%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
  }

  .send-button button.btn {
    font-weight: 600;
    color: #EEE;
    padding: 5px 45px;
    border: none;
    outline: none;
    background-color: #d35432;
    border-radius: 0;
    margin-left: 0%;
  }

  .product img {
    margin: 0 auto;
    width: 150px;
  }
}

@media only screen and (max-width: 736px) {}

@media only screen and (max-width: 667px) {}

@media only screen and (max-width: 640px) {}

@media only screen and (max-width: 600px) {}

@media only screen and (max-width: 568px) {

  .bannar {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 64px;
  }

  .about {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px;
    overflow: hidden;
    margin-top: 0px;
    background-color: #2222220f;
  }

  .infras img {
    width: 275px;
    margin-top: 5px;
    margin-left: 0px;
  }

  .about h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 0px;
    margin-top: -15px;
  }

  .abo {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .abo1 {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .quality img {
    width: 272px;
    border: 2px solid #dc2236;
  }

  .menuzord {
    width: 100%;
    padding: 0 30px;
    position: fixed;
    z-index: 999999999;
    float: left;
    position: fixed;
  }

  .about-banner {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 63px;
  }

  .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: -56px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    display: block !important;
  }

  .about-page {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 28px;
  }

  .about-page img {
    float: left;
    width: 266px;
  }

  .client {
    margin-top: 30px;
  }

  .product img {
    margin: 0 auto;
    width: 150px;
  }

  .pr-1,
  .px-1 {
    padding-right: .25rem !important;
    width: 50% !important;
  }

  .pr-2,
  .px-2 {
    padding-right: .5rem !important;
    width: 50% !important;
  }

  .hovereffect a.info {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    border: 1px solid#fff;
    background-color: #272626;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 62px 0 0;
    padding: 1px 5px;
    font-size: 15px;
  }

  img.thumbnail.img-responsive {
    width: 110px;
    border: 1px solid #ccc;
    transition: all .4s ease-in-out;
    float: left;
  }

  #contact {
    background: #F9F9F9;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    width: 100%;
  }

  .infra-page img {
    width: 270px;
  }

  .booking-form-aits input[type="text"],
  .booking-form-aits input[type="email"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid#777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits input[type="number"],
  .booking-form-aits input[type="number"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid #777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits {
    background-color: #FFF;
    padding: 5px;
  }

  .carousel-caption {
    position: absolute;
    bottom: -18px !important;
    left: 62%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
  }

  .carousel-caption h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    float: right;
    margin-bottom: 11px;
  }

  .send-button button.btn {
    font-weight: 600;
    color: #EEE;
    padding: 5px 45px;
    border: none;
    outline: none;
    background-color: #d35432;
    border-radius: 0;
    margin-left: 0%;
  }

  .product img {

    margin: 0 auto;
    width: 150px;

  }
}

@media only screen and (max-width: 480px) {}

@media only screen and (max-width: 414px) {}

@media only screen and (max-width: 384px) {
  .bannar {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 64px;
  }

  .about {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px;
    overflow: hidden;
    margin-top: 0px;
    background-color: #2222220f;
  }

  .infras img {
    width: 275px;
    margin-top: 5px;
    margin-left: 0px;
  }

  .about h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 0px;
    margin-top: -15px;
  }

  .abo {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .abo1 {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .quality img {
    width: 272px;
    border: 2px solid #dc2236;
  }

  .menuzord {
    width: 100%;
    padding: 0 30px;
    position: fixed;
    z-index: 999999999;
    float: left;
    position: fixed;
  }

  .about-banner {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 63px;
  }

  .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: -56px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    display: block !important;
  }

  .about-page {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 28px;
  }

  .about-page img {
    float: left;
    width: 266px;
  }

  .client {
    margin-top: 30px;
  }

  .product img {
    margin: 0 auto;
    width: 150px;
  }

  .pr-1,
  .px-1 {
    padding-right: .25rem !important;
    width: 50% !important;
  }

  .pr-2,
  .px-2 {
    padding-right: .5rem !important;
    width: 50% !important;
  }

  .hovereffect a.info {
    text-decoration: none;
    display: inline-block;
    color: #fff;
    border: 1px solid#fff;
    background-color: #272626;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    margin: 62px 0 0;
    padding: 1px 5px;
    font-size: 15px;
  }

  img.thumbnail.img-responsive {
    width: 110px;
    border: 1px solid #ccc;
    transition: all .4s ease-in-out;
    float: left;
  }

  #contact {
    background: #F9F9F9;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    width: 100%;
  }

  .infra-page img {
    width: 270px;
  }

  .booking-form-aits input[type="text"],
  .booking-form-aits input[type="email"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid#777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits input[type="number"],
  .booking-form-aits input[type="number"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid #777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits {
    background-color: #FFF;
    padding: 5px;
  }

  .carousel-caption {
    position: absolute;
    bottom: -18px !important;
    left: 62%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
  }

  .carousel-caption h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    float: right;
    margin-bottom: 11px;
  }

  .send-button button.btn {
    font-weight: 600;
    color: #EEE;
    padding: 5px 45px;
    border: none;
    outline: none;
    background-color: #d35432;
    border-radius: 0;
    margin-left: 0%;
  }
}

@media only screen and (max-width: 375px) {}

@media only screen and (max-width: 360px) {

  .bannar {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 64px;
  }

  .about {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px;
    overflow: hidden;
    margin-top: 0px;
    background-color: #2222220f;
  }

  .infras img {
    width: 275px;
    margin-top: 5px;
    margin-left: 0px;
  }

  .about h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 0px;
    margin-top: -15px;
  }

  .abo {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .abo1 {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .quality img {
    width: 272px;
    border: 2px solid #dc2236;
  }

  .menuzord {
    width: 100%;
    padding: 0 30px;
    position: fixed;
    z-index: 999999999;
    float: left;
    position: fixed;
  }

  .about-banner {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 63px;
  }

  .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: -56px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    display: block !important;
  }

  .about-page {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 28px;
  }

  .about-page img {
    float: left;
    width: 266px;
  }

  .client {
    margin-top: 30px;
  }

  img.thumbnail.img-responsive {
    width: 110px;
    border: 1px solid #ccc;
    transition: all .4s ease-in-out;
    float: left;
  }

  #contact {
    background: #F9F9F9;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    width: 100%;
  }

  .infra-page img {
    width: 270px;
  }

  .booking-form-aits input[type="text"],
  .booking-form-aits input[type="email"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid#777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits input[type="number"],
  .booking-form-aits input[type="number"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid #777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits {
    background-color: #FFF;
    padding: 5px;
  }

  .carousel-caption {
    position: absolute;
    bottom: -18px !important;
    left: 62%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
  }

  .carousel-caption h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    float: right;
    margin-bottom: 13px;
  }

  .send-button button.btn {
    font-weight: 600;
    color: #EEE;
    padding: 5px 45px;
    border: none;
    outline: none;
    background-color: #d35432;
    border-radius: 0;
    margin-left: 0%;
  }
}

@media only screen and (max-width: 320px) {

  .bannar {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 64px;
  }

  .about {
    width: 100%;
    height: auto;
    float: left;
    padding: 0px;
    overflow: hidden;
    margin-top: 0px;
    background-color: #2222220f;
  }

  .infras img {
    width: 275px;
    margin-top: 5px;
    margin-left: 0px;
  }

  .about h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding: 0px 0px;
    margin-top: -15px;
  }

  .abo {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .abo1 {
    width: 100%;
    height: auto;
    float: left;
    text-align: center;
    margin-top: 7px;
    background-color: #fff;
    padding: 25px 10px;
  }

  .quality img {
    width: 272px;
    border: 2px solid #dc2236;
  }

  .menuzord {
    width: 100%;
    padding: 0 30px;
    position: fixed;
    z-index: 999999999;
    float: left;
    position: fixed;
  }

  .about-banner {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 63px;
  }

  .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: -56px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    display: block !important;
  }

  .about-page {
    width: 100%;
    height: auto;
    float: left;
    margin-top: 28px;
  }

  .about-page img {
    float: left;
    width: 266px;
  }

  .client {
    margin-top: 30px;
  }

  img.thumbnail.img-responsive {
    width: 110px;
    border: 1px solid #ccc;
    transition: all .4s ease-in-out;
    float: left;
  }

  #contact {
    background: #F9F9F9;
    padding: 15px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    width: 100%;
  }

  .infra-page img {
    width: 270px;
  }

  .booking-form-aits input[type="text"],
  .booking-form-aits input[type="email"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid#777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits input[type="number"],
  .booking-form-aits input[type="number"],
  .booking-form-aits textarea {
    width: 99%;
    padding: 15px 0;
    margin-bottom: 20px;
    border: none;
    border-bottom-color: currentcolor;
    border-bottom-style: none;
    border-bottom-width: medium;
    color: #000;
    border-bottom: 2px solid #777;
    font-weight: 600;
    outline: none;
  }

  .booking-form-aits {
    background-color: #FFF;
    padding: 5px;
  }

  .carousel-caption {
    position: absolute;
    bottom: -18px !important;
    left: 62%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #000;
    text-align: center;
  }

  .carousel-caption h4 {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    float: right;
    margin-bottom: 11px;
  }

  .send-button button.btn {
    font-weight: 600;
    color: #EEE;
    padding: 5px 45px;
    border: none;
    outline: none;
    background-color: #d35432;
    border-radius: 0;
    margin-left: 0%;
  }
}

.client .col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
}

.active {
  color: #fff !important;
  background-color: #75af25 !important;
}

.active:hover {
  color: #fff !important;
}

.navbar-nav li a {
  color: #232c71 !important;
  transition: .3s;
  padding: 15px 10px;
  font-weight: 500;

}

.navbar-nav li a:hover {
  color: #fff !important;
  background-color: #75af25 !important;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(35, 44, 113)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E") !important;
}

.custom-toggler.navbar-toggler {
  border-color: rgb(35, 44, 113) !important;
}

.custom-toggler {
  border: none !important;
}

.custom-toggler:visited,
.custom-toggler:active,
.custom-toggler:focus {
  border: none !important;
}

.colo-sub {
  color: #75af25 !important;
}

.color-main {
  color: rgb(35, 44, 113) !important;
}

.abo a,
.abo1 a {
  background: #75af25;
  color: #fff;
  padding: 7px 20px;
  text-decoration: none;
  transition: .9s ease;
}

.abo a:hover,
.abo1 a:hover {
  background: #232c71;
  color: #fff;
  text-decoration: none;
  transition: .9s ease;
}


.about-banner {
  margin: 0 !important;
}

/* Products */

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.container:hover .image {
  opacity: 0.3;
}

.container:hover .middle {
  opacity: 1;
}

.text {
  background-color: #4CAF50;
  color: white;
  font-size: 16px;
  padding: 16px 32px;
}

.hovereffect img {
  transform: scale(1.4);
}

.nav-link {
  padding: 15px;
}