* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
body {
  margin: 0; }
img {
  max-width: 100%;
  display: block; }
a {
  text-decoration: none; }
@font-face {
  src: url("../font-text/BebasNeue.otf");
  font-family: "BebasNeue"; }
@font-face {
  src: url("../font-text/calibri.ttf");
  font-family: "calibri"; }
@font-face {
  src: url("../font-text/calibrib.ttf");
  font-family: "calibrib"; }
@font-face {
  src: url("../font-text/calibrii.ttf");
  font-family: "calibrii"; }
@font-face {
  src: url("../font-text/calibril.ttf");
  font-family: "calibril"; }
@font-face {
  src: url("../font-text/calibriz.ttf");
  font-family: "calibriz"; }
:root {
  --main-color: #0c46aa;
  --main-color-second: #ffe603;
  --main-color-alt: #971213;
  --color-dark: #000000;
  --color-gris: #bcbcbc; 
  --color-azul: #00348d;
}

.fixed{
    position:fixed; 
    top:0;
    z-index: 99999;
    width: 100%;
}
.destock{
    display: block;
}
.mobile{
    display: none;
}
@media screen and (max-width: 520px) {
    .destock{
        display: none!important;
    }
    .mobile{
        display: block!important;
    }
}
/*** header ***/
.main-header {
    width: 100%;
    padding: 0 5rem;
    background-color: var(--main-color); 
}
.child-header {
    max-width: 1100px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}
.logo {
    width: 40%;
}
.logo p{
    color: white;
    font-family: "BebasNeue"; 
    font-weight: 400;
    font-size: 2.8rem;
    margin: 1rem 0;
}
.datos{
    width: 25%;
    display: flex;
    align-items: center;
}
.datos img{
    width: 22px;
    margin-right: 15px;
}
.datos img.m{
    width: 20px;
    margin-right: 15px;
}
.datos p{
    color: white;
    font-family: "calibril";
    font-size: 1.15rem;
    font-weight: bold;
}
.btn-whatsapp{
    width: 15%;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    cursor: pointer;
}
.btn-whatsapp img{
    width: 18px;
    margin-right: 7px;
    margin-left: 15px;
}
.btn-whatsapp p{
    color: #01b224;
    font-family: "calibrib";
    margin: 0;
    padding: .7rem 0;
    font-size: 1.20rem;
}
@media screen and (max-width: 520px) {
    .main-header {
        padding: 0 25px
    }
    .logo {
        width: 50%;
    }
    .logo h2{
        font-size: 30px;
    }
    .btn-whatsapp{
        width: 40%;
    }
    .btn-whatsapp img{
        width: 15px;
    }
    .btn-whatsapp p{
        font-size: 14px;
    }
}
/*** banner principal ***/
.main-banner-principal {
    position: relative;
    padding: 1rem 5rem 10rem;
    background: var(--main-color-alt) url("../img/bg-banner.webp") center/cover no-repeat;
}
.child-banner-principal {
    max-width: 1100px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}
.column-left-banner-principal {
    width: 45%;
    text-align: center;
    order: 1;
}
.column-left-banner-principal h1{
    color: white;
    font-family: "BebasNeue";
    font-size: 4.2rem;
    margin-bottom: 0;
    font-weight: 400;
}
.column-left-banner-principal h1 span{
    color: var(--main-color-second);
}
.column-left-banner-principal h2{
    font-size: 2.2rem;
    font-family: "calibri";
    margin-top: -5px;
    color: white;
    padding-left: 170px;
    font-weight: 500;
    margin-bottom: 30px;
}
.column-left-banner-principal a{
    font-size: 1.8rem;
    font-family: "calibrib";
    color: var(--main-color-dark);
    background: var(--main-color-second);
    width: 45%;
    padding: 9px;
    border-radius: 5px;
    display: inline-block;
}
.column-right-banner-principal {
    width: 55%; 
    order: 2;
}
.column-right-banner-principal img{
    width: 100%; 
    margin-top: 30px;
    transform: scale(1.06);
}

