/*Other*/

html {
  outline: 0;
  outline-offset: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "roboto", sans-serif;
  background: #fff0 url('../img/bgrndm.png') repeat 0 0;
  animation: 10s linear 0s normal none infinite animate;

}
@-webkit-keyframes animate {
  from {background-position:0 0;}
  to {background-position: 800px 340px;}
}

@-moz-keyframes animate {
  from {background-position:0 0;}
  to {background-position: 800px 340px;}
}

@-ms-keyframes animate {
  from {background-position:0 0;}
  to {background-position: 800px 340px;}
}

@-o-keyframes animate {
  from {background-position:0 0;}
  to {background-position: 800px 340px;}
}

@keyframes animate {
  from {background-position:0 0;}
  to {background-position: 800px 340px;}
}

@-webkit-keyframes trigger {
  0% { color: rgba(237, 29, 36, 0.8); }
  50% { color: rgba(237, 29, 36, 0); }
  100% { color: rgba(237, 29, 36, 0.8); }
}
@keyframes trigger {
  0% { color: rgba(237, 29, 36, 0.8); }
  50% { color: rgba(237, 29, 36, 0); }
  100% { color: rgba(237, 29, 36, 0.8); }
}

:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}


/*header*/

#header {
  padding: 20px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s ease;
  z-index: 997;
}

#header .logo {
  float: left;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  #header #logo img {
    max-height: 40px;
  }
}

#header.header-fixed {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s ease;
}


/*title*/

#title {
  display: table;
  width: 100%;
  height: 100vh;
  background:  rgba(44, 64, 92, 1) url('../img/bgrnd.png') repeat 0 0;
  animation: 10s linear 0s normal none infinite animate;
  }

#title .title-container {
  background: rgba(0, 0, 0, 0);
  display: table-cell;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  vertical-align: middle;
}

#title .btn_serv {
  display: inline-block;
  padding: 8px 45px;
  transition: all 0.5s ease;
  margin: 10px;
  color: #fff;
  width: 210px;
}

#title .btn_serv:hover {
  cursor: pointer;
  transform: scale(1.4);
}

#title .btn_serv:active {
 outline:none;
 cursor: pointer;
 transform: scale(1.3);
}


/*navigation menu*/

.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}


/*nav menu arrows*/

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}


/*nav menu container*/

#nav-menu-container {
  float: right;
  margin: 0;
  padding-top: 3px;
}

@media (max-width: 768px) {
  #nav-menu-container {
    display: none;
  }
}


/*nav menu styling*/

.nav-menu a {
  padding: 0 0 10px 0;
  margin: 0 0 0 0;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "roboto", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 13px;
  outline: none;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffff;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.nav-menu a:hover:before, .nav-menu li:hover > a:before, .nav-menu > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1)
}

.nav-menu .sup:hover:before, .nav-menu li .sup:hover > .sup a:before, .nav-menu .sup > a:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  background: red;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  border: 1px solid #e7e7e7;
}

.nav-menu ul li {
  background: #fff;
}

.nav-menu ul li:first-child {
  border-top: 0;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: all 0.3s ease;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li a:hover {
  background: #3d4567;
  color: #fff;
}

.nav-menu ul ul {
  margin: 0;
}


/*mobile nav toggle*/

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 0 0 0;
  border: 0;
  background: none;
  font-size: 21px;
  transition: all 0.4s ease;
  outline: none;
  display: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 768px) {
  #mobile-nav-toggle {
    display: inline;
    margin: 20px 35px 0px 0px;
  }
}

@media (max-width: 425px) {
  #mobile-nav-toggle {
    display: inline;
    margin: 20px 0px 0px 0px;
  }
}


/*mobile nav styling*/

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 5px;
  margin-top: 72px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  right: -260px;
  width: 250px;
  transition: all 0.6s ease;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  text-align: end;
  padding: 10px 16px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

@media (max-width: 768px) {
 #mobile-nav ul li a {
  padding: 10px 40px 10px 15px;
  }
}

@media (max-width: 425px) {
 #mobile-nav ul li a {
  padding: 10px 15px 10px 15px;
  }
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #3d4567;
}

#mobile-nav ul .menu-item-active {
  color: #3d4567;
}

#mobile-body-overly {

  z-index: 997;
  position: fixed;
  background: rgba(52, 59, 68, 1);
}


/*mobile nav body*/

body.mobile-nav-active {
}

body.mobile-nav-active #mobile-nav {
  right: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}


/*about*/

#about {
 padding: 60px 0px 0px 0px;
}

#about .tile-container {
  margin-left: auto;
  margin-right: auto;
}

#about .slider-about-container {
  margin: 25px 0 25px 0;
  width: 100%;
}

#about .slider-about-slide {
  position:relative;
  transition: all 0.2s ease;
}

#about .slider-about-img {
  max-width: 100%;
  padding: 14% 10%;
  transition: 0.4s;
  opacity: 0.5;
  margin: 0px 0px 20px 0px;
}

