/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #00a8a7;
	margin: 0;
	font-weight: 600;
	font-family: 'Open Sans', sans-serif;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 16px;
}

h5 {
	font-size: 14px;
}

p {
	font-size: 14.2px;
	color: #868686;
	line-height: 2.2;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
	Helper CSS
-----------------------*/
.spad {
	padding-top: 130px;
	padding-bottom: 130px;
}

.sp-pad {
	padding-left: 150px;
	padding-right: 150px;
}

.sp-sub-title {
	color: #868686;
	font-size: 12px;
	margin-bottom: 5px;
	text-transform: lowercase;
}

.sp-title {
	font-size: 50px;
	font-weight: 800;
	text-transform: lowercase;
	margin-bottom: 45px;
	letter-spacing: 6px;
}

.sp-title span {
	color: #e10023;
}

.section-title h2 {
	display: inline-block;
	position: relative;
	margin-bottom: 110px;
	padding-bottom: 2px;
	line-height: normal;
}

.section-title h2:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	left: 0;
	bottom: 0;
	background: #40424a;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

video {
	position: fixed;
    min-width: 100%;
    min-height: 100%;
}

/*------------------------
  Common Elements
--------------------------*/
.element {
	margin-bottom: 150px;
}

.element .sp-title {
	margin-bottom: 70px;
}

.element:last-child {
	margin-bottom: 0;
}

.element .site-btn {
	margin-bottom: 10px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #fff;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}
	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

/* Site Buttons */
.site-btn {
	position: relative;
	display: inline-block;
	text-transform: lowercase;
	font-size: 12px;
	min-width: 135px;
	font-weight: 600;
	padding: 18px 10px 20px;
	color: #222121;
	background-color: transparent;
	border: none;
	cursor: pointer;
	text-align: center;
	border: 2px solid #222121;
}

.site-btn:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	bottom: 2px;
	left: 0;
	background: #222121;
    background-color: transparent;
}

.site-btn.light {
	color: #fff;
	border: 2px solid #fff;
}

.site-btn.light:after {
	background: transparent;
}

.site-btn.light:hover {
	color: #fff;
    background: #222121;
}

.site-btn:hover {
	color: #222121;
    background: #d0d0d0;
}

.site-btn.btn-two {
	border-left: 2px solid #222121;
	border-right: 2px solid #222121;
}

.site-btn.btn-three {
	padding: 19px 10px 19px;
}

.site-btn.btn-three:after {
	display: none;
}

.site-btn.btn-four {
	padding: 19px 10px 19px;
	border-left: 2px solid #222121;
	border-right: 2px solid #222121;
}

.site-btn.btn-four:after {
	display: none;
}

.arrow-btn {
	color: #7a7a7a;
	font-size: 20px;
}

.arrow-btn i {
	display: inline-block;
}

.arrow-btn:hover {
	color: #7a7a7a;
}

/* Circle progress */
.circle-progress {
	text-align: center;
	display: block;
	position: relative;
	margin-bottom: 30px;
}

.circle-progress canvas {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.circle-progress .progress-info {
	position: absolute;
	width: 100%;
	top: 50%;
	margin-top: -45px;
}

.circle-progress .progress-info h2 {
	margin-bottom: 5px;
}

.circle-progress .progress-info p {
	font-size: 14px;
	margin-bottom: 0;
	color: #222121;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: lowercase;
}

/* Fact box */
.fact-box .fact-content {
	text-align: center;
	position: relative;
}

.fact-box .fact-content:after {
	position: absolute;
	content: '';
	height: 90px;
	width: 2px;
	background: #f3f3f3;
	right: 0;
	top: 30px;
	-webkit-transform: rotate(40deg);
	    -ms-transform: rotate(40deg);
	        transform: rotate(40deg);
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
}

.fact-box .fact-content i {
	color: #d3d3d3;
	font-size: 45px;
	line-height: 45px;
	display: block;
	margin-bottom: 20px;
}

.fact-box .fact-content h2 {
	font-size: 36px;
	margin-bottom: 15px;
}

.fact-box .fact-content p {
	text-transform: lowercase;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 2px;
	margin-bottom: 0;
}

.fact-box:last-child .fact-content:after {
	display: none;
}

/* Accordion */
.accordion-area .panel {
	margin-bottom: 18px;
}

.accordion-area .panel-header {
	display: block;
	font-weight: 600;
	position: relative;
	border: 2px solid #000;
	-webkit-transition: all 0.4s ease-out 0s;
	-o-transition: all 0.4s ease-out 0s;
	transition: all 0.4s ease-out 0s;
}

.accordion-area .panel-link:after {
	content: "+";
	position: absolute;
	font-size: 18px;
	font-weight: 700;
	right: 25px;
	top: 50%;
	color: #000;
	line-height: 16px;
	margin-top: -8px;
	margin-left: -4px;
}

.accordion-area .panel-header.active .panel-link:after {
	content: "-";
	margin-top: -10px;
}

.accordion-area .panel-header.active .panel-link.collapsed:after {
	content: "+";
}

.accordion-area .panel-link {
	text-align: left;
	background-color: transparent;
	border: none;
	position: relative;
	width: 100%;
	padding: 15px 40px;
	padding-left: 30px;
	font-size: 12px;
	text-transform: lowercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.accordion-area .panel-body p {
	font-size: 14px;
	margin-bottom: 0;
	padding-top: 25px;
}

.accordion-area .panel-body {
	padding: 0 5px;
}

/* Tab */
.tab-element .nav-tabs {
	border-bottom: 2px solid #222121;
	display: table;
	width: 100%;
}

.tab-element .nav-tabs .nav-item {
	display: table-cell;
	text-align: center;
}

.tab-element .nav-tabs .nav-item:last-child .nav-link {
	margin-right: 0;
}

.tab-element .nav-tabs .nav-link {
	border: 2px solid #222121;
	margin-right: 10px;
	border-radius: 0;
	font-size: 12px;
	text-transform: lowercase;
	letter-spacing: 1px;
	font-weight: 600;
	color: #222121;
	padding: 15px 10px;
}

.tab-element .nav-tabs .nav-link.active {
	padding-bottom: 25px;
	border-bottom: none;
	position: relative;
}

.tab-element .nav-tabs .nav-link.active:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 2px;
	background: #fff;
	bottom: -2px;
	left: 0;
}

.tab-element .tab-pane {
	padding-top: 25px;
}

/* Icon Box */
.icon-box {
	margin-bottom: 70px;
}

.icon-box i {
	display: block;
	font-size: 50px;
	color: #d3d3d3;
	margin-bottom: 30px;
}

.icon-box h4 {
	text-transform: lowercase;
	letter-spacing: 2px;
	margin-bottom: 20px;
}

/* animate scroll */

.animado{
    opacity: 0;
    transition: all 0.5s;
}
.mostrarArriba{
    animation: mostrarArriba 1s;
}

@keyframes mostrarArriba{
    0% {
        transform: translateY(-60px);
    }
    100% {
        transform: translateY(0);
    }
}

/*---------------------
	Header section
-----------------------*/
.header-section {
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 111;
	padding-top: 40px;
	padding-bottom: 20px;
}

.site-logo {
	padding-top: 5px;
	color: #fff;
	display: inline-block;
}

.site-logo span {
	color: #00a8a7;
}

.puntorojo {
    font-size: 30px;
    color: #e10023;
}
.puntorojosmall {
    font-size: 15px;
    color: #e10023;
}

.baja-linea{
    margin: 0px -20px;
}
    

.logo-principal {
    width: 150px;
	display: inline-block;
}

.search-top {
	float: right;
	display: inline-block;
	position: relative;
	padding: 14px;
	margin-left: 30px;
}

.search-top .se-btn {
	border: none;
	background: none;
	color: #fff;
}

.search-top input[type='text'] {
	position: absolute;
	right: 5px;
	top: 100%;
	border: none;
	background: rgba(255, 255, 255, 0.17);
	padding: 10px 20px;
	opacity: 0;
	outline: 1px solid #fff;
	outline-offset: 5px;
	margin-top: 5px;
	color: #fff;
	visibility: hidden;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.search-top input[type='text']:focus {
	visibility: visible;
	opacity: 1;
}

.search-top:hover input[type='text'] {
	opacity: 1;
	visibility: visible;
}

.nav-switch {
	display: none;
}

.main-menu {
	float: right;
}

.main-menu ul {
	list-style: none;
}

.main-menu ul li {
	display: inline;
}

.main-menu ul li a {
	display: inline-block;
	text-transform: uppercase;
	font-size: 16px;
	color: #fff;
	padding: 15px;
	margin-right: 10px;
	position: relative;
}

.main-menu ul li a:after {
	position: absolute;
	content: '';
	width: 0;
	height: 2px;
	background: #fff;
	left: 50%;
	top: 0px;
	margin-left: -17px;
	-webkit-transform: rotate(0deg);
	    -ms-transform: rotate(0deg);
	        transform: rotate(0deg);
	opacity: 0;
	-webkit-transform-origin: top center;
	    -ms-transform-origin: top center;
	        transform-origin: top center;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.main-menu ul li a:hover:after {
	opacity: 1;
	width: 34px;
}

.main-menu ul li a.active {
	border-bottom-style: solid;
    border-bottom-color: #00a8a7;
    border-bottom-width: 2px;
    border-top-style: solid;
    border-top-color: #00a8a7;
    border-top-width: 2px;
}

.main-menu a i{
    margin-left: 8px;
}

.main-menu ul ul{
    display: none;
}


.main-menu ul li:hover ul {
    display: block;
    position: absolute;
    background: #222;
    margin-left: 80px;
}

.main-menu ul li:hover ul li a{
    display: block;
    text-transform: none;
    padding-left: 30px;
}


/*---------------------
	Landing
-----------------------*/
.landing-h6{
    font-weight: 300;
    font-size: 40px !important;
    margin: 0;
    padding: 0;
}


.landing-header{
    background-color: #333333;
    height: 80px;
    margin: none;
    padding: none;
    position: fixed;
    z-index: 100;
    width: 100%;
}

.logo-landing {
    width: 80px;
    height: auto;
	display: inline-block;
}

.whatsapp-landing{
    background-color: #25d366;
    margin-top: 12px;
    text-transform: none !important;
    border-radius: 2px;
    padding: 15px;
    color: white;
    display: inline-block;
}

.whatsapp-landing:hover {
    background-color: #dcf8c6;
    color: #333;
}

.whatsapp-landing > i{
    margin-right: 8px;
}

.main-menu-001 {
	float: right;
}

.main-menu-001 ul {
	list-style: none;
}

.beneficios-landing{
    color: white;
    margin-bottom: 20px;
    margin-left: 20px;
}

.landing-row{
    padding-top: 20%;
}

.hs-text-contact-landing {
	position: relative;
	display: block;
	z-index: 2;
}

.hs-landing {
	min-height: 950px;
	position: relative;
	display: table;
	width: 100%;
}

.hs-landing:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0;
}

.hs-landing .hs-text {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 2;
}

.hs-landing .hs-title {
	color: #fff;
	font-size: 80px;
	font-weight: 500;
	margin-bottom: 40px;
	position: relative;
	left: 150px;
	opacity: 0;
}

.hs-landing .hs-des {
	color: #fff;
	font-size: 60px;
	line-height: 1.4;
	position: relative;
	left: 150px;
	opacity: 0;
}

.owl-item.active .hs-landing .hs-title,
.owl-item.active .hs-landing .hs-des {
	left: 0;
	opacity: 1;
}

.owl-item.active .hs-landing .hs-title {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.owl-item.active .hs-landing .hs-des {
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}


.servicio-oculto{
    opacity: 0;
    height: 1px;
}

.flecha-landing{
    width: 100%;
    bottom: 30px;
    position: absolute;
    z-index: 2;
}

.flecha-landing-img {
    width: 70px;
    margin: auto;
}


/*---------------------
	Hero section
-----------------------*/
.hero-slider {
	position: relative;
}

.hero-slider .owl-nav {
	position: absolute;
	display: inline-block;
	right: 150px;
	top: 50%;
	font-size: 20px;
	z-index: 999;
	color: #fff;
}

.hero-slider .owl-nav i {
	margin-left: 2px;
}

.hero-slider .owl-nav .owl-prev {
	display: none;
}

.hero-slider .owl-dots {
	position: absolute;
	bottom: -5px;
	left: 150px;
}

.hero-slider .owl-dots .owl-dot {
	display: inline-block;
	margin-right: 30px;
	color: #fff;
	font-size: 14px;
	padding-bottom: 40px;
	position: relative;
	overflow: hidden;
}

.hero-slider .owl-dots .owl-dot.active span {
	color: #e10023;
}

.hero-slider .owl-dots .owl-dot.active:after {
	height: 100%;
}

.hero-slider .owl-dots .owl-dot:after {
	position: absolute;
	content: '';
	width: 2px;
	height: 0;
	left: 50%;
	top: 30px;
	margin-left: -2px;
	background: #fff;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.hs-item {
	min-height: 950px;
	position: relative;
	display: table;
	width: 100%;
}

.hs-item:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.5;
}

.hs-item .hs-text {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 2;
}

.hs-item .hs-title {
	color: #fff;
	font-size: 80px;
	font-weight: 500;
	margin-bottom: 40px;
	position: relative;
	left: 150px;
	opacity: 0;
}

.hs-item .hs-des {
	color: #fff;
	font-size: 60px;
	line-height: 1.4;
	position: relative;
	left: 150px;
	opacity: 0;
}

.owl-item.active .hs-item .hs-title,
.owl-item.active .hs-item .hs-des {
	left: 0;
	opacity: 1;
}

.owl-item.active .hs-item .hs-title {
	-webkit-transition: all 0.5s ease 0.6s;
	-o-transition: all 0.5s ease 0.6s;
	transition: all 0.5s ease 0.6s;
}

.owl-item.active .hs-item .hs-des {
	-webkit-transition: all 0.5s ease 0.8s;
	-o-transition: all 0.5s ease 0.8s;
	transition: all 0.5s ease 0.8s;
}

/*---------------------
	Intro section
-----------------------*/
.intro-text {
	padding-top: 70px;
}

.intro-text p {
	margin-bottom: 50px;
}

#logo-slider {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 10em;
  margin: auto;
  overflow: hidden;
}

#logo-slider .arrow {
  cursor: pointer;
  position: absolute;
  width: 2em;
  height: 100%;
  padding: 0;
  margin: 0;
  outline: 0;
  background: none;
}

#logo-slider .arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

#logo-slider .arrow:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0.75em;
  height: 0.75em;
  margin: auto;
  border-style: solid;
    border-color: #9c9fa0 !important;
}

