@import 'https://fonts.googleapis.com/css?family=Italianno';
@import url(https://fonts.googleapis.com/css?family=Work+Sans:400,200,300,100,500);

/*
font-family: 'Italianno', cursive;
font-family: 'Work Sans', sans-serif;
*/

html {
	font-size: 62.5%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html, body, div {
	border: 0;
	font-family: inherit;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
    -webkit-font-smoothing: antialiased;
}

/*------------pre-loader------------*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #1b1b1b; 
	z-index: 99999;
	height: 100%;
	width: 100%;
    margin: auto;
	overflow: hidden !important;
}

.cssload-square {
	display: inline-block;
  	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-moz-transform: rotate(-45deg);
}

.cssload-square-part {
	position: absolute;
	width: 24px;
	height: 24px;
	z-index: 1;
	animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
		-o-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
		-ms-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
		-webkit-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
		-moz-animation: cssload-part-anim 0.92s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
}

.cssload-square-green {
	background: rgb(255,255,255);
	right: 0;
	bottom: 0;
	animation-direction: alternate-reverse;
		-o-animation-direction: alternate-reverse;
		-ms-animation-direction: alternate-reverse;
		-webkit-animation-direction: alternate-reverse;
		-moz-animation-direction: alternate-reverse;
}

.cssload-square-pink {
	background: rgb(232,204,164);
	left: 0;
	top: 0;
}

.cssload-square-blend {
	background: rgb(58,58,58);
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 2;
	animation: blend-anim 0.92s ease-in infinite;
		-o-animation: blend-anim 0.92s ease-in infinite;
		-ms-animation: blend-anim 0.92s ease-in infinite;
		-webkit-animation: blend-anim 0.92s ease-in infinite;
		-moz-animation: blend-anim 0.92s ease-in infinite;
}



@keyframes blend-anim {
	0% {
		transform: scale(0.01, 0.01) rotateY(0);
		animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	}
	50% {
		transform: scale(1, 1) rotateY(0);
		animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	}
	100% {
		transform: scale(0.01, 0.01) rotateY(0);
	}
}

@-o-keyframes blend-anim {
	0% {
		-o-transform: scale(0.01, 0.01) rotateY(0);
		-o-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	}
	50% {
		-o-transform: scale(1, 1) rotateY(0);
		-o-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	}
	100% {
		-o-transform: scale(0.01, 0.01) rotateY(0);
	}
}

@-ms-keyframes blend-anim {
	0% {
		-ms-transform: scale(0.01, 0.01) rotateY(0);
		-ms-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	}
	50% {
		-ms-transform: scale(1, 1) rotateY(0);
		-ms-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	}
	100% {
		-ms-transform: scale(0.01, 0.01) rotateY(0);
	}
}

@-webkit-keyframes blend-anim {
	0% {
		-webkit-transform: scale(0.01, 0.01) rotateY(0);
		-webkit-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	}
	50% {
		-webkit-transform: scale(1, 1) rotateY(0);
		-webkit-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	}
	100% {
		-webkit-transform: scale(0.01, 0.01) rotateY(0);
	}
}

@-moz-keyframes blend-anim {
	0% {
		-moz-transform: scale(0.01, 0.01) rotateY(0);
		-moz-animation-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
	}
	50% {
		-moz-transform: scale(1, 1) rotateY(0);
		-moz-animation-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
	}
	100% {
		-moz-transform: scale(0.01, 0.01) rotateY(0);
	}
}

@keyframes cssload-part-anim {
	0% {
		transform: translate3d(-10px, -10px, 0);
	}
	100% {
		transform: translate3d(10px, 10px, 0);
	}
}

@-o-keyframes cssload-part-anim {
	0% {
		-o-transform: translate3d(-10px, -10px, 0);
	}
	100% {
		-o-transform: translate3d(10px, 10px, 0);
	}
}

@-ms-keyframes cssload-part-anim {
	0% {
		-ms-transform: translate3d(-10px, -10px, 0);
	}
	100% {
		-ms-transform: translate3d(10px, 10px, 0);
	}
}

@-webkit-keyframes cssload-part-anim {
	0% {
		-webkit-transform: translate3d(-10px, -10px, 0);
	}
	100% {
		-webkit-transform: translate3d(10px, 10px, 0);
	}
}

@-moz-keyframes cssload-part-anim {
	0% {
		-moz-transform: translate3d(-10px, -10px, 0);
	}
	100% {
		-moz-transform: translate3d(10px, 10px, 0);
	}
}

#main-margin {
    position: absolute;
    min-width: 1200px;
	height: 100%;
    top: 0;
    bottom: 0;
    left:0;
    right:0;
	background-color: #111010;
    -webkit-font-smoothing: antialiased;
}


/*----------------nav----------------*/


nav {
    position: fixed;
	background-color: #111010;
	top: 0;
    width: 100%;
    height: 70px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 100;
}

.all-menu {
    position: absolute;
    width: 260px;
    height: 70px;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Work Sans', sans-serif;
	letter-spacing: 1.7px;
    font-size: 14px;
    font-weight: 400;
	visibility: hidden; /*jquery*/
}

.home-button {
    position: relative;
    left: 0;
	margin-bottom: auto;
	top: 50%;
  	-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    float: left;
}
.home-button {
	background-image: url(images/header-icon-logo.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 35px;
	height: 36px;
}

.home-button:not(:focus):hover,
.mixsets-button:not(:focus):hover {
	opacity: .8;
}


.mixsets-button {
	position: relative;
    left: 58px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 500;
	float: left;
	color: white;
	top: 26px;
	text-decoration: none;
	
}


.blog-button {
	position: relative;
    right: 0;
	float: right;
	font-family: 'Work Sans', sans-serif;
	font-weight: 500;
	color: #e8cca4;
	top: 26px;
	text-decoration: none;
	cursor: default;
}



/*----------------mixsets----------------*/



.contnt-main-title-margin {
    position: relative;
  	min-height: 500px;
	overflow: hidden;
	visibility: hidden; /*jquery*/
}

.contnt-main-title-content-margin img {
	position: absolute;
    width: auto; 
	height: 28px; 
  	top: 50px;
    bottom: 0;
	left: 0;
    right: 0; 
    margin: auto;
}


.main-margin {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
	background-color: #181818;
    z-index: 3;
	overflow: hidden;
    visibility: hidden; /*jquery*/
}








.content-margin {
    position: relative;
    width: 1200px;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
	margin-top: 0;
    margin-left: auto;
    margin-right: auto;
	padding-bottom: 130px;
    z-index: 3;
}






#grid {
	width: auto;
	height: auto;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	margin-top: -40px;
	margin-left: -38px;
}

#grid:after {
	content: '';
	display: block;
	clear: both;
}

.grid-sizer,
.grid-item {
	width: 269px;
	height: auto;
	margin-top: 40px;
	padding-bottom: 20px;
	margin-left: 40px;
	background-color: #111010;
    overflow: hidden;
	border-radius: 8px;
}

.grid-item {
	float: left;
}

.grid-item img {
	display: block;
	max-width: 100%;
	-webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

.grid-item:hover {
	opacity: .8;
}

.grid-item img:hover {
	-webkit-transition: -webkit-transform 0.15s ease 0s;
    -moz-transition: -moz-transform 0.15s ease 0s;
    -o-transition: -o-transform 0.15s ease 0s;
    transition: transform 0.15s ease 0s;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
}

a {
	text-decoration: none;
}

span {
	color: #c8c8c8;
}


.mixset-cover {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
}




.mixset-title {
	position: relative; 
	color: white;
	font-size: 14px;
	text-overflow: clip;
	overflow: hidden;
	width: 80%;
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	top: 0;
	padding-top: 15px;
	padding-bottom: 2px;
	text-align: center;
	white-space: nowrap;	
}

.mixset-title:after,
.mixset-sub-title:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background-image: -webkit-gradient(linear, 0% 50%, 100% 50%, color-stop(0%, rgba(255, 255, 255, 0)), color-stop(80%, #111010;), color-stop(100%, #111010;));
  	background-image: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #111010; 80%, #111010 100%);
  	background-image: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #111010 80%, #111010 100%);
  	background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #111010 80%, #111010 100%);
  }

.mixset-sub-title {
	position: relative;
	color: #777;
	font-size: 11px;
	font-family: 'Work Sans', sans-serif;
	font-weight: 400;
	width: 70%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: -3px;
	text-align: center;
	overflow: hidden;
	text-overflow: clip;
	white-space: nowrap;
}


/*----------------footer----------------*/


.footer {
	position: relative;
	background-color: #111010;
    top: 0;
    width: 100%;
    height: auto;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
	z-index: 10;
    float: left;
}

.copyright-margin {
    position: relative;
    top: 0;
    width: 100%;
    height: 80px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 0;
    z-index: 10000;
}


.copyright {	
    position: absolute;
	font-family: 'Work Sans', sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: white;
    text-align: center;
    top: 34px;
    left: 0;
	right: 0;
    margin-left: auto;
	margin-right: auto;
    cursor: default;
	letter-spacing: .8px;
}





