@font-face {
  font-family: 'Gotham Medium';
  src: url('../font/Gotham-Medium.ttf') format('truetype'),
  url('../font/Gotham-Medium.woff') format('woff'),
  url('../font/Gotham-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #333333;
  font-family: 'Poppins', sans-serif;
}

a {
  color: #007dc5;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #007dc5;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* WhatsApp button */

.contact_wsp {
  position: fixed;
  display: none;
  background: #007dc5;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 125px;
  transition: background 0.5s;
  z-index: 99;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.contact_wsp i {
  padding-top: 12px;
  color: #fff;
  font-size: 1.3em;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #007dc5;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 99;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}
.title-section{
  margin-top: 3px;
  margin-bottom: 3px;
  border-top: 2px solid #ff8c00;
  border-bottom: 2px solid #ff8c00;
  text-align: center;
  font-weight: bold;
  font-size: 1.2em;
  width: 85%;
  padding: 15px 0px;
  color: #0078bd;
}

.section-title{
  font-weight: bold;
  font-size: 1.3em;
  margin: 8px 0px;
}
/* RRSS button */

.action {
	position: fixed;
  display: none;
  bottom: 70px;
  right: 15px;
  width: 44px;
  height: 44px;
	background: #ff8c00;
	border-radius: 50%;
	cursor: pointer;
  z-index: 99;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.action span {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 2em;
  font-weight: 600;
  transition: 0.4s;
}

.action.active span {
	transform: rotate(135deg);
}

.action ul {
	position: absolute;
	bottom: 55px;
	background: #fff;
	min-width: 260px;
	padding: 20px;
	border-radius: 20px;
	opacity: 0;
	visibility: hidden;
}

.action.active ul {
	bottom: 55px;
	opacity: 1;
	visibility: visible;
  right: 0;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.action ul li {
  list-style: none;
  display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 10px 0;
}

.action ul li:hover {
	color: #ff8c00;
}

.action ul li:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.action ul li a {

}

.action ul li a:hover {
  color: #ff8c00;
}

.action ul li a i {
	margin-right: 10px;
	opacity: 1;
	transform: scale(0.8);
  font-size: 1.5em;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #f7941d;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  z-index: -1;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

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

#header.header-scrolled {
  background: #007dc5;
  padding: 20px 0;
  border-bottom: 2px solid #ff8c00;
  height: 82px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
  margin: -10px;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #007dc5;
}

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

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
  margin-top: 150px;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff8c00, #f15a22);
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  font-weight: bold;
}

#intro .btn-get-started:hover {
  background: linear-gradient(90deg, #f15a22, #ff8c00);
  color: #fff;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

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

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

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

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

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

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

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

/* Nav Menu Arrows */

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

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

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

/* Nav Meu Container */

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

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  outline: none;
  transition: 0.3s;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #ff9c23;
}

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

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

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

.nav-menu ul li:hover > a {
  color: #f7941d;
}

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

/* Mobile Nav Toggle */

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

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

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

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

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

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

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

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

#mobile-nav ul li.menu-active a {
  color: #007dc5;
}

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

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

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #007dc5;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

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

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

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 32px;
  color: #333333;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #f7941d;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #f7941d;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/* Featured Services Section
--------------------------------*/

#featured-services {
  background: linear-gradient(90deg, #007dc5, #0066b3);
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background: #ff8c00;
}

#featured-services i {
  color: #fff;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #fff;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/

#about {
  background: url("") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

#about .content p:last-child {
  margin-bottom: 0;
}

#about .video-box {
  border-radius: 10px;
  position: relative;
}

#about .video-box img {
  border-radius: 10px;
  /*padding-top: 15px;
  padding-bottom: 15px;*/
  padding: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
}

#about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#007dc5 50%, rgba(0, 102, 179, 0.6) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

#about .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#about .play-btn::before {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(104, 164, 196, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

#about .play-btn:hover::after {
  border-left: 15px solid #007dc5;
  transform: scale(20);
}

#about .play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* Why Us Section
--------------------------------*/

#why-us {
  padding: 0 0 60px 0;
}
#why-us .container {
  display: flex;
  justify-content: center;
}

#why-us .blog-card {
  display: inline;
  margin: 30px;
  max-width: 350px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
  line-height: 1.4;
  font-family: sans-serif;
  overflow: hidden;
  z-index: 0;
  border-bottom: 3px solid #f7941d;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

#why-us .blog-card .meta {
  position: relative;
  z-index: 0;
  height: 200px;
}

#why-us .blog-card .meta .photo {
  width: -moz-available;
  width: -webkit-fill-available;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: transform .3s;
}


