/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
body,html,img,p,a,ul,li,ol,h1,h2,h3,h4,h5,h6{
    margin: 0;
    padding: 0;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
/*	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;*/
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25em;
	color:#2f3542;
}

h1,h2,h3,h4,h5,h6{ font-family: 'Raleway', sans-serif; }
p{ 
    display: block;
    margin-bottom: 20px;
}

/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#444;
	text-decoration:none;
}
a:hover {
	color:#444;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}


.bg-red{ background-color: #e10c2b;}
.bg-gray{ background-color: #f1f2f6;}
.bg-white{ background-color: #FFFFFF;}

.g-box-shadow{
    box-shadow: 0 0 5rem #100e17;
    border-radius: 10px;
}

/*------------------------------------*\
    EXPANSION DE CONTENEDORES
\*------------------------------------*/
.p40{ padding: 40px 0;}
.p60{ padding: 60px 0;}
.p80{ padding: 80px 0;}
.p120{ padding: 120px 0;}
.p160{ padding: 160px 0;}
.p180{ padding: 180px 0;}
.p200{ padding: 180px 0;}

.pt40{ padding-top: 40px;}
.pt60{ padding-top: 60px;}
.pt80{ padding-top: 80px;}
.pt100{ padding-top: 100px;}

.pb20{ padding-bottom: 20px;}
.pb40{ padding-bottom: 40px;}
.pb60{ padding-bottom: 60px;}
.pb80{ padding-bottom: 80px;}
.pb100{ padding-bottom: 100px;}

/*------------------------------------*\
    ANCHO DE ELEMENTOS
\*------------------------------------*/
.c50{ width: 50%; margin: 0 25%;}
.c60{ width: 60%; margin: 0 20%;}
.c70{ width: 70%; margin: 0 15%;}
.c80{ width: 80%; margin: 0 10%;}
.c90{ width: 90%; margin: 0 5%;}
.w40{ width: 40%;}
.w50{ width: 50%;}
.w60{ width: 60%;}
.w80{ width: 80%;}

/*------------------------------------*\
    FLEX
\*------------------------------------*/

.flex{ 
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
}
.flex-column{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}
.flex-row{
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}
.flex-wrap{ 
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
}
.flex-between{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
}
.flex-around{
    -ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
            justify-content: space-around;
}
.flex-center{ 
    -webkit-box-align: center; 
        -ms-flex-align: center; 
    -webkit-align-items: center; 
            align-items: center;
}
.flex-middle{
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
}
.flex-half{
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
}
.flex-end{
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
            justify-content: flex-end;
}
.flex-start{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.flex-bottom{
    align-items: baseline;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
/*
	max-width:1280px;
	width:95%;
*/
    width: 80%;
	margin:0 auto;
	position:relative;
}
/* header */
.header {
    padding: 10px 0;
}
/* logo */
.logo {
    width: 180px;
}
.logo img{
    width: 100%;
}

/* sidebar */
.sidebar {

}
.main{
    position: relative;
    width: 100%;
    margin-bottom: 390px;
    background-color: #FFFFFF;
    z-index: 999;
}
/* footer */
.footer {

}

/*------------------------------------*\
    HEADER
\*------------------------------------*/
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 9999;
}

header.fixed-top {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 1);
    -webkit-box-shadow: 0px 18px 40px -30px #23263a;
            box-shadow: 0px 18px 40px -30px #23263a;
    -webkit-animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
            animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
}
header, header.fixed-top{
    display: block;
    padding: 10px 0;
    
}
.fixed-top .logo{
    width: 150px;
}
.txt_red{
    color: #e10c2b;
}


/*------------------------------------*\
    HOME
\*------------------------------------*/
.home h1{
    display: none;
}
#contacto h2{
    width: 90%;
    color: #FFFFFF;
    font-size: 24px;
    line-height: 30px;
}
#contacto h2 strong{
    clear: both;
    display: block;
    font-size: 52px;
    line-height: 60px;
    letter-spacing: 2px;
    margin-top: 20px;
}
input.wpcf7-submit{
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    color: #FFFFFF;
    background-color: #e10c2b;
}
#acerca h4{
    font-size: 42px;
    line-height: 60px;
    letter-spacing: 1px;
    padding-bottom: 20px;
    color: #e10c2b;
}
#acerca p{
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 1px;
    text-align: justify;
}
.title-center{
    display: block;
    font-size: 32px;
    line-height: 50px;
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 40px;
    color: #e10c2b;
}
#empresa_persona .wpcf7-form-control.wpcf7-radio {
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
}
.box-form h4, .box-form p{
    display: block;
    width: 80%;
    margin: 0 10%;
    text-align: center;
}
.box-form h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 2px;
    padding: 20px 0;
}
.box-form p{
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
    padding-bottom: 20px;
}
.box-form p a{
    clear: both;
    display: block;
    font-weight: 700;
    color: #e10c2b;
    cursor: pointer;
}
/*------------------------------------*\
    MULTIMARCA
\*------------------------------------*/
#multimarca p{
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
}

