/*css reset*/

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

* {
	-webkit-font-smoothing: antialiased;
}

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: inherit;
	vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

html {
	font-size: 100%; /* 1 */
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
	overflow-y: scroll;
}

body {
	word-wrap: break-word;
	line-height: 1.428;
}

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

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

a:focus {
  outline: none;
}

a:active,
a:hover {
  outline: 0;
}

iframe {
	position: relative;
	max-width: 100%;
	border-style: none;
	border: none;
	display: block;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

small {
	font-size: 90%;
}

/*fonts*/

@font-face {
	font-family: "myr-300";
	src: url("fonts/myr-300.eot");
	src: url("fonts/myr-300.eot?#iefix") format("embedded-opentype"),
	     url("fonts/myr-300.woff") format("woff"),
	     url("fonts/myr-300.ttf") format("truetype"),
	     url("fonts/myr-300.svg#myr-300") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "myr-400";
	src: url("fonts/myr-400.eot");
	src: url("fonts/myr-400.eot?#iefix") format("embedded-opentype"),
	     url("fonts/myr-400.woff") format("woff"),
	     url("fonts/myr-400.ttf") format("truetype"),
	     url("fonts/myr-400.svg#myr-400") format("svg");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "myr-600";
	src: url("fonts/myr-600.eot");
	src: url("fonts/myr-600.eot?#iefix") format("embedded-opentype"),
	     url("fonts/myr-600.woff") format("woff"),
	     url("fonts/myr-600.ttf") format("truetype"),
	     url("fonts/myr-600.svg#myr-600") format("svg");
	font-weight: normal;
	font-style: normal;
}

/*default styling*/

html {
	background: #010101;
	font-size: 100%;
	font-family: "myr-400", Helvetica, Arial, sans-serif;
	color: white;
}

iframe {
	max-height: 200px;
}

h1,
h2 {
	color: white;
}

h2 {
	font-size: 1.2em;
	margin-bottom: 1em;
}

@media (min-width: 640px) {
	h2 {
		font-size: 1.2em;
	}
	iframe {
		max-height: 360px;
	}
}

@media (min-width: 1024px) {
	iframe {
		max-height: 570px;
	}
}

/*default classes*/

.transition {
	transition: all .1s ease;
	-moz-transition: all .1s ease;
	-webkit-transition: all .1s ease;
	-o-transition: all .1s ease;
}

.shadow {
	-webkit-box-shadow: 5px 8px 35px black;
	box-shadow: 5px 8px 35px black;
}

.opacity {
	-webkit-opacity: .13;
	-moz-opacity: .13;
	-ms-opacity: .13;
	-o-opacity: .13;
	opacity: .13;
}

.show {
	display: block !important;
}

.btn {
	position: relative;
	display: inline-block;
	cursor: pointer;
	background: #E72C23;
	padding: 3px .8em 0;
	/*text-transform: capitalize;*/
}

@media (min-width: 768px) {
	.btn:hover {
		background: #ec5851;
	}
}

.btn:active {
	top: 1px;
}

.owl-prev,
.owl-next {
	position: absolute;
	top: 50%;
	margin-top: -15px;
	background: #0e0e0e;
	width: 30px;
	height: 30px;
	display: none;
}

.owl-prev:before,
.owl-next:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -5px;
	margin-left: -3px;
	width: 7px;
	height: 11px;
}

.owl-prev:before {
	background: url(img/prev.png) no-repeat center;
	background-size: 7px 11px;
}

.owl-next:before {
	background: url(img/next.png) no-repeat center;
	background-size: 7px 11px;
}

@media (min-width: 768px) {
	.owl-prev,
	.owl-next {
		display: block;
	}
}

