@import url('https://fonts.googleapis.com/css?family=Anton|Buenard:400,700');
aside,figure,footer,header,main,nav,section{display:block;}video{display:inline-block;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}strong{font-weight:bold;}small{font-size:80%;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}button,input{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button{text-transform:none;}button,html input[type="button"]{appearance: button;-webkit-appearance:button;cursor:pointer;}input[type="checkbox"]{box-sizing:border-box;padding:0;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}
*,
*::after,
*::before {
	box-sizing: border-box;
}

body { 
	--color-text: #000;
	--color-bg: #ececec;
	--color-link: #000;
	--color-link-hover: #000;
	--color-info: #000;
	font-family: 'Buenard', serif;
	min-height: 100vh;
	color: #57585c;
	color: var(--color-text);
	background-color: #fff;
	background-color: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Page Loader */

@keyframes loaderAnim {
	to {
		opacity: 1;
		transform: scale3d(0.5,0.5,1);
	}
}

a {
	text-decoration: none;
	color: var(--color-link);
	outline: none;
}

a:hover,
a:focus {
	color: var(--color-link-hover);
	outline: none;
}

.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;
}

main {
	position: relative;
}

.content {
	position: relative;  
}

/* Header */

.github {
	display: block;
	margin: 0 0 0 auto;
}

/* Top Navigation Style */

.grid {
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding-bottom: 10rem;
}

.grid__item {
	display: flex;
	justify-content: center;
	margin: 0 0 10rem 0;
	cursor: pointer;
}

.box {
	position: relative;
	margin: 2rem;
}

.box__title {
	margin: 0;
	line-height: 1;
	position: absolute;
	z-index: 100;
}

.box__title-inner {
	display: block;
	position: relative;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 2.0em;
	letter-spacing: 0.15rem;
	line-height: 1;
	font-family: 'Anton', sans-serif;    
	color: #c1a5a6;
}

.box__title-inner[data-hover] {
	-webkit-text-stroke: 2px #c1a5a6;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.box__title-inner::before {
	content: attr(data-hover);
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	overflow: hidden;
	white-space: nowrap;
	-webkit-text-stroke: 0;
	-webkit-text-fill-color: #000;
	color: #c1a5a6;
	transition: all 0.3s;
}

.grid__item:hover .box__title-inner::before {
	height: 100%;
	width: 100%;
}

.box__text {
	margin: 0;
	position: absolute;
	top: -6rem;
	font-weight: normal;
	text-transform: uppercase;
	letter-spacing: 0.15rem;
	font-size: 1.0em;
	margin: 0.5rem 1rem;
	font-family: 'Anton', sans-serif;
}

.box__text-inner {
	position: relative;
	display: block;
	border: 6px solid #c1a5a6;
	padding: 0.25rem 1.25rem;
	color: #c1a5a6;
}


.box__text-inner:hover {
	border: 6px solid #000;
	color: #000;
}

.box__text-inner--reverse {
	background: var(--color-text);
	color: var(--color-bg);
}

.box__img {
	display: block;
	flex: none;
	margin: 0 auto;
	max-width: 100%;
	filter: grayscale(1);
	transition: filter 0.3s;
	pointer-events: none;
}

.grid__item:hover .box__img:not(.box__img--original) {
	filter: grayscale(0);
}

.box__shadow {
	position: absolute;
	width: 100%;
	height: 100%;
	top: -1rem;
	left: -1rem;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAOklEQVQoU43MSwoAMAgD0eT+h7ZYaOlHo7N+DNHL2HAGgBWcyGcKbqTghTL4oQiG6IUpOqFEC5bI4QD8PAoKd9j4XwAAAABJRU5ErkJggg==);
}

.box__deco {
	font-size: 6rem;
	line-height: 1;
	font-weight: bold;
	position: absolute;
	bottom: -4rem;
	right: -4rem;
	display: none;
}

.box__content {
	position: absolute;
	max-width: 195px;
	font-size: 0.9rem;
	text-align: right;
	display: none;
}

.box__content strong {
	white-space: nowrap;
}

.overlay {
	pointer-events: none;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	overflow: hidden;
}

.overlay--open {
	pointer-events: auto;
}

.overlay__reveal {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	
	position: absolute;
	z-index: 100;
	transform: translate3d(100%,0,0);
}

