/*
 * A Design by GraphBerry
 * Author: GraphBerry
 * Author URL: http://graphberry.com
 * License: http://graphberry.com/pages/license
 */

/* Table of content
1.General - This is created general styles and overide some bootstrap classes.
2.Layout
 2.1 Animations
 2.2 Buttons
 2.3 Thumbnail - overide bootstrap thumbnail and add mased efect
 2.4 Socail icons -style for social icons list
3 Sections - definition for section and subsection
 3.1 Services
 3.2 Portfolio
 3.3 About
 3.4 Clients
 3.5 Price table
 3.6 Newsletter
 3.7 Contact
 3.8 Footer
4 Responsive 
**********************************************************************/

/* Flexbox moderno para layouts */
.container-flex {
  display: flex;
  flex-wrap: wrap;
}

/* Grid moderno como alternativa */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

/* Mejora para imágenes responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* --------------- My Code --------------- */

/* Virtual business card */
.image-vbc {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;   /* Centra horizontalmente */
  align-items: center;       /* Centra verticalmente */
  gap: 30px;                 /* Espacio entre botones */
  max-width: 400px;          /* Ancho máximo en móvil */
  margin: 0 auto;            /* Centra el grupo en pantalla */
  padding: 30px 0;
}

.button-vbc {
  flex: 1 1 30%;             /* tres botones por fila */
  max-width: 100px;          /* asegura proporción cuadrada */
  aspect-ratio: 1 / 1;       /* mantiene forma cuadrada */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #12525A;
  background-color: #FFFFFF;
  font-size: 32px;
  border: none;
  transition: 0.3s ease all;
  text-decoration: none;
}

.button-vbc:hover {
  background-color: #ff6f00;
  color: #FFFFFF;
}

.brand .logo-svg {
    fill: white;
    transition: fill 0.3s ease;
}

.brand:hover .logo-svg {
    fill: #ff6b35; /* Color naranja */
}

/* Carrusel de marcas */
#brands {
  text-align: center;
  padding: 40px 0;
}

#brands h2 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #004d4d; /* Ajusta según tu diseño */
}

.brandSwiper {
  width: 100%;
  padding: 20px 0;
}

.brandSwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brandSwiper img {
  max-height: 100px; /* Ajusta altura de logos */
  max-width: 200px;
  object-fit: contain;
  /* filter: grayscale(100%); Opcional, efecto gris 
  transition: filter 0.3s ease;*/
}

.brandSwiper img:hover {
  filter: grayscale(0%);
}

/* Flechas */
.brandSwiper .swiper-button-next,
.brandSwiper .swiper-button-prev {
  color: #004d4d; /* Ajusta color */
}

/* Carrusel de marcas */

.brandSwiper {
    width: 100%;
    padding: 20px 0;
}

.brandSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Ajuste específico para móvil */
@media (max-width: 480px) {
    .brand-logo {
        max-height: 60px;
    }
    
    .brandSwiper {
        padding: 15px 10px;
    }
}

@media (max-width: 3880px) {
    .brandSwiper .swiper-slide {
        padding: 0 15px;
    }
    
    .brand-logo {
        max-height: 50px;
        max-width: 90%;
    }
}

/* Testimonios */

.testimonial-item {
  text-align: center;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

.testimonial-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author img.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-author h3 {
  margin: 0;
  font-size: 18px;
  color: orange;
}

.testimonial-author span {
  font-size: 14px;
  color: #ccc;
}

/* Personalización Swiper */
.swiper {
  width: 100%;
  padding: 40px 0;
  height: 300px;
}

.swiper-button-next,
.swiper-button-prev {
  color: #FFFFFF !important;
}

.swiper-pagination-bullet {
  background: #FFFFFF !important;
}


#home {
  height: 100vh;         /* 100% de la altura visible */
  display: flex;         /* opcional: para centrar contenido */
  align-items: center;   /* centra verticalmente */
  justify-content: center; /* centra horizontalmente */
  overflow: hidden;      /* evita que algo se desborde */
}

.da-slider {
  height: 100%!important;
}


