@import url("https://fonts.googleapis.com/css?family=Roboto");
@font-face {
  font-family: Century;
  source: url("../fonts/century.ttf");
}
/********************************************************************************
	MAIN LAYOUT
/********************************************************************************/
html,
body {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  font-family: 'Roboto';
  font-size: 14px;
}
#wrapper {
  margin: 0;
  padding: 0;
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  height: 100vh;
}
#eucc {
  position: fixed;
  top: 0;
  left: 0;
  height: 160px;
  width: 100%;
  margin: 0;
  z-index: 50;
  padding: 20px 20px;
  background: rgba(255,255,255,0.75);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#eucc.hidden {
  margin-top: -160px;
}
#eucc .title {
  color: #004ba0;
  font-size: 1.3rem;
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-box;
  display: inline-flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-bottom: 15px;
}
#eucc .title .icon {
  margin-right: 10px;
}
#eucc #accepts {
  margin-top: 15px;
}
#eucc #dismiss {
  float: right;
  border: 1px solid #004ba0;
}
#loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#loader.hidden {
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
#loader div {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  self-align: center;
}
.bars {
  z-index: 2;
  position: fixed;
  height: 50px;
  width: 50px;
  top: 0;
  left: 0;
  color: #fefefe;
  font-size: 1.5em;
  background: #004ba0;
  border-radius: 0 0 50px 0;
  padding: 3px 8px;
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
}
.bars:hover {
  cursor: pointer;
}
.bars.hidden {
  display: none;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.bars.rotated {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(-720deg);
  -moz-transform: rotate(-720deg);
  -o-transform: rotate(-720deg);
  -ms-transform: rotate(-720deg);
  transform: rotate(-720deg);
}
#menu-mobile {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #fefefe;
  background: #004ba0;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
#menu-mobile.hidden {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.sidebar {
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -moz-box-pack: end;
  -o-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  color: #fefefe;
  background: #004ba0;
}
#sidebar-left {
  padding: 0 !important;
  -webkit-transition: all ease-in-out 0.25s;
  -moz-transition: all ease-in-out 0.25s;
  -o-transition: all ease-in-out 0.25s;
  -ms-transition: all ease-in-out 0.25s;
  transition: all ease-in-out 0.25s;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
#sidebar-left.hidden {
  margin-left: -16.6667%;
}
#brand {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
#brand #logo {
  display: block;
  margin: 30px 0;
}
#brand #logo img {
  height: 100px;
  width: 100px;
}
#brand #identity {
  display: block;
}
#brand #identity #company {
  display: block;
  color: #fefefe;
  font-family: 'Century';
  font-size: 2.75em;
  font-weight: bold;
  font-variant: small-caps;
  text-transform: capitalize;
}
#brand #identity #slogan {
  color: #63a4ff;
  font-size: 1.25em;
  font-weight: 100;
}
#navigation {
  margin-bottom: 50px;
  padding-left: 0;
  list-style: none;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
#navigation li {
  border-top: 1px solid #1976d2;
}
#navigation li:last-child {
  border-bottom: 1px solid #1976d2;
}
#navigation li a {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 40px;
  padding-left: 20px;
  color: #fefefe;
  font-size: 1.2em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#navigation li a:hover {
  background: #1976d2;
}
#ncage img {
  height: 110px;
}
#links {
  margin: 30px 0;
  padding-left: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
}
#links li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  margin-right: 10px;
}
#links li:last-child {
  margin-right: 0;
}
#links li a {
  color: #63a4ff;
  width: auto;
}
#language {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
  padding-left: 0;
  text-align: center;
}
#language li {
  margin-right: 20px;
}
#language li:last-child {
  margin-right: 0;
}
#language .flag {
  height: auto;
  max-width: 25px;
}
#ng-content {
  height: 100%;
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 !important;
}
#ng-content .block {
  padding: 30px 15px;
}
#ng-content .page {
  padding: 60px 0px 40px 0px;
}
#error-page .error-icon {
  color: #004ba0;
  font-size: 3em;
  text-align: center;
  margin-bottom: 100px;
}
#error-page .title {
  color: #004ba0;
  padding-bottom: 10px;
  border-bottom: 2px solid #004ba0;
}
#error-page .title small {
  color: #63a4ff;
}
#error-page .text {
  margin: 40px 0;
  min-height: 150px;
  font-size: 1.15rem;
  line-height: 3rem;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#error-page .footer {
  text-align: right;
  border-top: 2px solid #004ba0;
}
section {
  margin: 0;
  padding: 0;
  width: 100%;
}
#footer {
  padding-top: 0;
  color: #fefefe;
  background: #004ba0;
}
#footer #related-links {
  background: #f6f6f6;
}
#footer #related-links #nav-bottom {
  margin: 1rem 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  list-style: none;
}
#footer #related-links #nav-bottom .nav-item {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -o-box-flex: 1;
  box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}
