

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Panton-Regular", sans-serif;
  color: #1e8898;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Panton-BlackCaps", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f5d62c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #33eb92;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  
  transition: all 0.5s;
  z-index: 997;
  padding: 10px 5%!important;
}
#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  background: #fff;
}
#header .logo {
    width: 70px;
}
}
#header .logo a {
  color: #5f687b;
}
#header .logo img {
  max-height: 56px;
  width:56px;
}
@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #6a7489;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #16df7e;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 4px;
  line-height: 1;
  color: #5f687b;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #cdd1d9;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #206bfb;
  color: #fff;
  border-color: #206bfb;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #16df7e;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #5f687b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(73, 80, 94, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #5f687b;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #16df7e;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 10px 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #16df7e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #fff;
  padding-top: 0px;
  text-align: center;
  perspective: 1px;
  border-radius: 0 0 60px 60px;
}

#hero h1 {
  margin: 0;
  font-size: 4vw;
  line-height: 56px;
  color: #feca24;
}
#hero h2 {
  color: #1e8898;
  margin: 0 0 -5px 0;
  font-size: 4vw;
}
#hero .btn-get-started {
    color: #1e8898;
    font-size: 17px;
    border: 2px solid #feca24;
    border-radius: 6px;
	width: 170px;
	margin: auto;
}
#hero .btn-get-started:hover {
  box-shadow: 0 8px 28px rgba(32, 107, 251, 0.45);
}
#hero .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #5f687b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero .btn-watch-video i {
  color: #949cac;
  font-size: 32px;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover i {
  color: #16df7e;
}
#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  /*#hero {
    height: 110vh;
  }*/
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  /*#hero {
    height: 110vh;
  }*/
  #hero h1 {
	font-size: 4vw;
    line-height: 4.9vw;
  }
  #hero h2 {
	font-size: 4vw;
    line-height: 3.9vw;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero h1 {
  font-size: 8vw;
  line-height: 7.9vw;
  margin: 0 33px;
  }
  #hero h2 {
  font-size: 8vw;
  line-height: 11.9vw;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Hero Section - webportfolio
--------------------------------------------------------------*/
#hero-wp {
  width: 100%;
  height: 60vh;
  background: #fff;
  padding-top: 0px;
  text-align: center;
  perspective: 1px;
  border-radius: 0 0 60px 60px;
  margin-bottom: 150px;
}

#hero-wp h1 {
  margin: 0;
  font-size: 4vw;
  line-height: 56px;
  color: #feca24;
}
#hero-wp h2 {
  color: #1e8898;
  margin: 0 0 -5px 0;
  font-size: 4vw;
}
#hero-wp .btn-get-started {
    color: #1e8898;
    font-size: 14px;
    border: 2px solid #feca24;
    border-radius: 6px;
	width: 150px;
	margin: auto;
}
#hero-wp .btn-get-started:hover {
  box-shadow: 0 8px 28px rgba(32, 107, 251, 0.45);
}
#hero-wp .btn-watch-video {
  font-size: 16px;
  display: inline-block;
  transition: 0.5s;
  margin-left: 25px;
  color: #5f687b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
#hero-wp .btn-watch-video i {
  color: #949cac;
  font-size: 32px;
  line-height: 0;
  margin-right: 8px;
}
#hero-wp .btn-watch-video:hover i {
  color: #16df7e;
}
#hero-wp .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
@media (max-width: 991px) {
  /*#hero {
    height: 110vh;
  }*/
  #hero-wp .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero-wp .hero-img {
    text-align: center;
  }
  #hero-wp .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  /*#hero {
    height: 110vh;
  }*/
  #hero-wp h1 {
	font-size: 4vw;
    line-height: 4.9vw;
  }
  #hero-wp h2 {
	font-size: 4vw;
    line-height: 3.9vw;
  }
  #hero-wp .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero-wp .hero-img img {
    width: 80%;
  }
  #hero-wp h1 {
  font-size: 8vw;
  line-height: 7.9vw;
  margin: 0 33px;
  }
  #hero-wp h2 {
  font-size: 8vw;
  line-height: 11.9vw;
  }
  #hero-wp{
	  height:100vh;
	  margin-bottom: 70px;
  }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
	background: white;
    padding: 50px 0 20px;
    border-radius: 60px 60px 0 0;
    z-index: 2;
    margin-top: -70px;
}