/* ERROR Pages */
#HomeVideoError	{
	position: fixed;
	right: 0;
	margin-left: -18%;
	margin-right: -18%;
	min-width: 100%;
	min-height: 100%;
	background-size: cover;
	height: auto;
	width: auto;
}
.message	{
	font-size: 35px;
	font-weight: lighter;
	float: right;
	padding: 20px 20px 10px 20px;
}
.title-error	{
	border-bottom: 1px solid #ffffff;
	text-align: center;
	padding: 10px;
	margin-bottom: 30px;
	position: relative;
}
.section .title-error > p {
	font-size: 20px;
	color: #ffffff;
	font-weight: lighter;
	margin-bottom: 0px;
	padding-top: 15px;
}
.button-error   {
    display:block;
    border:1px solid #ffffff;
    color:#12525A;
    background-color:#ffffff;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
	transition: .5s ease all;
	position: relative;
}
.button-error:hover, .button-error:active{
    background-color:transparent;
    color:#ffffff;
}
.footer-error	{
	background: #12525A none repeat scroll 0 0;
	bottom: 0;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 1001;
	opacity: 0.95;
}

/* Slider */
.da-dots span {
    width:30px !important;
    height:30px !important;
    margin:0 10px 0 0 !important;
    background:#12525A !important;
	border:#12525A solid 3px;
	transition: .3s ease all;
	
}
.da-dots span.da-dots-current {
   background:#ff6f00 !important;
   margin-bottom: 15px !important;
   padding: 5px;
   border: #ff6f00 solid 5px;
}

/**** HOME ****/
#HomeVideoBG {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  z-index: -1;
  background-size: cover;
}
main {
	width:40%;
	background:rgb(0,0,0,0.5);
	color:#ff6f00;
	padding:20px;
	margin:5%;
	z-index:1;
}

/**** Software Icons ****/
.bx-wrapper img {
	width:100% !important;
}

/* Footer */
.footerlinks {
	margin: 30px 0;
}
.footerlinks li{
    display: inline;
    padding: 10px;
	color:#919191;
}

/*
1. General
**********************************************************************/
.da-slider .mask {
	background: rgba(0, 0, 0, 0) url("../images/slide_mask.png") repeat scroll 0 0;
}
/*
1. General
**********************************************************************/
 body {
    font-family:'Roboto', sans-serif;
    color: #FFF;
    line-height:1.2em;
    font-size:17px;
    line-height:25px;
}
a {
    color:#12525A;
    text-decoration: none;
}
a:hover {
    color: #ff6f00;
    text-decoration:none;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}
h1 {
    margin: 10px;
}
p {
    padding: 10px;
    font-weight: 100;
    color: #fff;
	line-height: 25px;
}
.right {
	float:right;
}
.left {
	float:left;
}
.underline {
	border-bottom:1px solid #ff6f00;
	width:100%;
	padding-bottom:10px;
}
.navbar {
    background: #12525A;
    margin-bottom:0;
    min-height:70px;
}

.navbar-fixed-top {
    min-height:60px;
    height:60px;
    padding-top:0;
}
.navbar-inner {
    background:#12525A;
    border-radius:0;
    filter: none;
    border: none;
    box-shadow: none;
	opacity:0.95;
}
.navbar .brand {
	padding-bottom: 5px;
	padding-top: 10px;
}
.navbar .brand img {
	height: 100%;
}
.navbar .nav > li > a {
    text-transform:uppercase;
    line-height: auto;
    vertical-align: middle;
    margin:10px 3px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: 1px solid #12525A;
    box-shadow: none;
    font-size:15px;
    text-shadow: none;
    color: #fff;
    transition: background-color 1s ease;
	border-radius:0px;
}
.navbar .nav > li:hover> a, .navbar .nav > .active > a, .navbar .nav > .active > a:hover, .navbar .nav > .active > a:focus {
    color: #FFFFFF;
    background-color: #ff6f00;
    transition: background-color 1s ease;
}
/* --- Portfolio Menu (centrado y responsivo) --- */

.nav-pills {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0px;
  padding: 0px 0;
  margin-bottom: 30px;
  text-align: center;
}

.nav-pills > li > a {
  color: #12525A; /* color normal del ícono */
  background: transparent; /* sin fondo */
  font-size: 55px;
  padding: 10px;
  transition: transform 0.2s ease, color 0.3s ease;
}

