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

*:focus {
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-image: url(../images/logo-pattern.svg);
  /* pre loader */
  /* end pre loader */
}

html body::-webkit-scrollbar {
  width: 2px;
}

html body::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  box-shadow: none;
}

html body::-webkit-scrollbar-thumb {
  background-color: #f59524;
  outline: none;
}

html body .socialmedia {
  position: fixed;
  top: 40%;
  z-index: 999;
  right: 65px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body .socialmedia ul {
  list-style-type: none;
}

html body .socialmedia ul li a {
  color: #f2f2f2;
  background: #ffffff30;
  padding: 10px;
  width: 40px;
  height: 40px;
  display: block;
  text-align: center;
  margin: 10px;
  font-size: 15px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body .socialmedia ul li a:hover.fb,
html body .socialmedia ul li a:focus.fb,
html body .socialmedia ul li a:active.fb {
  color: #ffffff;
  background: #3b5998;
}

html body .socialmedia ul li a:hover.ig,
html body .socialmedia ul li a:focus.ig,
html body .socialmedia ul li a:active.ig {
  color: #ffffff;
  background: #fd1d1d;
}

html body .socialmedia ul li a:hover.tw,
html body .socialmedia ul li a:focus.tw,
html body .socialmedia ul li a:active.tw {
  color: #ffffff;
  background: #1da1f2;
}

html body .socialmedia ul li a:hover.ln,
html body .socialmedia ul li a:focus.ln,
html body .socialmedia ul li a:active.ln {
  color: #ffffff;
  background: #007bb5;
}

html body .socialmedia.scrolled {
  right: 10px;
}

html body .socialmedia.scrolled ul li a.fb {
  color: #ffffff;
  background: #3b5998;
}

html body .socialmedia.scrolled ul li a.ig {
  color: #ffffff;
  background: #fd1d1d;
}

html body .socialmedia.scrolled ul li a.tw {
  color: #ffffff;
  background: #1da1f2;
}

html body .socialmedia.scrolled ul li a.ln {
  color: #ffffff;
  background: #007bb5;
}

html body header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  border-bottom: 1px solid #ffffff42;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body header .logo {
  /* background: $white; */
  padding: 15px;
  overflow: hidden;
  -webkit-box-shadow: 1px 0 0 rgba(255, 255, 255, 0.34);
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.34);
}

html body header .logo img {
  width: 164px;
  margin: 0 auto;
  display: block;
}

html body header .nav-container {
  text-align: right;
  padding: 36px 65px;
}

html body header .nav-container .burger-menu {
  display: inline-block;
  float: right;
  display: none;
}

html body header .nav-container .burger-menu button {
  background: none;
  border: none;
  text-align: -webkit-right;
  outline: none;
}