.owl-prev {
	left: -30px;
	-webkit-border-top-left-radius: 3px;
	-moz-border-top-left-radius: 3px;
	-ms-border-top-left-radius: 3px;
	-o-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-bottom-left-radius: 3px;
	-ms-border-bottom-left-radius: 3px;
	-o-border-bottom-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.owl-next {
	right: -30px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-top-right-radius: 3px;
	-ms-border-top-right-radius: 3px;
	-o-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-bottom-right-radius: 3px;
	-ms-border-bottom-right-radius: 3px;
	-o-border-bottom-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.round {
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
}

.table {
	display: table;
}

.table-cell {
	display: table-cell;
}

.vertical-align {
	vertical-align: middle;
}

.center-text {
	text-align: center;
}

.center-div {
	margin: 0 auto;
}

.full {
	width: 100%;
	height: 100%;
}

.full-h {
	width: 100%;
}

.relative {
	position: relative;
}

.absolute {
	position: absolute;
}

.absolute-full {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.fixed-full {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;	
}

.fixed {
	position: fixed;
}

.left {
	float: left;
}

.right {
	float: right;
}

/*begin*/

.background {
	background: url(img/background.jpg) no-repeat center;
	background-size: cover;
	z-index: -1;
}

.arrow {
	right: 100px;
    top: 25px;
    -webkit-transform: rotate(7deg);
    -ms-transform: rotate(7deg);
    -o-transform: rotate(7deg);
    transform: rotate(-35deg);
    z-index: 4;
}

header {
	left: 0;
	right: 0;
	padding: 1em;
	overflow: hidden;
	border-bottom: 1px solid #2b2b2b;
	z-index: 3;
}

header .right a {
	margin-left: 8px;
}

@media (max-width: 530px) {
	header .left a {
	}

	header .right span {
		display: none;
	}
}

footer {
	bottom: 0;
	padding: 1em;
}

footer small {
	display: block;
	margin-top: 10px;
	color: #666;
}

footer .fb-share-button {
	margin-left: 8px;
	vertical-align: baseline;
}

footer .text {
	vertical-align: text-bottom;
	line-height: 1.15;
}

footer span {
	vertical-align: baseline;
}

.wrapper {
	width: 80%;
}

@media (min-width: 1024px) {
	.wrapper {
		max-width: 1024px;
	}
}

.video {
	display: none;
}

.video iframe {
	border: 1px solid #333;
}

.videos {
	top: inherit;
	left: 0;
	right: 0;
	bottom: 0;
	background: #161616;
	padding: 5px 0;
	height: 90px;
	box-shadow: 0px -1px 8px black;
	-webkit-box-shadow: 0px -1px 8px black;
}

@media (min-width: 640px) {
	.videos {
		width: 640px;
		margin: 0 auto;
		-webkit-border-top-right-radius: 5px;
		-moz-border-top-right-radius: 5px;
		-ms-border-top-right-radius: 5px;
		-o-border-top-right-radius: 5px;
		border-top-right-radius: 5px;
		-webkit-border-top-left-radius: 5px;
		-moz-border-top-left-radius: 5px;
		-ms-border-top-left-radius: 5px;
		-o-border-top-left-radius: 5px;
		border-top-left-radius: 5px;
	}
}

@media (min-width: 768px) {
	.videos {
		padding: 10px 0;
		height: 100px;
	}
}

.videos a {
	display: block;
	width: 107px;
	height: 81px;
	position: relative;
	line-height: 1;
	margin: 0 1px 0 0;
	border: 1px solid transparent;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
}

.videos a.active {
	border-color: #dc2b23;;
}

@media (min-width: 640px) {
	.videos a:hover {
		border-color: #E72C23;
	}
}

.videos img {
	display: block;
	width: 100%;
	max-width: 100%;
}

.videos .writing {
	z-index: 2;
}

.videos .owl-item {
	display: inline-block;
	text-align: center;
	float: none;
}

.videos .item {
	display: inline-block;
	margin-bottom: -8px;
}

.videos i,
.mini-videos i {
	background: black;
	-webkit-opacity: 0.7;
	-moz-opacity: 0.7;
	-ms-opacity: 0.7;
	-o-opacity: 0.7;
	opacity: 0.7;
	z-index: 1;
}

.videos .center-text span {
	font-size: 12px;
	font-family: "myr-600";
	padding: 0 3px;
	line-height: 1em;
}

.sidebar {
	width: 290px;
	height: 100%;
	right: -290px;
	top: 0;
	bottom: 0;
	overflow: auto;
	background: #272727;
	z-index: 6;
	transition: all .3s ease;
	-moz-transition: all .3s ease;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
}

.sidebar.active {
	right: 0;
}

.sidebar .padding {
	padding: 20px;
}

.sidebar .tabs {
	overflow: hidden;
	margin-top: -5px;
	margin-left: -5px;
}

.sidebar .tabs a {
	padding: 5px 15px 3px;
	background: #333;
	float: left;
	margin: 5px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	-o-border-radius: 4px;
	border-radius: 4px;
	color: #989898;
}

.sidebar .tabs a.active {
	background: #dc2b23;
	color: white;
}

.sidebar .mini-videos {
	margin-top: 8px;
	margin-left: -10px;
	overflow: hidden;
}

.sidebar .mini-videos li {
	float: left;
	width: 50%;
	padding-left: 10px;
	padding-top: 10px;
}

.sidebar .mini-videos a,
.sidebar .mini-videos img {
	display: block;
	max-width: 100%;
}

.sidebar .mini-videos .writing {
	z-index: 3;
}

.sidebar .mini-videos a {
	line-height: 1;
	border: 1px solid transparent;
}

.sidebar .mini-videos a.active {
	border-color: #dc2b23;
}

.sidebar .mini-videos .writing .center-text span {
	z-index: 2;
	font-size: 12px;
	font-family: "myr-400";
	line-height: 1;
}

.sidebar .close {
	width: 30px;
	height: 30px;
	background: #dc2b23;
	position: absolute;
	top: 20px;
	right: 20px;
}

.sidebar .close:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 15px;
	margin-top: -7px;
	margin-left: -7px;
	background: url("img/cancel.svg") no-repeat center;
}

.inapoi-site {
	display: inline-block;
	margin-left: 10px;
}

.inapoi-site i {
	cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-border-top-left-radius: 3px;
    -moz-border-top-left-radius: 3px;
    -ms-border-top-left-radius: 3px;
    -o-border-top-left-radius: 3px;
    border-top-left-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-bottom-left-radius: 3px;
    -ms-border-bottom-left-radius: 3px;
    -o-border-bottom-left-radius: 3px;
    border-bottom-left-radius: 3px;
    display: inline-block;
    background: #0e0e0e;
    width: 30px;
    height: 30px;
    position: relative;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
}

.inapoi-site i:before {
	background: url(img/prev.png) no-repeat center;
    background-size: 7px 11px;
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -3px;
    width: 7px;
    height: 11px;
}

.inapoi-site span {
	/*vertical-align: middle;*/
}

.sidebar .mini-videos li,
.sidebar .mini-videos li *,
.videos .item * {
	line-height: 0.6;
}

@media (max-width: 423px) {
	.arrow {
		right: 110px;
    	top: 50px;
	}
	header .right a {
	    margin-left: 8px;
	    margin-top: 15px;
	}
}

@media (max-width: 320px) { 
	.inapoi-site i,
	.arrow {
		display: none;
	}
	.left {
		float: none;
		width: 100%;
		overflow: hidden;
	}
	header .right a {
		margin-top: 10px;
	}
	.inapoi-site {
		float: right;
		margin-left: 0;
	}
}