#logo-slider .prev {
  left: 0;
  bottom: 0;
    border: transparent;
    
}

#logo-slider .prev:before {
  left: 0.25em;
  border-width: 3px 0 0 3px;
  border-color: #333 transparent transparent #333;
  transform: rotate(-45deg);
}

#logo-slider .next {
  right: 0;
  bottom: 0;
     border: white;
    
}

#logo-slider .next:before {
  right: 0.25em;
  border-width: 3px 3px 0 0;
  border-color: #333 #333 transparent transparent;
  transform: rotate(45deg);
}

#logo-slider .logo-slider-frame {
  position: absolute;
  top: 0;
  left: 2em;
  right: 2em;
  bottom: 0;
  border-left: 0.25em solid transparent;
  border-right: 0.25em solid transparent;
  overflow: hidden;
}

#logo-slider .logo-slider-item {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18%;
  height: 100%;
}

#logo-slider .logo-slider-inset {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  overflow: hidden;
    text-align: center;
}

@media ( max-width: 60em ) {
  #logo-slider .logo-slider-item {
    width: 33.33%;
  }
  #logo-slider {
    height: 10em;
  }
}

@media ( max-width: 45em ) {
  #logo-slider .logo-slider-item {
    width: 50%;
  }
  #logo-slider {
    height: 12em;
  }
}