/*------------------------------------*\
    SERVICES
\*------------------------------------*/
.img-service img{
    display: block;
    width: 100%;
}
.title-service{
    position: relative;
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    min-height: 120px;
    background-color: #e10c2b;
}
.title-service::after{
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 104px;
    height: 135px;
    background: url(img/site/mesh.png) no-repeat;
/*    background-color: aquamarine;*/
}
.title-service h2{
    display: block;
    width: 50%;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 20px;
    text-align: center;
    margin: 0 20% 0 30%;
    color: #FFFFFF;
}
.info-service{
    display: block;
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
    -webkit-align-items: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
    -webkit-justify-content: center;
            justify-content: center;
    min-height: 300px;
    text-align: center;
    padding: 25px 0;
    background-color: #FFFFFF;
}
.info-service p{
    display: block;
    width: 80%;
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 1px;
    text-align: justify;
    margin: 0 10%;
}


/*------------------------------------*\
    EXPERIENCIA
\*------------------------------------*/
.info-door-2-door h2{
    margin-bottom: 20px;
}
.info-door-2-door h2 strong{
    clear: both;
    display: block;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 70px;
}
.info-door-2-door p{
    font-size: 24px;
    line-height: 40px;
    text-align: justify;
}
.info-door-2-door h2, .info-door-2-door p{
    width: 75%;
    color: #FFFFFF;
}
.info-door-2-door{
    width: 70%;
    margin-left: 5%;
}



/*------------------------------------*\
    EXPERIENCIA
\*------------------------------------*/
.experience-single h2, .experience-single p{
    display: block;
    width: 80%;
    margin: 0 10%;
    text-align: center;
}
.experience-single h2{
    font-size: 24px;
    line-height: 30px;
    padding-top: 20px;
}
.experience-single p{
    padding-top: 20px;
    text-align: justify;
}
.experience-single p strong{
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
}
/*------------------------------------*\
    COTIZADOR
\*------------------------------------*/
#cotizador{
/*    border-bottom: 25px solid rgba(19, 19, 19, 0.9);*/
}
#cotizador h4{
    color: #FFFFFF;
}
#cotizador form{
    padding: 20px;
}


/*------------------------------------*\
    FACEBOOK
\*------------------------------------*/
.face-container{
    position: relative;
    min-height: 500px;
    
}
.face-container iframe{
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50% , 0);
        -ms-transform: translate(-50% , 0);
            transform: translate(-50% , 0);
    padding: 20px 0;
}
.title-box-face h3{
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    letter-spacing: 1px;
    color: #a4b0be;
}
.title-box-face h3 strong{
    clear: both;
    display: block;
    font-size: 32px;
    line-height: 1;
    color: #FFFFFF;
    padding-bottom: 60px;
}
/*------------------------------------*\
    FOOTER
\*------------------------------------*/
body{
    background-color: #610513;
/*    background-color: #2f3542;*/
}
footer{
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 60px 0;
    background-color: #610513;
/*    background-color: #2f3542;*/
    z-index: 99;
    -webkit-transition: left .33s cubic-bezier(.694, .0482, .335, 1);
         -o-transition: left .33s cubic-bezier(.694, .0482, .335, 1);
            transition: left .33s cubic-bezier(.694, .0482, .335, 1);
    -webkit-backface-visibility:hidden
}
.footer-box{
    width: 90%;
    margin: 0 5%;
/*    background-color: aquamarine;*/
}