#why-us .blog-card:hover .meta .photo {
  transform: scale(1.2) /*rotate(3deg)*/;
}


#why-us .blog-card .description {
  padding: 1rem;
  background: #fff;
  position: relative;
  z-index: 1;
}

#why-us .blog-card .description h1, .blog-card .description h2 {
  font-family: Poppins, sans-serif;
}

#why-us .blog-card .description h1 {
  line-height: 1;
  margin: 0;
  font-size: 1.7rem;
}

#why-us .blog-card .description h2 {
  font-size: 1rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #a2a2a2;
  margin-top: 5px;
}

#why-us .blog-card .description p {
  position: relative;
  margin: 1rem 0 0;
}

#why-us .blog-card .description p:first-of-type {
  margin-top: 1.25rem;
}

#why-us .blog-card .description p:first-of-type:before {
  content: "";
  position: absolute;
  height: 3px;
  background: #ff8c00;
  width: 45px;
  top: -0.75rem;
}

@media (max-width: 1200px) {
  #why-us .container {
    flex-wrap: wrap;
  }
}

@media (max-width: 992px) {


  #why-us .blog-card .description:before {
    transform: skewX(-3deg);
    content: "";
    background: #fff;
    width: 30px;
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
}

/* Services Section
--------------------------------*/

#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}




#services .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

/* CARD STYLE */
#services .row {
  position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
  margin-right: 0px;
  margin-left: 0px;
}

#services .card_service {
  box-sizing: initial;
  position: relative;
	max-width: 300px;
	max-height: 215px;
	background: #fff;
	margin: 50px 20px;
	padding: 20px 15px;
	display: flex;
	flex-direction: column;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
  border-bottom: 3px solid #f7941d;
	transition: max-height 0.3s ease-in-out;
  border-radius: 20px;
}

#services .card_service:hover {
  max-height: 500px;
}

#services .card_service .card_img {
  position: relative;
	max-width: 260px;
	height: 260px;
	top: -60px;
	left: 20px;
	z-index: 1;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
}

@media (max-width: 360px) {
  #services .card_service .card_img {
    left: 0;
  }
}

#services .card_service .card_img img {
  border-radius: 20px;
  max-width: 100%;
}

#services .card_service .card_content {
  position: relative;
	margin-top: -140px;
	padding: 10px 15px;
	color: #333333;
	visibility: hidden;
	opacity: 0;
	transition: 0.3s ease-in-out;
}

#services .card_service:hover .card_content {
  visibility: visible;
	opacity: 1;
	margin-top: -40px;
}

#services .card_service .card_content h2 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}

#services .card_service .card_content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
}

/* END CARD STYLE */

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #007dc5;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #333333;
}

#services .box:hover .title a {
  color: #007dc5;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
  background: linear-gradient(rgba(50,50,50,0.9), rgba(51,51,51,0.9)),
  url(../img/why/whytrust.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  margin: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s !important;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: linear-gradient(90deg, #ff8c00, #f15a22);
  border: 2px solid transparent;
}

#call-to-tracking {
  background: linear-gradient(rgba(50,50,50,0.9), rgba(51,51,51,0.9)),
  url(../img/why/whytrust.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
  margin: 60px 0;
}

#call-to-tracking h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-tracking p {
  color: #fff;
}

#call-to-tracking .cta-btn {
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s !important;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-tracking .cta-btn:hover {
  background: linear-gradient(90deg, #ff8c00, #f15a22);
  border: 2px solid transparent;
}

#call-to-tracking form {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s !important;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-tracking form label {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  text-transform:uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s !important;
  margin-top: 2px;
  color: #fff;
}
#call-to-tracking form input {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  transition: 0.5s !important;
  margin-top: 2px;
  color: #007dc5;
}

#call-to-tracking form button {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform:uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 17px 28px;
  transition: 0.5s !important;
  margin-top: 2px;
  background: #007dc5;
  border :1px solid #007dc5;
  color:white;
  cursor:pointer;
}
#call-to-tracking form button:hover {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform:uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 17px 28px;
  transition: 0.5s !important;
  margin-top: 2px;
  background: rgb(255, 140, 0);
  border :1px solid rgb(255, 149, 0);
  color:white;
  cursor:pointer;
}
/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
}

#clients img {
  opacity: 0.5;
  transition: 0.3s;
  padding: 25px 0;
  width: fit-content !important;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #0066b3;
}


/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .info {
  border-radius: 20px;
  border-top: 3px solid #f7941d;
  border-bottom: 3px solid #f7941d;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
  width: 100%;

}