@media ( max-width: 30em ) {
  #logo-slider .logo-slider-item {
    width: 100%;
  }
  #logo-slider {
    height: 12em;
  }
}



/*---------------------
	Video modal
-----------------------*/

.flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal01 {
    display: none;
    position: fixed;
    z-index: 1900;
    overflow: auto;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.contenido-modal {
    position: relative;
    background-color: transparent;
    margin: auto;
    width: 80%;
    border-radius: 5px;
    animation-name: modal01;
    animation-duration: 1s;
}


@keyframes modal01{
    from{top: -330px; opacity: 0;} 
    to{top:0; opacity: 1;}  
}

.modal-header {
    background-color: transparent;
    border: none;
    padding: 10px 40px 0px 0px;
}

.close {
    font-size: 30px;
    line-height: 12px;
    font-weight: bold;
    color: white;
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 4px;
    text-align: center;
    left: 10px;
}

.close:hover {
    color: #00a8a7;
    border: 2px solid #00a8a7;
    box-shadow: none;
}



/*---------------------
	Portfolio section
-----------------------*/
.portfolio-warp {
	position: relative;
	display: block;
	overflow: hidden;
    /* border:8px solid #fff; */
}

.single-portfolio {
	height: 580px;
	width: 33.333333%;
	position: relative;
	float: left;
	display: block;
	background-position: center center;
    /* border:8px solid #fff; */
}

.single-portfolio.sm-wide {
	width: 22.222222%;
}
.single-portfolio.sm-cinco {
	width: 20%;
}
.single-portfolio.sm-clientes {
	width: 20%;
    background-size: 140%;
}

.single-portfolio:hover .portfolio-info {
    opacity: 1;
 }

.single-portfolio:hover .portfolio-info-01 {
    opacity: 1;
 }

.single-portfolio:hover .portfolio-info-02 {
    opacity: 1;
 }

.portfolio-info {
	position: absolute;
	width: calc(100%);
	height: calc(100%);
	left: 0px;
	top: 0px;
	text-align: center;
	padding-top: 270px;
	border: 0px solid #fff;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio-info .pfbg {
	position: absolute;
	width: 110%;
	height: 110%;
	left: -5%;
	top: -5%;
	-webkit-transform: scale(1.12);
	    -ms-transform: scale(1.12);
	        transform: scale(1.12);
	-webkit-filter: blur(20px);
	        filter: blur(20px);
	background-position: center center;
}

.portfolio-info h5 {
	letter-spacing: 2px;
	text-transform: normal;
	color: #fff;
	z-index: 9;
	position: relative;
	margin-bottom: 10px;
}

.portfolio-info p {
	font-size: 14px;
	color: #fff;
	z-index: 9;
	position: relative;
}



.portfolio-info-01 {
	position: absolute;
	width: calc(100%);
	height: calc(50%);
	left: 0px;
	top: 0px;
	text-align: center;
	padding-top: 125px;
	border: 0px solid #fff;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio-info-01 .pfbg {
	position: absolute;
	width: 110%;
	height: 110%;
	left: -5%;
	top: -5%;
	-webkit-transform: scale(1.12);
	    -ms-transform: scale(1.12);
	        transform: scale(1.12);
	-webkit-filter: blur(20px);
	        filter: blur(20px);
	background-position: center center;
}

.portfolio-info-01 h5 {
	letter-spacing: 2px;
	text-transform: normal;
	color: #fff;
	z-index: 9;
	position: relative;
	margin-bottom: 10px;
}

.portfolio-info-01 p {
	font-size: 14px;
	color: #fff;
	z-index: 9;
	position: relative;
}



.portfolio-info-02 {
	position: absolute;
	width: calc(100%);
	height: calc(50%);
	left: 0px;
	top: 50%;
	text-align: center;
	padding-top: 125px;

	overflow: hidden;
	opacity: 0;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;
}

.portfolio-info-02 .pfbg {
	position: absolute;
	width: 110%;
	height: 110%;
	left: -5%;
	top: -5%;
	-webkit-transform: scale(1.12);
	    -ms-transform: scale(1.12);
	        transform: scale(1.12);
	-webkit-filter: blur(20px);
	        filter: blur(20px);
	background-position: center center;
}

.portfolio-info-02 h5 {
	letter-spacing: 2px;
	text-transform: normal;
	color: #fff;
	z-index: 9;
	position: relative;
	margin-bottom: 10px;
}

.portfolio-info-02 p {
	font-size: 14px;
	color: #fff;
	z-index: 9;
	position: relative;
}





.portfolio-filter {
	list-style: none;
}

.portfolio-filter li {
	display: inline-block;
	font-size: 12px;
	text-transform: lowercase;
	margin-right: 12px;
	color: #868686;
	font-weight: 600;
	cursor: pointer;
}

.portfolio-filter li.mixitup-control-active {
	color: #111;
}
.sobreex{
	position: absolute;
	left: 55px;
	top: 55px;
	text-align: center;
    width: calc(100% - 110px);
	height: calc(100% - 110px);
}

.sobreex h3 {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px 0px;
    width: 60%;
    margin: auto;
    opacity: 0;
}

.category {
	color: #00a8a7;
    position: relative;
    top: 45%;
}

.oscuro {
      color: #5a5a5a !important;
     text-shadow: 0px 0px 14px #FFF;
}


/*---------------------
	Milestones section
-----------------------*/
.milestones-section {
	background: #222121;
}

.milestones-section .fact-box .fact-content {
	text-align: center;
	position: relative;
}

.milestones-section .fact-box .fact-content:after {
	background: #6f6e6e;
}

.milestones-section .fact-box .fact-content i,
.milestones-section .fact-box .fact-content h2,
.milestones-section .fact-box .fact-content p {
	color: #fff;
}

.milestones-section .fact-box:last-child .fact-content:after {
	display: none;
}

/*---------------------
	Services section
-----------------------*/
.services-section {
	position: relative;
}

.services-warp {
	position: relative;
}

.services-text {
	position: absolute;
	width: 490px;
	left: 140px;
}

.services-text p {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 50px;
}

.service-more-link {
	position: absolute;
	right: 150px;
	top: 50%;
	margin-top: -15px;
}

/*---------------------
	Contact section
-----------------------*/
.contact-section {
	padding-top: 150px;
	padding-bottom: 150px;
	position: relative;
}

.contact-section .contact-warp {
	position: relative;
	z-index: 2;
}

.contact-section:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.7;
}