@media screen and (max-width: 520px) {
    .main-banner-principal {
        position: relative;
        padding: 1rem 15px 6rem;
        background: var(--main-color-alt) url("../img/bg-banner.webp") center/cover no-repeat;
    }
    .child-banner-principal {
        flex-wrap: wrap; 
    }
    .column-left-banner-principal {
        width: 100%;
        order: 2;
    }
    .column-left-banner-principal h1{
        font-size: 40px;
        margin-top: 15px;
    }
    .column-left-banner-principal h1 span{
        color: var(--main-color-second);
    }
    .column-left-banner-principal h2{
        font-size: 20px;
        margin-bottom: 15px;
    }
    .column-left-banner-principal a{
        font-size: 17px;
        width: 40%;
        margin-left: 55%;
        margin-bottom: 5px;
    }
    .column-right-banner-principal {
        width: 100%; 
        order: 1;
    }
    .column-right-banner-principal img{
        width: 100%; 
        margin-top: 0;
    }
}

/*** servicios ***/
.main-servicios{
}
.child-servicios{
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20%;
    margin: auto;
    width: 100%;
    max-width: 1100px;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #ffff;
    z-index: 1;
    border: 10px solid #fff;
}
.servicio-item{
    background: #0c46aa;
    width: 25%;
    margin: 0;
    padding: 20px;
    text-align: center;
    border-right: 5px solid white;
}
.servicio-item:last-child{
    border-right: none;
}
.servicio-item h2{
    font-size: 1.7rem;
    color: #fff;
    font-weight: 400;
    font-family: "BebasNeue";
    margin-top: 0;
    filter: drop-shadow(2px 4px 6px black);
}
.servicio-item img{
    display: block;
    margin: auto;
    width: 65px;
    height: 65px;
    filter: drop-shadow(2px 4px 6px black);
}
@media screen and (max-width: 520px) {
    .child-servicios{
        width: 95%;
    }
    .servicio-item{
        width: 50%;
    }
    .servicio-item:last-child{
        border-right: none;
    }
    .servicio-item:nth-child(2){
        border-right: none;
    }
    .servicio-item h2{
        font-size: 18px;
    }
    .servicio-item img{
        width: 45px;
        height: 45px;
    }
}
/*** main-definicion ***/
.main-definicion{
    display: flex;
    position: relative;
}
.definicion{
    background: var(--main-color) url("../img/definicion-back1.jpeg") 100%/cover no-repeat;
    padding:  8rem 0 5rem;
    width: 40%;
    order: 1;
}
.content-definicion{
    width: 400px;
    margin-left: auto;
    padding-right: 50px;
}
.content-definicion h3{
    font-family: "BebasNeue";
    color: white;
    font-weight: 400;
    font-size: 1.7rem;
    margin: 10px 0;
}
.content-definicion h5{
    font-family: "calibri";
    font-weight: 500;
    color: white;
    text-align: right;
    font-size: 1.5rem;
    margin: 10px 50px 10px 0;
}
.content-definicion p{
    font-family: "calibri";
    color: white;
    margin-top: 0;
    margin-bottom: 1.1rem;
    font-size: 1.15rem;
}
.content-definicion a{
    font-size: 1.25rem;
    font-family: "calibrib";
    color: var(--main-color-dark);
    background: var(--main-color-second);
    width: 60%;
    text-align: center;
    padding: 7px;
    border-radius: 5px;
    display: inline-block;
}
.definicion-img{
    background: white url("../img/definicion-back2.jpeg") 100%/100% no-repeat;
    padding:  10rem 0 4rem;
    width: 60%;
    order: 2;
}
.content-definicion-img{
    width: 700px;
    margin-right: auto;
}
.content-definicion-img img{
    width: 89%;
    margin-left: auto;
}
@media screen and (max-width: 520px) {
    .main-definicion{
        flex-wrap: wrap;
    }
    .definicion{
        order: 2!important;
        width: 100%;
        padding:  2rem;
    }
    .content-definicion{
        width: 100%;
        padding-right: 0;
    }
    .definicion-img{
        order: 1;
        width: 100%;
        background: white url("../img/definicion-back2.jpeg") center/cover no-repeat;
        padding:  7.5rem 0 0;
    }
    .content-definicion h3{
        font-size: 17px;
        letter-spacing: 1px;
        margin-bottom: 0;
        font-family: "BebasNeue";
    }
    .content-definicion h5{
        font-size: 14px;
        margin: 5px 0 10px;
    }
    .content-definicion p{
        margin-bottom: 20px;
        font-size: 14px;
    }
    .content-definicion a{
        font-size: 16px;
        padding: 6px 15px;
    }
    .content-definicion-img{
        width: 100%;
        margin-right: auto;
    }
    .content-definicion-img img{
        width: 100%;
    }
}
/*** action ***/
.main-action{
    background: #e9e9e9;
}
.child-action{
    max-width: 1100px;
    margin: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; 
}
.datos-action, .title-action{
    width: 50%;
    padding: 50px 0;
}
.datos-action h3{
    font-family: "BebasNeue";
    font-weight: 500;
    color: var(--main-color-alt);
    font-size: 55px;
    margin: 0;
}
.datos-action p{
    font-family: "calibri";
    font-weight: 500;
    color: #707070;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
}
.datos-action a{
    font-size: 1.25rem;
    font-family: "calibrib";
    color: white;
    background: var(--main-color-alt);
    width: 45%;
    text-align: center;
    padding: 7px;
    border-radius: 5px;
    display: inline-block;
}
.title-action{
    padding-left: 100px;
}
.title-action h2{
    position: relative;
    font-family: "calibrib";
    font-size: 48px;
    margin: 0;
    padding-bottom: 20px;
    color: var(--main-color);
    line-height: 3.5rem;
}
.title-action h2::before{
    content: '';
    width: 320px;
    height: 10px;
    background: var(--main-color);
    position: absolute;
    bottom: 0; 
}
@media screen and (max-width: 520px) {
    .child-action{
        flex-wrap: wrap;
    }
    .datos-action, .title-action{
        width: 100%;
        padding: 20px 15px;
    }
    .datos-action h3{
        font-size: 40px;
    }
    .datos-action p{
        font-size: 19px;
    }
    .datos-action a{
        font-size: 15px;
        font-family: "calibri";
        width: 55%;
    }
    .title-action{
        padding-left: 15px;
        padding-bottom: 35px;
    }
    .title-action h2{
        font-size: 21px;
        padding-bottom: 15px;
        line-height: 1.5rem;
    }
    .title-action h2::before{
        content: '';
        width: 220px;
        height: 6px;
    }
}
/*** main galeria ***/
.main-galeria{
    background: var(--color-azul);
    padding: 3rem 0 1rem;
}
.child-galeria{
    max-width: 1100px;
    margin: auto;
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.item-galeria{
    width: 33.3%;
    padding: 0 5px 10px 5px;
    text-align: center;
}
.item-galeria h4{
    color: white;
    font-family: "calibri";
    font-size: 26px;
    font-weight: bold;
}
.item-galeria p{
    color: white;
    font-family: "calibri";
    font-size: 20px;
    font-weight: 400;
}
.item-galeria a{
    font-size: 1.25rem;
    font-family: "calibrib";
    color: var(--color-dark);
    background: var(--main-color-second);
    width: 50%;
    text-align: center;
    padding: 7px;
    border-radius: 5px;
    display: inline-block;
}
@media screen and (max-width: 520px) {
    .main-galeria{
        padding: 15px 0 0;
    }
    .child-galeria{
        width: 100%;
    }
    .item-galeria{
        width: 100%;
        padding: 0;
        padding-bottom: 15px;
        text-align: center;
    }
    .item-galeria h4{
        font-size: 17px;
        margin-bottom: 0;
    }
    .item-galeria p{
        font-size: 15px;
    }
    .item-galeria a{
        font-size: 16px;
        width: 40%;
        padding: 4px 7px;
        margin-bottom: 20px;
    }
}
/*** main-contacto ***/
.main-contacto{
    background: #e9e9e9;
    padding: 2rem 0;
}
.child-contacto{
    max-width: 1100px;
    margin: auto;
    display: flex; 
    justify-content: center;
}
.detalles-contacto, .formulario-contacto{
    width: 50%;
    padding: 50px;
}
.detalles-contacto{
    background: var(--main-color-alt);
}
.detalles-contacto h5{
    color: white;
    font-family: "BebasNeue";
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2.5rem;
}
.detalles-contacto .datos{
    width: 100%;
}
.detalles-contacto .datos p{
    margin-bottom: 0;
}
.formulario-contacto{
    background: white;
    padding: 50px 125px;
}
.formulario-contacto h5{
    color: var(--main-color-alt);
    font-family: "BebasNeue";
    font-weight: 400;
    margin-top: 0;
    font-size: 24px;
    margin-bottom: 20px;
}
.formulario-contacto .form-group input, .formulario-contacto .form-group textarea{
    font-family: "calibrib";
    font-size: 15px;
    background: #e9e9e9;
    margin-top: 0;
    width: 100%;
    height: 40px;
    padding: 10px 15px 10px 30px;
    border: 1px solid var(--main-color-alt);
    border-radius: 7px;
    margin-bottom: 17px;
}
.formulario-contacto .form-group textarea{
    height: auto;
}
.formulario-contacto .form-group .button{
    background: var(--main-color-alt);
    color: white;
    font-size: 18px;
    width: 60%;
    margin: auto;
    display: block;
}
@media screen and (max-width: 520px) {
    .main-contacto{
        padding: 15px 0;
    }
    .child-contacto{
        flex-wrap: wrap;
    }
    .detalles-contacto, .formulario-contacto{
        width:100%;
        padding: 35px 25px;
    }
    .detalles-contacto h5{
        margin-bottom: 10px;
        font-size: 21px;
    }
    .detalles-contacto .datos p{
        font-size: 14px;
    }
    .formulario-contacto{
        background: white;
        padding: 50px;
        text-align: center;
    }
    .formulario-contacto h5{
        font-size: 21px;
    }
    .formulario-contacto .form-group input, .formulario-contacto .form-group textarea{
        font-size: 14px;
        height: 35px;
        padding: 10px 5px 10px 20px;
        margin-bottom: 15px;
    }
    .formulario-contacto .form-group textarea{
        height: auto;
    }
    .formulario-contacto .form-group .button{
        font-size: 15px;
        width: 60%;
        padding: 7px;
        text-transform: uppercase;
        margin: auto;
        display: block;
    }
}
/*** footer ***/
.main-footer{
    padding:  4.3rem 0 1.5rem;
    background: var(--main-color-alt);
}
.child-footer{
    display: flex;
    max-width: 1100px;
    margin: auto;
    display: flex; 
    justify-content: center;
}
.datos-footer{
    width: 50%;
}
.datos-footer h4{
    color: white;
    font-family: "BebasNeue"; 
    font-weight: 400;
    font-size: 35px;
    margin: 0 0 .8rem;
}
.datos-footer h5, .main-footer h5{
    color: white;
    font-family: "calibri"; 
    font-weight: 400;
    font-size: 19px;
    margin: 0;
    position: relative;
    padding-bottom: 20px;
}
.datos-footer h5::before{
    background: white;
    content: '';
    position: absolute;
    bottom: 0;
    height: 7px;
    width: 180px;
}
.main-footer h5{
    font-family: "calibrib"; 
}
.datos-footer ul{
    padding-left: 0;
}
.datos-footer ul li{
    list-style: none;
    display: inline;
}
.datos-footer ul li img{
    display: inline;
    width: 33px;
    height: 33px;
    margin-right: 25px;
}
.datos-footer ul li img.m{
    width: 38px;
    height: 38px;
    margin-right: 0px;
    padding-top: 5px;
}
.servicios-footer, .contacto-footer{
    width: 25%;
}
.servicios-footer h5, .contacto-footer h5{
    padding-bottom: 15px;
}
.servicios-footer ul{
    padding-left: 0;
    margin: 0;
}
.servicios-footer ul li{
    list-style: none;
}
.servicios-footer ul li a{
    color: white;
    font-family: "calibri";
    padding-bottom: 30px;
    display: inline-block;
}
.contacto-footer .datos{
    width: 100%;
}
.contacto-footer .datos p{
    margin-top: 0;
}
@media screen and (max-width: 520px) {
    .main-footer{
        padding:  30px 15px;
        text-align: center;
    }
    .child-footer{
        flex-wrap: wrap;
    }
    .datos-footer{
        width: 100%;
        margin-bottom: 5px;
    }
    .datos-footer h4{
        font-size: 25px;
    }
    .datos-footer h5, .main-footer h5{
        font-size: 16px;
    }
    .datos-footer h5::before{
        background: white;
        content: '';
        position: absolute;
        bottom: 0;
        height: 6px;
        width: 40%;
        margin-left: 30%;
        display: block;
    }
    .main-footer h5{
        font-family: "calibrib"; 
    }
    .datos-footer ul{
        padding-left: 0;
    }
    .datos-footer ul li{
        list-style: none;
        display: inline;
    }
    .datos-footer ul li img{
        display: inline;
        width: 25px;
        height: 25px;
        margin-right: 25px;
    }
    .datos-footer ul li img.m{
        width: 30px;
        height: 30px;
        margin-right: 0px;
        padding-top: 5px;
    }
    .servicios-footer, .contacto-footer{
        width: 100%;
        padding-top: 25px;
        border-top: 1px solid white;
    }
    .servicios-footer h5, .contacto-footer h5{
        padding-bottom: 15px;
    }
    .servicios-footer ul{
        padding-left: 0;
        margin: 0;
    }
    .servicios-footer ul li{
        list-style: none;
    }
    .servicios-footer ul li a{
        font-size: 14px;
    }
    .contacto-footer .datos:first-of-type{
        width: 50%;
        margin: auto;
    }
    .contacto-footer .datos:nth-child(3){
        width: 35%;
        margin: auto;
    }
    .contacto-footer .datos:last-of-type{
        width: 60%;
        margin: auto;
    }
    .contacto-footer .datos p{
        margin-top: 0;
        text-align: left;
        font-size: 14px;
    }
}
/*===== Scroll =====*/
.back-to-top, .back-to-top:active{
	position: fixed;
	bottom: 65px;
	right: 15px;
	color: white!important;
    text-shadow: 0 0 5px 1px rgba(0,0,0,.5);
	font-size: 16px;
	line-height: 32px;
    font-weight: bold;
	width: 35px;
	height: 35px;
	border: 1px solid var(--main-color);
	background: var(--main-color);
	text-align: center;
	z-index: 1000;
	cursor: pointer;
	display: none;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;	
}
/*** main-gracias ***/
.main-page-gracias{
    background-color:var(--color-azul);
    display:flex;
    align-items:center;
    justify-content:center;
    height:100vh;
}
.title-page-gracias{
    color: white;
    text-shadow:-1px -2px 3px rgba(17,17,17,0.3);
    text-align:center;
    text-transform:uppercase;
    font-size:80px;
    margin:0 0 1rem 0;
    font-weight:600;
    font-family:"calibri";
}
.text-page-gracias{
    color:white;
    text-align:center;
    font-size:1.2rem;
    margin:0 0 2rem 0;
    font-family:"calibrii";
}
.box-btn-back{
    display:flex;
    justify-content:center;
    align-items:center;
}
.btn-back{
    margin:auto;
    background-color: white;
    display:inline-block;
    font-family:"calibri";
    padding:1rem 1.5rem;
    color:var(--main-color);
    font-weight:600;
    border-radius:5px;
    transition:background-color 0.3s linear,border 0.2s linear;
    border:2px solid transparent;
}
.btn-back:hover{
    background-color:transparent;
    border:2px solid white;
    color: white;
}
@media screen and (max-width:620px){
    .main-page-gracias{
        padding:2rem;
    }
    .title-page-gracias{
        font-size:4rem;
    }
    .text-page-gracias{
        font-size:1rem;
    }
}

/**boton llamar**/
.btns-mobile {
	background-color: var(--main-color);
	position: fixed;
	bottom: 0;
	left: 0;

	width: 100%;
	display: none;
	justify-content: space-around;
	align-items: center;
}
.btn-call,
.btn-cotizar {
	color: white;
	padding: 1.2rem 0;
	font-size: 1.2rem;
	font-family: "calibri";
}

.title-form-h3-mobile{
    font-size: 28px;
    font-family: "MyriadPro Regular";
    color: var(--main-color);
    text-align: center;
    margin-bottom: 12px;
}

.btn-call {
	text-decoration: none;
}
.line-btn-mobile {
	height: 30px;
	width: 2px;
	background-color: var(--main-color-white);
}



.main-form-pop-up {
	background-color: rgba(0, 0, 0, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;

	display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	padding: 0 1rem;
}
.main-form-pop-up-view {
	display: flex;
}
.child-form-pop-up {
	width: 100%;
	background-color: var(--main-color-white);
	border-radius: 10px;
	padding: 1rem;
	position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.child-form-pop-up .title-form-banner-principal {
	color: var(--main-color);
}
.btn-close {
	position: absolute;
	right: -10px;
	top: -20px;
	color: var(--main-color-white);
	background-color: var(--main-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.4rem;
}

.btn-whatsapp-mobile {
	background-color: #25d366;
	position: fixed;
	top: 50%;
	right: 5px;
	width: 65px;
	height: 65px;

	display: none;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	font-size: 2.4rem;
	color: var(--main-color-white);
}
.btn-whatsapp-mobile i {
	line-height: 0;
}


@media screen and (max-width: 980px) {
	body {
		margin-bottom: 60px;
	}

	.btns-mobile,
	.btn-whatsapp-mobile {
		display: flex;
	}
}