.section-title {
  text-align: center;
  padding: 30px 0 40px;
  position: relative;
}
.section-title h2 {
  font-size: 4vw;
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-bottom: 0;
  color: #1e8898;
  position: relative;
  z-index: 2;
  font-size: 4vw;
  line-height: 3.9vw;
}
.section-title span {
  position: absolute;
  top: 30px;
  color: #f0f1f3;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}
.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .section-title h2 {
	font-size: 8vw;
    line-height: 7.9vw;
  }
  .section-title span {
    font-size: 38px;
  }

}
.description, .title {
	color: #1e8898;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 80px 5% 60px;
  border-radius: 0 0 60px 60px;
  z-index: 2;
  background: white;
  position: relative; 
}
.featured-services .icon-box {
  padding: 20px;
  color: #1e8898;
  transition: 0.3s;
  height: 100%;
  text-align: center;
}
.featured-services .icon {
  margin: 0 0 15px 0;
}
.featured-services .icon i {
  color: #16df7e;
  font-size: 36px;
}
.featured-services .title {
  margin-bottom: 15px;
  font-size: 2vw;
  line-height: 2vw;
}
.featured-services .title a {
  color: #5f687b;
  transition: 0.3s;
}
.featured-services .icon-box:hover {
  border-color: #eaecef;
}
.featured-services .icon-box:hover .title a {
  color: #16df7e;
}
.featured-services .description {
  line-height: 1.2;

}

@media (max-width: 575px) {
.featured-services .title {
	font-size: 6vw;
    line-height: 6vw;
  }

}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #5f687b;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-bottom: 10px;
}
.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #16df7e;
}
.about .content p:last-child {
  margin-bottom: 0;
}

.about{
    padding: 60px 5% 60px;
    border-radius: 0 0 60px 60px;
    z-index: 2;
    background: white;
    position: relative;
}

.about a{
	color: #1e8898;
}

.about .testimonials-slider4 span{
	color: #f5d62c;
}

.sc-video{
	height: 25.13vw;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {

  background:#1e8898;
  z-index: 1;
  margin-top: -70px;
  padding: 100px 10%;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Panton-BlackCaps", sans-serif;
  font-size: 2vw;
  color: #f5d62c;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;

  
}
.services .icon-box .icon {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: ease-in-out 0.3s;
}
.services .icon-box .icon i {
  color: #16df7e;
  font-size: 36px;
  transition: 0.3s;
}
.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
}
.services .icon-box h4 a {
  color: #5f687b;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  margin-bottom: 0;
}
.services .icon-box-sc{
	padding: 3rem;
}

@media (max-width: 575px) {
	.services .icon-box-sc{
		padding: 1rem;
	}
}

.services .icon-box-sc:hover {
	border: 3px solid #1e8898;
	border-radius: 20px;
}

.services .icon-box-sc:hover h4 {
  color: #f5ce2c;
}

.video-sc{
	height: 28.125vw;
    position: relative;
    overflow: hidden;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  line-height: 1;
  color: #444444;
  transition: all 0.3s ease-in-out;
  
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #f5d62c;
  border-radius: 15px;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
	padding:0px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(30, 136, 152, 0.7);
  width:100%;
  height:100%;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #5f687b;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #949cac;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #206bfb;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #16df7e;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}
.portfolio{
	background: white;
    padding: 60px 0 20px;
    border-radius: 60px 60px 0 0;
    z-index: 2;
    margin-top: -70px;
}

.portfolio-info a {
	color: white;
    text-align: center;
    line-height: 1.2;
	font-family:"Panton-Regular", sans-serif;
	text-transform: uppercase;
	position: absolute;
	left: 30px;
    top: 75px;
    right: 30px;
}

.portfolio-info a span {
	color: #feca24;
    font-size: 1.5rem;
	font-family:"Panton-BlackCaps", sans-serif;
}
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #16df7e;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #16df7e;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(95, 104, 123, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel, .testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  box-sizing: content-box;
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  position: relative;
  z-index: 2;
}
.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 2vw;
  color: white;
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item h4 span{
  color: #f5d62c;
}

@media (max-width: 600px) {
	.testimonials .testimonial-item h4 {
	font-size:8vw;
	margin-left: 0px;
	}
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #e4e6ea;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 0 15px;
  padding: 20px 20px 60px 20px;
  background: white;
  position: relative;
  border-radius: 6px;
  position: relative;
  z-index: 1;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #16df7e;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #16df7e;
}

.marcas{
	position:absolute;
	bottom:0px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #1e8898;
  background-size: cover;
  padding: 60px 0;
  z-index: 1;
  margin-top: -70px;
  min-height: 460px;
  padding-top: 110px;
}
.cta h2 {
  color: #fff;
  font-size:4vw;
}
.cta p {
  color: #fff;
}
.cta .cta-btn, #footer .cta-btn {
  font-size:14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 20px auto;
  border: 2px solid #feca24;
  color: #fff;
}