.contact-text {
	position: absolute;
	width: 490px;
	left: 140px;
}

.contact-text .sp-sub-title,
.contact-text .sp-title,
.contact-text p {
	color: #00a8a7;
}

.sp-title-gray{
    color: #838383;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 30px;
}
.contact-text p {
	font-size: 16px;
	margin-bottom: 20px;
}

.contact-text .con-info {
	list-style: none;
}

.contact-text .con-info li {
	color: #fff;
	margin-bottom: 20px;
	font-size: 14px;
}

.contact-text .con-info li i {
	width: 30px;
	float: left;
	color: #616161;
	display: block;
	margin-right: 25px;
	font-size: 20px;
}

.contact-form {
	padding-top: 20px;
}

.contact-form input[type='text'],
.contact-form input[type='email'],
.contact-form textarea {
	width: 100%;
	background: none;
	border: none;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 14px;
	padding: 5px 0 20px;
	margin-bottom: 20px;
}

.contact-form textarea {
	height: 130px;
	padding-bottom: 10px;
	margin-bottom: 35px;
}

.contact-form ::-webkit-input-placeholder {
	font-style: italic;
	color: #fff;
}

.contact-form :-ms-input-placeholder {
	font-style: italic;
	color: #fff;
}

.contact-form ::-ms-input-placeholder {
	font-style: italic;
	color: #fff;
}

