*,
*::after,
*::before {
	box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 14px;
    background: #999;
}
 
/* Track */
::-webkit-scrollbar-track {
    -webkit-border-radius:0;
    border-radius: 0;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(207,207,207,0.8);
    width: 8px;
    border: 3px solid #999;
}
::-webkit-scrollbar-thumb:window-inactive {
	background: rgba(207,207,207,0.2); 
}

body {
	--gap: 10px;
    --body-text: #333;
    --body-bg: #cfcfcf;
    --link-text: #999;
    --link-text-hover: #555;
    --grid-name-text: #999;
    --grid-name-text-alt: #333;
    --grid-title-text: #111;
    --grid-nav-text: #fff;
    --grid-nav-bg: #111;
    --grid-nav-bg-alt: #444;
    --grid-nav-text-hover: #ffffff;
    --grid-nav-bg-hover: #000000;
    --grid-text: #111;
    
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
	min-height: 600px;
	color: #333;
	color: var(--body-text);
	background: #ccd8e4;
	background: var(--body-bg);
    overflow: hidden;
}

a {
	text-decoration: none;
	color: #ef3b3b;
	color: var(--link-text);
	outline: none;
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
}

a:hover,
a:focus {
	color: #333;
	color: var(--link-text-hover);
    -webkit-transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
    transition: all 0.4s cubic-bezier(0.97, 0, 0.395, 0.97);
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

/* Icons */
.icon {
	display: block;
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	fill: currentColor;
}

/* Page Loader */
.js .loading::before {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #ccd8e4;
	background: var(--body-bg);
}

.js .loading::after {
	content: '';
	position: fixed;
	z-index: 10000;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	margin: -40px 0 0 -40px;
	pointer-events: none;
	background: #333;
	background: var(--body-text);
	transform-origin: 0% 50%;
	animation: loaderAnim 1.5s linear infinite alternate forwards;
}

@keyframes loaderAnim {
	0% {
		transform: scale3d(0,1,1);
		transform-origin: 0% 50%;
	}
	50% {
		transform: scale3d(1,1,1);
		transform-origin: 0% 50%;
	}
	51% {
		transform: scale3d(1,1,1);
		transform-origin: 100% 50%;
	}
	100% {
		transform: scale3d(0,1,1);
		transform-origin: 100% 50%;
	}
}

/* Frame */
.frame {
	top: 0;
	left: 0;
	position: fixed;
	display: grid;
	width: 100%;
	height: 100vh;
	z-index: 100;
	pointer-events: none;
	padding: 2em;
	grid-template-columns: 50% 50%;
	grid-template-rows: auto auto 4em;
	grid-template-areas: 	"header header"
							"... ..."
							"menus contato";
}

.no-js .frame {
	position: relative;
	display: block;
	height: auto;
}

.frame a {
	pointer-events: auto;
}

.message {
	background: #333;
	background: var(--body-text);
	color: #ccd8e4;
	color: var(--body-bg);
	text-align: center;
	padding: 1em;
	display: none;
}

/* Header */
.site-header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	z-index: 100;
	grid-area: header;
	align-self: start;
}

.site-header__title {
	font-size: 1em;
	margin: 0;
	font-weight: 400;
}

.no-js .site-header {
	flex-direction: column;
}

.no-js .site-header__title {
	padding: 1em 0;
}

.bio {
	margin: 0 0 0 auto;
}

/* Top Navigation Style */
.logo {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0.5em 0 0;
	text-align: left;
	white-space: nowrap;
}

.logo img { outline: none; }

/* Demos */
.contato {
	grid-area: contato;
	align-self: end;
	justify-self: end;
	display: block;
	text-align: center;
}

.menus {
	grid-area: menus;
	align-self: end;
	justify-self: start;
	display: block;
	text-align: center;
}

.menu-sou svg,
.menu-contato svg { 
    display:none;
    width: 25px;
}

/* Grid */
.grid {
	display: grid;
	width: calc(100% - 6em);
	height: calc(100vh - 6em);
	grid-auto-rows: calc((calc(100vh - 6em) / 30) - var(--gap));
	grid-auto-columns: calc((calc(100% - 6em) / 30) - var(--gap));
	justify-content: center;
	align-content: center;
	grid-gap: var(--gap);
	pointer-events: none;
}

.no-js .grid {
	margin: 0 0 15vh;
}

.js .grid {
	position: absolute;
	top: 3em;
	left: 3em;
	opacity: 0;
}

.js .grid--current {
	opacity: 1;
	pointer-events: auto;
}

.grid__item {
	position: relative;
	padding: 1em;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: cover;
	transition: transform 0.2s ease-out; 
}

.grid__item:not(.grid__item--nav) {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
	transition: filter 0.2s ease-in; 
}

.grid__item:not(.grid__item--nav):hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
	transition: filter .2s ease-in; 
    
}

.grid__item--name,
.grid__item--name--alt,
.grid__item--title,
.grid__item--text {
	pointer-events: none;
	padding: 0;
	margin: 0;
}

.grid__item--name,
.grid__item--name--alt,
.grid__item--title {
	text-transform: uppercase;
	line-height: 0.8;
	font-family: 'Kanit', sans-serif;
}

