/*** RESET ***/

h1,h2,h3,h4,h5,h6,p,ul,ol,figure {
	padding: 0;
	margin: 0;
	color: #000;
}

* {	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

*:focus,
a:focus {
	outline: none;
}

ul,li {
  list-style: none;
}

a,
button {
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}



img {	-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-ms-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;


	}

a:hover {
	text-decoration: none;
}


/*Fonts*/

@font-face {
    font-family: 'Avant Demi';
    src: url('fonts/ITCAvantGardeStd-Demi.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avant Light';
    src: url('fonts/ITCAvantGardeStd-XLt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


:root {
    --primary: #787a7d;
    --secondary: #FFF;
    --font-primary: 'Avant Light', sans-serif;
    --font-secondary: 'Avant Demi', sans-serif;
}


html {
    font-size: 62.5%;
    box-sizing: border-box;
}

body {
  background-color: #000;
  font-family: var(--font-primary);
  font-weight: 300;
}


.mbottom{
	margin-bottom: 10px;
}

.wrapper {
  	max-width: 1360px;
  	margin: 0 auto;
/*background-color: red;*/
}


.logo {
  position: absolute;
  left: 0;
  right: 0;
  top:50px;
}
.logo img{
  display: block;
  margin: 0 auto;
  width: 140px;
}


.grid {
	margin-top: 120px;
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 2fr;
  }

.column{
	position: relative;
}  


.title{
	font-family: var(--font-primary);
	font-weight: 300;
	color: var(--primary);
	text-transform: uppercase;
	line-height: 1em;
margin-bottom: 10px;
}

.title__l{
	font-size: 6em;
}

.title__m{
	font-size: 4em;
}

.title__s{
	font-size: 3em;
}


.colecciones{
	display: flex;
    flex-direction: column;
/*    align-items: center;*/
}

.colecciones .icon-construccion{
	width: 250px;
	margin: 25px auto;
}

.colecciones .title{
	margin-bottom: 0px;
}

.colecciones .title__m{
	text-align: right;
}

.colecciones span{
	text-align: right;
/*	margin-right: -20px;*/
    display: block;
    font-size: 0.7em;
}


.celebridades{
	margin-top: 250px;
	text-align: center;
}



.novias{
    margin-top: 58px;
}

.novias .title {
	position: relative;
    top: 78px;
    left: -66px;
}

.accesorios{
	position: absolute;
    right: 0;
}

.accesorios .title{
	margin-left: -90px;
}

.accesorios img{
	border: 6px solid #000;
}



.footer, .footer-mobile{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-bottom: 50px;
}


.footer p,.footer-mobile p{
	color: var(--secondary);
	font-family: var(--font-secondary);
	font-size: 16px;
	margin-top: 40px;
}

.footer a, .footer-mobile a{
	color: var(--secondary);
	font-family: var(--font-secondary);
}


.footer .list, .footer-mobile .list{
	display: flex;
	gap: 20px;
	margin-top: 20px;
	font-size: 2em;
}


.wrapper-mobile{
	display: none;
}




@media (max-width: 1023px) {

	/*img{
		max-width: 100%;
		height: auto;
	}*/

	.grid{
		display: none;
	}

	.footer{
		display: none;
	}

	.wrapper-mobile{
		display: block;
		width: 90%;
		margin: 0 auto;
	}

	.grid-mobile{
		display: grid;
		gap: 10px;
		grid-template-columns: 1fr 1fr;
		overflow: hidden;
	}

	.colecciones{
		margin-top: 260px;
	}

	.colecciones .title{
		margin-bottom: 0px;
	}

	.grid-mobile img{
		width: 100%;
		height: 295px;
		object-fit: cover;
	}

	.grid-mobile .novias {
	margin-top: 15px;
	}

	.grid-mobile .novias .title {
	position: relative;
    top: 4px;
    left: 0;
    text-align: right;
	}

	

	.grid-mobile .celebridades{
		margin: 0;
		padding-top: 30px;
		text-align: left;
	}

	.title__m{
		font-size: 2em;
	}

	.title__l{
		font-size: 4em;
	}

	.wrapper-mobile .accesorios-bg{
		width: 300px;
		height: 200px;
		background-size: cover;
		background-image: url("images/accesorios.jpg");
		background-repeat: no-repeat;
		margin: 0 auto;
	}


	.accesorios-bg .title__s{
		color: #000;
		text-align: center;
		line-height: 1.5em;
	}

	.novias .title__l{
		font-size: 3.5em;
	}

	.footer-mobile{
		margin-bottom: 15px;
	}

	.construccion{
		text-align: center;
	}

	.wrapper-mobile .icon-construccion{
		width: 300px;
		margin: 10px auto;
	}


}