html body header .nav-container .burger-menu button span {
  content: "";
  width: 25px;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  position: relative;
  display: block;
  text-align: right;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body header .nav-container .burger-menu button span.mid {
  width: 15px;
}

html body header .nav-container .burger-menu button span.bottom {
  width: 10px;
  margin-bottom: 0;
}

html body header .nav-container .burger-menu.clicked button span {
  background: #f59524;
  width: 10px;
  margin: 2px 0;
}

html body header .nav-container .burger-menu.clicked button span.mid {
  width: 20px;
  margin-left: -10px;
}

html body header .nav-container .burger-menu.clicked button span.top {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

html body header .nav-container .burger-menu.clicked button span.bottom {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

html body header .nav-container .primary-menu {
  float: right;
  list-style-type: none;
}

html body header .nav-container .primary-menu li {
  float: left;
}

html body header .nav-container .primary-menu li.contact-btn a {
  background: #ffffff30;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  padding: 10px 20px;
}

html body header .nav-container .primary-menu li.contact-btn a:after {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  top: 0;
  height: 100%;
  background: #f59524;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}

html body header .nav-container .primary-menu li.contact-btn a:hover,
html body header .nav-container .primary-menu li.contact-btn a:focus,
html body header .nav-container .primary-menu li.contact-btn a:active,
html body header .nav-container .primary-menu li.contact-btn a.active {
  color: #ffffff;
  background: transparent;
}

html body header .nav-container .primary-menu li.contact-btn a:hover:after,
html body header .nav-container .primary-menu li.contact-btn a:focus:after,
html body header .nav-container .primary-menu li.contact-btn a:active:after,
html body header .nav-container .primary-menu li.contact-btn a.active:after {
  width: 100%;
}

html body header .nav-container .primary-menu li a {
  color: #f2f2f2;
  padding: 30px 20px;
  text-decoration: none;
  font-size: 15px;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body header .nav-container .primary-menu li a:after {
  content: "";
  height: 3px;
  width: 0;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
  background: #f59524;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body header .nav-container .primary-menu li a:hover,
html body header .nav-container .primary-menu li a:focus,
html body header .nav-container .primary-menu li a:active,
html body header .nav-container .primary-menu li a.active {
  color: #ffffff;
}

html body header .nav-container .primary-menu li a:hover:after,
html body header .nav-container .primary-menu li a:focus:after,
html body header .nav-container .primary-menu li a:active:after,
html body header .nav-container .primary-menu li a.active:after {
  width: 60%;
}

html body header .nav-container .primary-menu li a svg {
  width: 10px;
  height: 10px;
  fill: #ffffff;
  margin-left: 10px;
}

html body header .nav-container .primary-menu li.dropdown .dropdown-menu {
  display: block !important;
  position: absolute;
  display: block;
  top: 40px;
  border: none;
  left: 0;
  background: #ffffff;
  padding: 0;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0px 10px 20px #0000001c;
  box-shadow: 0px 10px 20px #0000001c;
  width: 250px;
}

html body header .nav-container .primary-menu li.dropdown .dropdown-menu li {
  float: none;
}

html body header .nav-container .primary-menu li.dropdown .dropdown-menu li a {
  padding: 10px 15px;
  color: #333333;
  display: block;
  border-bottom: 1px solid #3333330f;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:after {
  display: none;
}

html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:before {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  width: 3px;
  background: #f59524;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:hover,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:focus,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:active,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a.active {
  padding-left: 18px;
}

html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:hover:before,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:focus:before,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a:active:before,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown
  .dropdown-menu
  li
  a.active:before {
  left: 0;
}

html body header .nav-container .primary-menu li.dropdown:hover .dropdown-menu,
html body header .nav-container .primary-menu li.dropdown:focus .dropdown-menu,
html body header .nav-container .primary-menu li.dropdown:active .dropdown-menu,
html
  body
  header
  .nav-container
  .primary-menu
  li.dropdown.active
  .dropdown-menu {
  top: 50px;
  opacity: 1;
  visibility: visible;
}

html body header.inner-page {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px #0000001c;
  box-shadow: 0px 10px 20px #0000001c;
  border-bottom: none;
}

html body header.inner-page .nav-container .burger-menu button span {
  background: #333333;
  margin-top: 0 !important;
}

html body header.inner-page .nav-container .primary-menu li.contact-btn a {
  background: #f595241c;
  color: #f59524;
}

html body header.inner-page .nav-container .primary-menu li.contact-btn a:hover,
html body header.inner-page .nav-container .primary-menu li.contact-btn a:focus,
html
  body
  header.inner-page
  .nav-container
  .primary-menu
  li.contact-btn
  a:active {
  color: #ffffff;
}

html
  body
  header.inner-page
  .nav-container
  .primary-menu
  li.contact-btn
  a.active {
  color: #fff;
}

html body header.inner-page .nav-container .primary-menu li a {
  color: #333333;
  font-weight: 500;
}

html body header.inner-page .nav-container .primary-menu li a svg {
  fill: #333333;
}

html body header.scrolled {
  background: #ffffff;
  -webkit-box-shadow: 0px 10px 20px #0000001c;
  box-shadow: 0px 10px 20px #0000001c;
  border-bottom: none;
}

html body header.scrolled .nav-container .burger-menu button span {
  background: #333333;
  margin-top: 0 !important;
}

html body header.scrolled .nav-container .primary-menu li.contact-btn a {
  background: #f595241c;
  color: #f59524;
}

html body header.scrolled .nav-container .primary-menu li.contact-btn a:hover,
html body header.scrolled .nav-container .primary-menu li.contact-btn a:focus,
html body header.scrolled .nav-container .primary-menu li.contact-btn a:active {
  color: #ffffff;
}

html body header.scrolled .nav-container .primary-menu li.contact-btn a.active {
  color: #fff;
}

html body header.scrolled .nav-container .primary-menu li a {
  color: #333333;
  font-weight: 500;
}

html body header.scrolled .nav-container .primary-menu li a svg {
  fill: #333333;
}

html body section {
  position: relative;
  padding: 100px 0;
}

html body section .meta-title {
  color: #f59524;
  font-size: 13px;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
  width: 100%;
  margin-top: 20px;
}

html body section h3 {
  color: #153f59;
  font-size: 25px;
  line-height: 40px;
  width: 70%;
  display: block;
  margin-bottom: 30px;
}

html body section h3 span {
  font-size: 15px;
}

html body section p {
  color: #333333;
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  width: 90%;
  text-align: justify;
}

html body section a.btn-primary {
  background-color: transparent !important;
  font-size: 13px;
  text-decoration: none;
  margin-top: 3px;
  padding: 15px 30px;
  padding-left: 0;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body section a.btn-primary svg {
  width: 13px;
  height: auto;
  margin-left: 15px;
}

html body section a.btn-primary:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 70%;
  background: #ffffff1c;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body section a.btn-primary:hover,
html body section a.btn-primary:focus,
html body section a.btn-primary:active,
html body section a.btn-primary.active {
  padding-left: 30px;
}

html body section a.btn-primary:hover:before,
html body section a.btn-primary:focus:before,
html body section a.btn-primary:active:before,
html body section a.btn-primary.active:before {
  width: 100%;
}

html body section.home-banner {
  height: 100vh;
  position: relative;
  padding: 0;
}

html body section.home-banner .owl-banner .item {
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

html body section.home-banner .owl-banner .item .banner-caption {
  position: absolute;
  top: 50%;
  left: 10%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}

html body section.home-banner .owl-banner .item .banner-caption span {
  font-size: 30px;
  display: block;
  margin-bottom: 30px;
  color: #ffffff;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

html body section.home-banner .owl-banner .item .banner-caption h1 {
  color: #ffffff;
  font-size: 50px;
  font-weight: 600;
  line-height: 70px;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

html body section.home-banner .owl-banner .owl-nav {
  position: absolute;
  bottom: 100px;
  left: 0;
  width: 80%;
  text-align: right;
  margin-left: 10%;
}

html body section.home-banner .owl-banner .owl-nav button {
  height: 40px;
  width: 40px;
  border: 1px solid #ffffff5c;
  border-radius: 50px;
  margin-left: 20px;
  outline: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  background: transparent;
}

html body section.home-banner .owl-banner .owl-nav button img {
  width: 10px;
}

html body section.home-banner .owl-banner .owl-nav button:hover,
html body section.home-banner .owl-banner .owl-nav button:focus,
html body section.home-banner .owl-banner .owl-nav button:active,
html body section.home-banner .owl-banner .owl-nav button.active {
  background: #ffffff5c;
}

html body section.home-banner .owl-banner .owl-nav:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 85%;
  left: 0;
  background: #ffffff5c;
  top: 30px;
}

html body section.home-banner .owl-banner .owl-nav:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 85%;
  left: 0;
  background: #ffffff;
  top: 30px;
  -webkit-animation: moveme 5.1s linear infinite;
  animation: moveme 5.1s linear infinite;
}

@-webkit-keyframes moveme {
  0% {
    width: 0;
  }
  80% {
    width: 85%;
  }
}

@keyframes moveme {
  0% {
    width: 0;
  }
  80% {
    width: 85%;
  }
}

html body section.home-banner .scroll-down {
  background: #f59524;
  padding: 47px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  border-top: 2px solid #ffffff;
  left: 10%;
}

html body section.home-banner .scroll-down img {
  width: 15px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-animation-duration: 2.5s;
  animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
  }
}

@keyframes bounce {
  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}

html body section.home-banner .scroll-down .bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

html body section.about {
  background-color: #153f59;
  background-image: url(../images/logo-pattern.svg);
  padding: 100px;
}

html body section.about .meta-title {
  color: #ffffff;
  margin-top: 0;
}

html body section.about h3 {
  color: #ffffff;
  width: 100%;
}

html body section.about h3 span {
  color: #ffffff;
  font-size: 25px;
}

html body section.about p {
  color: #f2f2f2;
  margin-bottom: 30px;
}

html body section.about.dubai {
  padding: 100px;
  background: #ffffff;
}

html body section.about.dubai p {
  color: #333333;
}

html body section.about.dubai h3 {
  color: #153f59;
}

html body section.about.dubai h3 span {
  font-size: 25px;
  color: #f59524;
}

html body section.about.dubai .meta-title {
  color: #f59524;
}

html body section.about.dubai a.btn-primary {
  color: #f59524;
}

html body section.about.dubai a.btn-primary svg {
  fill: #f59524;
}

html body section.about.dubai a.btn-primary:before {
  background: #f595241c;
}

html body section.divisions .meta-count {
  font-weight: 700;
  color: #333333;
  font-size: 200px;
  margin: 0;
  line-height: 0;
  opacity: 0.05;
  top: 70px;
  position: relative;
  z-index: -1;
}

html body section.divisions .division-img {
  height: 0;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

html body section.divisions .division-img.transition-delay01 {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

html body section.divisions .dist-container {
  background: #153f59;
  padding: 50px;
}

html body section.divisions .dist-container .logo {
  padding: 30px;
}

html body section.divisions .dist-container .logo img {
  width: 100px;
  margin: 0 auto;
  display: block;
  -webkit-filter: brightness(0.1) invert(1);
  filter: brightness(0.1) invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body section.divisions .dist-container .logo img.width {
  width: 50px;
}

html body section.divisions .dist-container .logo:hover img,
html body section.divisions .dist-container .logo:focus img,
html body section.divisions .dist-container .logo:active img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

html body section.divisions .dist-container a.btn-primary {
  margin: 10px 40px 20px;
  position: relative;
  display: inline-block;
}

html body section.divisions .dist-container a.btn-primary span svg {
  fill: #ffffff;
}

html body section.divisions .dist-container h4 {
  color: #ffffff;
  line-height: 40px;
  margin-bottom: 30px;
}

html body section.divisions .dist-container .ul-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html body section.divisions .dist-container .ul-row ul {
  margin-right: 25px;
}

html body section.divisions .dist-container .ul-row ul:last-child {
  margin-right: 0;
  margin-left: 25px;
}

html body section.divisions .dist-container .ul-row ul li {
  color: #ffffff;
  font-weight: 100;
  font-size: 15px;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

html body section.divisions .dist-container .ul-row ul li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50px;
}

html
  body
  section.divisions.division01
  .container
  .row
  .technical-division-cont
  .major-activities {
  float: right;
}

html
  body
  section.divisions.division01
  .container
  .row
  .technical-division-cont
  .major-activities
  .dist-container
  ul {
  margin-right: 50px;
  width: 50%;
}

html
  body
  section.divisions.division01
  .container
  .row
  .technical-division-cont
  .major-activities
  .dist-container
  ul:last-child {
  margin-right: 0;
}

html body section.divisions.division02 {
  padding: 0;
}

html body section.divisions.division02 .content-container {
  padding: 0 50px;
  float: right;
}

html body section.divisions.division02 .overflow-hidden {
  float: left;
}

html body section.divisions.division02 .dist-container {
  background: #153f59;
}

html body section.divisions.division02 .dist-container a.btn-primary {
  color: #ffffff;
}

html body section.divisions.division02 .dist-container a.btn-primary:before {
  background: #ffffff1c;
}

html body section.divisions.gasos-dubai-out {
  padding-top: 0;
}

html body section.divisions.gasos-dubai-out .container .row .gasos-dub {
  background: #133d72;
  padding: 50px;
}

html
  body
  section.divisions.gasos-dubai-out
  .container
  .row
  .gasos-dub
  .gasos-dub-left {
  float: left;
  padding: 0;
}

html
  body
  section.divisions.gasos-dubai-out
  .container
  .row
  .gasos-dub
  .gasos-dub-right {
  float: left;
  padding-left: 80px;
}

html
  body
  section.divisions.gasos-dubai-out
  .container
  .row
  .gasos-dub
  .gasos-dub-right
  h2 {
  color: #fff;
}

html
  body
  section.divisions.gasos-dubai-out
  .container
  .row
  .gasos-dub
  .gasos-dub-right
  h3 {
  color: #fff;
  width: 65%;
}

html
  body
  section.divisions.gasos-dubai-out
  .container
  .row
  .gasos-dub
  .gasos-dub-right
  h3
  span {
  font-size: 25px;
}

html
  body
  section.divisions.gasos-dubai-out
  .container
  .row
  .gasos-dub
  .gasos-dub-right
  p {
  color: #fff;
  width: 100%;
  margin-bottom: 50px;
}

html body section.service-container {
  padding-top: 0;
}

html body section.service-container .service-img {
  float: left;
  width: 100%;
}

html body section.service-container .service-content {
  position: relative;
  padding: 50px 100px;
  display: inline-block;
  background-color: #f7f7f8;
  background-image: url(../images/logo-pattern.svg);
}

html body section.service-container .service-content a.btn-primary {
  color: #f59524;
  margin: 0px 0 0;
  display: inline-block;
}

html body section.service-container .service-content a.btn-primary:before {
  background: #f595241c;
}

html body section.service-container.quality {
  margin-top: 100px;
  margin-bottom: 160px;
  position: relative;
}

html body section.service-container.quality .service-img {
  float: left;
}

html body section.service-container.quality .service-content {
  background-color: #153f59;
  background-image: url(../images/logo-pattern.svg);
}

html body section.service-container.quality .service-content h3 {
  color: #ffffff;
}

html body section.service-container.quality .service-content p {
  color: #f2f2f2;
}

html body section.service-container.quality .service-content a.btn-primary {
  color: #ffffff;
}

html
  body
  section.service-container.quality
  .service-content
  a.btn-primary:before {
  background: #ffffff1c;
}

html body section.service-container.quality .ivc_logo {
  position: static;
  margin: 3px 0 24px 0;
  float: left;
  width: 100%;
}

html body section.service-container.quality .ivc_logo img {
  width: 100%;
  max-width: 150px;
}

html body section.clients {
  z-index: 9;
}

html body section.clients .client-container {
  background: #f4f4f4;
  padding: 50px;
}

html body section.clients .client-container .owl-clients .item a img {
  width: 100px;
  margin: 0 auto;
  display: block;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body section.clients .client-container .owl-clients .item a:hover img,
html body section.clients .client-container .owl-clients .item a:focus img,
html body section.clients .client-container .owl-clients .item a:active img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

html body section.clients .client-container .owl-clients .owl-nav {
  position: absolute;
  right: -55px;
  top: -110px;
  margin-top: 0;
}

html body section.clients .client-container .owl-clients .owl-nav button {
  background: transparent;
  padding: 10px 20px !important;
  position: relative;
}

html body section.clients .client-container .owl-clients .owl-nav button img {
  width: 13px;
}

html
  body
  section.clients
  .client-container
  .owl-clients
  .owl-nav
  button:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: #f595241c;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html
  body
  section.clients
  .client-container
  .owl-clients
  .owl-nav
  button:hover:before,
html
  body
  section.clients
  .client-container
  .owl-clients
  .owl-nav
  button:focus:before,
html
  body
  section.clients
  .client-container
  .owl-clients
  .owl-nav
  button:active:before,
html
  body
  section.clients
  .client-container
  .owl-clients
  .owl-nav
  button.active:before {
  width: 100%;
}

html body section a,
html body section button {
  outline: none !important;
}

html body section.inner-baner {
  position: relative;
  z-index: 9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

html body section.inner-baner.sales-marketing-ban {
  background: url(../images/sales-marketing-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.tec-ban {
  background: url(../images/technical-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.man-baner {
  background: url(../images/manpower-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.training-ban {
  background: url(../images/trainings-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.contact-baner {
  background: url(../images/contact-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.team-baner {
  background: url(../images/team-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.associates-baner {
  background: url(../images/associates-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.clients-baner {
  background: url(../images/clients-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.qhse-baner {
  background: url(../images/qhse-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.holi-baner {
  background: url(../images/holidays-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.about-baner {
  background: url(../images/about-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.sitemap-baner {
  background: url(../images/sitemap-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner.terms-baner {
  background: url(../images/terms-baner.jpg) no-repeat;
  min-height: 400px;
  background-size: cover;
  padding: 0;
}

html body section.inner-baner:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: -9;
}

html body section.inner-baner .container {
  max-width: 1400px;
}

html body section.inner-baner .container .row .inner-ban-title {
  padding-bottom: 50px;
  position: relative;
}

html body section.inner-baner .container .row .inner-ban-title h2 {
  color: #fff;
  margin-bottom: 20px;
}

html body section.inner-baner .container .row .inner-ban-title ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

html body section.inner-baner .container .row .inner-ban-title ul li {
  display: inline-block;
  color: #fff;
  margin-right: 10px;
}

html body section.inner-baner .container .row .inner-ban-title ul li a {
  text-decoration: none;
  color: #fff;
}

html body section.inner-baner .container .row .inner-ban-title ul li svg {
  width: 10px;
  height: 10px;
  fill: #fff;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

html body section.inner-baner .container .row .inner-ban-title h5 {
  position: absolute;
  right: 15px;
  bottom: 50px;
  background: #f59524;
  padding: 12px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.inner-baner .container .row .inner-ban-title h5 a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding-left: 40px;
  position: relative;
}

html body section.inner-baner .container .row .inner-ban-title h5 a:before {
  position: absolute;
  content: "";
  left: 30px;
  top: -15px;
  bottom: -12px;
  width: 1px;
  background: #f17870;
}

html body section.inner-baner .container .row .inner-ban-title h5 a svg {
  width: 21px;
  position: absolute;
  fill: #fff;
  top: -1px;
  left: 0;
}

html body section.inner-baner .container .row .inner-ban-title h5:hover {
  background: #294d81;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html
  body
  section.inner-baner
  .container
  .row
  .inner-ban-title
  h5:hover
  a:before {
  background: #38609a;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.sales-marketing-cont .container {
  max-width: 1400px;
}

html body section.sales-marketing-cont .container .row .divisions-out {
  padding: 0;
}

html body section.sales-marketing-cont .container .row .divisions-out a {
  color: #333;
  text-decoration: none;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in {
  border: 3px solid #fff;
  padding: 30px;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  background: #f5f5f5;
  min-height: 240px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f59524;
  width: 0px;
  height: 4px;
  margin: 0px auto;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  img {
  width: auto;
  margin-bottom: 15px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  h5 {
  margin: 10px 0 0px;
  font-size: 16px;
  text-transform: uppercase;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  a {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  color: #fff;
  background: #0452a1;
  width: 160px;
  margin: auto;
  padding: 10px;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  z-index: 9;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  display: none;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  a
  svg {
  width: 15px;
  height: 15px;
  margin-left: 8px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  .hide-cont {
  position: absolute;
  bottom: 66%;
  left: 0;
  right: 0;
  padding: 20px 15px 0;
  top: 0;
  background: #0452a1;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  opacity: 0;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  .hide-cont
  p {
  color: #fff;
  width: 100%;
  font-size: 14px;
  text-indent: 0;
  text-align: center;
  line-height: 25px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in
  .hide-cont
  p:first-letter {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in:hover::before {
  width: 120px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in:hover
  h5 {
  letter-spacing: 2px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in:hover
  .hide-cont {
  opacity: 1;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  bottom: 0;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in:hover
  a {
  background: #f59524;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in.associates {
  min-height: 230px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in.associates
  .hide-cont {
  padding-top: 40px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in.associates
  .hide-cont
  ul
  li {
  color: #fff;
  font-size: 14px;
  line-height: 25px;
  letter-spacing: 0.5px;
  font-weight: 300;
  padding-bottom: 5px;
}

html
  body
  section.sales-marketing-cont
  .container
  .row
  .divisions-out
  .logos-in.associates
  .hide-cont
  ul
  li
  a {
  position: static;
  background: none;
  padding: 0;
  width: auto;
}

html
  body
  section.sales-marketing-cont.clients-logos-out
  .container
  .row
  .divisions-out
  .logos-in {
  min-height: 200px;
}

html body section.sales-marketing-cont.monpower-division {
  min-height: 500px;
}

html
  body
  section.sales-marketing-cont.no-hv
  .container
  .row
  .divisions-out
  .logos-in:hover
  h5 {
  letter-spacing: 0.2px;
}

html body section.our-associates .container {
  max-width: 1400px;
}

html body section.our-associates .container .row .associates-out {
  margin-bottom: 50px;
}

html body section.our-associates .container .row .associates-out h5 {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 20px;
}

html body section.our-associates .container .row .associates-out ul {
  list-style: none;
  margin: 0;
  padding: 20px 0 20px 20px;
  position: relative;
  border-bottom: 1px solid #eee;
  min-height: 150px;
}

html body section.our-associates .container .row .associates-out ul li {
  font-size: 14px;
  margin-bottom: 6px;
}

html body section.our-associates .container .row .associates-out ul li a {
  text-decoration: none;
}

html body section.our-associates .container .row .associates-out ul:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 2px;
  height: 80px;
  background: #000;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.our-associates .container .row .associates-out ul:after {
  position: absolute;
  content: "";
  top: 0;
  width: 80px;
  height: 2px;
  background: #f59524;
  left: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html
  body
  section.our-associates
  .container
  .row
  .associates-out:hover
  ul:before {
  height: 100px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html
  body
  section.our-associates
  .container
  .row
  .associates-out:hover
  ul:after {
  width: 100px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.trainings-se .container {
  max-width: 1400px;
}

html body section.trainings-se .container .row .trainings-left h3 {
  position: relative;
  margin-bottom: 70px;
}

html body section.trainings-se .container .row .trainings-left h3:after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  width: 80px;
  background: #000;
  height: 2px;
}

html body section.trainings-se .container .row .trainings-left p {
  text-indent: 0;
}

html body section.trainings-se .container .row .trainings-left p:first-letter {
  font-size: 14px;
  color: #333;
  font-weight: 300;
}

html body section.trainings-se .container .row .trainings-right .trainings-img {
  position: relative;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-right
  .trainings-img:before {
  position: absolute;
  content: "";
  left: -30px;
  right: 30px;
  top: 30px;
  bottom: -30px;
  background: #fde6e8;
  z-index: -9;
  -webkit-box-shadow: 5px 5px 5px rgba(253, 230, 232, 0.3);
  box-shadow: 5px 5px 5px rgba(253, 230, 232, 0.3);
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-right
  .trainings-img
  img {
  width: 100%;
}

html body section.trainings-se .container .row .trainings-sec2-left-out {
  margin-top: 70px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-left-out
  .sec2-in {
  background-color: #153f59;
  padding: 40px;
  min-height: 320px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-left-out
  .sec2-in
  h5 {
  color: #fff;
  margin-bottom: 50px;
  position: relative;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-left-out
  .sec2-in
  h5:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  background: #fff;
  width: 80px;
  height: 1px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-left-out
  .sec2-in
  ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-left-out
  .sec2-in
  ul
  li {
  color: #fff;
  padding-top: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-left-out
  .sec2-in
  ul
  li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background-size: 25%;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50px;
}

html body section.trainings-se .container .row .trainings-sec2-right {
  margin-top: 70px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-right
  .sec2-in-right {
  padding: 40px;
  border: 1px solid #eee;
  min-height: 320px;
  background: #fff;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-right
  .sec2-in-right
  h5 {
  color: #172343;
  margin-bottom: 50px;
  position: relative;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-right
  .sec2-in-right
  h5:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  background: #172343;
  width: 80px;
  height: 1px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-right
  .sec2-in-right
  ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-right
  .sec2-in-right
  ul
  li {
  color: #333;
  padding-top: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec2-right
  .sec2-in-right
  ul
  li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background-size: 25%;
  background: #f59524;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50px;
}

html body section.trainings-se .container .row .trainings-sec3-out {
  margin: 70px 0 0;
}

html body section.trainings-se .container .row .trainings-sec3-out h5 {
  color: #172343;
  margin-bottom: 50px;
  position: relative;
  line-height: 35px;
}

html body section.trainings-se .container .row .trainings-sec3-out h5:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -15px;
  background: #172343;
  width: 80px;
  height: 1px;
}

html body section.trainings-se .container .row .trainings-sec3-out span {
  margin-bottom: 20px;
  display: block;
}

html body section.trainings-se .container .row .trainings-sec3-out ul {
  list-style: none;
  margin: 0;
  padding: 0;
  float: left;
}

html body section.trainings-se .container .row .trainings-sec3-out ul li {
  color: #172343;
  padding-top: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 27px;
}

html
  body
  section.trainings-se
  .container
  .row
  .trainings-sec3-out
  ul
  li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background-size: 25%;
  background: #f59524;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50px;
}

html body section.qhse-out .container {
  max-width: 1400px;
}

html body section.qhse-out .container .row .qhse-title h5 {
  font-size: 25px;
  color: #153f59;
  margin-bottom: 25px;
  position: relative;
}

html body section.qhse-out .container .row .qhse-title h5:before {
  position: absolute;
  content: "";
  left: -30px;
  top: -35px;
  bottom: -50px;
  width: 8%;
  background: #fbfafa;
  z-index: -9;
}

html body section.qhse-out .container .row .qhse-title p {
  text-indent: 0;
  line-height: 30px;
  margin-bottom: 50px;
}

html body section.qhse-out .container .row .qhse-title p::first-letter {
  font-size: 14px;
  font-weight: 300;
  color: #333;
}

html body section.qhse-out .container .row .qhse-cert .certificates {
  background: #0452a1;
  padding: 5px;
  float: left;
  margin-bottom: 30px;
}

html body section.qhse-out .container .row .qhse-cert .certificates a {
  float: left;
}

html body section.qhse-out .container .row .qhse-cert .certificates a img {
  width: 100%;
}

html body section.qhse-out .container .row .qhse-cert .certificates img {
  width: 100%;
}

html body section.holidays-out .container {
  max-width: 1400px;
}

html body section.holidays-out .container .row .holidays-title h5 {
  font-size: 25px;
  color: #153f59;
  margin-bottom: 25px;
  position: relative;
}

html body section.holidays-out .container .row table thead {
  background-color: #f59524;
  color: #ffffff;
}

html body section.holidays-out .container .row table thead tr th:last-child {
  text-align: center;
}

html body section.holidays-out .container .row table tbody tr {
  background-color: #ffffff;
}

html body section.holidays-out .container .row table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

html body section.holidays-out .container .row table tbody tr td:last-child {
  text-align: center;
}

html body section.team-diagram .container {
  max-width: 1400px;
}

html body section.team-diagram .container .row.team-mem .team-list-out {
  margin-top: 30px;
}

html
  body
  section.team-diagram
  .container
  .row.team-mem
  .team-list-out
  .team-in
  .team-img {
  margin-bottom: 30px;
  background-image: url(../images/logo-pattern.svg);
  background: #e6e6e6;
}

html
  body
  section.team-diagram
  .container
  .row.team-mem
  .team-list-out
  .team-in
  .team-img
  img {
  width: 100%;
}

html
  body
  section.team-diagram
  .container
  .row.team-mem
  .team-list-out
  .team-in
  h4 {
  font-size: 16px;
  padding-bottom: 5px;
  margin-bottom: 0;
  color: #0452a1;
}

html
  body
  section.team-diagram
  .container
  .row.team-mem
  .team-list-out
  .team-in
  p {
  border-bottom: 1px solid #ececec;
  width: 100%;
  padding-bottom: 15px;
  text-indent: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  min-height: 65px;
}

html
  body
  section.team-diagram
  .container
  .row.team-mem
  .team-list-out
  .team-in
  p::first-letter {
  font-size: 14px;
  color: #333;
  font-weight: 300;
}

html
  body
  section.team-diagram
  .container
  .row.team-mem
  .team-list-out
  .team-in:hover
  p {
  border-bottom: 1px solid #d62228;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.contact-out {
  padding-top: 50px;
  position: relative;
  background-image: url(../images/logo-pattern.svg);
}

html body section.contact-out:before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  background: #fafbfc;
}

html body section.contact-out .container .row .cont-right .cont-add {
  float: left;
  width: 48%;
  min-height: 360px;
  margin: 0 1% 0px;
  position: relative;
  padding: 30px;
}

html body section.contact-out .container .row .cont-right .cont-add h5 {
  font-size: 20px;
  color: #f59524;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

html body section.contact-out .container .row .cont-right .cont-add ul li {
  margin-bottom: 10px;
  color: #686868;
  font-size: 14px;
  line-height: 25px;
  font-weight: 100;
}

html body section.contact-out .container .row .cont-right .cont-add ul li a {
  color: #f59524;
  text-decoration: none;
}

html
  body
  section.contact-out
  .container
  .row
  .cont-right
  .cont-add
  ul
  li
  a:hover {
  color: #fff;
}

html
  body
  section.contact-out
  .container
  .row
  .cont-right
  .cont-add
  ul
  li:last-child
  a {
  background: #f59524;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
}

html body section.contact-out .container .row .cont-right .cont-add.last-row {
  min-height: 270px;
  border: none;
}

html
  body
  section.contact-out
  .container
  .row
  .cont-right
  .cont-add.last-row
  .loc-map {
  padding-top: 17%;
}

html body section.contact-out .container .row .cont-right .cont-add .loc-map {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 7px 0;
  color: #000;
  overflow: hidden;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  opacity: 0;
  background: #f59524;
  top: 0;
  text-align: center;
  padding-top: 22%;
  width: 87%;
  background-image: url(../images/logo-pattern.svg);
}

html
  body
  section.contact-out
  .container
  .row
  .cont-right
  .cont-add
  .loc-map
  img {
  width: 40px;
  margin-bottom: 20px;
}

html body section.contact-out .container .row .cont-right .cont-add .loc-map a {
  color: #fff;
  text-decoration: none;
  z-index: 9;
  display: block;
}

html
  body
  section.contact-out
  .container
  .row
  .cont-right
  .cont-add:hover
  .loc-map {
  opacity: 1;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.cont-sec .container {
  max-width: 1400px;
}

html body section.cont-sec .container .row .cont-img-left .contact-bg {
  background: url(../images/contact-page.jpg) no-repeat;
  min-height: 570px;
  background-size: cover;
  background-position: center;
  position: relative;
}

html body section.cont-sec .container .row .cont-img-left .contact-bg:before {
  position: absolute;
  content: "";
  width: 200px;
  top: 50%;
  background: #f59524;
  bottom: -30px;
  z-index: -9;
  left: -30px;
  background-image: url(../images/logo-pattern.svg);
}

html body section.cont-sec .container .row .cont-frm-right {
  padding: 0 60px;
}

html body section.cont-sec .container .row .cont-frm-right h2 {
  font-size: 25px;
  color: #153f59;
  margin-bottom: 15px;
  position: relative;
}

html body section.cont-sec .container .row .cont-frm-right span {
  margin-bottom: 30px;
  float: left;
  width: 100%;
}

html
  body
  section.cont-sec
  .container
  .row
  .cont-frm-right
  form
  .text-field
  button {
  background: #f59524;
  border: none;
  color: #fff;
  padding: 15px 40px;
  font-size: 14px;
  position: relative;
  z-index: 9;
  text-transform: uppercase;
  left: 0.5px;
}

html
  body
  section.cont-sec
  .container
  .row
  .cont-frm-right
  form
  .text-field
  button:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #f59524;
  width: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  z-index: -9;
}

html
  body
  section.cont-sec
  .container
  .row
  .cont-frm-right
  form
  .text-field
  button:hover:after {
  width: 100%;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.contact-tab {
  padding-top: 50px;
}

html body section.contact-tab .container .row .cnt-tab-addres .address {
  background: #ffffff;
  -webkit-box-shadow: 0 15px 60px #0000000f;
  box-shadow: 0 15px 60px #0000000f;
  padding: 50px;
  position: relative;
  min-height: 500px;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container {
  float: left;
  width: 100%;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation {
  margin-bottom: 40px;
  position: relative;
  top: 0;
  width: auto;
  display: inline-block;
  background: #f5f5f5;
  padding: 15px 30px;
  padding-right: 60px;
  border-left: 3px solid #f59524;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-button {
  display: inline-block;
  position: relative;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-input {
  display: none;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-input:checked
  + .dd-menu {
  display: block;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-menu {
  position: absolute;
  top: 100%;
  padding: 0;
  list-style-type: none;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.5rem;
  background-color: #ffffff;
  padding: 25px 15px 18px;
  width: 250px;
  z-index: 9;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-menu
  a {
  padding: 5px 5px 10px;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  width: 100%;
  line-height: 23px;
  margin: 0;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-menu
  a:after {
  pointer-events: none;
  z-index: 15;
  position: absolute;
  content: "";
  width: 7px;
  height: 12px;
  border-bottom: 2px solid #f59524;
  border-right: 2px solid #f59524;
  right: -10px;
  top: 39%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: opacity 0.1s, -webkit-transform 0.1s;
  transition: opacity 0.1s, -webkit-transform 0.1s;
  transition: transform 0.1s, opacity 0.1s;
  transition: transform 0.1s, opacity 0.1s, -webkit-transform 0.1s;
  opacity: 0;
  transition: all 400ms;
  -webkit-transition: all 400ms;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-menu
  a:hover:after {
  opacity: 1;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-menu
  a.current:after {
  opacity: 1;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-navigation
  .dropdown
  .dd-input
  + .dd-menu {
  display: none;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content {
  width: 100%;
  height: 95px;
  color: #000;
  font-size: 15px;
  text-align: left;
  line-height: 26px;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content
  .tab-con-det {
  float: left;
  width: 45%;
  margin-right: 5%;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content
  .tab-con-det
  h2 {
  margin-top: 0;
  font-size: 20px;
  letter-spacing: 0;
  font-weight: 600;
  color: #f59524;
  margin-bottom: 10px;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content
  .tab-con-det
  ul
  li {
  line-height: 30px;
  margin-bottom: 5px;
  color: #696969;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content
  .address-map {
  right: 0;
  width: 50%;
  position: absolute;
  top: 0;
  height: 100%;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content
  .address-map
  iframe {
  width: 100%;
}

html
  body
  section.contact-tab
  .container
  .row
  .cnt-tab-addres
  .address
  .tab-container
  .tab-content
  .address-map
  img {
  background: #f5f5f5;
  padding: 5px;
}

html body section.abt {
  margin-bottom: 20px;
}

html body section.gasos-dubai {
  position: relative;
}

html body section.gasos-dubai .container .trainings-left .rental-division {
  margin-bottom: 50px;
}

html body section.gasos-dubai .container .trainings-left .rental-division li {
  color: #172343;
  padding-top: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 27px;
}

html
  body
  section.gasos-dubai
  .container
  .trainings-left
  .rental-division
  li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  background-size: 25%;
  background: #f59524;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50px;
}

html body section.gasos-dubai .container .main-slider {
  margin: 50px 0;
  float: left;
  width: 100%;
}

html body section.gasos-dubai .container .main-slider a {
  float: left;
  width: 23%;
  background: #eee;
  margin: 0 1% 30px;
  padding: 10px;
  position: relative;
}

html body section.gasos-dubai .container .main-slider a .sl-img {
  overflow: hidden;
  position: relative;
}

html body section.gasos-dubai .container .main-slider a .sl-img img {
  width: 100%;
}

html body section.gasos-dubai .container .main-slider a .sl-img:after {
  position: absolute;
  content: "";
  left: 0px;
  right: 0px;
  top: 100%;
  bottom: 0px;
  background: #f59524;
  opacity: 0.5;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.gasos-dubai .container .main-slider a svg {
  position: absolute;
  left: 0;
  right: 0;
  top: -40px;
  bottom: 0;
  width: 50px;
  margin: auto;
  fill: #fff;
  opacity: 0;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  z-index: 9;
  -webkit-transform: translateY(-20px);
  transform: translateY(-20px);
  border: 2px solid #fff;
  border-radius: 50px;
  padding: 10px;
}

html body section.gasos-dubai .container .main-slider a h5 {
  float: left;
  font-size: 15px;
  padding: 15px 10px 10px;
  margin: 0;
  color: #153f59;
}

html body section.gasos-dubai .container .main-slider a:hover .sl-img:after {
  top: 0px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.gasos-dubai .container .main-slider a:hover svg {
  opacity: 1;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

html body section.dubai-team {
  padding-top: 0;
}

html
  body
  section.dubai-team
  .container
  .row.team-mem
  .team-list-out
  .team-in
  p {
  min-height: 40px;
}

html
  body
  section.dubai-team
  .container
  .row.team-mem
  .team-list-out
  .team-in
  span {
  font-size: 14px;
  color: #142041;
}

html body section.privacy .container .row .privacy-out .pr-cont {
  -webkit-box-shadow: 0 15px 60px #0000000f;
  box-shadow: 0 15px 60px #0000000f;
  padding: 50px;
  position: relative;
  background: #fff;
}

html body section.privacy .container .row .privacy-out .pr-cont:before {
  position: absolute;
  content: "";
  right: -13px;
  top: 50px;
  bottom: 50px;
  width: 2%;
  background: #0452a166;
}

html body section.privacy .container .row .privacy-out .pr-cont h3 {
  margin-bottom: 55px;
}

html body section.privacy .container .row .privacy-out .pr-cont h3:after {
  position: absolute;
  content: "";
  bottom: -20px;
  left: 0;
  width: 80px;
  background: #000;
  height: 2px;
}

html body section.privacy .container .row .privacy-out .pr-cont p {
  width: 95%;
}

html body section.privacy .container .row .privacy-out .pr-cont .terms-cont {
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

html
  body
  section.privacy
  .container
  .row
  .privacy-out
  .pr-cont
  .terms-cont.last {
  border: none;
  margin: 0;
}

html body section.sitemap-out .container .row .site-in {
  position: relative;
}

html body section.sitemap-out .container .row .site-in:after {
  position: absolute;
  content: "";
  right: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #ececec;
}

html body section.sitemap-out .container .row .site-in .site-det {
  margin-bottom: 50px;
}

html body section.sitemap-out .container .row .site-in .site-det h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

html body section.sitemap-out .container .row .site-in .site-det ul li {
  padding-top: 12px;
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 27px;
  width: 80%;
}

html body section.sitemap-out .container .row .site-in .site-det ul li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 22px;
  width: 8px;
  height: 8px;
  background-size: 25%;
  background: #f59524;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50px;
}

html body section.sitemap-out .container .row .site-in .site-det ul li a {
  color: #172343;
  text-decoration: none;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  word-break: break-word;
}

html body section.sitemap-out .container .row .site-in .site-det ul li:hover a {
  color: #0452a1;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

html body section.sitemap-out .container .row .site-in .site-det.last {
  margin-top: 35px;
}

html body section.sitemap-out .container .row .site-in.last:after {
  display: none;
}

html body footer {
  background-color: #142041;
  background-image: url(../images/logo-pattern.svg);
  background-repeat: no-repeat;
  background-size: 80%;
  padding: 100px 0 0px;
  background-position: 100% 80%;
  position: relative;
  overflow: hidden;
}

html body footer:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #153f59;
  z-index: 0;
}

html body footer .footer-content {
  position: relative;
  z-index: 1;
}

html body footer .logo svg {
  width: 130px;
  height: auto;
  margin-bottom: 15px;
}

html body footer .logo svg path {
  fill: #b9bdc6 !important;
}

html body footer .logo h4 {
  color: #ffffff;
  font-size: 15px;
  line-height: 25px;
}

html body footer h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 25px;
  border-bottom: 1px solid #ffffff1c;
  padding-bottom: 20px;
  margin: 0 0 25px;
}

html body footer ul {
  padding: 0;
  list-style-type: none;
}

html body footer ul li a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  color: #d6d6d6;
  font-size: 13px;
  line-height: 30px;
  text-decoration: none !important;
}

html body footer ul li a:hover,
html body footer ul li a:focus,
html body footer ul li a:active,
html body footer ul li a.active {
  color: #f59524;
}

html body footer .icv-logo {
  margin-top: 15px;
}

html body footer .icv-logo img {
  max-width: 120px;
  margin-bottom: 10px;
}

html body footer .icv-logo p {
  color: #d6d6d6;
  font-size: 12px;
}

html body footer .footer-bottom {
  border-top: 1px solid #ffffff1c;
  padding: 20px 0 5px;
  margin-top: 30px;
}

html body footer .footer-bottom p {
  color: #d6d6d6;
  font-size: 12px;
  text-align: left;
  font-weight: 300;
  display: inline-block;
  letter-spacing: 0.5px;
}

html body footer .footer-bottom p a {
  color: #d6d6d6;
}

html body footer .footer-bottom .other-links {
  float: right;
}

html body footer .footer-bottom .other-links a {
  color: #d6d6d6;
  font-size: 12px;
  text-align: right;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid #ffffff1c;
  font-weight: 300;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body footer .footer-bottom .other-links a:first-child {
  border-left: none;
}

html body footer .footer-bottom .other-links a:hover,
html body footer .footer-bottom .other-links a:focus,
html body footer .footer-bottom .other-links a:active {
  color: #ffffff;
}

html body footer .mobile-call {
  position: fixed;
  left: 10px;
  bottom: 10px;
  z-index: 9;
  display: none;
}

html body footer .mobile-call h5 {
  width: 50px;
  height: 50px;
  fill: #fff;
  background: #f59524;
  padding: 14px;
  border-radius: 50px;
  margin: 0;
  font-size: 0;
}

html body .clearfix {
  clear: both;
}

html body #return-to-top {
  padding: 15px;
  position: fixed;
  right: 50px;
  bottom: 50px;
  background: #f59524;
  z-index: 99999;
}

html body #return-to-top:before {
  content: "";
  position: absolute;
  background: transparent;
  height: 0%;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body #return-to-top svg {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 13px;
  height: auto;
}

html body #return-to-top svg path {
  fill: #ffffff;
}

html body #return-to-top:hover:before,
html body #return-to-top:focus:before,
html body #return-to-top:active:before {
  background: #f59524;
  height: 100%;
}

html body .side-menu {
  background-color: #ffffff;
  background-image: url(../images/logo-min-filled.svg);
  background-position: -50% 150%;
  background-size: 150%;
  background-repeat: no-repeat;
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  height: 100%;
  max-width: 380px;
  width: 100%;
  padding: 100px 50px;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition: -webkit-transform 0.55s
    cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86),
    -webkit-transform 0.55s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

html body .side-menu.show {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

html body .side-menu ul {
  list-style-type: none;
}

html body .side-menu ul li a {
  font-size: 20px;
  color: #333333;
  line-height: 50px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: none;
  display: block;
}

html body .side-menu ul li a:before {
  content: "";
  background-image: url(../images/logo-min.svg);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 15px;
  left: -20px;
  opacity: 0;
  bottom: 0;
  position: relative;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body .side-menu ul li a:hover,
html body .side-menu ul li a:focus,
html body .side-menu ul li a:active,
html body .side-menu ul li a.active {
  color: #f59524;
}

html body .side-menu ul li a:hover:before,
html body .side-menu ul li a:focus:before,
html body .side-menu ul li a:active:before,
html body .side-menu ul li a.active:before {
  opacity: 1;
  left: 0px;
}

html body .side-menu ul li a:hover svg,
html body .side-menu ul li a:focus svg,
html body .side-menu ul li a:active svg,
html body .side-menu ul li a.active svg {
  fill: #f59524;
}

html body .side-menu ul li a svg {
  width: 10px;
  height: auto;
  margin-left: 10px;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

html body .side-menu ul li.dropdown .dropdown-menu {
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  margin: 0;
  opacity: 0;
  padding: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  visibility: hidden;
}

html body .side-menu ul li.dropdown .dropdown-menu li a {
  font-size: 17px;
}

html body .side-menu ul li.dropdown .dropdown-menu.clicked {
  height: 100%;
  opacity: 1;
  visibility: visible;
  padding: 10px 20px;
  margin-bottom: 15px;
}

html body .side-menu .side-menu-contact {
  position: absolute;
  bottom: 50px;
}

html body .side-menu .side-menu-contact ul li {
  margin-bottom: 20px;
}

html body .side-menu .side-menu-contact ul li a:before {
  display: none;
}

html body .side-menu .side-menu-contact ul li a i {
  margin-right: 15px;
  float: left;
  width: 40px;
  height: 40px;
  border: 1px solid #0a679d;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  margin-top: 5px;
}

html body .side-menu .side-menu-contact ul li a i svg {
  fill: #0a679d;
  width: 15px;
  float: left;
  -webkit-transition: all 500ms;
  transition: all 500ms;
  margin: 0;
}

html body .overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

html body .overlay.show {
  opacity: 0.8;
  visibility: visible;
  background: #f59524;
}

html body #loader {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999999;
}

html body #loader #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
}

html body #loader #loading-center #loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 60px;
  width: 60px;
  margin-top: -30px;
  margin-left: -30px;
  -webkit-animation: loading-center-absolute 1s infinite;
  animation: loading-center-absolute 1s infinite;
}

html body #loader #loading-center #loading-center-absolute .object {
  width: 20px;
  height: 20px;
  background-color: #f59524;
  float: left;
  margin-right: 5px;
  margin-bottom: 5px;
}

html
  body
  #loader
  #loading-center
  #loading-center-absolute
  .object:nth-child(2n + 0) {
  margin-right: 0px;
}

html body #loader #loading-center #loading-center-absolute .object#object_one {
  -webkit-animation: object_one 1s infinite;
  animation: object_one 1s infinite;
}

html body #loader #loading-center #loading-center-absolute .object#object_two {
  -webkit-animation: object_two 1s infinite;
  animation: object_two 1s infinite;
}

html
  body
  #loader
  #loading-center
  #loading-center-absolute
  .object#object_three {
  -webkit-animation: object_three 1s infinite;
  animation: object_three 1s infinite;
}

@-webkit-keyframes loading-center-absolute {
  100% {
    -webkit-transform: rotate(395deg);
    transform: rotate(395deg);
  }
}

@keyframes loading-center-absolute {
  100% {
    -webkit-transform: rotate(395deg);
    transform: rotate(395deg);
  }
}

@-webkit-keyframes object_one {
  50% {
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}

@keyframes object_one {
  50% {
    -webkit-transform: translate(20px, 20px);
    transform: translate(20px, 20px);
  }
}

@-webkit-keyframes object_two {
  50% {
    -webkit-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}

@keyframes object_two {
  50% {
    -webkit-transform: translate(-20px, 20px);
    transform: translate(-20px, 20px);
  }
}

@-webkit-keyframes object_three {
  50% {
    -webkit-transform: translate(20px, -20px);
    transform: translate(20px, -20px);
  }
}

@keyframes object_three {
  50% {
    -webkit-transform: translate(20px, -20px);
    transform: translate(20px, -20px);
  }
}

@-webkit-keyframes object_four {
  50% {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}

@keyframes object_four {
  50% {
    -webkit-transform: translate(-20px, -20px);
    transform: translate(-20px, -20px);
  }
}

html body.home {
  background: none;
}

html body.home footer {
  margin-top: -70px;
  padding-top: 150px;
}
/*# sourceMappingURL=styles.css.map */