.footer-box h3{
    display: block;
    text-align: center;
    margin-bottom: 20px;
}
.footer-left, .footer-center, .footer-right{
    width: 30%;
}
.footer-left h3, .footer-center h3, .footer-right h3{
    text-transform: uppercase;
    letter-spacing: 2px;
}
.footer-left h3, .footer-center h3, .footer-right h3{
    color: #FFFFFF;
}
.footer-left p, .footer-center p, .footer-right p, .footer-center a{
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: center;
    color: #93A6CF;
    color: rgba(255, 255, 255, 0.8);
}
.footer-left p{ text-align: justify;}
.footer-center strong{
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    line-height: 30px;
}
.footer-center a{
    display: block;
    text-decoration: none;
    cursor: pointer;
    padding-bottom: 10px;
    color: #E65067;
}
.footer-center a:hover{
    color: #FFFFFF;
}
.footer-left .copyright{
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: #65738F;
    color: #E65067;
}
.social-footer{ list-style: none;}
.social-footer li{
    margin-right: 20px;
}
.social-footer li:last-child{
    margin-right: 0px;
}
.social-footer a{
    width: 40px;
    height: 40px;
    line-height: 40px;
    border: 2px solid #E65067;
    border-radius: 50%;
    color: #E65067;
}
.social-footer a:hover{
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}
/*------------------------------------*\
    MENU
\*------------------------------------*/
.nav-main ul{
    display: -webkit-box; 
    display: -ms-flexbox; 
    display: -webkit-flex; 
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    list-style: none;
}
.nav-main ul li{
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #e10c2b;
}
.nav-main ul li:last-child{
    margin-right: 0px;
    padding-right: 0px;
    border-right: none;
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face {
	font-family:'Font-Name';
	src:url('fonts/font-name.eot');
	src:url('fonts/font-name.eot?#iefix') format('embedded-opentype'),
		url('fonts/font-name.woff') format('woff'),
		url('fonts/font-name.ttf') format('truetype'),
		url('fonts/font-name.svg#font-name') format('svg');
    font-weight:normal;
    font-style:normal;
}

/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

/*-------------------------------------------------
1. Media Queries to Fix Responsive Layouts
	1.1 Resolution (For Large Seized Desktops 1600x900)
	1.2 Resolution (For Medium Seized Desktops 1440x900)
	1.3 Resolution (For Small Seized Desktops 1280x800)
	1.4 Resolution (For Large Tablets 1024x800)
	1.5 Resolution (For Small Tablets 768x800)
	1.6 Resolution (For Mobile Phones 320x786)

-------------------------------------------*/
/*-------------------------------------------------
===================================================
	1. Media Queries to Fix Responsive Layouts
===================================================
-------------------------------------------------*/

/*-------------------------------------------------
	1.1 Resolution (For Large Seized Desktops 1600x900)
-------------------------------------------------*/
@media (min-width: 1921px) {
    .wrapper {
        width: 80%;
        max-width: 1600px;
        margin:0 auto;
    }
}

/*-------------------------------------------------
	1.1 Resolution (For Large Seized Desktops 1600x900)
-------------------------------------------------*/
@media (min-width: 1600px) and (max-width: 1919px) {
}
/*-------------------------------------------------
	1.2 Resolution (For Medium Seized Desktops 1440x900)
-------------------------------------------------*/
@media (min-width: 1440px) and (max-width: 1599px) {
}
/*-------------------------------------------------
	1.3 Resolution (For Small Seized Desktops 1280x800)
-------------------------------------------------*/
@media (min-width: 1281px) and (max-width: 1599px) {

}
/*-------------------------------------------------
	1.4 Resolution (For Large Tablets 1024x600)
-------------------------------------------------*/
@media (min-width: 1025px) and (max-width: 1280px) {

}
/*-------------------------------------------------
	1.5 Resolution (For Small Tablets 768x800)
-------------------------------------------------*/
@media (min-width: 0px) and (max-width: 1279px) {
    .wrapper {
        width: 98%;
        margin:0 1%;
    }
    #contacto, #acerca, #servicios, #multimarca, #cotizador{
        width: 94%;
        margin: 0 3%;
    }
    #contacto h2{
        font-weight: 300;
        letter-spacing: 1px;
        text-align: center;
    }
    #contacto h2 strong{
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 40px;
    }
    #acerca h4, .title-center{
        font-size: 24px;
        line-height: 30px;
    }
    #acerca h4, #acerca p{
        text-align: center;
    }
    #acerca p{
        font-size: 15px;
        letter-spacing: 0;
        text-align: justify;
    }
    #acerca img{
        margin-top: 40px;
    }
    #carousel-anything-2 .owl-dots{
        display: none;
    }
    #experiencia .title-center{
        margin-bottom: 0;
    }
    
    .footer-box .c90{
        -webkit-box-orient: vertical;
       -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
        
    }
    .footer-left, .footer-center, .footer-right{
        width: 98%;
        margin: 0 1%;
    }
    .footer-left p{
        text-align: justify;
        font-size: 14px;
    }
    .footer-center{
        margin: 40px 0;
        padding: 40px 0;
        border-top: 1px solid #7A2B37;
        border-bottom: 1px solid #7A2B37;
    }
    .main{
        margin-bottom: 40px;
    }
    footer{ position: relative;}
    footer .c70, .social-footer{
        width: 90%;
        margin: 0 5%;
    }
    .info-service p, .experience-single p strong{
/*        text-align: center;*/
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0;
    }
    .info-door-2-door{
        width: 100%;
        margin: 0;
    }
    .info-door-2-door h2, .info-door-2-door p{
        width: 100%;
        text-align: center;
    }
    .info-door-2-door h2 strong{
        font-size: 24px;
        line-height: 30px;
    }
    .info-door-2-door p{
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0;
    }
    
    .nav-main{ display: none;}
    .logo{
        margin: 0 auto;
    }
}

@media (min-width: 0px) and (max-width: 950px) {
    
    #experiencia img{
        border-top: 1px solid #dfe4ea;
        margin-top: 40px;
        padding-top: 40px;
    }
}
/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