.grid__item--name,
.grid__item--name--alt {
	font-size: 7vw;
	color: var(--grid-name-text);
    /*text-shadow: .5px .5px 15px rgba(0,0,0,.3);*/
}

.grid__item--name--alt,
.grid__item--name span {
	color: var(--grid-name-text-alt);
}

.grid__item--name--alt { display: none; }

.grid__item--title {
	font-size: 3.5vh;
	text-transform: uppercase;	
	-webkit-writing-mode: vertical-lr;
	writing-mode: vertical-lr;
	text-align: right;
	display: flex;
	justify-content: flex-end;
	color: #ef3b3b;
	color: var(--grid-title-text);
}

.grid__item--text {
	font-size: 0.85em;
	line-height: 1.2;
	display: flex;
	color: inherit;
	color: var(--grid-text);
}

.grid__item--nav {
	background: #442ef4;
	background: var(--grid-nav-bg);
	color: #fff;
	color: var(--grid-nav-text);
	display: flex;
	align-items: center;
	cursor: pointer;
    
    background: linear-gradient(120deg, var(--grid-nav-bg), var(--grid-nav-bg-alt), var(--grid-nav-bg));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-animation: gradient 7s ease-in-out infinite;
    -webkit-animation: gradient 7s ease-in-out infinite;
    animation: gradient 7s ease-in-out infinite;
}

.grid__item--nav:after {
    
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  background: linear-gradient(120deg, var(--grid-nav-bg), var(--grid-nav-bg-alt), var(--grid-nav-bg));
  background-size: 400% 400%;
  -moz-animation: gradient 7s ease-in-out infinite;
  -webkit-animation: gradient 7s ease-in-out infinite;
  animation: gradient 7s ease-in-out infinite;
}

.grid__item--nav:hover {
	background: #1f1f1f;
	background: var(--grid-nav-bg-hover);
	color: #fff;
	color: var(--grid-nav-text-hover);
}

.grid__item--nav-next .icon--nav-arrow {
	margin: 0 0 0 auto;
    z-index: 1;
}

.grid__item--nav-prev .icon--nav-arrow {
	transform: rotate(180deg);
	margin: 0;
    z-index: 1;
}

.no-js .grid__item--nav {
	display: none;
}