.contact-form ::placeholder {
	font-style: italic;
	color: #fff;
}

.confirmado{
    text-align: center;
}
.confirmado div ul li{
    list-style: none;
    color: white;
    margin: 20px;
    line-height: 40px;
}
.confirmado div ul li a{
    list-style: none;
    color: white;
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 8px;
}
.confirmado div ul li i{
    padding-right: 8px;
}

/*---------------------
	Footer section
----------------------*/
.footer-section {
	background: #0d0d0d;
}

.footer-section h2 {
	color: #fff;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 20px;
    font-size: 30px;
}

.footer-section p {
	font-size: 24px;
	color: #9c9fa0;
	margin-bottom: 40px;
}

.footer-section .social{
    color: #9c9fa0;
}

.footer-section .social a {
	color: #fff;
	margin-right: 40px;
}

.footer-section .social a:last-child {
	margin-right: 0;
}

/*---------------------
	Other Pages
-----------------------
========================*/

.page-top-area {
	height: 230px;
	position: relative;
}

.page-top-area:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
    background: #000;
	opacity: 0.85;
}

.breadcrumb-area {
	position: absolute;
	left: 150px;
	bottom: 35px;
	z-index: 2;
	color: #fff;
}

.breadcrumb-area a,
.breadcrumb-area span {
	color: #fff;
	text-transform: lowercase;
	font-size: 18px;
	font-weight: 600;
	margin-right: 15px;
	margin-left: 10px;
}

.breadcrumb-area a:first-child {
	margin-left: 0;
}


/*---------------------
	Popup video
-----------------------*/

.headerPopup{
  width: 85%;
  margin:0 auto;
}

.headerPopup iframe{
  width: 100%;  
  margin:0 auto;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: .8;
    filter: alpha(opacity=80)
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: 0 !important;
    -webkit-backface-visibility: hidden
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle
}

.mfp-align-top .mfp-container:before {
    display: none
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045
}

.mfp-ajax-holder .mfp-content,
.mfp-inline-holder .mfp-content {
    width: 100%;
    cursor: auto
}

.mfp-ajax-cur {
    cursor: progress
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.mfp-auto-cursor .mfp-content {
    cursor: auto
}

.mfp-arrow,
.mfp-close,
.mfp-counter,
.mfp-preloader {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.mfp-loading.mfp-figure {
    display: none
}

.mfp-hide {
    display: none !important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
    display: none
}

button.mfp-arrow,
button.mfp-close {
    overflow: visible;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: 0;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: .65;
    filter: alpha(opacity=65);
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:focus,
.mfp-close:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    filter: alpha(opacity=65);
    margin: -55px 0 0;
    top: 50%;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:focus,
.mfp-arrow:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}

.mfp-arrow .mfp-a,
.mfp-arrow .mfp-b,
.mfp-arrow:after,
.mfp-arrow:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: inset transparent
}

.mfp-arrow .mfp-a,
.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow .mfp-b,
.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left .mfp-a,
.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left .mfp-b,
.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right .mfp-a,
.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right .mfp-b,
.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #000
}