/* Hover y activo: cambia color + zoom, sin fondo */
.nav-pills > li > a:hover,
.nav-pills > .active > a,
.nav-pills > .active > a:hover,
.nav-pills > .active > a:focus {
  background: transparent; /* <-- SIN fondo blanco */
  color: #FF6F00;          /* color del icono al pasar el cursor */
  transform: scale(1.25);  /* efecto zoom */
}
.navbar .btn-navbar:hover, .navbar .btn-navbar {
    border-radius:0px;
    background:#ff6f00;
    color: #12525A;
	font-size:16px;
	text-shadow:0px 0px 0px;
	margin-top:10px;
	margin-right:15px;
	
}
.white-color {
	color: #ffffff !important;
}

/* My Code */

/* Boost CSS line 467 - TOP */
.row-fluid .span4a {
	width:100%;			/* width: 31.914893617021278%; */
	*width:100%;		/* *width: 31.861702127659576%; */
}

/******
2. Layout
**********************************************************************/
.empty {
	padding-top: 30px;
	background-color: #12525A;
}
.centered {
    margin-left:auto;
    margin-right:auto;
    float: none;
    text-align: center;
}
/* Use this class if you want ceter element with span* class */
 .center {
    float: none !important;
    margin: 0 auto !important;
    text-align: center;
}
.highlighted-box {
    background:#F4F8F9;
    padding:20px 30px;
	border-radius:0px;
}
.highlighted-box h1 {
    margin:0px;
}
.large-text {
    line-height:1.2em;
    font-size: 30px;
    color: #12525A;
    padding:20px;
    margin-bottom:20px;
}
.highlighted-box h1, .highlighted-box p {
    color: #12525A !important;
}
.circle-border {
    display: inline-block;
    -webkit-border-radius: 500px;
    -moz-border-radius: 500px;
    border-radius: 10px;
    -khtml-border-radius: 500px;
    border: 3px solid #12525A;
}
.left-align {
    text-align:left;
}
.right-align {
    text-align:left;
}
.error {
    color: #CF0000;
    display: none;
}
.invisible {
    display:none;
    visibility:visible;
}
.triangle {
    margin: 0 auto;
    text-align:center;
    width: 0;
    height: 0;
    border-top: 80px solid #12525A;
    border-left: 950px outset transparent !important;
    border-right: 220px outset transparent !important;
    position: relative;
}
/*
2.1 Animations
**********/
.zoom-in {
  font-size: 150px;
  color: #12525A;
  padding: 10px;
  transform: scale(1, 1);
  transition: all 550ms ease;
  /* Mantén los prefijos existentes para compatibilidad */
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
}
.zoom-in:hover {
	color:#ff6f00;
    border: 3px solid #ff6f00;
	border-radius:500px;
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
    -ms-transform: scale(1.1, 1.1);
}
/*
2.2 Buttons - There are buttons on a transparent background, primary and secondary color background.
**********/
.ref-button {
    border:1px solid #12525A;
    float: right;
    margin-top: -25px;
    padding: 5px 10px;
	color:#12525A;
	transition: .3s ease all;
}
.ref-button:hover {
    background: #12525A none repeat scroll 0 0;
	color:#ffffff;
}
.button,  .button:visited, .button:focus {
    display:block;
    color:#FFFFFF;
    background-color:#12525a;
    padding:15px 30px;
    font-size:17px;
    line-height:auto;
	transition: .5s ease all;
}
.button:hover, .button:active{
    background-color:#ff6f00;
    color:#fff;
}
.button-sp, .button-sp:visited, .button-sp:focus {
    border:none;
    background-color:#12525A;
    color:#ffffff;
	transition: .3s ease all;
}
.button-sp:hover, .button-sp:active {
    background-color:#ff6f00;
    color:#ffffff;
}
.button-ps, .button-ps:visited, .button-ps:focus {
    border:none;
    background-color:#12525A;
    color:#ff6f00;
}
.button-ps:hover, .button-ps:active {
    background-color:#ff6f00;
    color:#12525A;
}
/*
2.3 Thumbnails - Predefined bootstrap's thumbnail class.
**********/
 .thumbnail {
    width:100%;
    height:100%;
    padding:0;
    overflow: hidden;
    position: relative;
    border:0;
    border-radius:0px;
    box-shadow:none;
    text-align:center;
    background: #12525A;
}
.thumbnail .more {
    display:block;
    z-index:4;
    position:absolute;
    top:-100px;
    left:50%;
    margin:0 auto;
    margin-left:-41px;
    width:80px;
    height:80px;
    font-size:60px;
    color:#fff;
    text-decoration:none;
    line-height: 70px;
    text-align: center;
}
.thumbnail:hover .more {
    top:40%;
    margin-top:-40px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3 s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.thumbnail h3, 
.thumbnail p {
    margin:0;
    padding:0;
    position:relative;
    z-index:4;
}
.thumbnail h3 {
    color: #ff6f00;
    margin-top:10px;
    font-size:20px;
}
.thumbnail > p {
    padding-bottom:20px;
}
.thumbnail .mask {
    opacity:0.85;
    filter: alpha(opacity=85);
    top:100%;
    left:0;
    width:100%;
    height:100%;
    background:#12525A;
    position:absolute;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2 s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}
.thumbnail:hover .mask {
    top:0;
}
.paper-plane {
	padding-right: 15px;
}
/*
2.4 Social icons
************/

/* Social-Serv */
.social-serv {
    list-style: none;
    float: none;
    position:relative;
    margin:10px 0px 0px 0px;
}
.social-serv li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 32px;
    padding:0 20px;
}
.social-serv li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #FFFFFF;
	transition: .3s ease all;

}
.social-serv li a:hover {
    color:#ffffff;
}
.team .thumbnail:hover .social-serv {
    z-index: 5;
}
.team .thumbnail:hover .social-serv a {
    color:#12525A;
}
.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social-serv a:hover {
    color:#ff6f00;
}

