@font-face{
    font-family:"Clear Sans";
    src: url(../fonts/ClearSans-Regular.ttf);
}
@font-face{
    font-family:"Clear Sans";
    font-weight: bold;
    src: url(../fonts/ClearSans-Bold.ttf);
}
@font-face{
    font-family:"Clear Sans";
    font-weight: light;
    src: url(../fonts/ClearSans-Light.ttf);
}
@font-face{
    font-family:"Lato";
    src: url(../fonts/Lato-Regular.ttf);
}
@font-face{
    font-family:"Lato";
    font-weight: bold;
    src: url(../fonts/Lato-Bold.ttf);
}
@font-face{
    font-family:"Lato";
    font-weight: light;
    src: url(../fonts/Lato-Light.ttf);
}

* {
    box-sizing: border-box;
}
body {
    font-family: 'Clear Sans', 'Lato', sans-serif;
    margin: 0;
}
/*-------------Estilos Base---------------*/
img {
    display: block;
    width: 100%;
    max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
.container {
    width: 100%;
    margin: auto;
}
.container--flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.column {
    width: 100%;
}

/*-------------Estilos header-------------*/

.main-header {
	width: 100%;
	height: 108px;
	margin-top: 0;
	background: #0071C5;
    
}
.logo-container column column--50 {
    width: 50%;    
}

.logo-img {
    width: 200px;
	margin-top: 1px;
    margin-bottom: px;
	cursor: pointer;
}
.main-header__contactInfo__phone {
    background: #1280ED;
    color: white;
    margin: 0 auto;
    padding: 2px;
    font-weight: bold;
}
.main-header__contactInfo__mail .contacto-enlace {
    padding: 2px;
    color: white;
    list-style: none;
    text-decoration: none;
    margin: 0;
    font-weight: bold;
}
.main-header [class*="icon-"]:before {
    position: relative;
    top: 2px;
    right: 5px;
}

/*-----------Estilos del Menú-------------*/
.main-nav {
    width: 100%;
    position: relative;
    z-index: 2000;
    padding: 10px;
}
.icon-menu {
    display: block;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    width: 40px;
    height: 42px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}
.menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,.85);
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
	font-weight: bold;
    height: 0;
    overflow: hidden;
    transition: height .2s linear;
}
.menu__link {
    display: block;
    padding: 15px;
    color: white;
    text-decoration: none;
}
.menu__link:hover {
    background: #1280ED;
}
.menu__link--select {
    background: #4d80e4;
}
.mostrar{
    height: 460px;
}
.main-fixed{
	position: fixed;
	z-index: 1000;
	top: 0;
	width: 100%;
	max-width: 1000px;
}
/*----------Estilos de Banner-------------*/
.banner {
    position: relative;
    width: 100%;
    background-color: white;
    background-size: cover;
    background-position: center;
    transition: all .1s ease-in-out;
    background-image: url('../assets/banner.jpg');
    animation: banner 24s infinite linear;
}
.bannersum {
	margin: auto;
	width: 70%;
}
.banner:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 1000;
    top: 0;
}
.banner__img {
    width: 100%;
    height: 320px;
    margin-top: 7em;
    object-fit: cover;
}
.banner__content {
    margin: 0;
    padding: 0;
    width: 100%;
    color: white;
    text-align: center;
    position: absolute;
    z-index: 1500;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 1.5em;
    font-weight: bold;
}

@keyframes banner{
    0%{
        background-image: url('../assets/banner.jpg');
    }
    25%{
        background-image: url('../assets/banner.jpg');
    }
    26%{
        background-image: url('../assets/banner1.jpg');
    }
    50%{
        background-image: url('../assets/banner1.jpg');
    }
    51%{
        background-image: url('../assets/banner2.jpg');
    }
    75%{
        background-image: url('../assets/banner2.jpg');
    }
    76%{
        background-image: url('../assets/banner3.jpg');
    }
	100%{
        background-image: url('../assets/banner3.jpg');
    }
}

/*-------------------------Estilos principales-------------*/

.group--color .container {
	width: 100%;
    background: #6B8599;
    color: white;
    padding: 10px;
    text-align: center;
}
.main__title {
    margin: 15px 0;
    font-size: 1.2em;
    font-family: 'Lato', sans-serif;
	font-weight: bold;
}
.main__txt{
	margin-top:0;
	margin-left: 8em;
	margin-right: 9em;
	text-align: center;
	justify-content:center;
	text-justify: auto;
	font-family: 'Lato', sans-serif;
	font-size: 1.15em;
	padding: 1em;
}
.column__title-info {
	font-family: 'Lato';
    font-size: 1.3em;
	margin: auto;
	margin-bottom: 1em;
	justify-content: center;
	text-align: center;
}
.main__about__description .column:nth-child(2) {
    padding: 10px;
}
.logo-marcas{
	width: 300px;
	margin: auto;
}
.btn {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 160px;
    background: #0071C5;
    color: white;
    padding: 12px;
    margin: 20px auto;
    font-weight: bold
}
hr{
	border-style: solid;
	border-color: #5287B2;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}
.group__title {
	background: #6B8599;
    font-family: 'Clear Sans', 'Lato', sans-serif;
    text-align: center;
	padding: 1em;
	color: white;
}
.product-special .column {
    margin-bottom: 20px;
}
.product-special__img {
	width: 100%;
	margin-left: 3%;
	margin-bottom: 25px;
	box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);

	display: flex;
	flex-direction: column;
	align-items: center;
	align-self: flex-start;
}
.product-special__title {
	background: #6B8599;
	color: #fff;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 20px;
    font-family: 'Clear Sans', 'Lato', sans-serif;
    font-weight: bold;
}
.banner-remate{
    width: 60%;
    height: 240px;
	cursor: pointer;
    margin-top: auto;
	margin-bottom: 1em;
	margin-left: auto;
	margin-right: auto;
}

