@import url(normalize.css);
@import url(font-awesome.min.css);
@font-face {
    font-family: 'OswaldRegular';
    src: url('../fonts/oswald-regular.eot');
    src: url('../fonts/oswald-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/oswald-regular.woff2') format('woff2'),
         url('../fonts/oswald-regular.woff') format('woff'),
         url('../fonts/oswald-regular.ttf') format('truetype'),
         url('../fonts/oswald-regular.svg#oswaldregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'RobotoCondensedLight';
    src: url('../fonts/robotocondensed-light.eot');
    src: url('../fonts/robotocondensed-light.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-light.woff2') format('woff2'),
         url('../fonts/robotocondensed-light.woff') format('woff'),
         url('../fonts/robotocondensed-light.ttf') format('truetype'),
         url('../fonts/robotocondensed-light.svg#roboto_condensedlight') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'RobotoCondensedRegular';
    src: url('../fonts/robotocondensed-regular.eot');
    src: url('../fonts/robotocondensed-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/robotocondensed-regular.woff2') format('woff2'),
         url('../fonts/robotocondensed-regular.woff') format('woff'),
         url('../fonts/robotocondensed-regular.ttf') format('truetype'),
         url('../fonts/robotocondensed-regular.svg#roboto_condensedregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
html, body{
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	font-family: 'RobotoCondensedRegular';
	font-size: 16px;
}
.ShowBox{
	opacity: 1 !important;
	pointer-events: auto !important;
}
.formated-section{
	padding-top: 60px;
	padding-bottom: 0;
}
.font-oswald{
	font-family: 'OswaldRegular';
}
/*=========== Barra de navegacion ===*/
.header{
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
.NavBarP,
.NavBarP-Logo,
.NavBarP-Nav,
.NavBarP-Nav > ul,
.NavBarP-Nav > ul > li,
.NavBarP-Nav > ul > li > a{
	height: 50px;
	line-height: 50px;
}
.NavBarP{
	height: 77px;
	background-color: #141414;
	color: #fff;
	position: relative;
	font-family: 'RobotoCondensedLight';
	text-transform: uppercase;
	font-size: 18px;
	text-align: center;
	user-select: none;
	-webkit-user-select: none;
	-moz-user-select: none;
}

.NavBarP-Logo,
.NavBarP-Nav{
	position: absolute;
	top: 0;
	background-color: #f29e00;
}
.NavBarP-Logo{
	left: 0;
	width: 30%;
	height: 77px;
	font-family: 'OswaldRegular';
}
.NavBarP-Nav{
	right: 0;
	width: 70%;
	height: 77px;
	padding-top: 20px;
}
.NavBarP-Nav > ul{
	text-align: right;
	padding-right: 66px;
}
.NavBarP-Nav > ul > li{
	display: inline-block;
	position: relative;
}
.NavBarP-Nav > ul > li > a{
	color: #fff;
	text-align: center;
	display: block;
	text-decoration: none;
	padding: 0 7px;
	transition: all .3s ease-in-out;
}
.NavBarP-Nav > ul > li > a:hover{
	color: #FAE76F;
}
.header-logo{
	width: 121px;
	/*height: 81px;*/
}

.NavBarP-Nav ul li a:after {
    content: "/";
    opacity: .4;
    position: relative;
    right: -15px;	
}
.NavBarP-Nav--disabled a::after{
	content: " " !important;
}

@media (max-width: 767px ) {

	.NavBarP-Nav ul li a:after {
		display: none;		
	}
	
}

/*=====BANNER====*/
.banner{
	position: relative;
	width: 100%;
	height: calc(100vh - 50px);
	background-color: #F5F5F5;
	background-size: cover;
	background-position: center;
	transition: all .1s ease-out;
	background-image: url('../img/banner-1.jpg');
	animation: banner 28s infinite linear;
}
.banner-content{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	color: #FFF;
	background-color: rgba(0 0 0 / 60%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.banner-content h1{
	margin: 0;
	padding: 0;
	padding-bottom: 30px;
	font-size: 40px;
	text-align: center;
}
.banner-content a{
	text-decoration: none;
	color: #FFF;
	padding: 9px 20px;
	border: 1px solid #FFF;
	text-transform: uppercase;
	transition: all .3s ease-in-out;
}
.banner-content a:hover{
	background-color: #fff;
	color: #333;
}
.banner-text{
	color: #f29e00;
	font-weight: bold;

}
@keyframes banner{
	0%{
		background-image: url('../img/banner-1.jpg');
	}
	25%{
		background-image: url('../img/banner-1.jpg');
	}


	26%{
		background-image: url('../img/banner-2.jpg');
	}
	50%{
		background-image: url('../img/banner-2.jpg');
	}


	51%{
		background-image: url('../img/banner-3.jpg');
	}
	75%{
		background-image: url('../img/banner-3.jpg');
	}
	

	76%{
		background-image: url('../img/banner-4.jpg');
	}
	100%{
		background-image: url('../img/banner-4.jpg');
	}

}

/*CARDS*/

h2{
    font-family: 'OswaldRegular';
    font-size: 30px;
    color: #333333;
}

.text-center{
    text-align: center;
    padding-top: 36px;
}

.cards{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    padding: 30px 0;
    gap: 2em;
}

.card {
    padding-bottom: 2.5em;
    width: 100%;
    border-radius: 1em;
    box-shadow: 0 0 6px #f29e00;
    display: flex;
    flex-direction: column;

}

.card:nth-of-type(1){
    --image: url(../img/servicios-01.jpg);
}

.card:nth-of-type(2){
    --image: url(../img/servicios-02.jpg);
}

.card:nth-of-type(3){
    --image: url(../img/servicios-03.jpg);
}

.card_img{
    background-image: var(--image);
    height: 200px;
    background-position: center top;
    background-size: cover;
    border-radius: 1em 1em 0 0;   
}

.card_texts{
    padding: 1em;
}
.card_paragraph{
    padding: 1.5em 0;
}

.card_cta {
    margin-left: 1em;
    background: #f29e00;
    /*box-shadow: 0 0 6px #f29e00;*/
    border-radius: 1em;
    color: #fff;
    text-decoration: none;
    padding: 1em 3em;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    margin-top: auto;
}

.card_lista ul {
    margin: 15px 0 0 15px;
    line-height: 1.2em;
}
.card_lista li {
    list-style-image: url('../img/check-solid.svg');
}



/*=============================================*/
/**********************************************/
/***************productos********************/

.products{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));

    padding: 30px 0;
    gap: 2em;
}

.product {
    padding-bottom: 2.5em;
    width: 100%;
    border-radius: 1em;
    box-shadow: 0 0 6px #f29e00;
    display: flex;
    flex-direction: column;

}

.product:nth-of-type(1){
    --image: url(../img/producto_1.jpg);
}

.product:nth-of-type(2){
    --image: url(../img/producto_2.jpg);
}

.product:nth-of-type(3){
    --image: url(../img/producto_3.jpg);
}

.product:nth-of-type(4){
    --image: url(../img/producto_4.jpg);
}

.product_img{
    background-image: var(--image);
    height: 200px;
    background-position: center top;
    background-size: cover;
    border-radius: 1em 1em 0 0;   
}

.product_texts{
    padding: 1em;
}
.product_paragraph{
    padding: 1.5em 0;
}

.product_cta {
    margin-left: 1em;
    background: #f29e00;
    /*box-shadow: 0 0 6px #f29e00;*/
    border-radius: 1em;
    color: #fff;
    text-decoration: none;
    padding: 1em 3em;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    margin-top: auto;
}

.product_lista ul {
    margin: 15px 0 0 15px;
    line-height: 1.2em;
}
.product_lista li {
    list-style-image: url('../img/check-solid.svg');
    
}
/*================UBICACION==============*/

.fondos{
    width: 100%;
    background-color:rgba(0 0 0 / 2%);
}

.ubics{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 30px 0;
    gap: 2em;
    align-items: center;
}

.ubic {

    width: 100%;
    /*border-radius: 1em;
    box-shadow: 0 0 6px #f29e00;*/
    display: flex;
    flex-direction: column;

}
.ubic_img{
    width: 100%;
    background-position: center top;
    background-size: cover;
    border-radius: 1em 1em 0 0;   
}
.ubic_title{
    text-align: center;
}
.ubic_texts{
    text-align: center;
    background: wheat;  
    padding: 20px 0;
}
.ubic_paragraph{
    padding: 1.5em 0;
}
.ubic_cta {
    margin-left: 1em;
    background: #f29e00;
    /*box-shadow: 0 0 6px #f29e00;*/
    border-radius: 1em;
    color: #fff;
    text-decoration: none;
    padding: 1em 3em;
    width: 200px;
    text-align: center;
    margin: 0 auto;
    margin-top: auto;
}

.ubic_lista{
    font-size: 18px;
}
.ubic_lista ul, li {
    margin: 15px 0 0 15px;
    line-height: 1.2em;
    list-style: none;
}
.ubic_nro{
    font-size: 33;
    color: red;
}
.ubic_nro_whats{
    width: 50px;
    height: 50px;
}

/*contact*/

.contact_container{
    align-items: center;
}

.footer__contact{
    line-height: 10px;
    margin-top: 20px;
    align-content: center;
    font-size: 18px;
    font-weight: bold;
}

.footer__contact::after{
    content: "Phone: +51 945 886 592";
    margin-left: 10px;

}
.footer__contact--email::after{
    content: "info@vera-electric.com";
}
.footer__contact--direction::after{
    content: "Jr. Victor Mantilla 302 Surquillo–Lima";
    font-size: 14px;
}
.footer__contact--vera::after{
    content: "Vera Electric Engineering sac";
    font-size: 14px;
}
.footer__img{
    position: relative;
    bottom: -6px;
}

/*footer*/
.footer{
    height: 200px;
    background-color: #f29e00;
}
.footer_nav{
    width: 90%;
    border-bottom: solid 1px rgba(230, 230, 230, 0.651);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin: 0 auto;
    padding-top: 33px;
    text-align: center;
}

.footer_nav__link{
    width: 100%;
    text-decoration: none;
    color: #FFF;
    padding: 5px;
    font-size: 17px;
}
.footer_nav__icons{
    width: 100%;
    padding: 2px;
}
.footer_nav_icon{
    height: 33px;
    width: 33px;
}

/*enfooter*/

/*=======================================================================================================
=                                        Media queries                                                  =
========================================================================================================*/
/* col-xs */
@media (max-width: 767px) {
	.NoScroll{
		overflow-y: hidden;
	}
    .NavBarP-Logo{
    	width: 100%;
    	z-index: 99;
    	position: fixed;
    	border-bottom: 1px solid rgba(255, 255, 255, .2);
    }
    .NavBarP-Nav{
    	width: 100%;
    	padding-top: 77px;
    	height: 100%;
    	z-index: 97;
    	position: fixed;
    	opacity: 0;
    	pointer-events: none;
    	transition: all .3s ease-in-out;
    }
    .NavBarP-Nav > ul{
    	padding-right: 0;
    	text-align: center;
    	height: 100%;
    }
    .NavBarP-Nav > ul > li{
		display: block;
    }
    .btn-menuMobile{
    	position: fixed;
    	z-index: 100;
    	top: 17px;
    	right: 0;
    	color: #fff;
    	height: 50px;
    	width: 50px;
    	cursor: pointer;
    	line-height: 50px;
    	font-size: 25px;
    	transition: all .3s ease-in-out;
    }
    .btn-menuMobile:hover{
		color: #FAE76F;
	}
    .Login{
    	position: fixed;
    	height: 100%;
    	top: 0;
    	padding-top: 50px;
    	z-index: 100;
    }
}

/* col-sm */
@media (min-width: 768px) and (max-width: 991px) {
    
}

/* col-md */
@media (min-width: 992px) and (max-width: 1199px) {
    
}

/* col-lg */
@media (min-width: 1200px) {
    
}

/*col-sm col-md col-lg*/
@media (min-width: 768px) {
	.Login{
		border: 1px solid #E1E1E1;
		position: absolute;
		top: 62px;
		width: 250px;
	}
    .Login::after,
	.Login::before {
		bottom: 100%;
		right: 14px;
		border: solid transparent;
		content: " ";
		height: 0;
		width: 0;
		position: absolute;
		pointer-events: none;
	}
	.Login::after {
		border-color: rgba(136, 183, 213, 0);
		border-bottom-color: #fff;
		border-width: 10px;
		margin-right: 0px;
	}
	.Login::before {
		border-color: rgba(194, 225, 245, 0);
		border-bottom-color: #E1E1E1;
		border-width: 12px;
		margin-right: -2px;
	}
}
.g_map{
	display: flex;
  align-items: center;
  justify-content: center;
}

/* secccion personal */
.expertos{
    width: 90%;
    margin: 0 auto;
}

.bt_bb_row {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
	padding-top: 50px;
    }
.bt_bb_row .bt_bb_column {
    -webkit-flex: 1 1 0%;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    max-width: 100%;
    }

.bt_bb_row .bt_bb_column {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: column nowrap;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    padding-left: 20px;
    padding-right: 20px;
 }
.bt_bb_align_right,
.bt_bb_align_right,
.bt_bb_headline{
    text-align: center;
    }
.c_expert > a,
.c_expert > span {
    display: block;
    line-height: 0;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    }   
.c_expert.circle {
    border-radius: 50%;
    }
.c_expert.circle img {
    border-radius: 50%;
    }
.c_expert.circle .c_expert_content {
    border-radius: 50%;
    }
.c_expert.circle {
    border-radius: 50%;
    }
.c_expert.sombra {
    position: relative;
    }
.c_expert.sombra .c_expert_content {
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    }
.c_expert.on-hover .c_expert_content {
    opacity: 0;
    -webkit-transition: transform 650ms ease-in-out,opacity 650ms ease-in-out;
    -moz-transition: transform 650ms ease-in-out,opacity 650ms ease-in-out;
    transition: transform 650ms ease-in-out,opacity 650ms ease-in-out;
    -webkit-transform: scale3d(1,1,.99);
    -moz-transform: scale3d(1,1,.99);
    -ms-transform: scale3d(1,1,.99);
    transform: scale3d(1,1,.99);
    }
.c_expert.on-hover:hover .c_expert_content {
    -webkit-transform: scale3d(1,1,1);
    -moz-transform: scale3d(1,1,1);
    -ms-transform: scale3d(1,1,1);
    transform: scale3d(1,1,1);
    opacity: 1;
    }
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    background-repeat: no-repeat;
    }
img, figure {
    max-width: 100%;
    height: auto;
    }


h3,h4{
    clear: both;
    padding: 0 0 .4em;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
    }
@media (max-width: 992px) {
    .bt_bb_column[data-width="12"],
    .bt_bb_column[data-width="11"],
    .bt_bb_column[data-width="10"],
    .bt_bb_column[data-width="9"],
    .bt_bb_column[data-width="8"],
    .bt_bb_column[data-width="7"],
    .bt_bb_column[data-width="6"],
    .bt_bb_column[data-width="5"],
    .bt_bb_column[data-width="4"]{
        -webkit-flex-basis: 100%;
        flex-basis: 100%;
        max-width: 100%;
        }
    .bt_bb_column[data-width="3"],
    .bt_bb_column_inner[data-width="3"] {
        -webkit-flex-basis: 50%;
        flex-basis: 50%;
        max-width: 50%;
        }
    .bt_bb_column[data-width="2"],
    .bt_bb_column_inner[data-width="2"] {
        -webkit-flex-basis: 33.333333%;
        flex-basis: 33.333333%;
        max-width: 33.333333%;
        }
    }
@media (max-width: 480px) {
.bt_bb_column[data-width="3"] {
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%;
    }
}
.expert_font {
    display: block;
    font-family: "Montserrat",Arial,Helvetica,sans-serif;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .3rem;
    }
.expert_sep.expert_spacing {
    margin-bottom: 2em;
    }
.expert_sep.e_medium {
    margin-bottom: 4em;
    }
.expert_sep.bt_bb_border_style_solid {
    border-bottom: 1px solid rgba(255,255,255,.2);
    }
/*END PERSONAL */


/*----------CONTACTO----- */
.contacto__color{
    color: #f29e00;
}

.contacto{
    width: 90%;
   /* background-color: aqua;
    display: flex;*/
    gap: 2em;
    margin: 0 auto;
    display: grid;
    /*grid-template-columns: 70% 30%;*/
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 60px 0;
    gap: 2em;
}

.contacto__uno{
    padding: 40px;
    background: #f5b91346;
    border-radius: 1em;
    box-shadow: 0 0 6px #f29e00;

   /* background-color: #f29e00;
     padding-bottom: 2.5em;
    width: 100%;
    
    display: flex;
    flex-direction: column;*/
   
}
.contacto__dos{
    padding: 40px;
    border-radius: 1em;
    box-shadow: 0 0 6px #f29e00;
    /*background-color:#FAE76F;*/
}


/*http://renowise.bold-themes.com/handyman/about-us/contact-us/*/

.map-google{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;

}
.map-google__map{
    width: 100%;
}


/*FORMU*/

/*main {
	max-width: 800px;
	width: 90%;
	margin: auto;
	padding: 40px;
}*/

/*.formulario {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}*/




.formulario__label {
	display: block;
	font-weight: 700;
	padding: 10px;
	cursor: pointer;
}


.formulario__grupo-input {
	position: relative;
}

.formulario__input {
	width: 100%;
	background: #fff;
	border: 3px solid transparent;
	border-radius: 3px;
	height: 45px;
	/*line-height: 45px;*/
	padding: 0 40px 0 10px;
	transition: .3s ease all;
}
.formulario__input--mensaje{
    height: 99px;
}


.formulario__input:focus {
	border: 3px solid #0075FF;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.formulario__input-error {
	font-size: 12px;
	margin-bottom: 0;
	display: none;
}

.formulario__input-error-activo {
	display: block;
}

.formulario__validacion-estado {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;
}

.formulario__checkbox {
	margin-right: 10px;
}

.formulario__grupo-terminos, 
.formulario__mensaje,
.formulario__grupo-btn-enviar {
	grid-column: span 2;
}

.formulario__mensaje {
	height: 45px;
	line-height: 45px;
	background: #F66060;
	padding: 0 15px;
	border-radius: 3px;
	display: none;
}

.formulario__mensaje-activo {
	display: block;
}

.formulario__mensaje p {
	margin: 0;
}

.formulario__grupo-btn-enviar {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.formulario__btn {
	height: 45px;
	line-height: 45px;
	width: 30%;
	background: #f29e00;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	transition: .1s ease all;
}

.formulario__btn:hover {
	box-shadow: 3px 0px 30px rgba(253, 187, 3, 0.603);
}

.formulario__mensaje-exito {
	font-size: 14px;
	color: #119200;
	display: none;
}

.formulario__mensaje-exito-activo {
	display: block;
}

/* ----- -----  Estilos para Validacion ----- ----- */
.formulario__grupo-correcto .formulario__validacion-estado {
	color: #1ed12d;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__label {
	color: #bb2929;
}

.formulario__grupo-incorrecto .formulario__validacion-estado {
	color: #bb2929;
	opacity: 1;
}

.formulario__grupo-incorrecto .formulario__input {
	border: 3px solid #bb2929;
}


/* ----- -----  Mediaqueries ----- ----- */
@media screen and (max-width: 800px) {
	.formulario {
		grid-template-columns: 1fr;
	}

	.formulario__grupo-terminos, 
	.formulario__mensaje,
	.formulario__grupo-btn-enviar {
		grid-column: 1;
	}

	.formulario__btn {
		width: 100%;
	}
}

/* ---END--- FORM*/