/* Social */
 .social {
    list-style: none;
    float: none;
    position:relative;
    margin:30px 0px 0px 0px;
}
.social li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 32px;
    padding:0 5px;
}
.social li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #ff6f00;
}
.social li a:hover {
    color:#ffffff;
}

/* Social Contact */
 .social-contact {
    list-style: none;
    float: none;
    position:relative;
    margin:30px 0px 0px 0px;
}
.social-contact li {
    display:inline-block;
    line-height: 32px;
    font-family:'Porta';
    font-size: 60px;
    padding: 10px 20px;
}
.social-contact li a {
    margin:0;
    padding:0;
    width:32px;
    height:32px;
    color: #ffffff;
	transition: .3s ease all;
}
.social-contact li a:hover {
    color:#ff6f00;
}

/* Social Footer */
 .social-footer {
    list-style: none;
    float: none;
    position:relative;
    margin:5px 0px 0px 0px;
	font-size: 24px;
}
.social-footer a {
    margin:0;
    padding-left:15px;
    width:32px;
    height:32px;
    color: #ffffff;
	transition: .3s ease all;
}
.social-footer a:hover {
    color:#ff6f00;
}

/*
3. Sections 
***************************************************************************/
.bg-image-section {
    background: #12525A url("../images/myself/nd.png") no-repeat center;
}
 .section {
    padding-bottom: 50px;
	max-width: 100%; 
    overflow-x: hidden;
}
.section .container {
    padding-top:10px;
}
.section .title {
    text-align: center;
    padding:10px;
    margin-bottom: 30px;
}
.section .title h1 {
    font-weight: normal;
    margin-bottom: 20px;
    padding: 0;
}
.section .title > p {
    font-size: 20px;
    color: #FFF;
    font-weight: lighter;
}
.primary-section {
    background:#12525A;
}
.primary-section .triangle {
    border-top: 80px solid #FFFFFF;
	border-left: 120px solid transparent !important;
	border-right: 1050px solid transparent !important;
}
.primary-section .title {
    border-bottom: 1px solid #FFF;
}
.primary-section, .primary-section .title p, .primary-section h3 {
    color: #ff6f00;
}
.primary-section h1 {
    color:#FFFFFF;
}
.secondary-section {
    background: #ffffff url() fixed repeat center;
}
.secondary-section .title {
    border-bottom: 1px solid #12525A;
}
.border-bottom-white {
    border-bottom: 1px solid #FFFFFF !important;
}
.secondary-section h1, .secondary-section .title p {
    color: #12525A;
}
/* Third section use bacground image */
.third-section {
    padding-bottom: 70px;
    background: #12525A url(../images/content-bg.jpg) fixed repeat center;
}
.third-section .container {
    padding-top:20px;
    position:relative;
}
.third-section .title {
    border-bottom: 1px solid #12525A;
    color: #12525A;
}
.sub-section {
    margin-top:30px;
}
.sub-section .title {
    padding:0;
}