.precio{
	margin: 10px;
	font-family: 'Lato';
	font-weight: bold;
	font-size: 28px;
}

.iva{
	margin:10px;
	font-family: 'Lato';
	font-weight: bold;
	font-size: 16px;
}

/*-------------------------Estilos footer-------------*/

footer{
    width: 100%;
    background: #202020;
    color: white;
	font-family: 'Lato', sans-serif;
	padding: 0;
	margin: 0;
    
}
.container-footer-all{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 1em;
}

.container-body{
    display: flex;
    justify-content: space-between;
}

.colum1-1{
    max-width: 25%;
}

.colum1-1 h1{
    font-size: 1em;
}

.colum1-1 p{
    font-size: 0.9em;
    color: #ffffff;
    margin-top: 20px;
}

.colum1{
    max-width: 25%;
}

.colum1 h1{
    font-size: 1em;
}

.colum1 p{
    font-size: 0.9em;
    color: #C7C7C7;
    margin-top: 20px;
}

.colum2{
    max-width: 25%;
}
.colum2 p{
    font-size: 0.9em;
    color: #C7C7C7;
}
.colum2 h1{
    font-size: 1em;
}
.row{
    display: flex;
}
.container-body [class*="icon-"] {
    color: white;
    text-decoration: none;
}
.container-body [class*="icon-"]:before {
    position: relative;
    right: 5px;
}

.colum3{
    max-width: 25%;
}
.colum3 h1{
    font-size: 1em;
	margin-bottom: .4em;
}
.colum3 p{
    font-size: 0.9em;
    color: #C7C7C7;
}
.row2{
    display: flex;
}
.footer-enlace{
    color: white;
    text-decoration: none;
    
}

.container-footer{
    width: 100%;  
    background: #101010;
}

.footer{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;  
    padding: 10px;	
}

.despachos{
	text-decoration: none;
    color: #fff;
	font-size: 1em;
}
.copyright{
    color: #C7C7C7;
	font-size: .9em;
}

.copyright a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.information a{
    text-decoration: none;
    color: #C7C7C7;
	font-size: .9em;
}


/*-------------------------Estilos responsive-------------*/

@media screen and (min-width:320px) {
	.logo-img {
       	width: 120px;
    }
    .main-header__contactInfo {
        width: 100%;
		text-align: right;
		color: white;
	}
    .main-header__contactInfo__phone {
		width: 100%;
        background: none;
        font-size: .80em;
		color: white;
    }
    .main-header__contactInfo__mail {
        width: 100%;
		color: white;
        font-size: 0.65em;
    }
    .main-nav {
        background: rgba(0,0,0,.85);
    }
    .banner {
        margin-top: -184px;
        z-index: -1000;
    }
    .banner__content {
        font-size: 1.7em;
    }
	.main__title{
		font-size: 1.6em;
	}
	.main__txt {
		margin-left: 1em;
		margin-right: 1em;
		text-align: center;
		justify-content: center;
		padding: 1.5em;
		font-weight: bold;
	}
	.logo-marcas{
		height: 300px;
	}
	.column__txt-info{
		width: 100%;
		line-height: 17px;
	}
    .column--50 {
    	width: 50%;
	}
    .column--50-25 {
        width: 45%;
    }
    .main__about__description .column:nth-child(2) {
        padding-left: 20px;
        font-size: .9em;
    }
    .main__about__description .btn {
        margin: 0;
    }
    .product-special .column {
        width: 45%;
		padding: 1%;
    }
    .product-special__img {
        height: 100px;
        object-fit: contain;
    }
    .product-special__title {
        font-size: .85em;
    }
    .banner-remate{
        width: 100%;
        height: 150px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        margin-right: 1em;
    }

	.container-body{
		display: block;
		width: 100%;
	}
	
	.colum1-1, .colum1, .colum2, .colum3 {
		width: 100%;
		max-width: 100%;
		margin: auto;
		padding: 1em;
		line-height: 17px;
	}
}

