/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* and more  */
* {
	box-sizing: border-box;
}
/***
/* (/^-^)/  - - FONT - -  \(^-^\)*//*

Awesome font by Boris Garic & Paul D. Hunt
Generated by Google font & Font Squirrel (https://www.fontsquirrel.com)

***/

@font-face {
    font-family: 'nikoleta';
    src: url('../font/nikoleta-webfont.woff2') format('woff2'),
         url('../font/nikoleta-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/* (/^-^)/  - - GLOBAL - -  \(^-^\)*/


/* purple: 3c315b //// red de274b */

html {
    /* balancing rem to pixel for calcul */
    font-size: 62.5%;
}

html,
body {
	position: relative;
	min-height: 100%;
}

body {
	font-size: 1.6rem;
	padding: 10px;
	font-family: 'Source Code Pro', monospace;
	background: #3c315b;
	color: #eee;
}

a {
	text-decoration: none;
	color: inherit;
}

.b-container {
	position: relative;
	max-width: 1200px;
	margin: auto;
}

.b-container-s {
	max-width: 1000px;
	margin: auto;
}
/* (/^-^)/  - - TYPOGRAPHY - -  \(^-^\)*/

.c-h1 {
	font-family: 'nikoleta', 'sans-serif';
	letter-spacing: 0.5rem;
	line-height: 6rem;
	text-transform: uppercase;
	font-size: 3rem;
}
/* add special letter spacing here desk only */
.c-hanko .c-h1 {letter-spacing: 2.5rem;}

@media only screen and (min-width: 700px) {
	.c-h1, .c-hanko .c-h1{
		font-size: 6rem;
		letter-spacing: 2rem;
		line-height: 8rem;
	}

}

.c-h2 {
	font-size: 2.8rem;
	text-transform: uppercase;
}

.c-p {
	margin-bottom: 3rem;
}

/* (/^-^)/  - - COMPONENT - -  \(^-^\)*/

/* ⎦˚◡˚⎣ _LINK (NOT ZELDA !)_ ⎦˚◡˚⎣ */

.c-link {
	position: relative;
	font-weight: bold;
}

.c-link:after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -6px;
	height: 2px;
	width: 100%;
	background-color: #fefefe;
	transition: opacity 0.3s ease-in-out, height 0.3s ease-in-out;
}

.c-link:hover:after,
.c-link:focus:after,
.c-link:active:after {
	height: 130%;
	opacity: 0.2;
}
/* ⎦˚◡˚⎣ _IMAGES ARE SO BEATIFUL_ ⎦˚◡˚⎣ */

.c-img {
	max-width: calc(100% - 20px);
	height: auto;
	margin: 10px;
}


@media only screen and (min-width: 750px) {
	.c-img {
		max-width: calc(100% - 100px);
		margin: 50px;
	}

	.c-img--s {
		width: 400px;
	}

	.c-img--m {
		width: 600px;
	}

	.c-img--l {
		width: 900px;
	}
}
/* ⎦˚◡˚⎣ _CLICK BUTTONS CLICK_ ⎦˚◡˚⎣ */

.c-btn {
	white-space: nowrap;
	position: relative;
	box-sizing: border-box;
	padding: 25px 40px;
	border-radius: 50px;
	font-size: 1.8rem;
	font-family: 'nikoleta', 'sans-serif';
	letter-spacing: 0.35rem;
	text-align: center;
	background: linear-gradient(105deg, #de274b 0%,#d25357 100%);
	box-shadow: 5px 5px 20px -5px rgba(42,34,64,1);
	transition: border 0.8s ease-in-out, padding 1s ease-in-out;
}

.c-btn--small {
	display: inline-block;
	padding: 15px 20px;
	font-size: inherit;
	font-family: inherit;
	letter-spacing: inherit;
	border: 0;
}

.c-btn:hover,
.c-btn:focus {
  box-shadow: inset 10px 10px 20px -12px rgba(0,0,0,0.75);
}

.c-btn:active {
  box-shadow: inset -10px -10px 20px -12px rgba(0,0,0,0.75);
  margin-left: 2px;
  margin-top: 1px;
}

.c-btn:before,
.c-btn:after {
  content: '';
  position: absolute;
  border-radius: 50px;
  border: #e1e1e1 solid 0px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.c-btn:after {
  transition: 0.2s border linear;
}

.c-btn:before {
    animation-duration: 0.6s;
}

.c-btn:hover:before,
.c-btn:focus:before,
.c-btn:active:before {
  animation-name: casper;
}

.c-btn:hover:after,
.c-btn:focus:after,
.c-btn:active:after {
  border: #fefefe solid 4px;
}

.c-btn__glitch,
.c-btn__glitch:before,
.c-btn__glitch:after {
  position: absolute;
  top: 0; left: 0;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.c-btn:active .c-btn__glitch:before {
  content: '';
  top: -10px; left: -10px;
  background: #ff0000;
}

.c-btn:active .c-btn__glitch:after {
  content: '';
  top: 10px; left: 10px;
  background: #0000ff;
  z-index: 1;
}
/* ⎦˚◡˚⎣ _hanko_ ⎦˚◡˚⎣ */

.c-hanko {
	position: relative;
	font-size: 65px;
	width: 110px;
	text-align: center;
	word-break: break-all;

}

.c-hanko::before {
	content: '';
	position: absolute;
	top: 50px; left: 65px;
	width: 65px; height: 65px;
	border-radius: 560%;
	background-color: #de274b;
	box-shadow: 0px 0px 150px 0px rgba(26,241,220,1);
	z-index: -1;
	animation: youhou 8.8s linear infinite alternate;
}

/* ⎦˚◡˚⎣ _[] [] CARD [] []_ ⎦˚◡˚⎣ */

.c-card {
	position: relative;
	max-width: 320px; height: 480px;
	margin: 0 auto 60px;
}

.c-card--s {
	height: 375px;
}
@media only screen and (min-width: 350px) {
	.c-card--s {
		height: 300px;
	}
}
.c-card__container {
	position: relative;
	height: 100%;
	border-radius: 16px;
	border: 4px solid #fefefe;
	box-shadow: 5px 5px 20px 0px rgba(42,34,64,1);
	overflow: hidden;
}

.c-card__image {
	position: absolute;
	border-radius: 16px;
	top: 0; left: 0; width: 100%; height: 100%;
}

.c-card__image img {
	object-fit: cover;
	width: 100%; height: 100%;
}

.c-card__content {
	position: absolute;
	box-sizing: border-box;
	bottom: 0; left: 0;
	width: 100%; height: 250px;
	padding: 70px 5px 5px;
	text-align: right;
	background: linear-gradient(to bottom, rgba(60,49,91,0) 0%,rgba(60,49,91,1) 60%);
}

.c-card__title {
	position: absolute;
	font-size: 2.6rem;
	right: 10px; left: 15px; bottom: 60px;
	text-align: left;
}

.c-card__title:before {
	content: '';
	position: absolute;
	top: -10px; left: 0;
	width: 40px; height: 4px;
	background: #fefefe;
}

.c-card__link {
	position: relative;
	font-size: 1.3rem;
	letter-spacing: 0.01rem;
	padding: 8px 0;
}

.c-card__link:before {
	content: '';
	position: absolute;
	top: 0%; left: 100%; right: 0%;
	width: auto; height: 100%;
	background: #fefefe;
	opacity: 0.8;
	transition: left 0.6s ease-in-out,
				right 0.5s ease-in-out,
				opacity 0.5s ease-in-out ;
}

.c-card__link:hover:before,
.c-card__link:focus:before {
	opacity: 1;
	left: -10px;
	right: calc(100% + 5px);
	transition: left 0.2s ease-in-out,
				right 0.4s ease-in-out,
				opacity 0.4s ease-in-out ;
}

.c-card__btn {
	position: absolute;
	bottom: 0; left: 50%;
	transform: translate(-50%, 50%);
	z-index: 1;
}
/* ⎦˚◡˚⎣ _YOHO LET S NAVIGATE_ ⎦˚◡˚⎣ */

.c-nav {
	color: #de274b;
	font-family: 'nikoleta', 'sans-serif';
	letter-spacing: 0.4rem;
	font-size: 2.1rem;
}

.c-nav__title {
	margin: 12px 12px 35px;
	padding-bottom: 5px;
	position: relative;
}

.c-nav__title:before {
	content: '';
	position: absolute;
	bottom: -5px; left: 0;
	width: 110px; height: 2px;
	background-color: #de274b;
}

.c-nav__item {
	position: relative;
	display: inline-block;
	margin: 12px;
}

.c-nav__item:before {
	content: '';
	position: absolute;
	top: -40%; left: 50%;
	width: 0%; height: 180%;
	transform: rotate(7deg);
	background: linear-gradient(105deg, #de274b 0%,#d25357 100%);
	opacity: 0.8;
	transition: width 0.4s ease-out,
				left 0.4s ease-out,
				opacity 0.6s ease-out ;

}

.c-nav__item:hover:before,
.c-nav__item:focus:before,
.c-nav__item.is-active:before {
	width: 120%;
	opacity: 0.3;
	left: -10%;
	transition: width 0.2s ease-out,
				left 0.2s ease-out,
				opacity 0.4s ease-out ;
}

/* ⎦˚◡˚⎣ _READING TIME_ ⎦˚◡˚⎣ */

.c-article {
	border-top: 4px solid #2a2240;
	text-align: center;
	margin: 50px auto;
	padding: 50px 20px;
}

@media only screen and (min-width: 710px) {
	.c-article {
		border-top: 4px solid #fefefe;
		padding: 50px 10px;
		background: #2a2240;
		box-shadow: inset 0px -40px 40px 0px rgba(0,0,0,0.2);
	}
}

.c-article .c-img {
	box-shadow: 0px 5px 20px 10px rgba(22,14,44,1);
}

.c-article .c-read {
	margin: auto;
}

.c-read {
	max-width: 700px;
	line-height: 2.5rem;
	text-align: left;
}


/* ⎦˚◡˚⎣ _SPECIAL BACKGROUND COMPONENT _ ⎦˚◡˚⎣ */
.c-background{
	position: fixed;
	z-index: -10;
	height: 100vh;
	top: 0; bottom:0;
	background: #2a2240;
	max-width: 800px;
	width: 40%;
	left: 32%;
	box-shadow: inset 0px 0px 40px 0px rgba(0,0,0,0.2);
}

@media only screen and (max-width: 710px) {
  .c-background {
    display: none;
  }
}
/* (/^-^)/  - - ANIMATION ! - -  \(^-^\)*/

@keyframes youhou {
    from {box-shadow: 0px 0px 150px 0px rgba(26,241,220,1);}
    to {box-shadow: 0px 0px 80px 30px rgba(16,201,219,1);}
}

@-webkit-keyframes casper{
  100% {
    top: -15px;
    right: -15px;
    bottom: -15px;
    left: -15px;
    opacity: 0;
    border: #e1e1e1 solid 8px;
  }
}
/* (/^-^)/  - - GRID ! - -  \(^-^\)*/

.b-grid {
  position: relative;
  width: 100%;
}

.b-grid [class^="b-col"] {
  float: left;
  margin: 0.5rem 2%;
  min-height: 0.125rem;
}

.b-col-1,
.b-col-2,
.b-col-3,
.b-col-4,
.b-col-5,
.b-col-6,
.b-col-7,
.b-col-8,
.b-col-9,
.b-col-10,
.b-col-11,
.b-col-12 {
  width: 96%;
}

@media only screen and (min-width: 720px) {
  .b-col-1 {
    width: 4.33%;
  }

  .b-col-2 {
    width: 12.66%;
  }

  .b-col-3 {
    width: 21%;
  }

  .b-col-4 {
	  width: 46%;
  }

  .b-col-5 {
    width: 37.66%;
  }

  .b-col-6 {
    width: 46%;
  }

  .b-col-7 {
    width: 54.33%;
  }

  .b-col-8 {
    width: 62.66%;
  }

  .b-col-9 {
    width: 71%;
  }

  .b-col-10 {
    width: 79.33%;
  }

  .b-col-11 {
    width: 87.66%;
  }

  .b-col-12 {
    width: 96%;
  }
}

@media only screen and (min-width: 980px) {
	.b-col-4 {
	  width: 29.33%;
	}
}
/* (/^-^)/  - - HELPERS \O_O/ - -  \(^-^\)*/

/* Spaces */
.h-pd { padding: 10px; }

.h-pd-l { padding: 15px; }
.h-pd-vt-l { padding-top: 15px; padding-bottom: 15px; }

.h-mg-auto { margin: auto; }
.h-mg { margin: 10px; }
.h-mg-hz { margin-left: 10px; margin-right: 10px; }
.h-mg-vt { margin-top: 10px; margin-bottom: 10px; }

.h-mg-l { margin: 15px; }
.h-mg-top-l { margin-top: 15px !important; }
.h-mg-hz-l { margin-left: 15px; margin-right: 15px; }
.h-mg-vt-l { margin-top: 15px; margin-bottom: 15px; }

.h-mg-top-xl { margin-top: 30px; }

/* typo */
.h-align-right { text-align: right; }
.h-uppercase { text-transform: uppercase; }
.h-bold { font-weight: bold; }
.h-large { font-size: 2rem; }
/* other */
.h-clear { clear: both; }

.h-bg-main { background: #3c315b; }
















.