#contact .info i {
  font-size: 20px;
  color: #ff8c00;
  float: left;
  width: 44px;
  height: 44px;
  background: #f6f2ea;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

#contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

#contact .info p, address {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #333333;
}

#contact .info .email:hover i, #contact .info .address:hover i, #contact .info .phone:hover i {
    color: #fff;
    background: #ff8c00;
}

#contact .info .social-links {
  padding-left: 60px;
}

#contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

#contact .info .social-links a:hover {
  background: #ff8c00;
  color: #fff;
}

#contact .info .email:hover i, #contact .info .address:hover i, #contact .info .phone:hover i {
  background: #ff8c00;
  color: #fff;
}

#contact .info .email a, #contact .info .address a, #contact .info .phone a {
  color: #333333;
}

#contact .info .email:hover a, #contact .info .address:hover a, #contact .info .phone:hover a {
  color: #007dc5;
}

#contact .php-email-form {
  width: 100%;
  border-top: 3px solid #f7941d;
  border-bottom: 3px solid #f7941d;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: #fff;
}

#contact .php-email-form .form-group {
  padding-bottom: 8px;
}

#contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

#contact .php-email-form input, #contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

#contact .php-email-form input:focus, #contact .php-email-form textarea:focus {
  border-color: #007dc5;
}

#contact .php-email-form input {
  height: 44px;
}

#contact .php-email-form textarea {
  padding: 10px 12px;
}

#contact .php-email-form button[type="submit"] {
  background: linear-gradient(90deg, #ff8c00, #f15a22);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  cursor: pointer;
}

#contact .php-email-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #f15a22, #ff8c00);;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #333333;
  font-size: 14px;
}

#footer .footer-top {
  background: #fff;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #0066b3;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  color: #333333;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #007dc5;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff8c00;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #333333;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #fff;
}

#footer .footer-top h4::after {
  background: #0066b3;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #333333;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #eee;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #333333;
}

#footer .footer-top .footer-links ul a:hover {
  color: #0066b3;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact a {
  color: #333333;
}

#footer .footer-top .footer-contact a:hover {
  color: #0066b3;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #18d26e;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #13a456;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #333333;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: 65%;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }

  #intro h2 {
    font-size: 28px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}

.button-descarga {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform:uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 17px 28px;
  transition: 0.5s !important;
  margin-top: 2px;
  background: #007dc5;
  border :1px solid #007dc5;
  color:white;
  cursor:pointer;
}
.button-descarga:hover {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  font-size: 14px;
  text-transform:uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 17px 28px;
  transition: 0.5s !important;
  margin-top: 2px;
  background: rgb(255, 140, 0);
  border :1px solid rgb(255, 149, 0);
  color:white;
  cursor:pointer;
}

#formQueja{
  font-size: 12px;
}
#formQueja label{
  font-weight: bold;
}
#formQueja .form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 .2rem #007dc5;
}
#formQueja .form-control {
  font-size: 13.5px;
}
#formQueja .form-control:focus {
  font-size: 13.5px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
}

.tabs>label {
  order: 1;
  display: block;
  padding: 1rem 2rem;
  margin-right: 0.2rem;
  background: #1389ce;
  border-bottom: 2px solid #f7941d;
  text-transform: uppercase;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: background 0.5s ease;
}

.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding: 1rem;
  font-size: 0.78rem;
  background: #fff;
}

.tabs input[type=radio] {
  display: none;
}

.tabs input[type=radio]:checked + label {
  background: #00507e;
  border-bottom: 2px solid #00507e;
}

.tabs input[type=radio]:checked + label + .tab {
  display: block;
}

@media (max-width: 45em) {
  .tabs .tab,
.tabs label {
    order: initial;
  }

  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
  }
}

.tab p{
  margin-bottom: 0.75rem;
}

.tab b{
  font-weight: 800;
}

.title-estandar h4{
  text-align: left;
  font-weight: 800;
  border-bottom: 2px solid #f7941d;
}
.thead-estandar{
  background: #1389ce;
  color: white;
  border-bottom: 2px solid #00507e;
}

.section-header h5 {
  font-size: 18px;
  color: #333333;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h5::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #f7941d;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h5::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #f7941d;
  bottom: 0;
  left: calc(50% - 20px);
}

.tracking-information{
  font-size: 0.88rem;
}
.tracking-information label{
  font-weight: bold;
  margin-bottom: 0;
}
.tracking-information input{
  font-size: 0.8rem;
  background: white !important;
  border: 2px solid rgb(0, 125, 197);
}

.tracking-information .form-group {
  margin-bottom: 0.75rem;
}

.tracking-information input:focus{
  font-weight: bold;
}