@media screen and (min-width:480px) {
    .logo-img {
       	width: 140px;
    }
    .main-header__contactInfo {
        width: 100%;
		text-align: right;
		color: white;
	}
    .main-header__contactInfo__phone {
		width: 100%;
        background: none;
        font-size: .80em;
		color: white;
    }
    .main-header__contactInfo__mail {
        width: 100%;
		color: white;
        font-size: 0.75em;
    }
    .main-nav {
        background: rgba(0,0,0,.85);
    }
    .banner {
        margin-top: -170px;
        z-index: -1000;
    }
    .banner__content {
        font-size: 1.7em;
    }
	.main__txt {
		margin-left: 1em;
		margin-right: 1em;
		text-align: center;
		padding: 1em;
		font-weight: bold;
	}
	.logo-marcas{
		height: 320px;
	}
	.column__txt-info{
		width: 100%;
		line-height: 20px;
	}
    .column--50 {
        width: 50%;
    }
    .column--50-25 {
        width: 45%;
    }
    .main__about__description .column:nth-child(2) {
        padding-left: 20px;
        font-size: .9em;
    }
    .main__about__description .btn {
        margin: 0;
    }
    .product-special .column {
        width: 50%;
    }
    .product-special__img {
        height: 140px;
        object-fit: contain;
    }
    .product-special__title {
        font-size: 1.2em;
		margin: 0;
		padding: 0;
    }
    .banner-remate{
        width: 100%;
        height: 170px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: 1em;
        margin-left: auto;
        margin-right: 1em;
    }
	.container-body{
		display: block;
		width: 100%;
	}
	
	.colum1-1, .colum1, .colum2, .colum3 {
		width: 100%;
		max-width: 100%;
		margin: auto;
		padding: 1em;
	}
}

@media screen and (min-width:760px){
    .logo-img {
       width: 140px;
    }
    .main__title {
        font-size: 2.2em;
    }
    .main__about__description {
        margin-top: 30px;
    }
    .main-header__contactInfo__phone {
        background: none;
        font-size: 1.2em;
    }
    .main-header__contactInfo__mail {
        color: white;
        font-size: 1.2em;
    }
    .banner__content {
        font-size: 2em;
    }
	.main__txt {
		margin-left: 3em;
		margin-right: 3em;
		text-align: center;
		padding: 1.5em;
		font-weight: bold;
	}
    .main__about__description .column--50:nth-child(2){
        font-size: 1em;
    }
    .main__about__description .column--50:nth-child(2) .column__txt {
        line-height: 30px;
    }
	.column__txt-info{
		width: 100%;
		line-height: 30px;
		padding: 0.8em;
		margin-bottom: 3em;
	}
    .column--50-25 {
        width: 100%;
    }
    .column__title {
        font-size: 1em;
    }
    .group__title {
        font-size: 1.3em;
    }
	.product-special .column {
        width: 25%;
    }
    .product-special__img {
        height: 140px;
		margin: 0;
    }
    .banner-remate{
        width: 75%;
        height: 250px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        margin-right: auto;
    }
	.container-body{
		display: flex;
		width: 100%;
	}
	.colum1-1 h1{
    font-size: 1em;
	margin-top: -2.7em;
	}
	.colum1{
		margin: 0;
	}
	.colum2{
		margin: 0;
	}
	.colum3{
		margin: 0;
	}
}

@media screen and (min-width:1024px) {
    .container{
        width: 1000px;
    }
    .logo-img {
       width: 160px;
    }
    .main-nav {
        padding: 0;
    }
    .banner__content {
        font-size: 2.2em;
    }
    .icon-menu {
        display: none;
    }
    .menu {
        position: static;
        display: flex;
        height: auto;
        width: auto;
    }
    .menu__link {
        padding: 20px;
    }
    .group--color .container {
        margin-bottom: 30px;
        padding: 20px;
    }
    .main__title {
        font-size: 2.3em;
    }
	.main__txt {
        width: 80%;
		margin: auto;
		padding: 2em;
		font-weight: bold;
	}
    .main__about__description .column--50:nth-child(2) .column__txt {
        line-height: 25px;
    }
    .product-special__img {
        height: 160px;
    }
    .product-special__title {
        font-size: 1.4em;
    }
	.column--33 {
        width: 33%;
	}
    .banner-remate{
        width: 65%;
        height: 270px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        margin-right: auto;
    }
	.container-body{
		display: flex;
		width: 100%;
	}
	.colum1{
		margin: 0;
	}

}
@media screen and (min-width:1440px) {
	.colum1-1 h1{
    font-size: 1em;
	margin-top: -2.7em;
	}
}

@media screen and (min-width:1600px) {
    .logo-img {
       width: 155px;
    }
    .banner__img {
        width: 100%;
        height: 580px;
        margin-top: 7em;
        object-fit: cover;
    }
    .main-text {
        width: 70%;
    }
    .container {
        width: 1200px;
    }
    .product-special__img {
        height: 160px;
    }
	.container-body{
		display: flex;
		width: 100%;
	}
	.colum1{
		margin: 0;
	}
    .banner-remate{
        width: 60%;
        height: 300px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        margin-right: auto;
    }
	.colum1-1 h1{
    font-size: 1em;
	margin-top: -3em;
	}
}
@media screen and (min-width:2560px) {
        .banner-remate{
        width: 60%;
        height: 300px;
        cursor: pointer;
        margin-top: auto;
        margin-bottom: auto;
        margin-left: auto;
        margin-right: auto;
    }
}