/**************************************
	 			My Self  
***************************************/

.tools-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* separación entre íconos */
  align-items: center;
  margin-top: 10px;
}

.tools-icons img {
  width: 70px;  /* ajusta tamaño según tu diseño */
  height: auto;
  opacity: 0.7;            /* un poco atenuado */
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.tools-icons img:hover {
  transform: scale(1.5);   /* ligero zoom */
  opacity: 1;
}

/**.tools-icons{
	font-size: 500% !important;
	color: #ffffff;
	padding: 10px 0 30px 0 !important;	
}**/


/**************************************
3.1 			Services  
***************************************/

/* Services */
.overlay{
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.75);
	z-index:1001;
}
/* estilo para lo que este dentro de la ventana modal */
.modal {
    box-shadow: 15px 15px 20px rgba(0, 0, 0, 0.45);
	text-align:left;
	border-radius:0px;
	display: none;
	position: fixed;
	top: 15%;
	padding: 10px 25px 10px 25px;
	background: #12525A;
	z-index:1002;
	overflow: auto;
	height:65%;
}
.service-description-icon{
	font-size: 60px;
	float: left;
	padding-right: 20px;
}
.program-icon{
    margin-bottom: 25px;
    margin-right: 6px;
    margin-top: 0;
    width: 60px;
}
.end {
    margin-right: 0px;
}
.service{
    margin-top:20px;
}
 .service, .service h2 {
    padding-top:15px;
}
.close-service {
    border: 1px solid #ff6f00;
    border-radius: 0px;
    color: #ff6f00;
    float: right;
    font-size: 20px;
    height: 29px;
    line-height: 1.4;
    margin: 10px 0 0 10px;
    text-align: center;
    width: 30px;
	transition: .3s ease all;
}
.close-service:hover {
	color:#12525A;
	background:#ff6f00;
	border:none;
}
.service-p {
	padding:10px 0 0;
	line-height:24px;
}
.service-p-color {
	padding:10px 0 0;
	line-height:24px;
	color:#ff6f00;
}
.service img {
    width:150px;
    height:150px;
}
/*
3.2 Portfolio
***************************************/
.descrition-content {
	 position:relative;
}
.description-img {
	 position:absolute;
}
.description-close {
	 position:absolute;
}
 .single-project {
    margin-bottom:30px;
    background:#12525A;
	border-radius:0px;
}
.single-project img {
	border-radius:5px 5px 0px 0px;
}
.project-description {
    padding-right:20px;
}
.project-description p {
    padding-left:0;
}
.project-title-left {
  margin: 10px 0px 0px 15px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 100;
}
.project-title {
    margin-top:15px;
    margin-bottom:15px;
}
.project-title h3 {
    float:left;
    margin-top:0;
    padding:0;
    width:80%;
}
.project-title .close {
    color: #ff6f00;
    margin-top:10px;
	font-size:22px;
	opacity:1;
	padding-bottom: 2px;
	transition: .3s ease all;
}
.project-title .close:hover {
    color: #12525A;
}
.project-info span, .project-title h3 {
    color:#ff6f00;
}
.project-info {
    font-weight:100;
    padding:10px 0;
}
.project-info span {
    width: 80px;
    display: inline-block;
}
.project-info div {
    margin-bottom:5px;
}
.close {
    border: 1px solid #ff6f00;
    border-radius: 0px;
    color: #ff6f00;
    float: right;
    font-size: 20px;
    height: 33px;
    line-height: 1.5;
    margin: 10px 15px -35px 15px;
    text-align: center;
    width: 33px;
	opacity: 1;
	text-shadow: none;
	transition: .3s ease all;
}
.close:hover {
	background:#ff6f00 no-repeat scroll 0 0;
	border:none;
	color:#12525A;
	opacity: 1;
	margin:12px 17px -37px 15px;
}
#portfolio-grid .mix {
    opacity: 0;
    display: none;
}
.mywork {
	color:#ff6f00;
	padding:20px 0px 0px 10px;
}
.videoportfolio {
	border-radius:5px;
	width:100%;
}
.thumbnail > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
.thumbnail > img:hover {
    display: block;
	cursor:pointer;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
	filter: none;
	margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
/*
3.2.1 Vimeo iFrame
***************************************/
iframe.vimeo-embed {
	max-width: 96% !important;
	display: block;
	margin: 10px auto;
	border-radius: 0px;
	width: 770px;
	height: 400px;
}

/*
3.3 About
******************************************************************/
.qr-code {
	padding-top: 5%;
	width: 45%;
}
.team .thumbnail {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 10px;
    border: 1px solid #fff;
}
.team .thumbnail:hover .social {
    z-index: 5;
}
.team .thumbnail:hover .social a {
    color:#fff;
}
.team .thumbnail .mask {
    background: #ffffff;
}
.team .thumbnail .mask h2 {
    margin-top:5%;
}
.team .thumbnail .mask, .team .thumbnail .mask h3, .team .thumbnail .mask p, .team .thumbnail:hover h3, .team .thumbnail:hover .social a:hover {
    color:#181A17;
}
.about-text {
    margin-top:30px;
}
.about-text p {
    padding:0;
    font-size:16px;
}
/*********************************************************************
                        SKILLS BAR
*********************************************************************/
 .skills {
    list-style-type: none;
    position: relative;
    margin:0px;
}
.skills li {
    margin-bottom:20px;
    background:#FFF;
    height:20px;
    padding:1px;
	border-radius:0px;
}
.skills li h3 {
    position: relative;
    font-size: 15px;
    padding:0;
    margin:0;
    left: 10px;
    z-index: 1;
    color: #ffffff;
	line-height: 20px;
}
.skills li .bar1 {
    height:20px;
    position:absolute;
    background-color: #ff6f00;
	border-radius:0px;
}
.skills li .bar2 {
    height:40px;
    position:absolute;
    background-color:#1FABDB;
	border-radius:0px;
}
.skills li .bar3 {
    height:40px;
    position:absolute;
    background-color:#1FABDB;
	border-radius:0px;
}

/*
3.4 Clients
**********************************************************************/

.client-slider img {
}
.client-slider img:hover {
    background-color:none;
}
.client-nav {
    list-style:none;
    margin-top:23px;
}
.client-nav li {
    float:left;
    display:block;
    margin-left:20px;
}
.client-nav li a {
    display:inherit;
}
.client-nav li a:hover {
	border-right-color: #ff6f00;
	border-left-color: #ff6f00;
}
.bx-prev {
	width: 0px;
	height: 0px;
	border-right: 20px solid #12525A;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transition: .3s ease all;
}
.bx-next {
	width: 0px;
	height: 0px;
	border-left: 20px solid #12525A;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	transition: .3s ease all;
}
.testimonial p {
    color:#12525A;
    background:#FFF;
    padding:15px;
    margin:0;
	font-size:14px;
}
.testimonial .arrow {
    margin-left:0px;
    width:0;
    border-top:15px solid #FFF;
    border-left: 50px outset transparent;
    border-right: 250px outset transparent;
}
.testimonial .whopic {
    display:inline-block;
}
.testimonial .whopic img {
    margin-top:10px;
    width:150px;
    height:50px;
    float:left;
}
.testimonial .whopic strong {
    float: left;
    font-weight: normal;
    margin-top: 15px;
    padding-left: 10px;
}
.testimonial .whopic small {
    display:block;
    font-size:14px;
	color:#fff;
    
}
.testimonial-text{
    display:block;
    font-size:22px;
    text-align:center;
    margin:0 auto;
    margin-top:30px;
    width:70%;
    line-height:1.3em;
}
/*
3.5 Price table
******************************************************************/
 .price-table {
    margin-top: 70px;
    margin-bottom: 20px;
}
.price-column {
    background-color:white;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding-bottom:20px;
    margin:0 auto;
    text-align:center;
}
.price-column h3 {
    background-color:#12525A;
    text-transform:uppercase;
    text-align: center;
    color:#ff6f00;
    padding:40px 0px;
    font-size: 36px;
    margin-top:0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 10px 10px 0px 0px;
    border-radius: 10px 10px 0px 0px;
}
.price-column .list{
    list-style:none;
    margin:20px 50px;
}
.price-column .list li{
    font-weight:lighter;
    color:#747C89;
    font-size:20px;
    border-bottom:1px solid #747C89;
    padding:25px 0px;
}
.price-column .list li.price {
    text-align: center;
    font-size:31px;
    background-color:white;
    color:#747C89;
    margin-top:25px;
}
.price-text{
    margin:30px 0 20px;
    font-size:20px;
    color: #12525A;
    font-weight:normal;
}
/*
3.6 Newsletter
********************************************************************/
 .newsletter, .newsletter h2 {
    color: #D7DDDE;
}
.newsletter .title h2 {
    text-align:left;
    padding:0;
    margin:0;
}
.newsletter form {
    text-align:right;
}
.newsletter input {
    margin-top:10px;
    padding:15px;
    height: auto;
}
.newsletter button {
    margin: 0 0 0 20px;
}
.newsletter .button-sp:hover, .newsletter .button-sp:active {
    background-color:#FFF;
    color:#12525A;
}

/*
3.7 Contact
********************************************************************/
 .contact {
    background: #ff6f00;
}
.contact h1, .contact h2, .contact h3, .contact h4, .contact h5, .contact h6, .contact .section .title > p, .contact .social > li > a {
    color: #12525A;
}
.contact textarea, .contact input[type="text"], .contact input[type="email"] {
    padding: 10px;
    line-height: 20px;
    height: auto;
}
.contact textarea {
    height: 120px;
}
.contacts, .contact .social {
    color: #fff;
    list-style: none;
    margin-left: 10px;
}
.contacts > li {
    margin-top: 15px;
}
.contacts > li > a {
    color: #fff;
}
.contact-info {
    margin-top:10px;
    margin-bottom:10px;
}
.contact-info p{
     font-weight:normal;
}
.contact-info .icon {
    margin:10px auto;
    font-size:30px;
}
.map-wrapper {
    position:relative;
    height:500px;
}
.map-canvas {
    position:absolute;
    margin-bottom:20px;
    width:100%;
    height:500px;
    color: #29383F;
    position:absolute;
    left:0;
    top:0;
    right:0;
}
.contact .social {
    display: inline-block;
    margin-left:0;
}
.contact .social li {
    line-height: 32px;
    padding:10px 10px;
    font-family:'Porta';
    font-size: 50px;
    transition: margin 0.4s;
    -webkit-transition: margin 0.4s;
}
.contact .social li a {
    color:#fff;
}
.contact .social li a:hover {
    color:#12525A;
}
.contact-form {
    background:#fff;
    background: rgba(255, 255, 255, 0.9);
    z-index:110;
    position:relative;
    margin-top:-25px;
    padding:20px;
}
.contact-form h3 {
    color:#838589;
    padding-bottom:20px;
}
.message-btn {
    border:1px solid #747C89;
    color:#747C89;
    background-color:transparent;
    padding:15px 30px;
    font-size:17px;
}
.message-btn:hover {
    background-color:#ff6f00;
}
.contact-info {
    text-align:center;
    font-size:22px;
}
.info-mail {
    border:1px solid white;
    width:60%;
    margin:0 auto;
    padding:15px;
    color:#12525A;
}
.black {
    color:#12525A;
}
/*
3.8 Footer
********************************************************************/
 .footer {
	background: #12525A none repeat scroll 0 0;
	box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
	bottom: 0;
    position: fixed;
    text-align: center;
    width: 100%;
	z-index: 1001;
}
.footer > p {
    color: #ffffff;
	margin-top:10px;
	margin-bottom:10px;
}
.scrollup {
	border-left: 20px solid transparent;
	border-right:  20px solid transparent;
	border-bottom: 35px solid #ff6f00;
    cursor:pointer;
    width:0px;
    height:0px;
    position:fixed;
    bottom:35px;
    right:20px;
    display:none;
	z-index: 1001;
	transition: .3s ease all;
}
.scrollup:hover {
	border-bottom-color: #ffffff;
}
.scrollup > a {
    position:relative;
    top:7px;
    color:#fff;
}
.copyright {
    color:#FFFFFF;
	margin:5px 0px 0px 0px;
	letter-spacing: 0.1em;
	font-size: 12px;
}


/************************************************************************

							4 Responsible

************************************************************************/

@media (max-width: 767px) {
  .tools-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

 @media (min-width: 1200px) {


/* Boost Resp line 270 - @media (min-width: 1200px) */
	.row-fluid .span4a {
		width:100%;			/* width: 31.623931623931625%; */
		*width:100%;		/* *width: 31.570740134569924%; */
	}

    .thumbnail .more {
        margin-left:-41px;
        width:80px;
        height:80px;
        border-radius:40px;
        line-height: 80px;
    }
}

@media (max-width: 979px) {
	
	.message	{
	font-size: 25px;
	padding: 15px 20px 10px 20px;
}

	#HomeVideoError	{
	margin-right:-40%;
}

	.tools-icons{
	font-size: 400% !important;
}

	.navbar .brand {
		width: 140px;
		padding-left: 20px;
}

	iframe.vimeo-embed {
		height: 260px;
}
	.close {
    	margin: 10px 15px -35px 0px;
}
	.close:hover {
		margin:12px 15px -37px 0px;
}
/* Boost Resp line 620 - @media (min-width: 768px) and (max-width: 979px) */
	.row-fluid .span4a {
		width:100%;			/* width: 31.491712707182323%; */
		*width:100%;		/* *width: 31.43852121782062%; */
	}
	.navbar-fixed-top {
		height:60px;
	}
    body {
        padding-left:0;
        padding-right:0;
    }
    .navbar-fixed-top, .navbar-fixed-bottom {
        position: fixed;
    }
    .navbar .nav > li > a {
        line-height: 20px;
        vertical-align: middle;
		letter-spacing: 1px;
		font-weight: normal;
    }
    .section {
        padding-left:20px;
        padding-right:20px;
		overflow: hidden;
    }
    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0px;
        margin-right: 0px;
    }
    .nav-collapse {
        clear: both;
    }
    .nav-collapse .nav {
        float: none;
        margin: 0 0 10px;
    }
    .nav-collapse .nav > li {
        float: none;
    }
    .nav-collapse, .nav-collapse.collapse {
        width: 100%;
        display: inherit;
    }
    .thumbnail .more {
        margin-left:-21px;
        width:40px;
        height:40px;
        border-radius:30px;
        line-height: 40px;
    }
    .thumbnail:hover .more {
        margin-top:-20px;
    }
    .newsletter form {
        text-align:center;
    }
	.footer {
	position: relative;
	}
	.empty {
	padding-top: 0px;
	}
	.testimonial .arrow{
	border-right: 180px outset transparent;
	}
}
	
