@charset "utf-8";
/* Common CSS */
body {
  background: #fff;
  color: #615f74;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42857143;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
}
*, *:focus {
  outline: none;
}
a {
  color: #323232;
  transition: all ease .4s;
}
a:focus {
  outline: none;
  outline-offset: 0;
}
a:hover, a:focus {
  color: #01e9ff;
  text-decoration: none;
}
img {
  max-width: 100%;
  border: none;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.3;
}
button, button:focus {
  outline: none;
  outline-offset: 0;
}
::-webkit-input-placeholder {
  color: #8c8c8c !important;
  opacity: 1;
}
::-moz-placeholder {
  color: #8c8c8c !important;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #8c8c8c !important;
  opacity: 1;
}
:-moz-placeholder {
  color: #8c8c8c !important;
  opacity: 1;
}
/* Form CSS */
label {
  display: block;
  padding-bottom: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
}
.form-group {
  margin-bottom: 27px;
}
.form-group:after {
  display: block;
  clear: both;
  content: "";
}
.form-control {
  height: 60px;
  padding: 10px 24px;
  background: #f0f0f0;
  color: #000128;
  font-weight: 500;
  font-size: 18px;
  border-color: #f0f0f0;
  border-radius: 5px;
  appearance: none;
  transition: all ease .4s;
}
.form-control:focus {
  border-color: #f0f0f0;
  box-shadow: none;
}
textarea.form-control {
  height: 153px;
  resize: none;
}
input[type="submit"] {
  border: none;
}
select.form-control {
  padding: 10px 50px 10px 20px;
  background-image: url(../images/icon8@1x.png);
  background-position: 100% 50%;
  background-repeat: no-repeat;
  background-size: 37px auto;
}
select.form-control::-ms-expand {
  display: none;
}
/* Normal CSS */
.fa {
  vertical-align: middle;
}
.textright {
  text-align: right;
}
.turf-table-wrap {
  display: table;
  width: 100%;
  height: 100%;
}
.turf-align-wrap {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 25px;
  font-weight: 600;
  text-align: center;
  border-radius: 0px;
  transition: all ease .4s;
  font-size: 18px;
  text-transform: uppercase;
}
.btn-xl {
  padding: 23px 70px;
}
.btn-primary {
  background-color: #01e9ff;
  border-color: #01e9ff;
  color: #000128;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #010080;
  border-color: #010080;
}
/* Topbar CSS */
.topbar {
  background-color: rgba(0,1,40,1);
}
.header-left {
  font-size: 18px;
  color: #a3a3af;
}
.header-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: 9px;
}
.social a {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 3px;
}
.social a .fa {
  font-size: 17px;
}
.social a:hover {
  background-color: #01e9ff;
  border-color: #01e9ff;
  color: #000128;
}
/* Header CSS */
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
}
.header {
  background-color: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.whatsapp-box {
  display: flex;
  align-items: center;
}
.whatsapp-box .fa {
  font-size: 44px;
  color: #01e9ff;
  margin-right: 20px;
}
.whatsapp-box img {
  margin-right: 16px;
}
.whatsapp-box small {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  display: block;
  line-height: 15px;
}
.whatsapp-box a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.whatsapp-box a:hover {
  color: #01e9ff;
}
.toggle {
  display: none;
  vertical-align: middle;
  width: 25px;
  height: 14px;
}
.toggle span {
  display: block;
  width: 100%;
  height: 3px;
  margin-top: 6px;
  background: #000000;
  position: relative;
  -webkit-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
}
.toggle span:before, .toggle span:after {
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000000;
  content: "";
  -webkit-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
  z-index: 1;
}
.toggle span:after {
  top: 7px;
}
.toggle.active span {
  background: none;
}
.toggle.active span:before {
  top: -6px;
  -webkit-transform: translateY(7px) rotateZ(-45deg);
  -ms-transform: translateY(7px) rotateZ(-45deg);
  transform: translateY(7px) rotateZ(-45deg);
}
.toggle.active span:after {
  top: 6px;
  -webkit-transform: translateY(-5px) rotateZ(45deg);
  -ms-transform: translateY(-5px) rotateZ(45deg);
  transform: translateY(-5px) rotateZ(45deg);
}
/* Nav CSS */
.header {
	position: fixed;
	top: 45px;
	left: 0;
	z-index: 1;
	width: 100%;
	-webkit-transition: all ease .3s;
  -ms-transition: all ease .3s;
  transition: all ease .3s;
}
.header.active {
	top: 0;
	background: #000;
	border-color: #000;
}
.header .navbar {
  padding: 13px 0;
}
.header .navbar-nav {
  margin-right: 20px;
}
.header .navbar-nav .nav-item {
  padding: 0 17px;
}
.header .navbar-nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  padding: 10px;
}
.header .navbar-nav .nav-item .nav-link:hover {
  color: #01e9ff;
}
.navbar-collapse .social, .navbar-collapse a.btn {
	display: none;
}