#about .slider-about-img:hover {
 transform: scale(1.1);
 position: relative;
 cursor: pointer;
 opacity: 0.8
}

@media (max-width: 768px) {
  #about .slider-about-img:hover {
  transform: none;
  }
}

#about .about-container .title {
  color: #2d2d2d;
  font-weight: 600;
  font-size: 32px;
  text-align: initial;
  padding: 0;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}

#about .about-container .notice {
  font-weight: 300;
  font-size: 15px;
  text-align: initial;
  margin: 0 0 20px 0;
  padding: 0;
  color: #2d2d2d;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
#about .about-container .notice {
  font-size: 14px;
  }
}

#about .about-container .description {
  padding: 0;
  margin: 15px 0 10px 0;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  cursor: default;
  opacity: 0.97;
}


/*outsourcing*/

#outsourcing {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0);
}

#outsourcing .contact-trigger {
  -webkit-animation: trigger 0.8s linear infinite;
  animation: trigger 1.5s linear infinite;
  color: #2d2d2d;
  font-size: 12px;
}

#outsourcing .contact-trigger :hover {
  color: #ff0000;
  transition: all 0.3s ease;
}

#outsourcing .outsourcing-container .heximage-big {
  opacity: 0.9;
  transition: all 1s ease;
  width: 80%
}

@media screen and (max-width: 425px) {
#outsourcing .outsourcing-container .heximage-big {
  max-width: 75%;
  float: none;
  }
}

@media screen and (min-width: 768px) {
#outsourcing .outsourcing-container .heximage-big {
  max-width: 35%;
  float: left;
  padding: 13% 0% 0% 0%;
  }
}

@media screen and (min-width: 800px) {
#outsourcing .outsourcing-container .heximage-big {
  padding-top: 10%;
  padding-bottom: 34px;
  padding-left: 0%;
  max-width: 90%;
  float: none;
  }
}

#outsourcing .outsourcing-container .heximage-small {
  opacity: 0.9;
  transition: all 1s ease;
  width: 80%
}

@media screen and (max-width: 425px) {
#outsourcing .outsourcing-container .heximage-small {
  max-width: 75%;
  float: none;
  }
}

@media screen and (min-width: 768px) {
#outsourcing .outsourcing-container .heximage-small {
  max-width: 35%;
  float: left;
  padding: 13% 0% 0% 0%;
  }
}

@media screen and (min-width: 800px) {
#outsourcing .outsourcing-container .heximage-small {
  padding-top: 10%;
  padding-bottom: 31px;
  padding-left: 0%;
  max-width: 80%;
  float: none;
  }
}

@media screen and (min-width: 1100px) {
#outsourcing .outsourcing-container .heximage-small {
  padding-bottom: 34px;
  }
}

#outsourcing .outsourcing-container .title {
  color: #2d2d2d;
  font-weight: 600;
  font-size: 32px;
  text-align: initial;
  padding: 0;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media (max-width: 768px) {
  #outsourcing .outsourcing-container .title {
    padding-top: 15px;
  }
}

#outsourcing .outsourcing-container .notice {
  font-weight: 300;
  font-size: 15px;
  text-align: initial;
  margin: 0 0 20px 0;
  padding: 0;
  color: #2d2d2d;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
#outsourcing .outsourcing-container .notice {
  font-size: 14px;
  }
}

#outsourcing .outsourcing-container .description {
  padding: 0;
  margin: 20px 0 25px 0;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  cursor: default;
  opacity: 0.97;
}

#outsourcing .outsourcing-container .icon-box {
  background: #fff0;
  background-size: cover;
  padding: 0 0 0px 0;
}

#outsourcing .outsourcing-container .icon-box .icon {
  float: left;
  background: #fff0;
  min-height: 30px;
  min-width: 30px;
  text-align: center;
}

#outsourcing .outsourcing-container .icon-box .icon i {
  color: #2d2d2d;
  font-size: 23px;
}

#outsourcing .outsourcing-container .icon-box .description {
  margin-left: 40px;
  line-height: 15px;
  font-size: 13px;
  opacity: 0.97;
}


/*services*/

#services {
  padding: 60px 0;
  background: rgba(0, 0, 0, 0);
}

#services .contact-trigger {
  -webkit-animation: trigger 0.8s linear infinite;
  animation: trigger 1.5s linear infinite;
  color: #2d2d2d;
  font-size: 12px;
}


#services .contact-trigger :hover {
  color: #ff0000;
  transition: all 0.3s ease;
}

#services .services-container .box {
  margin: 8% 0% 0% 0%;
  float: left;
  padding: 10px;
}

#services .services-container .box .title {
  color: #2d2d2d;
  font-size: 22px;
  text-align: initial;
  cursor: default;
  opacity: 0.97;
}

@media (max-width: 768px) {
  #services .services-container .box .title {
    padding-top: 15px;
  }
}