.overlay__item {
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 0px;
	left: 0;
	opacity: 0;
	display: flex;
	flex-direction: column;
    align-items: center;
    padding: 4rem 5vw;
    justify-content: center;
}

.overlay__item .box {
	max-width: 40%;
	max-height: 100%;
	margin: 0;
	float: left;
}

.overlay__item .box__title {
	bottom: 0;
}

.box__img--original {
	max-height: calc(100vh - 10rem);
	filter: none;
}

.overlay__close {
	position: absolute;
	    top: -5px;
    right: 5%;
	background: none;
	border: 0;
	margin: 1rem;
	padding: 1rem;
	opacity: 0;
	z-index:1000;
	color:#a93438;
}

.overlay__close:focus {
	outline: none;
}

.overlay__content {
	font-size: 1rem;
	/*line-height: 1.5;*/
	max-width: 25rem;
	margin: 1rem 0 0 6vw;
	float: left;
}

@media screen and (min-width: 55em) {
	.grid {
		display: grid;
		align-items: center;
		padding:4rem 3rem 2rem 3rem;
		grid-row-gap: 2rem;
		grid-template-columns: repeat(3,calc(100% / 3));
	}
	.grid__item {
		margin: 0;
	}
	.box {
		margin: 4rem;
	}
	.box__title {
		top: -4rem;
		right: -4.5rem;
		-webkit-writing-mode: vertical-rl;
		writing-mode: vertical-rl;
	}
	.box__title--straight {
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	.box__title--straight .box__title-inner::before {
		width: 0;
		height: auto;
	}
	.box__title--bottom {
		bottom: -5rem;
		top: auto;
	}
	.box__title--left {
		left: -2rem;
		right: auto; 
	}
	.box__text--topcloser {
		top: -5rem;
	}
	.box__text--bottom {
		bottom: -5rem;
		top: auto;
	}
	.box__text--bottomcloser {
		bottom: -5rem;
		top: auto;
	}
	.box__text--right {
		right: 0;
		left: auto;
	}
	.box__text-inner--rotated1 {
		transform: rotate(4deg);
	}
	.box__text-inner--rotated2 {
		transform: rotate(-3deg);
	}
	.box__text-inner--rotated3 {
		transform: rotate(-15deg);
	}
	.box__deco {
		display: block;
	}
	.box__deco--left {
		right: auto;
		left: -3rem;
	}
	.box__deco--top {
		top: 0;
		bottom: auto;
	}
	.overlay__item {
		flex-direction: row;
	}
	.overlay__content {
		/*font-size: 2.25rem;*/
		margin-top: 0;
	}
	.overlay__item .box__title--bottom {
		bottom: 0;
	}
} 

@media screen and (min-width: 80em) {
	.grid {
		grid-template-columns: repeat(4,25%);
		padding:6rem 3rem 2rem 3rem; 
	}
	.grid__item:nth-child(4n-2) {
		margin-top: -8rem;
		margin-bottom: 8rem;
	}
	.grid__item:nth-child(4n) {
		margin-top: -5rem;
	}
	.box {
		margin: 6rem 4.5rem;
	}
	.box__content {
		display: block;
	} 
}

@media screen and (max-width: 55em) {
	.content {
		flex-direction: column;
		height: auto;
		min-height: 0;
	}
	.github {
		display: block;
		margin: 1em auto;
	}
}





/* width */
/* ::-webkit-scrollbar {
    width: 5px;
} */

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
    background: #696969; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000; 
}
@media screen and (min-width: 1400px){
	.box__title-inner{
		    font-size: 1.5em;
	}
}


.video_gallery_img {
	    width: 100%;
    border: 1px solid #c5c5c5;
    padding: 5px;
    filter: drop-shadow(6px 4px 2px #22222278);
    border-radius: 25px;
	    transition: .9s ease;
}
.video_gallery_img:hover {
	    width: 100%;
        border: 1px solid #a93438;
    padding: 5px;
    filter:drop-shadow(0px 13px 11px #a93438);
    border-radius: 20px;
	
}


@media screen and (max-width: 2400px) and (min-width: 1367px) {
.grid {
    padding:13rem 0rem 9rem 0rem;
}
}




.v_mar {
	margin-bottom:2%;
}


.photo_text-inner {
	position: relative;
	display: block;
	padding: 0.25rem 1.25rem;
	color: #333;
	text-transform:none;
}


.photo_text-inner:hover {
	color: #000;
}