/* Banner CSS */
.banner {
  background-color: #000124;
}
.banner .carousel-inner .carousel-item img {
  opacity: 0.55;
}
.banner .carousel-inner .carousel-caption {
  padding: 134px 0 0;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
}
.banner .carousel-inner .carousel-caption h1 {
  font-size: 101px;
  line-height: 85px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.banner .carousel-inner .carousel-caption p {
  font-size: 24px;
  line-height: 35px;
  margin-bottom: 50px; 
}
.banner .carousel .carousel-control-prev-icon, .banner .carousel .carousel-control-next-icon {
  background: transparent;
  width: auto;
  height: auto;
}
.banner .carousel .carousel-control-prev, .banner .carousel .carousel-control-next {
  top: auto;
  bottom: 28px;
  left: 28px;
}
.banner .carousel .carousel-control-next {
  right: auto;
  left: 115px;
}
.arrow-btn, .owl-prev, .owl-next {
  height: 77px;
  width: 77px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.owl-carousel .owl-nav {
  text-align: center;
  padding: 10px 0;
}
.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next {
  background-color: rgba(242,242,242,0.9);
  font-size: 0;
  margin: 5px;
  position: relative;
}
.owl-carousel .owl-nav button.owl-prev:after, .owl-carousel .owl-nav button.owl-next:after {
  content: '';
  background-image: url(../images/left-arrow.png);
  background-repeat: no-repeat;
  width: 30px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.owl-carousel .owl-nav button.owl-next:after {
  background-image: url(../images/right-arrow.png);
  background-repeat: no-repeat;
}
.arrow-btn:hover, .owl-carousel .owl-nav button.owl-prev:hover, .owl-carousel .owl-nav button.owl-next:hover {
  background-color: #01e9ff;
  opacity: 1;
}
/* Mid Wrap CSS */
.about-section {
  position: relative;
  z-index: 1;
  padding-top: 124px;
}
.about-left {
  position: relative;
}
.about-section:after {
  content: '';
  background-color: #01e9ff;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  bottom: 0;
  left: -285px;
  width: 50%;
}
.about-overlay {
  position: absolute;
  bottom: 39px;
  right: 0;
  border: 15px solid #fff;
}
.sub-title {
  font-size: 18px;
  font-weight: 600;
  color: #615f74;
  text-transform: uppercase;
  display: block;
}
.heading-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
  color: #000128;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.about-right p {
  font-size: 18px;
  line-height: 27px;
}
.about-inner {
  display: flex;
  flex-wrap: wrap;
  padding-top: 16px;
  margin-bottom: 25px;
}
.about-inner p {
  width: calc(100% - 68px);
  padding-left: 25px;
}
.service-section {
  background-image: url(../images/service-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 70px 0 180px;
}
.service-section:after {
  content: '';
  background-color: rgba(1,0,128,0.8);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.service-section p {
  line-height: 27px;
  font-size: 18px;
  color: #fff;
}
.service-section h3 {
  line-height: 60px;
  font-size: 45px;
  color: #fff;
}
.service-section .sub-title {
  color: #fff;
}
.has-service {
  border: 2px solid #01e9ff;
  padding: 50px 25px;
  margin-left: 32px;
  display: flex;
}
.has-service span {
  font-weight: 600;
  font-size: 86px;
  color: #01e9ff;
  line-height: 56px;
  margin-right: 3px;
}
.has-servright {
  width: calc(100% - 75px);
  padding-left: 2px;
}
.has-servright small {
  display: block;
  color: #fff;
  font-weight: 600;
  line-height: 16px;
  font-size: 14px;
}
.has-servright strong {
  font-weight: 600;
  font-size: 45px;
  color: #01e9ff;
  line-height: 50px;
  display: block;
}
.card {
  position: relative;
  border-radius: 0;
  display: block;
}
.card-overlay {
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(1,233,255,0.8);
  display: inline-flex;
  align-items: flex-end;
  opacity: 0;
  transition: all ease .4s;
}
.card:hover .card-overlay {
  top: 0;
  opacity: 1
}
.add-btn {
  width: 77px;
  height: 77px;
  background-color: #010080;
  display: inline-block;
  font-size: 82px;
  color: #fff;
  font-weight: 100;
  line-height: 60px;
  text-align: center;
}
.add-btn:hover {
  background-color: #fff;
  color: #010080;
}
.overlay-footer {
  display: table;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.overlay-footer-2 { 
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0; right: 0;
}
.overlay-footer h5 {
  font-size: 25px;
  color: #000128;
  text-transform: uppercase;
  padding: 20px 10px 10px 40px;
  display: inline-block;
}
.overlay-footer a { float: right; }
.card-animation {
  overflow: hidden;
}
.card-animation img {
  transform: scale(1);
  transition: all ease .4s;
  width: 100%;
}
.card-animation:hover img {
  transform: scale(1.1);
}
.service-items {
  margin-top: -120px;
}
.client-section {
  padding: 70px 0;
}
.client-section .item {
  padding: 10px;
}
.client-logo {
  border: 1px solid #f3f3f3;
  box-shadow: 0 3px 6px rgba(25,25,25,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
  padding: 15px;
  width: 100%;
}
.client-logo:hover {
  background-color: #f0f0f0;
}
.contact-form {
  padding-bottom: 85px; 
}
.contact-form h2 {
  font-size: 50px;
  color: #000128;
  margin-bottom: 25px;
}
.contact-info {
  box-shadow: 0 12px 29px rgba(5,8,0,0.1);
  padding: 43px 62px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.avatar-box {
  width: 64px;
  height: 64px;
  background-color: #010080;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.info-section {
  margin-bottom: -90px;
}
.info-box {
  display: flex;
  flex-wrap: wrap;
}
.info-right {
  width: calc(100% - 64px);
  padding-left: 18px;
  padding-top: 8px;
}
.info-right small {
  display: block;
  font-size: 18px;
  color: #626073;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 18px;
}
.info-title {
  font-size: 28px;
  font-weight: 600;
  color: #000128;
  display: block;
  line-height: 38px;
}
.info-title:hover {
  color: #000128;
  text-decoration: underline;
}
.map-section {
  height: 365px;
}
/* Footer CSS */
footer {
  background: #000128;
  color: #fff;
  font-size: 16px;
  padding: 50px 0;
}
footer h6 {
  font-size: 22px;
  color: #fff;
  padding-bottom: 0;
}
footer p {
  font-size: 18px;
  color: #b3b2bd;
}
footer .social {
  margin-right: 0;
  justify-content: center;
}
footer .social a {
  width: 56px;
  height: 56px;
  margin: 7px;
}
footer .social a .fa {
  font-size: 27px;
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.7);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 16px;
  top: 13px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}
.mfp-title, .mfp-counter {
  display: none;
}


.item-texto{
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  color: black;
  width: 100%;
  height: 100%;
  text-align: center;
}