@media (max-width: 767px) {
	
	#HomeVideoError	{
		margin-right:-65%;
	}
	iframe.vimeo-embed {
		height: 375px;
	}
    .info-mail {
        width:90%;
        padding:15px 0px;
    }
    .project-description {
        padding-left:20px;
    }
    .price-column, .testimonial {
        margin-top:30px;
    }
}

@media (max-width: 660px) {

	#HomeVideoError	{
	margin-right:-85%;
	}

	.tools-icons{
	font-size: 500% !important;
	}

	.da-dots span.da-dots-current{
	padding: 0px;
	}
	.da-dots span{
	width: 20px !important;
	height: 20px !important;
	}
	.da-slide{
	margin-top: -50px;
	}
	.service-description-icon{
	font-size: 100px;
	}

	iframe.vimeo-embed {
		height: 320px;
	}
}

@media (max-width: 580px) {
	
	#HomeVideoError	{
		margin-right:-100%;
	}

	iframe.vimeo-embed {
		height: 280px;
	}
}

@media (max-width: 500px) {
	
	#HomeVideoError	{
		margin-right:-125%;
	}

	iframe.vimeo-embed {
		height: 230px;
	}
}
	
@media (max-width: 450px) {
	
	#HomeVideoError	{
		margin-right:-145%;
	}

	iframe.vimeo-embed {
		height: 200px;
	}
}
	
@media (max-width: 400px) {
	
	#HomeVideoError	{
		margin-right:-175%;
	}

	iframe.vimeo-embed {
		height: 180px;
	}
}

/* Tablets grandes */
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar .nav > li > a {
    padding: 8px 12px;
    font-size: 14px;
  }
  
  .tools-icons {
    font-size: 300% !important;
  }
}

/* Móviles grandes */
@media (min-width: 481px) and (max-width: 767px) {
  .da-slide h2 {
    font-size: 24px;
  }
  
  iframe.vimeo-embed {
    height: 250px;
  }
}

/* Móviles pequeños */
@media (max-width: 480px) {
  .navbar-inner {
    padding: 10px;
  }
  
  .section .title h1 {
    font-size: 28px;
  }
  
  .service-description-icon {
    font-size: 80px;
  }
}