#footer #related-links #nav-bottom .nav-item a {
  color: #004ba0;
}
#footer #related-links #nav-bottom .nav-item a:hover {
  color: #1976d2;
}
#footer #dock {
  padding: 40px 0;
}
#footer #dock address .company {
  padding-bottom: 2px;
  font-size: 1.35em;
  font-family: Century;
  font-variant: small-caps;
  font-weight: bold !important;
  text-transform: capitalize;
  border-bottom: 1px solid #fefefe;
}
#footer #dock address p {
  margin-top: 5px;
}
#footer #closure {
  border-top: 1px solid #1976d2;
}
#footer #closure .closure-text {
  margin: 1rem 0;
  text-align: center;
}
/********************************************************************************
	TYPO
/********************************************************************************/
hr {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border-color: #004ba0;
}
a:link {
  outline: 0 !important;
  text-decoration: none !important;
}
button {
  outline: 0 !important;
}
p {
  text-align: justify;
}
.reverse {
  unicode-bidi: bidi-override;
  direction: rtl;
}
.last-review {
  text-align: right !important;
  font-style: italic;
}
cite {
  display: block;
  margin: 20px 0;
  padding: 30px;
  padding-right: 60px;
  background: #f6f6f6;
}
cite h6 {
  margin-bottom: 10px;
  color: #004ba0;
  font-weight: bold;
}
cite p {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 4px solid #004ba0;
}
.heading {
  margin: 30px 0;
  padding: 10px 20px;
  color: #004ba0;
  background: #f6f6f6;
  border-left: 10px solid #004ba0;
  -webkit-transform: skewX(-15deg);
  -moz-transform: skewX(-15deg);
  -o-transform: skewX(-15deg);
  -ms-transform: skewX(-15deg);
  transform: skewX(-15deg);
}
.company {
  font-weight: bold;
  text-transform: uppercase;
}
.image-gallery {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -o-box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.image-gallery a {
  margin-right: 10px;
  margin-bottom: 15px;
  padding: 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  background: #f6f6f6;
  border: 1px solid #004ba0;
  border-radius: 3px;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.image-gallery a:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-box-shadow: 0 27px 24px 0 rgba(0,0,0,0.2), 0 40px 77px 0 rgba(0,0,0,0.19);
  box-shadow: 0 27px 24px 0 rgba(0,0,0,0.2), 0 40px 77px 0 rgba(0,0,0,0.19);
}
.image-gallery a img {
  height: auto;
  width: auto;
  max-height: 150px;
  max-width: 150px;
}
/********************************************************************************
	CUSTOMIZED BOOTSTRAP & ANGULAR DIRECTIVES
/********************************************************************************/
.card-body {
  padding: 1.25rem;
}
.heading-comp {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 25px 0;
}
.heading-comp .title {
  width: 100%;
  display: table !important;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0.2rem;
}
.heading-comp .title span {
  width: 33.3%;
  display: table-cell !important;
}
.heading-comp .title span.title-text {
  width: auto;
}
.heading-comp .title span.hr-l hr,
.heading-comp .title span.hr-r hr {
  margin: 0 0 10px 0;
  border-top: 2px solid #004ba0;
}
.heading-comp small {
  color: #313942;
  font-style: italic;
  font-size: 0.85rem;
}
.carousel {
  padding: 10px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.carousel .owl-stage {
  padding-top: 30px;
}
.carousel .owl-stage .owl-item {
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.carousel .owl-stage .owl-item img {
  margin: auto;
  width: auto;
}
.carousel .owl-stage .owl-item:hover {
  cursor: wait;
}
.carousel .owl-stage .owl-item .caption {
  margin-top: 20px;
  color: #004ba0;
}
.carousel .owl-nav button {
  color: #004ba0 !important;
  font-size: 2rem !important;
  font-weight: bold !important;
}
.carousel .owl-nav button span {
  padding: 0 20px;
}
.carousel .owl-nav button:hover {
  color: #63a4ff !important;
  background: none !important;
}
.carousel .owl-dots .owl-dot span {
  background: #63a4ff;
}
.carousel .owl-dots .owl-dot.active span,
.carousel .owl-dots .owl-dot:hover span {
  background: #004ba0;
}
/********************************************************************************
	ICONS
/********************************************************************************/
.icon {
  margin: auto;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
}
.icon.block {
  display: block;
}
.icon.lg {
  width: 90px;
  height: 90px;
}
.icon.md {
  width: 75px;
  height: 75px;
}
.icon.sm {
  width: 50px;
  height: 50px;
}
.icon.xs {
  width: 25px;
  height: 25px;
}
.icon.xxs {
  width: 20px;
  height: 20px;
}
.icon.box {
  background-image: url("../img/icons/box.png");
}
.icon.conveyor {
  background-image: url("../img/icons/conveyor.png");
}
.icon.truck {
  background-image: url("../img/icons/delivery-truck.png");
}
.icon.truck-send {
  background-image: url("../img/icons/delivery-truck-send.png");
}
.icon.maintenance {
  background-image: url("../img/icons/maintenance.png");
}
.icon.order {
  background-image: url("../img/icons/order.png");
}
.icon.ship {
  background-image: url("../img/icons/ship.png");
}
.icon.tracking {
  background-image: url("../img/icons/tracking.png");
}
.icon.trolley {
  background-image: url("../img/icons/trolley.png");
}
.icon.worldwide {
  background-image: url("../img/icons/worlwide.png");
}
.icon.location {
  background-image: url("../img/icons/location.png");
}
.icon.clock {
  background-image: url("../img/icons/clock.png");
}
.icon.phone {
  background-image: url("../img/icons/phone.png");
}
.icon.phone-bold {
  background-image: url("../img/icons/phone_bold.png");
}
.icon.fax {
  background-image: url("../img/icons/fax.png");
}
.icon.fax-bold {
  background-image: url("../img/icons/fax_bold.png");
}
.icon.mail {
  background-image: url("../img/icons/mail.png");
}
.icon.email {
  background-image: url("../img/icons/email.png");
}
.icon.email-bold {
  background-image: url("../img/icons/email_bold.png");
}
.icon.info {
  background-image: url("../img/icons/info.png");
}
.circle {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 40px;
  display: block;
  color: #fefefe;
  background: #004ba0;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  border-radius: 50%;
}
/********************************************************************************
	SITE PAGES
/********************************************************************************/
.image-top-page {
  height: 35vh;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
#home #welcome {
  height: 40vh;
  background-image: url("../img/intro_bkg.png");
  background-position: bottom center;
}
#home .icon {
  margin-bottom: 40px;
}
#home .card {
  text-align: center;
  border: none !important;
  border-color: #004ba0;
}
#home .card-title {
  margin-bottom: 20px;
  text-align: center;
  color: #004ba0;
}
#home .card-text {
  text-align: left;
}
#company .image-top-page {
  background-image: url("../img/banners/suyfa_defence_signboard.png");
  background-position-y: 32% !important;
}
#services .image-top-page {
  background-image: url("../img/banners/servicios_armada.jpg");
}
#services #services-nav {
  margin-bottom: 30px;
}
#services #services-nav a {
  color: #004ba0;
  margin: 0 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  text-align: left;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #004ba0;
  border-radius: 4px;
}
#services #services-nav a .icon {
  margin: 10px 30px 10px 0px;
}
#services #services-nav a .text {
  font-size: 1.5em;
}
#services #services-nav a:hover,
#services #services-nav a.active {
  background: #d7e8ff;
}
#services #services-nav a:hover {
  cursor: pointer;
}
#services .service-image {
  max-height: 300px;
}
#quality .image-top-page {
  background-image: url("../img/banners/quality_banner.jpg");
}
#quality #quality-text .col {
  padding: 0 20px;
}
#quality #quality-policies .col {
  padding-top: 20px;
  padding-bottom: 40px;
}
#quality #quality-badges {
  margin-top: 50px !important;
}
#sustainability .image-top-page {
  background-image: url("../img/banners/leaves_1600_400.jpg");
}
#sustainability .cf-image {
  max-height: 400px;
}
#sustainability cite {
  background: none;
}
#sustainability cite p {
  color: #004ba0;
  font-size: 1.75em;
  text-align: center;
  border: none;
}
#sustainability #roadmap .title {
  font-size: 1.2em;
  color: #004ba0;
  font-weight: bold;
}
#warehouse #gallery {
  background-image: url("../img/slides/suyfa_defence_warehouse_1.jpg");
}
#contact .image-top-page {
  height: 50vh;
}
#contact .image-top-page iframe {
  position: relative;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
#contact #location,
#contact #timetable,
#contact #contacts {
  margin-top: 50px;
}
#contact #location span.icon,
#contact #timetable span.icon,
#contact #contacts span.icon {
  margin-bottom: 30px;
}
#contact .content {
  font-size: 1.2em;
}
#contact .content .title {
  color: #004ba0;
  font-weight: bold;
}
#contact #contacts ul {
  list-style: none;
  padding-left: 0;
}
#contact #contacts ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
#contact #contacts ul li .contact-item {
  display: inline-block;
  font-weight: bold;
  margin-right: 10%;
}
#contact #contacts .table th,
#contact #contacts .table td {
  border: none !important;
  border-color: transparent;
  vertical-align: middle;
}
#contact #contacts .table i {
  margin-right: 8px;
}
/*
	BOOTSTRAP OVERRIDE
*/
.jumbotron {
  background: transparent !important;
  background-color: transparent !important;
}
