:root {
    --colorBlanco: #FFF;
    --colorNegro: #000;
    --colorTexto: #333;
    --colorTexto2: #666;
    --colorPlomo: #F1F3F4;
    --color1: #E11F27;
    --color2: #169ED9;
    --color3: #EBEFF1;
}
* {
    transition: all 0.5s ease;
}

/* Font */
@font-face {
    font-family: 'akzentconddb';
    src: url('../fonts/AkzentCond/akzentcond-regular_db-webfont.eot');
    src: url('../fonts/AkzentCond/akzentcond-regular_db-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/AkzentCond/akzentcond-regular_db-webfont.woff2') format('woff2'),
        url('../fonts/AkzentCond/akzentcond-regular_db-webfont.woff') format('woff'),
        url('../fonts/AkzentCond/akzentcond-regular_db-webfont.ttf') format('truetype'),
        url('../fonts/AkzentCond/akzentcond-regular_db-webfont.svg#akzentcond_dbregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/*Fuentes*/
.arial {
    font-family: Arial, Helvetica, sans-serif;
    font-weight:normal;
    font-style:normal;
}
.aconddb {
    font-family: 'akzentconddb' !important;
}
.popir {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
}
.popiss {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500;
}
.popis {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 600;
}
.popib {
    font-family: 'Poppins', sans-serif !important;
    font-weight: 700;
}

/*CONFIGURACION*/
.row {
    padding: 0;
    margin: 0;
}
.col {
    padding-left: 15px;
    padding-right: 15px;
}
.container {
    padding: 0;
    margin: 0;
    border: 0;
    max-width: 76.875em;
    margin: 0 auto;
}
.boton{
    color: var(--colorBlanco);
    background-color: var(--color2);
    border: 0;
    border-radius: 10px;
    max-width: 214px;
    width: 100%;
    transition: all 0.5s ease;
    padding: 0 5px;
    font-size: 18px;
    line-height: 46px;
    display: block;
    text-align: center;
    margin: 0;
}
.boton.boton2{
    font-size: 23px;
    line-height: 57px;
    max-width: 267px;
}
.boton:hover,
.boton:focus{
    color: var(--colorBlanco);
    background-color: var(--color1) !important;
}
h1,
h2,
h3,
h4,
h5,
p,
blockquote,
ul li {
    line-height: 1.3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: var(--colorTexto);
}
h1 {
    font-size: 56px;
}
h2 {
    font-size: 40px;
}
h3 {
    font-size: 45px;
}
h4 {
    font-size: 40px;
}
h5 {
    font-size: 34px;
}
p {
    font-size:16px;
    line-height: 1.5;
}
img,
span {
    display: inline-block;
}
a {
    text-decoration: none;
    display: inline-block;
}
.menu_bar {
    display: none;
}
.en-linea > * {
    display: inline-block;
    vertical-align: middle;
}
.pagination a:hover,
.pagination .current {
    background: #E5E5E5 !important;
    color: #333;
}

/*Formulario*/
form {
    margin: 0;
    max-width: 730px;
    width: 100%;
}
form ::placeholder {
    color: var(--colorTexto) !important;
}
form ::-moz-placeholder {
    color: var(--colorTexto) !important;
}
form ::-webkit-input-placeholder {
    color: var(--colorTexto) !important;
}
form :-ms-input-placeholder {
    color: var(--colorTexto) !important;
}
form [type='text']:focus, form [type='password']:focus, form [type='date']:focus,
form [type='datetime']:focus, form [type='datetime-local']:focus, form [type='month']:focus,
form [type='week']:focus, form [type='email']:focus, form [type='number']:focus,
form [type='search']:focus, form [type='tel']:focus, form [type='time']:focus,
form [type='url']:focus, form [type='color']:focus, form textarea:focus, form select:focus,
form [type='text'], form [type='password'], form [type='date'], form [type='datetime'],
form [type='datetime-local'], form [type='month'], form [type='week'], form [type='email'],
form [type='number'], form [type='search'], form [type='tel'], form [type='time'],
form [type='url'], form [type='color'], form textarea, form select {
    font-size: 15px;
    line-height: 20px;
    background-color: var(--colorBlanco);
    width: 100%;
    border: 0;
    border-bottom: 1px solid #BDC0C4;
    box-shadow: none !important;
    height: 50px;
    color: var(--colorTexto);
    outline: 0;
    border-radius: 0;
    margin: 0 0 15px;
    padding: 15px 0;
}
form textarea,
form textarea:focus {
    height:150px;
    resize: none;
}
form .control-group.error input,
form .control-group.error textarea,
form .control-group.error select {
    border-color: red;
}
form .control-group.success input,
form .control-group.success textarea,
form .control-group.success select {
    border-color: green;
}
form .control-flex > div {
    width: 330px;
}
form label {
    font-size: 16px;
    line-height: 21px;
    padding-bottom: 5px;
}
form label.error {
    font-size: 12px;
    line-height: 12px;
    position: absolute;
    color: red;
    bottom: -3px;
    width: 100%;
    padding: 4px 0;
    left: 0;
}
form label.error.valid {
    display: none !important;
}
figure,
ul {
    padding: 0;
    margin: 0;
}

body{
    font-family: 'Poppins', sans-serif !important;
    font-weight: 400;
    color: #000;
    background: white;
}
main {
    margin-top: 110px;
}

/*hover zoom img*/
figure.zoom-img {
    overflow: hidden;
}
figure.zoom-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}
figure.zoom-img:hover img {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
}
figure.zoom-img .btn {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.fondo-blanco {
    background-color: var(--colorBlanco);
}

.hide {
    display: none;
}

/*Fondo*/
.banners.solo-portada,
.banners.solo-portada .fondo {
    height: 100%;
}
.banners .fondo {
    background-repeat: no-repeat;
    background-attachment: scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}
.banners .tamanho {
    height: 650px;
}
.banners .tamanho2 {
    height: 500px;
}
.swiper {
    width: 100%;
    height: auto;
}
.swiper-buttons:after {
    font-weight: bold;
    color: var(--colorBlanco);
    text-shadow: 0px 0px 10px var(--colorNegro);
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    text-align: left;
    bottom: 150px;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: var(--colorBlanco);
    opacity: 1;
}
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color2);
}
.cliente-item {
    height: 110px
}

@media screen and (max-width: 768px){
    .banners .tamanho2 {
        height: 130px;
    }
    main {
        margin-top: 72px;
    }
}