img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto
}

.mfp-figure {
    line-height: 0
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    background: #444
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-wrap: break-word;
    padding-right: 36px
}

.mfp-image-holder .mfp-content {
    max-width: 100%
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer
}

@media screen and (max-width:800px) and (orientation:landscape),
screen and (max-height:300px) {
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, .6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, .6);
        position: fixed;
        text-align: center;
        padding: 0
    }
}

@media all and (max-width:900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75)
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px
    }
}

.mfp-ie7 .mfp-img {
    padding: 0
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px
}

.mfp-ie7 .mfp-container {
    padding: 0
}

.mfp-ie7 .mfp-content {
    padding-top: 44px
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0
}

/*---------------------
	Progress section
-----------------------*/
.progress-section {
	padding: 0 80px 100px;
}

.progress-section .circle-progress:after {
	position: absolute;
	content: '';
	height: 90px;
	width: 2px;
	background: #d0d0d0;
	right: 0;
	top: 70px;
	-webkit-transform: rotate(40deg);
	    -ms-transform: rotate(40deg);
	        transform: rotate(40deg);
	-webkit-transform-origin: center;
	    -ms-transform-origin: center;
	        transform-origin: center;
}

.progress-section .cp-item:last-child .circle-progress:after {
	display: none;
}

/*---------------------
	Review section
-----------------------*/
.review-section {
	position: relative;
}

.review-section:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	opacity: 0.7;
}

.review-section .review-warp {
	position: relative;
	z-index: 2;
}

.review-section .review-warp .sp-sub-title,
.review-section .review-warp .sp-title {
	color: #fff;
}

.review-slider .rs-item .qute {
	font-size: 30px;
	color: #fff;
}

.review-slider .rs-item p {
	font-size: 24px;
	font-style: italic;
	color: #fff;
	margin-bottom: 50px;
}

.review-slider .rs-item h4 {
	font-size: 30px;
	font-weight: 400;
	color: #fff;
	letter-spacing: 2px;
	padding-top: 50px;
	margin-left: 90px;
	text-transform: lowercase;
}

.review-slider .client-pic {
	width: 70px;
	height: 70px;
	overflow: hidden;
	float: left;
}

.client-pic i {
	width: 100%;
	height: auto;
    color: white;
    font-size: 50px;
}

/*---------------------
	Work nav section
-----------------------*/
.worknav-section {
	padding-top: 90px;
	padding-bottom: 90px;
}

.worknav-section.extra-style {
	background: #f2f7f7;
	padding-top: 150px;
	padding-bottom: 150px;
}

.worknav .wn-thumb {
	width: 165px;
	height: 165px;
	display: inline-block;
	border-radius: 50%;
}

.worknav .wn-info {
	position: relative;
	display: inline-block;
}

.worknav .wn-info span {
	text-transform: lowercase;
	font-size: 12px;
	font-weight: 600;
	color: #868686;
}

.worknav .wn-info h3 {
	font-size: 24px;
	font-weight: 400;
}

.worknav.wn-prev .wn-info {
	top: -50px;
	margin-left: 50px;
}

.worknav.wn-next {
	text-align: right;
}

.worknav.wn-next .wn-thumb {
	float: right;
}

.worknav.wn-next .wn-info {
	top: 65px;
	margin-right: 50px;
}

/*---------------------
	Blog Page
-----------------------*/
.blog-item {
	margin-bottom: 150px;
}

.blog-item:last-child {
	margin-bottom: 0;
}

.blog-thumb {
	height: 660px;
	margin-bottom: 140px;
	position: relative;
}

.post-date-warp {
	position: absolute;
	width: 100%;
	bottom: 30px;
	left: 0;
}

.post-date-warp .post-date-box {
	width: 105px;
	height: 106px;
	background: #fff;
	text-align: center;
	padding-top: 20px;
}

.post-date-warp .post-date-box h3 {
	letter-spacing: 2px;
	margin-bottom: 5px;
}

.post-date-warp .post-date-box p {
	font-size: 12px;
	text-transform: lowercase;
	color: #222121;
	font-weight: 600;
}

.blog-list {
	margin-bottom: 140px;
}

.blog-title {
	text-transform: lowercase;
	margin-bottom: 10px;
	letter-spacing: 5px;
	font-weight: 700;
}

.post-metas {
	margin-bottom: 60px;
}

.post-metas .post-meta {
	display: inline-block;
	text-transform: lowercase;
	font-size: 12px;
	font-weight: 600;
	color: #868686;
	margin-left: 15px;
	margin-right: 15px;
}

.post-metas .post-meta a {
	color: #222121;
}

.post-metas .post-meta:first-child {
	margin-left: 0;
}

/*---------------------
	Single work Page
-----------------------*/
.work-slider {
	margin-bottom: 0px;
}

.work-slider .ws-item {
	height: 700px;
}

.work-slider .owl-nav {
	position: absolute;
	right: 55px;
	top: 50%;
	margin-top: -10px;
}

.work-slider .owl-nav .owl-prev {
	display: none;
}

.work-slider .owl-nav .owl-next {
	text-transform: lowercase;
	font-size: 24px;
	font-weight: 600;
    color: white
}

.work-info-list {
	list-style: none;
}

.work-info-list li {
	display: block;
	width: 50%;
	margin-bottom: 60px;
	float: left;
}