@media (max-width: 600px) {
	.cta h2 {
	font-size: 8vw;
    line-height: 7.9vw;
	}
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 20px;
  background: #fff;
}
.team .member img {
  max-width: 100%;
  margin: 0 0 30px 0;
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  color: #919191;
  transition: 0.3s;
}
.team .member .social a:hover {
  color: #16df7e;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
}
.contact .info i {
  font-size: 20px;
  color: #1e8898;
  float: left;
  width: 44px;
  height: 44px;
  background: #fff;
  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: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #5f687b;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #949cac;
}
.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: #16df7e;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #1e8898;
  color: #fff;
}
.contact .email-form {
  width: 100%;
  padding: 30px;
}
.contact .email-form .form-group {
  padding-bottom: 8px;
}
.contact .email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .email-form .error-message br + br {
  margin-top: 25px;
}
.contact .email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .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 .email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .email-form input:focus, .contact .email-form textarea:focus {
  border-color: #16df7e;
}
.contact .email-form input {
  height: 44px;
}
.contact .email-form textarea {
  padding: 10px 12px;
}
.contact .email-form button[type=submit] {
  background: #1e8898;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .email-form button[type=submit]:hover {
  background: #feca24;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.contact{
	padding: 80px 5% 60px;
    border-radius: 0 0 60px 60px;
    z-index: 2;
    background: white;
    position: relative;
}
.contact .social-links a{
	color: #1e8898;
    font-size: 22px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9fa;
  min-height: 40px;
  margin-top: 82px;
}
.breadcrumbs h2 {
  font-size: 36px;
  font-weight: 300;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #778196;
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 58px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #1e8898;
  position: relative;
  color: white;
  padding-top: 110px;
  margin-top: -70px;
  
  
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-bottom: 20px;
}
#footer .footer-top h3 {
  font-size: 24px;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 0;
}
#footer .footer-top p {

}
#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
}
#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid #e4e6ea;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #16df7e;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #206bfb;
}

#footer .footer-top .social-links a {
  font-size: 22px;
  display: inline-block;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-bottom {
	border-top: 2px solid #feca24;
    width: 80%;
    margin-left: 10%;
    padding: 30px 0;
}

#footer .credits {
  float: right;
  font-size: 13px;
}
@media (max-width: 992px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}

.header-overlay{
  height:100vh;
  position: absolute;
  top:0;
  left:0;
  width:102vw;
  z-index:1;
  background:#fef7f1;
  opacity:0.85;
  overflow: hidden;
}

.fullscreen-video-wrap{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  overflow:hidden;
  z-index:0;
  padding:0;

}
.hero-img iframe{
	width: 100vw;
	height: 56.25vw;
	min-height: 100vh;
	min-width: 177.77vh;


}

.zx-2{
  z-index:2;
}

@font-face {
  font-family: Panton-BlackCaps;
  src: url('../fonts/Panton-BlackCaps.eot');
  src: url('../fonts/Panton-BlackCaps.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Panton-BlackCaps.woff2') format('woff2'),
    url('../fonts/Panton-BlackCaps.woff') format('woff'),
    url('../fonts/Panton-BlackCaps.ttf') format('truetype');
}

@font-face {
  font-family: Panton-Regular;
  src: url('../fonts/Panton-Regular.eot');
  src: url('../fonts/Panton-Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Panton-Regular.woff2') format('woff2'),
    url('../fonts/Panton-Regular.woff') format('woff'),
    url('../fonts/Panton-Regular.ttf') format('truetype');
}

.arr-ico{
	width: 50px;
    margin: 0 auto 20px;
}


#anim1, #anim2, #anim3{
	width: 100%;
    height: 110px;
    max-width: 100%;
    margin: 0px auto 20px;
}

.testimonials-slider2{
	max-width: 1500px;
}

#anim11, #anim12, #anim13, #anim21, #anim22, #anim23{
    max-width: 300px;
    margin: 0px auto 20px;
}
.footer-top h2{
	font-size: 4vw;
}

.img-footer{
	width: 200px;
	height: 200px;
	margin: auto;
}
#logo12{
	width:100px;
	margin: 47px auto 0px;
}

.testimonial2-img{
	width:100%;
	height: auto;
}

#services{
	padding: 60px 5% 60px;
    border-radius: 0 0 60px 60px;
    z-index: 2;
    background: white;
    position: relative;
}

.avatar-image{
	width: 80px;
    height: 80px;
}

.empresa-image{
    height: 40px;
    margin-left: 54px;
}

.more-more a{
	color:#1e8898;
}
.icon-sc{
	width: 100%;
    height: 150px;
    max-width: 55%;
    margin: 0px auto 20px;
    justify-content: end;
}
.img-fluid{
	width:auto;
}
.section-title ul{
	list-style-type: none;
	padding:0px;
}

.section-title a{
	color: #1e8898;
}