.grid__item--animateOut {
	animation: animateOut 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes animateOut {
	to {
		opacity: 0;
	}
}

.grid__item--animateIn {
	animation: animateIn 0.8s cubic-bezier(0.7,0,0.3,1) forwards;
}

@keyframes animateIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

/* Layout 1 */
.grid--layout-1 .grid__item:first-child { grid-area: 8 / 2 / 19 / 7;      background-image: url(../img/capas/ella.jpg); }
.grid--layout-1 .grid__item:nth-child(2) { grid-area: 19 / 3 / 28 / 8;   background-image: url(../img/capas/djsession.jpg); }
.grid--layout-1 .grid__item:nth-child(3) { grid-area: 8 / 7 / 19 / 13;    background-image: url(../img/capas/cederberg.jpg); }
.grid--layout-1 .grid__item:nth-child(4) { grid-area: 19 / 8 / 30 / 13;  background-image: url(../img/capas/models.jpg); }
.grid--layout-1 .grid__item:nth-child(5) { grid-area: 1 / 10 / 8 / 18;    background-image: url(../img/capas/collection.jpg); }
.grid--layout-1 .grid__item:nth-child(6) { grid-area: 19 / 13 / 30 / 17;  background-image: url(../img/capas/catalog2.jpg); }
.grid--layout-1 .grid__item:nth-child(7) { grid-area: 19 / 17 / 29 / 24;  background-image: url(../img/capas/catalog3.jpg); }
.grid--layout-1 .grid__item:nth-child(8) { grid-area: 1 / 18 / 12 / 22;   background-image: url(../img/capas/misci.jpg); }
.grid--layout-1 .grid__item:nth-child(9) { grid-area: 12 / 18 / 19 / 24;  background-image: url(../img/capas/mura.jpg); }
.grid--layout-1 .grid__item:nth-child(10) { grid-area: 1 / 7 / 8 / 10;    background-image: url(../img/capas/catalog4.jpg); }
.grid--layout-1 .grid__item:nth-child(11) { grid-area: 8 / 13 / 14 / 18;  background-image: url(../img/capas/still.jpg); }
.grid--layout-1 .grid__item:nth-child(12) { grid-area: 2 / 22 / 12 / 29;  background-image: url(../img/capas/jewels-model.jpg); }
.grid--layout-1 .grid__item:nth-child(13) { grid-area: 12 / 24 / 26 / 29; background-image: url(../img/capas/jewels.jpg); }
.grid--layout-1 .grid__item--name { grid-area: 17 / 22 / 30 / 29;  }
.grid--layout-1 .grid__item--title { grid-area: 1 / 27 / 11 / 29; }
.grid--layout-1 .grid__item--text { grid-area: 22 / 23 / 30 / 26; }
.grid--layout-1 .grid__item--nav-prev { grid-area: 3 / 2 / 8 / 7; }
.grid--layout-1 .grid__item--nav-next { grid-area: 14 / 13 / 19 / 18; }

/* Layout 2 */
.grid--layout-2 .grid__item:first-child {  grid-area: 13 / 1 / 27 / 6;   background-image: url(../img/ella/01.jpg); }
.grid--layout-2 .grid__item:nth-child(2) { grid-area: 18 / 6 / 28 / 10;  background-image: url(../img/ella/02.jpg); }
.grid--layout-2 .grid__item:nth-child(3) { grid-area: 8 / 6 / 18 / 10;  background-image: url(../img/ella/03.jpg); }
.grid--layout-2 .grid__item:nth-child(4) { grid-area: 17 / 10 / 29 / 15; background-image: url(../img/ella/04.jpg); }
.grid--layout-2 .grid__item:nth-child(5) { grid-area: 1 / 10 / 17 / 15;  background-image: url(../img/ella/05.jpg); }
.grid--layout-2 .grid__item:nth-child(6) { grid-area: 14 / 15 / 27 / 20; background-image: url(../img/ella/06.jpg); }
.grid--layout-2 .grid__item:nth-child(7) { grid-area: 2 / 15 / 14 / 20;  background-image: url(../img/ella/07.jpg); }
.grid--layout-2 .grid__item:nth-child(8) { grid-area: 4 / 20 / 19 / 26;  background-image: url(../img/ella/08.jpg); }
.grid--layout-2 .grid__item--name { grid-area: 18 / 20 / 29 / 25; }
.grid--layout-2 .grid__item--title { grid-area: 4 / 26 / 13 / 25; }
.grid--layout-2 .grid__item--text { grid-area: 1 / 5 / 3 / 10; align-items: flex-end; text-align: right;}
.grid--layout-2 .grid__item--nav-prev { grid-area: 3 / 5 / 8 / 10; }
.grid--layout-2 .grid__item--nav-next { grid-area: 8 / 1 / 13 / 6; }

/* Layout 3 */
.grid--layout-3 .grid__item:first-child {  grid-area: 6 / 1 / 18 / 8;    background-image: url(../img/djsession/01.jpg); }
.grid--layout-3 .grid__item:nth-child(2) { grid-area: 1 / 8 / 13 / 13;   background-image: url(../img/djsession/02.jpg); }
.grid--layout-3 .grid__item:nth-child(3) { grid-area: 18 / 4 / 28 / 13;  background-image: url(../img/djsession/03.jpg); }
.grid--layout-3 .grid__item:nth-child(4) { grid-area: 1 / 21 / 14 / 26; background-image: url(../img/djsession/04.jpg); }
.grid--layout-3 .grid__item:nth-child(5) { grid-area: 2 / 13 / 14 / 21;  background-image: url(../img/djsession/05.jpg); }
.grid--layout-3 .grid__item:nth-child(6) { grid-area: 14 / 13 / 29 / 19; background-image: url(../img/djsession/06.jpg); }
.grid--layout-3 .grid__item--name { grid-area: 20 / 16 / 28 / 27; }
.grid--layout-3 .grid__item--title { grid-area: 1 / 21 / 11 / 22; }
.grid--layout-3 .grid__item--text { grid-area: 5 / 3 / 6 / 8; text-align: right; display: block; }
.grid--layout-3 .grid__item--nav-prev { grid-area: 13 / 8 / 18 / 13; }
.grid--layout-3 .grid__item--nav-next { grid-area: 14 / 19 / 19 / 24; }

/* Layout 4 */
.grid--layout-4 .grid__item:first-child {  grid-area: 2 / 1 / 14 / 6;    background-image: url(../img/cederberg/01.jpg); }
.grid--layout-4 .grid__item:nth-child(2) { grid-area: 1 / 16 / 11 / 20;  background-image: url(../img/cederberg/02.jpg); }
.grid--layout-4 .grid__item:nth-child(3) { grid-area: 14 / 6 / 28 / 12;  background-image: url(../img/cederberg/03.jpg); }
.grid--layout-4 .grid__item:nth-child(4) { grid-area: 18 / 20 / 30 / 25; background-image: url(../img/cederberg/04.jpg); }
.grid--layout-4 .grid__item:nth-child(5) { grid-area: 14 / 12 / 30 / 20;  background-image: url(../img/cederberg/05.jpg); }
.grid--layout-4 .grid__item:nth-child(6) { grid-area: 7 / 20 / 18 / 25; background-image: url(../img/cederberg/06.jpg); }
.grid--layout-4 .grid__item:nth-child(7) { grid-area: 4 / 6 / 14 / 12;   background-image: url(../img/cederberg/07.jpg); }
.grid--layout-4 .grid__item:nth-child(8) { grid-area: 14 / 2 / 25 / 6;   background-image: url(../img/cederberg/08.jpg); }
.grid--layout-4 .grid__item--name { grid-area: 2 / 11 / 14 / 17; }
.grid--layout-4 .grid__item--title { grid-area: 14 / 11 / 24 / 13;  }
.grid--layout-4 .grid__item--text { grid-area: 11 / 17 / 15 / 20; text-align: right; display: block; }
.grid--layout-4 .grid__item--nav-prev { grid-area: 25 / 1 / 30 / 6; }
.grid--layout-4 .grid__item--nav-next { grid-area: 2 / 20 / 7 / 25; }

/* Layout 5 */
.grid--layout-5 .grid__item:first-child {  grid-area: 1 / 2 / 11 / 6;     background-image: url(../img/models/01.jpg); }
.grid--layout-5 .grid__item:nth-child(2) { grid-area: 2 / 6 / 13 / 12;    background-image: url(../img/models/02.jpg); }
.grid--layout-5 .grid__item:nth-child(3) { grid-area: 1 / 12 / 14 / 16;   background-image: url(../img/models/03.jpg); }
.grid--layout-5 .grid__item:nth-child(4) { grid-area: 2 / 16 / 14 / 20;   background-image: url(../img/models/04.jpg); }
.grid--layout-5 .grid__item:nth-child(5) { grid-area: 1 / 20 / 13 / 24;   background-image: url(../img/models/05.jpg); }
.grid--layout-5 .grid__item:nth-child(6) { grid-area: 11 / 1 / 22 / 6;     background-image: url(../img/models/06.jpg); }
.grid--layout-5 .grid__item:nth-child(7) { grid-area: 13 / 6 / 22 / 9;    background-image: url(../img/models/07.jpg); }
.grid--layout-5 .grid__item:nth-child(8) { grid-area: 13 / 9 / 22 / 12;   background-image: url(../img/models/08.jpg); }
.grid--layout-5 .grid__item:nth-child(9) { grid-area: 16 / 17 / 27 / 21;   background-image: url(../img/models/09.jpg); }
.grid--layout-5 .grid__item:nth-child(10) { grid-area: 18 / 21 / 28 / 25;  background-image: url(../img/models/10.jpg); }
.grid--layout-5 .grid__item:nth-child(11) { grid-area: 14 / 12 / 25 / 17;     background-image: url(../img/models/11.jpg); }
.grid--layout-5 .grid__item:nth-child(12) { grid-area: 22 / 2 / 30 / 5;    background-image: url(../img/models/12.jpg); }
.grid--layout-5 .grid__item:nth-child(13) { grid-area: 22 / 5 / 30 / 8;   background-image: url(../img/models/13.jpg); }
.grid--layout-5 .grid__item:nth-child(14) { grid-area: 2 / 24 / 13 / 29;   background-image: url(../img/models/14.jpg); }
.grid--layout-5 .grid__item:nth-child(15) { grid-area: 22 / 8 / 30 / 12;  background-image: url(../img/models/15.jpg); }
.grid--layout-5 .grid__item--name { grid-area: 22 / 17 / 29 / 29; }
.grid--layout-5 .grid__item--title { grid-area:15 / 17 / 19 / 21; writing-mode: horizontal-tb; text-align: left; }
.grid--layout-5 .grid__item--text { grid-area: 14 / 17 / 16 / 20; text-align: left;}
.grid--layout-5 .grid__item--nav-prev { grid-area: 25 / 12 / 30 / 17; }
.grid--layout-5 .grid__item--nav-next { grid-area: 13 / 21 / 18 / 26; }

/* Layout 6 */
.grid--layout-6 .grid__item:first-child {  grid-area: 2 / 1 / 17 / 7;    background-image: url(../img/collection/01.jpg); }
.grid--layout-6 .grid__item:nth-child(2) { grid-area: 1 / 7 / 10 / 17;   background-image: url(../img/collection/02.jpg); }
.grid--layout-6 .grid__item:nth-child(3) { grid-area: 15 / 17 / 28 / 26; background-image: url(../img/collection/03.jpg); }
.grid--layout-6 .grid__item:nth-child(4) { grid-area: 17 / 4 / 28 / 12;  background-image: url(../img/collection/04.jpg); }
.grid--layout-6 .grid__item:nth-child(5) { grid-area: 1 / 17 / 15 / 23;  background-image: url(../img/collection/05.jpg); }
.grid--layout-6 .grid__item:nth-child(6) { grid-area: 10 / 12 / 23 / 17; background-image: url(../img/collection/06.jpg); }
.grid--layout-6 .grid__item--name { grid-area: 22 / 1 / 29 / 13; text-align: right; }
.grid--layout-6 .grid__item--title { grid-area: 6 / 7 / 10 / 8;  }
.grid--layout-6 .grid__item--text { grid-area: 15 / 7 / 17 / 12; text-align: left;}
.grid--layout-6 .grid__item--nav-prev { grid-area: 10 / 7 / 15 / 12; }
.grid--layout-6 .grid__item--nav-next { grid-area: 23 / 12 / 28 / 17; }

/* Layout 7 */
.grid--layout-7 .grid__item:first-child {  grid-area: 15 / 1 / 29 / 6;   background-image: url(../img/catalog2/01.jpg); }
.grid--layout-7 .grid__item:nth-child(2) { grid-area: 1 / 1 / 15 / 6;    background-image: url(../img/catalog2/02.jpg); }
.grid--layout-7 .grid__item:nth-child(3) { grid-area: 15 / 16 / 29 / 21; background-image: url(../img/catalog2/03.jpg); }
.grid--layout-7 .grid__item:nth-child(4) { grid-area: 15 / 6 / 30 / 11;  background-image: url(../img/catalog2/04.jpg); }
.grid--layout-7 .grid__item:nth-child(5) { grid-area: 1 / 16 / 15 / 22;  background-image: url(../img/catalog2/05.jpg); }
.grid--layout-7 .grid__item:nth-child(6) { grid-area: 8 / 11 / 25 / 16;  background-image: url(../img/catalog2/06.jpg); }
.grid--layout-7 .grid__item--name { grid-area: 1 / 5 / 9 / 20; }
.grid--layout-7 .grid__item--title { grid-area: 3 / 18 /8 / 19;  }
.grid--layout-7 .grid__item--text { grid-area: 13 / 6 / 15 / 11; text-align: right; }
.grid--layout-7 .grid__item--nav-prev { grid-area: 8 / 6 / 13 / 11; }
.grid--layout-7 .grid__item--nav-next { grid-area: 3 / 11 / 8 / 16; }

/* Layout 8 */
.grid--layout-8 .grid__item:first-child {  grid-area: 2 / 2 / 17 / 7;    background-image: url(../img/catalog3/01.jpg); }
.grid--layout-8 .grid__item:nth-child(2) { grid-area: 17 / 1 / 27 / 9;   background-image: url(../img/catalog3/02.jpg); }
.grid--layout-8 .grid__item:nth-child(3) { grid-area: 5 / 17 / 17 / 27; background-image: url(../img/catalog3/03.jpg); }
.grid--layout-8 .grid__item:nth-child(4) { grid-area: 17 / 14 / 28 / 22; background-image: url(../img/catalog3/04.jpg); }
.grid--layout-8 .grid__item:nth-child(5) { grid-area: 17 / 22 / 25 / 26;  background-image: url(../img/catalog3/05.jpg); }
.grid--layout-8 .grid__item:nth-child(6) { grid-area: 6 / 7 / 17 / 17;   background-image: url(../img/catalog3/06.jpg); }
.grid--layout-8 .grid__item--name { grid-area: 1 / 14 / 7 / 26; }
.grid--layout-8 .grid__item--title { grid-area: 1 / 16 / 6 / 17;  }
.grid--layout-8 .grid__item--text { grid-area: 22 / 9 / 25 / 14; text-align: right; }
.grid--layout-8 .grid__item--nav-prev { grid-area: 1 / 9 / 6 / 14; }
.grid--layout-8 .grid__item--nav-next { grid-area: 17 / 9 / 22 / 14; }

/* Layout 9 */
.grid--layout-9 .grid__item:first-child {  grid-area: 2 / 1 / 14 / 6;    background-image: url(../img/misci/01.jpg); }
.grid--layout-9 .grid__item:nth-child(2) { grid-area: 4 / 6 / 13 / 14;  background-image: url(../img/misci/02.jpg); }
.grid--layout-9 .grid__item:nth-child(3) { grid-area: 13 / 6 / 28 / 11;  background-image: url(../img/misci/03.jpg); }
.grid--layout-9 .grid__item:nth-child(4) { grid-area: 13 / 11 / 21 / 20; background-image: url(../img/misci/04.jpg); }
.grid--layout-9 .grid__item:nth-child(5) { grid-area: 1 / 14 / 11 / 23;  background-image: url(../img/misci/05.jpg); }
.grid--layout-9 .grid__item:nth-child(6) { grid-area: 11 / 20 / 21 / 24; background-image: url(../img/misci/06.jpg); }
.grid--layout-9 .grid__item:nth-child(7) { grid-area: 21 / 11 / 30 / 15;   background-image: url(../img/misci/07.jpg); }
.grid--layout-9 .grid__item:nth-child(8) { grid-area: 21 / 15 / 30 / 18;   background-image: url(../img/misci/08.jpg); }
.grid--layout-9 .grid__item:nth-child(9) { grid-area: 14 / 2 / 25 / 6;   background-image: url(../img/misci/09.jpg); }
.grid--layout-9 .grid__item--name { grid-area: 1 / 6 / 8 / 18; }
.grid--layout-9 .grid__item--title { grid-area: 14 / 11 / 20 / 11;  }
.grid--layout-9 .grid__item--text { grid-area: 11 / 14 / 14 / 20; text-align: left;}
.grid--layout-9 .grid__item--nav-prev { grid-area: 25 / 1 / 30 / 6; }
.grid--layout-9 .grid__item--nav-next { grid-area: 21 / 18 / 26 / 23; }

/* Layout 10 */
.grid--layout-10 .grid__item:first-child {  grid-area: 3 / 3 / 18 / 9;    background-image: url(../img/mura/01.jpg); }
.grid--layout-10 .grid__item:nth-child(2) { grid-area: 2 / 14 / 11 / 22;   background-image: url(../img/mura/02.jpg); }
.grid--layout-10 .grid__item:nth-child(3) { grid-area: 18 / 2 / 28 / 7;  background-image: url(../img/mura/03.jpg); }
.grid--layout-10 .grid__item:nth-child(4) { grid-area: 18 / 20 / 30 / 25; background-image: url(../img/mura/04.jpg); }
.grid--layout-10 .grid__item:nth-child(5) { grid-area: 1 / 9 / 13 / 14;  background-image: url(../img/mura/05.jpg); }
.grid--layout-10 .grid__item:nth-child(6) { grid-area: 18 / 7 / 27 / 14; background-image: url(../img/mura/06.jpg); }
.grid--layout-10 .grid__item:nth-child(7) { grid-area: 11 / 14 / 26 / 20; background-image: url(../img/mura/07.jpg); }
.grid--layout-10 .grid__item--name { grid-area: 8 / 1 / 11 / 8;  text-align: right}
.grid--layout-10 .grid__item--title { grid-area: 1 / 22 / 11 / 23; }
.grid--layout-10 .grid__item--text { grid-area: 11 / 20 / 13 / 24; text-align: left;}
.grid--layout-10 .grid__item--nav-prev { grid-area: 13 / 9 / 18 / 14; }
.grid--layout-10 .grid__item--nav-next { grid-area: 13 / 20 / 18 / 25; }

/* Layout 11 */
.grid--layout-11 .grid__item:first-child {  grid-area: 1 / 3 / 14 / 11;   background-image: url(../img/catalog4/01.jpg); }
.grid--layout-11 .grid__item:nth-child(2) { grid-area: 17 / 13 / 30 / 18; background-image: url(../img/catalog4/02.jpg); }
.grid--layout-11 .grid__item:nth-child(3) { grid-area: 14 / 2 / 27 / 8;  background-image: url(../img/catalog4/03.jpg); }
.grid--layout-11 .grid__item:nth-child(4) { grid-area: 16 / 22 / 29 / 27; background-image: url(../img/catalog4/04.jpg); }
.grid--layout-11 .grid__item:nth-child(5) { grid-area: 2 / 11 / 12 / 15;  background-image: url(../img/catalog4/05.jpg); }
.grid--layout-11 .grid__item:nth-child(6) { grid-area: 17 / 8 / 29 / 13;  background-image: url(../img/catalog4/06.jpg); }
.grid--layout-11 .grid__item:nth-child(7) { grid-area: 17 / 18 / 28 / 22; background-image: url(../img/catalog4/07.jpg); }
.grid--layout-11 .grid__item:nth-child(8) { grid-area: 1 / 15 / 12 / 23;  background-image: url(../img/catalog4/08.jpg); }
.grid--layout-11 .grid__item--name { grid-area: 1 / 21 / 17 / 25; text-align: left; }
.grid--layout-11 .grid__item--title { grid-area:17 / 13 / 26 / 13;  }
.grid--layout-11 .grid__item--text { grid-area: 14 / 8 / 17 / 11; text-align: left;}
.grid--layout-11 .grid__item--nav-prev { grid-area: 12 / 11 / 17 / 16; }
.grid--layout-11 .grid__item--nav-next { grid-area: 12 / 16 / 17 / 21; }

/* Layout 12 */
.grid--layout-12 .grid__item:first-child {  grid-area: 2 / 9 / 13 / 18;    background-image: url(../img/still/01.jpg); }
.grid--layout-12 .grid__item:nth-child(2) { grid-area: 1 / 2 / 11 / 9;     background-image: url(../img/still/02.jpg); }
.grid--layout-12 .grid__item:nth-child(3) { grid-area: 18 / 9 / 27 / 15;  background-image: url(../img/still/03.jpg); }
.grid--layout-12 .grid__item:nth-child(4) { grid-area: 18 / 15 / 29 / 19;   background-image: url(../img/still/04.jpg); }
.grid--layout-12 .grid__item:nth-child(5) { grid-area: 1 / 18 / 13 / 26;   background-image: url(../img/still/05.jpg); }
.grid--layout-12 .grid__item:nth-child(6) { grid-area: 11 / 1 / 21 / 9;    background-image: url(../img/still/06.jpg); }
.grid--layout-12 .grid__item:nth-child(7) { grid-area: 13 / 19 / 25 / 27;  background-image: url(../img/still/07.jpg); }
.grid--layout-12 .grid__item:nth-child(8) { grid-area: 21 / 2 / 29 / 9;  background-image: url(../img/still/08.jpg); }
.grid--layout-12 .grid__item--name { grid-area: 22 / 21 / 30 / 28; }
.grid--layout-12 .grid__item--title { grid-area: 3 / 18 /8 / 19;  }
.grid--layout-12 .grid__item--text { grid-area: 13 / 9 / 15 / 14; text-align: right; }
.grid--layout-12 .grid__item--nav-prev { grid-area: 13 / 9 / 18 / 14; }
.grid--layout-12 .grid__item--nav-next { grid-area: 13 / 14 / 18 / 19; }

/* Layout 13 */
.grid--layout-13 .grid__item:first-child {  grid-area: 2 / 1 / 14 / 6;      background-image: url(../img/jewels-model/01.jpg); }
.grid--layout-13 .grid__item:nth-child(2) { grid-area: 1 / 20 / 11 / 25;     background-image: url(../img/jewels-model/02.jpg); }
.grid--layout-13 .grid__item:nth-child(3) { grid-area: 11 / 20 / 20 / 27;    background-image: url(../img/jewels-model/03.jpg); }
.grid--layout-13 .grid__item:nth-child(4) { grid-area: 10 / 6 / 20 / 13;   background-image: url(../img/jewels-model/04.jpg); }
.grid--layout-13 .grid__item:nth-child(5) { grid-area: 2 / 13 / 10 / 20;    background-image: url(../img/jewels-model/05.jpg); }
.grid--layout-13 .grid__item:nth-child(6) { grid-area: 1 / 6 / 10 / 13;   background-image: url(../img/jewels-model/06.jpg); }
.grid--layout-13 .grid__item:nth-child(7) { grid-area: 10 / 13 / 19 / 20;   background-image: url(../img/jewels-model/07.jpg); }
.grid--layout-13 .grid__item:nth-child(8) { grid-area: 2 / 25 / 11 / 28;   background-image: url(../img/jewels-model/08.jpg); }
.grid--layout-13 .grid__item:nth-child(9) { grid-area: 14 / 2 / 25 / 6;     background-image: url(../img/jewels-model/09.jpg); }
.grid--layout-13 .grid__item:nth-child(10) { grid-area: 20 / 16 / 30 / 20;  background-image: url(../img/jewels-model/10.jpg); }
.grid--layout-13 .grid__item:nth-child(11) { grid-area: 20 / 20 / 29 / 28;    background-image: url(../img/jewels-model/11.jpg); }
.grid--layout-13 .grid__item--name { grid-area: 19 / 2 / 28 / 11; text-align: right; }
.grid--layout-13 .grid__item--title { grid-area: 14 / 11 / 20 / 11;  }
.grid--layout-13 .grid__item--text { grid-area: 19 / 13 / 20 / 20; text-align: left;}
.grid--layout-13 .grid__item--nav-prev { grid-area: 20 / 11 / 25 / 16; }
.grid--layout-13 .grid__item--nav-next { grid-area: 25 / 11 / 30 / 16; }

/* Layout 14 */
.grid--layout-14 .grid__item:first-child {  grid-area: 1 / 2 / 11 / 6;     background-image: url(../img/jewels/01.jpg); }
.grid--layout-14 .grid__item:nth-child(2) { grid-area: 2 / 6 / 13 / 12;    background-image: url(../img/jewels/02.jpg); }
.grid--layout-14 .grid__item:nth-child(3) { grid-area: 1 / 12 / 13 / 16;   background-image: url(../img/jewels/03.jpg); }
.grid--layout-14 .grid__item:nth-child(4) { grid-area: 2 / 16 / 14 / 20;   background-image: url(../img/jewels/04.jpg); }
.grid--layout-14 .grid__item:nth-child(5) { grid-area: 1 / 20 / 14 / 24;   background-image: url(../img/jewels/05.jpg); }
.grid--layout-14 .grid__item:nth-child(6) { grid-area: 11 / 1 / 22 / 6;     background-image: url(../img/jewels/06.jpg); }
.grid--layout-14 .grid__item:nth-child(7) { grid-area: 14 / 16 / 26 / 21;    background-image: url(../img/jewels/07.jpg); }
.grid--layout-14 .grid__item:nth-child(8) { grid-area: 13 / 12 / 22 / 16;   background-image: url(../img/jewels/08.jpg); }
.grid--layout-14 .grid__item:nth-child(9) { grid-area: 14 / 21 / 27 / 25;   background-image: url(../img/jewels/09.jpg); }
.grid--layout-14 .grid__item:nth-child(10) { grid-area: 19 / 25 / 29 / 29;  background-image: url(../img/jewels/10.jpg); }
.grid--layout-14 .grid__item:nth-child(11) { grid-area: 13 / 6 / 22 / 12;     background-image: url(../img/jewels/11.jpg); }
.grid--layout-14 .grid__item:nth-child(12) { grid-area: 22 / 1 / 30 / 4;    background-image: url(../img/jewels/12.jpg); }
.grid--layout-14 .grid__item:nth-child(13) { grid-area: 22 / 4 / 30 / 7;   background-image: url(../img/jewels/13.jpg); }
.grid--layout-14 .grid__item:nth-child(14) { grid-area: 2 / 24 / 14 / 29;   background-image: url(../img/jewels/14.jpg); }
.grid--layout-14 .grid__item:nth-child(15) { grid-area: 22 / 7 / 30 / 11;  background-image: url(../img/jewels/15.jpg); }
.grid--layout-14 .grid__item--name { grid-area: 23 / 14 / 30 / 29; }
.grid--layout-14 .grid__item--title { grid-area:15 / 17 / 19 / 21; writing-mode: horizontal-tb; text-align: left; }
.grid--layout-14 .grid__item--text { grid-area: 27 / 11 / 29 / 14; text-align: left;}
.grid--layout-14 .grid__item--nav-prev { grid-area: 22 / 11 / 27 / 16; }
.grid--layout-14 .grid__item--nav-next { grid-area: 14 / 25 / 19 / 30; }


.revealer--hideX,
.revealer--hideY,
.revealer--showX,
.revealer--showY,
.grid__item--animateOut,
.grid__item--animateIn {
	animation-duration: 0.6s;
}

.icon--nav-arrow {
    fill:#cfcfcf;
}

.sucesso { color: darkgreen; }
.falha { color: darkred; }

@media screen and (max-width: 60em) {
	
}

/* motion */
@-moz-keyframes gradient {
  0% {
    background-position: 14% 0%;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 0%;
  }
}
@-webkit-keyframes gradient {
  0% {
    background-position: 14% 0%;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 0%;
  }
}
@keyframes gradient {
  0% {
    background-position: 14% 0%;
  }
  50% {
    background-position: 87% 100%;
  }
  100% {
    background-position: 14% 0%;
  }
}




/********************************************

                   RESIZE

********************************************/


@media screen and (max-width: 1440px) {
    nav.menu .icon-list a,
    .menu-wrap-sou .texto,
    .menu-wrap-contato input, 
    .menu-wrap-contato form button,
    .menu-wrap-contato textarea {
        font-size: .9rem;
    }
    
    .logo img {
        width:90%;
    }
}

@media screen and (max-width: 1366px) {
    nav.menu .icon-list a,
    .menu-wrap-sou .texto,
    .menu-wrap-contato input, 
    .menu-wrap-contato form button,
    .menu-wrap-contato textarea,
    .grid__item.grid__item--text{
        font-size: .8rem;
        line-height: 1.4;
    }
    
    .logo img {
        width:85%;
    }
}

@media screen and (max-width: 1024px) {
    nav.menu .icon-list a,
    .menu-wrap-sou .texto,
    .menu-wrap-contato input, 
    .menu-wrap-contato form button,
    .menu-wrap-contato textarea,
    .grid__item.grid__item--text{
        font-size: .8rem;
        line-height: 1.4;
    }
    
    .logo img {
        width:60%;
    }
    
    .menu-sou,
    .menu-contato { 
        width:40px; 
        height:40px; 
        padding:.55em!important;
    }
    
    .menu-nav,
    .menu-sou,
    .menu-contato { 
        position: fixed!important;
        top:.5em;
        right:0;
        margin:1em!important;
    }
    
    .menu-nav { width:40px!important; height:40px!important; margin-right:115px!important; }
    .menu-nav .hamburger-wrap { padding:5px!important; }
    .menu-sou { margin-right:65px!important; }
    
    .menu-sou p,
    .menu-contato p { display: none; }

    .menu-sou svg,
    .menu-contato svg { display:block; width:20px; }
    
    .frame {
		display: block;
		height: auto;
		position: relative;
		text-align: center;
        background: #cfcfcf;
        padding: 1em;
	}
    
    .grid {
        height: calc(100vh - 6em);
		top: 87px !important;
		width: 100%;
		left: auto !important;
		padding: 0 2em;
		grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
		grid-auto-rows: auto !important;
		grid-auto-columns: auto !important;
		grid-gap: 1vw;
        overflow: auto;
        align-content: start;
        
    }
    
    .grid__item {
		min-height: 30vh;
		grid-area: auto !important;
	}

	.grid__item br {
		content: '';
		display: none;
	}

	.grid__item--name,
	.grid__item--title,
	.grid__item--text {
		grid-column: 1 / -1 !important;
		justify-content: flex-start;
		min-height: 0;
		padding: 3vh 0 8vh 0;
		text-align: left !important;
	}
    
    .grid__item--name {
        color:var(--grid-name-text-alt);
        text-shadow: none;
    }
    
    .grid__item--name,
	.grid__item--text {
		grid-row: 1 / -1 !important;
	}

	.grid .grid__item--title {
		padding: 8px 0;
    }
    
    .grid .grid__item--text {
		padding: 85px 0 30px 0;
    }
    
    .grid--layout-1 .grid__item--name,
	.grid--layout-1 .grid__item--title,
	.grid--layout-1 .grid__item--text {
		padding: 1vh 0;
	}	
    
    .grid--layout-7 .grid__item--name { display: none; }
    .grid--layout-7 .grid__item--name--alt { display: block; }
    
    .grid:after {
        width: 100%;
        position: relative;
        height: 87px;
        content: '';
    }
    
    main { border-bottom: 1px solid #999; z-index: 9999999999999; }
    
    .show-menu-nav .content-wrap,
    .show-menu-sou .content-wrap,
    .show-menu-contato .content-wrap {
        -webkit-transform: translate3d(0,0,0)!important;
        transform: translate3d(0,0,0)!important;
    }
    
    .icon-list a {
        padding: 0.4em 0.55em;
    }
    
    /*.grid__item--nav { min-height: 15vh; } */
}

@media screen and (max-width: 800px) {
    .grid {
        grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));
        grid-gap: 2vw;
    }
    
    nav.menu .icon-list a,
    .menu-wrap-sou .texto,
    .menu-wrap-contato input, 
    .menu-wrap-contato form button,
    .menu-wrap-contato textarea,
    .grid__item.grid__item--text{
        font-size: .7rem;
        line-height: 1.6;
    }
}