.work-info-list li span {
	font-size: 12px;
	text-transform: lowercase;
	color: #868686;
	margin-bottom: 15px;
	display: block;
	letter-spacing: 1px;
	font-weight: 600;
}

.work-info-list li h4 {
	text-transform: lowercase;
	letter-spacing: 1px;
}

.next-portfolio-link {
	padding-top: 70px;
	padding-bottom: 70px;
	text-align: right;
}

.map-area {
	height: 560px;
}

/*---------------------
	Clientes
-----------------------*/

.clientes{
    background-color: black;
}

/*---------------------
	Crew Page
-----------------------*/

.foto-crew{
    position: relative;
}

.foto-crew-up {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px; 
    top: 0px;
    opacity: 0;
}

.foto-crew-up:hover {
    opacity: 1;
    position: absolute;
    color: white !important;
    left: 0px; 
    top: 0px;
    text-align: center;
    font-size: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    padding-top: 45%;
}

.bold-black {
    color: black;
    font-weight: bolder;
}
.bold-red {
    color: #e10023;
    font-weight: bolder;
}

.hacemos {
    color: #9da0a1;
    text-transform: lowercase !important;
    font-size: 40px;
    font-weight: 100;
}

.crew-texto{
    font-size: 25px;
    line-height: 35px;
}

.video-crew{
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    padding-top: 30px;
    position: relative;
}

.video-crew iframe, .video-crew object, .video-crew embed {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    }

/*---------------------
	Responsive 
-----------------------*/
@media only screen and (max-width: 1650px) {
	.sp-pad {
		padding-left: 90px;
		padding-right: 90px;
	}
	.hero-slider .owl-dots {
		left: 90px;
	}
	.contact-text,
	.services-text {
		left: 80px;
	}
}

@media only screen and (max-width: 1510px) {
	.sp-pad {
		padding-left: 30px;
		padding-right: 30px;
	}
	.breadcrumb-area,
	.hero-slider .owl-dots {
		left: 30px;
	}
	.contact-text,
	.services-text {
		left: 30px;
		width: 350px;
	}
	.service-more-link {
		right: 30px;
	}
	.progress-section .circle-progress:after {
		display: none;
	}
}

@media only screen and (max-width: 1366px) {
	.hs-item {
		min-height: 750px;
	}
    .hs-landing {
		min-height: 750px;
         background-position: right;
      
	}
	.single-portfolio {
		height: 400px;
	}
	.portfolio-info {
		width: calc(100%);
		height: calc(100%);
		left: 0px;
		top: 0px;
		padding-top: 35%;
	}
    .portfolio-info-01 {
		width: calc(100%);
		height: calc(50%);
		left: 0px;
		top: 0px;
		padding-top: 15%;
	}
    .portfolio-info-02 {
		width: calc(100%);
		height: calc(50%);
		left: 0px;
		top: 50%;
		padding-top: 15%;
	}
}

/* Medium screen : 992px. */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.contact-text,
	.services-text {
		width: 100%;
		position: relative;
		margin-bottom: 50px;
		left: 0;
	}
	.single-portfolio {
		width: 50%;
	}
	.single-portfolio.sm-wide {
		width: 50%;
	}
    .single-portfolio.sm-cinco {
		width: 50%;
	}
	.single-portfolio.sm-wide.md-w-100 {
		width: 100%;
	}
    .single-portfolio.sm-clientes {
		width: 50%;
	}
	.single-portfolio .md-w-100 {
		width: 100%;
	}
	.service-more-link {
		right: 0;
		position: relative;
		text-align: center;
	}
	.worknav {
		text-align: center;
	}
	.worknav .wn-thumb,
	.worknav .wn-info {
		display: block;
	}
	.worknav .wn-thumb {
		margin: 0 auto 30px;
	}
	.worknav.wn-prev .wn-info,
	.worknav.wn-next .wn-info {
		top: 0px;
		margin-left: 0px;
		margin-right: 0;
		text-align: center;
	}
	.worknav.wn-next .wn-thumb {
		float: none;
	}
}