#services .services-container .heximage {
  max-width: 48%;
  opacity: 0.9;
  margin: 0px 0px 20px 0px;
}


@media screen and (max-width: 1024px) {
#services .services-container .heximage {
  float: none;
  max-width: 55%;
  }
}

@media screen and (max-width: 768px) {
#services .services-container .heximage {
  float: left;
  margin: 12% 2% 0 0;
  max-width: 23%;
  }
}

@media screen and (max-width: 601px) {
#services .services-container .heximage {
  float: none;
  max-width: 50%;
  }
}

#services .services-container .title {
  color: #2d2d2d;
  font-weight: 600;
  font-size: 32px;
  text-align: initial;
  padding: 0;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media (max-width: 768px) {
  #services .services-container .title {
    padding-top: 15px;
  }
}

#services .services-container .notice {
  font-weight: 300;
  font-size: 15px;
  text-align: initial;
  margin: 0 0 20px 0;
  padding: 0;
  color: #2d2d2d;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
#services .services-container .notice {
  font-size: 14px;
  }
}

#services .services-container .description {
  padding: 0;
  margin: 20px 0 25px 0;
  color: #2d2d2d;
  font-size: 16px;
  line-height: 1.3;
  text-align: justify;
  cursor: default;
  opacity: 0.97;
}

@media screen and (max-width: 601px) {
#services .services-container .description {
  font-size: 14px;
  }
}

#services .services-container .icon-box {
  background: #fff0;
  background-size: cover;
  padding: 0 0 0px 0;
}

#services .services-container .icon-box .icon {
  float: left;
  background: #fff0;
  margin: -2px 12px 0px 8px;
  width: 26px;
  text-align: center;
}

#services .services-container .icon-box .icon i {
  color: #2d2d2d;
  font-size: 15px;
}

#services .services-container .icon-box .attribute {
  margin-left: 40px;
  font-size: 13px;
  opacity: 0.97;
  padding: 0;
  margin: 11px 0px 0px 38px;
  color: #2d2d2d;
  text-align: justify;
  cursor: default;
}


/*Contact*/

#contact {
  display: table;
  width: 100%;
  height: 71vh;
  padding: 50px 0px 40px 0px;
  background: rgba(0, 0, 0, 0);
}

#contact .contact-container {
  background: rgba(0, 0, 0, 0);
  display: table-cell;
  margin: 0;
  padding: 0 10px;
  text-align: center;
  vertical-align: middle;
}

#contact .contact-container img {
    width: 75%;
    margin: 0px 0px 0px 0px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    opacity: 0.9;
}

#contact .contact-btn {
  display: inline-block;
  padding: 45px 45px;
  transition: all 0.5s ease;
  margin: 10px;
  color: #fff;
  width: 190px;
}

#contact .contact-btn :hover {
  cursor: pointer;
  transform: scale(1.4);
}

#contact .contact-btn :active {
 outline:none;
 cursor: pointer;
 transform: scale(1.3);
}

@media screen and (max-width: 768px) {
#contact .contact-btn {
  padding: 15px 10px;
  }
}

#contact .contact-container .quote {
  font-size: 14px;
  font-style: italic;
  text-align: justify;
  cursor: default;
  opacity: 0.97;
}

@media screen and (max-width: 768px) {
#contact .contact-container .quote {
  font-style: normal;
  }
}

#contact .contact-container .quote-copyright {
  font-size: 13px;
  text-align: right;
  cursor: default;
  margin: 15px 0px 30px 0;
  opacity: 0.97;
}

#contact .contact-container .title {
  color: #2d2d2d;
  font-weight: 600;
  font-size: 32px;
  text-align: initial;
  padding: 0;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media (max-width: 768px) {
  #contact .contact-container .title {
    padding-top: 15px;
  }
}

#contact .contact-container .notice {
  font-weight: 300;
  font-size: 15px;
  text-align: initial;
  margin: 0 0 20px 0;
  padding: 0;
  color: #2d2d2d;
  cursor: default;
  opacity: 0.97;
  line-height: 1.5;
  margin: 0 0 10px 0;
}

@media screen and (max-width: 768px) {
#contact .contact-container .notice {
  font-size: 14px;
  }
}


/*footer*/

#footer {
  background: rgba(0, 0, 0, 0.8);
  padding: 30px 0;
  font-size: 14px;
  text-align: center;
}

#footer .copyright {
  color: #fff;
  cursor: default;
  text-align: center;
  opacity: 0.97;
  margin-bottom: .5rem;
}

#footer .copyright .c {
  color: #ed1d24;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.97;
}

#footer .shi {
  margin: 48%;
  opacity: 0.97;
}

@media screen and (max-width: 768px) {
#footer .shi {
  margin: 42%;
  }
}

#footer .shi img {
  max-width: 4%;
  opacity: 0.85;
}

@media screen and (max-width: 768px) {
#footer .shi img {
  max-width: 9%;
  }
}