/* Tablet :768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.site-logo {
		padding-top: 0;
	}
	.search-top {
		padding: 8px;
		margin-left: 10px;
	}
	.main-menu ul li a {
		padding: 10px;
		margin-right: 5px;
	}
	.hero-slider .owl-nav {
		right: 50px;
	}
	.hs-item {
		min-height: 650px;
	}
    .hs-landing {
		min-height: 650px;
        background-position: center;
       
	}
	.hs-item .hs-title {
		font-size: 100px;
		margin-bottom: 20px;
	}
	.hs-item .hs-des {
		font-size: 40px;
	}
	.contact-text,
	.services-text {
		width: 100%;
		position: relative;
		margin-bottom: 50px;
		left: 0;
	}
	.single-portfolio {
		width: 50%;
	}
	.single-portfolio.sm-wide {
		width: 50%;
	}
    .single-portfolio.sm-cinco {
		width: 50%;
	}
    .single-portfolio.sm-clientes {
		width: 50%;
	}
	.single-portfolio.sm-wide.md-w-100 {
		width: 100%;
	}
	.single-portfolio .md-w-100 {
		width: 100%;
	}
	.fact-box .fact-content {
		margin-bottom: 50px;
	}
	.fact-box .fact-content:after {
		display: none;
	}
	.service-more-link {
		right: 0;
		position: relative;
		text-align: center;
	}
	.worknav {
		text-align: center;
	}
	.worknav .wn-thumb,
	.worknav .wn-info {
		display: block;
	}
	.worknav .wn-thumb {
		margin: 0 auto 30px;
	}
	.worknav.wn-prev .wn-info,
	.worknav.wn-next .wn-info {
		top: 0px;
		margin-left: 0px;
		margin-right: 0;
		text-align: center;
	}
	.worknav.wn-next .wn-thumb {
		float: none;
	}
	.blog-thumb {
		height: 550px;
	}
}

/* Large Mobile :480px. */
@media only screen and (max-width: 767px) {
	.search-top {
		display: none;
	}
	.nav-switch {
		position: absolute;
		right: 20px;
		font-size: 30px;
		color: #fff;
		top: 38px;
		display: block;
	}
	.main-menu {
		display: none;
		float: none;
		position: absolute;
		width: 100%;
		background: #222;
		left: 0;
		top: 100%;
	}
	.main-menu ul li {
		display: block;
	}
	.main-menu ul li a {
		display: block;
		padding: 15px;
		margin-right: 0;
		border-bottom: 1px solid #292929;
	}
	.main-menu ul li a:after {
		left: 35px;
	}
    
    .main-menu a i{
        position: absolute;
        right: 25px;
    }
    
    .main-menu ul li:hover ul {
        display: none;
        position: static;
        margin-left: 0px;
    }
    
    .main-menu ul li ul li a{
        background: rgba(0,0,0,0.4);
        padding-left: 30px;
        text-transform: none;
    }
    
    .social-menu{
        align-content: center;
        float: left;
        width: 60px;
        height: 40px;
        text-align: center;
        display: inline;
        margin: auto;
        line-height: 10px;
    }
    
	.hero-slider .owl-nav {
		right: 50px;
	}
	.hs-item {
		min-height: 470px;
	}
    .hs-landing {
		min-height: 470px;
        background-position: left;
	}
	.hs-item .hs-title {
		font-size: 80px;
		margin-bottom: 20px;
	}
	.hs-item .hs-des {
		font-size: 30px;
	}
	.sp-pad {
		padding-left: 15px;
		padding-right: 15px;
	}
	.sp-title {
		font-size: 26px;
	}
    
    .sp-title-gray{
        font-size: 26px;
    }
    .puntorojo {
        font-size: 20px;
    }
    .puntorojosmall {
        font-size: 18px;
    }
    
    .baja-linea{
        margin: 0px -13px;
    }
    .baja-rojo{
        color: #e10023;
        margin: 0px 0px;
        font-size: 45px;
    }

	.contact-text,
	.services-text {
		width: 100%;
		position: relative;
		margin-bottom: 50px;
		left: 0;
	}
    .portfolio-warp {
    border:0px;
    }
	.single-portfolio {
		width: 100%;
         border:0px;
	}
	.single-portfolio.sm-wide {
		width: 100%;
	}
    .single-portfolio.sm-cinco {
		width: 100%;
	}
    .single-portfolio.sm-clientes {
		width: 100%;
	}
	.single-portfolio.sm-wide.md-w-100 {
		width: 100%;
	}
	.single-portfolio .md-w-100 {
		width: 100%;
	}
	.fact-box .fact-content {
		margin-bottom: 50px;
	}
	.fact-box .fact-content:after {
		display: none;
	}
	.service-more-link {
		right: 0;
		position: relative;
		text-align: center;
	}
	.progress-section {
		padding: 0 15px 100px;
	}
	.worknav {
		text-align: center;
	}
	.worknav .wn-thumb,
	.worknav .wn-info {
		display: block;
	}
	.worknav .wn-thumb h3,
	.worknav .wn-info h3 {
		font-size: 20px;
	}
	.worknav .wn-info h3 {
		font-size: 20px;
	}
	.worknav .wn-thumb {
		width: 100px;
		height: 100px;
		margin: 0 auto 30px;
	}
	.worknav.wn-prev .wn-info,
	.worknav.wn-next .wn-info {
		top: 0px;
		margin-left: 0px;
		margin-right: 0;
		text-align: center;
	}
	.worknav.wn-next .wn-thumb {
		float: none;
	}
	.work-slider .ws-item {
		height: 400px;
	}
	.blog-thumb {
		height: 400px;
	}
    
    .sobreex h3 {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 0px;
    width: 100%;
    margin: auto;
    opacity: 1;
    }
    
    
    .landing-row h2 {
        font-size: 40px !important;
    }
    .landing-h6 {
        font-size: 30px !important;
    }
    
    .landing-row{
    padding-top: 100px;
    }
    
}

/* small Mobile :320px. */
@media only screen and (max-width: 479px) {
	.hero-slider .owl-nav {
		right: 20px;
	}
	.hs-item .hs-title {
		font-size: 50px;
		margin-bottom: 20px;
	}
    .hs-cerca{
        margin-bottom: 10px !important;
    }
	.hs-item .hs-des {
		font-size: 18px;
	}
	.sp-pad {
		padding-left: 15px;
		padding-right: 15px;
	}
	.worknav .wn-thumb {
		width: 70px;
		height: 70px;
	}
	.worknav .wn-info h3 {
		font-size: 16px;
	}
	.work-info-list li {
		width: 100%;
	}
	.footer-section h2 {
		font-size: 22px;
	}
    .footer-section p {
		font-size: 16px;
	}
}