@font-face {
	font-family: 'SFCompactRounded';
	src: url('../fonts/SFCompactRounded-Black.eot');
	src: url('../fonts/SFCompactRounded-Black.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/SFCompactRounded-Black.woff2') format('woff2'),
		 url('../fonts/SFCompactRounded-Black.woff') format('woff'),
		 url('../fonts/SFCompactRounded-Black.ttf') format('truetype'),
		 url('../fonts/SFCompactRounded-Black.svg#SFCompactRounded-Black') format('svg');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SFCompactRounded';
	src: url('../fonts/SFCompactRounded-Bold.eot');
	src: url('../fonts/SFCompactRounded-Bold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/SFCompactRounded-Bold.woff2') format('woff2'),
		 url('../fonts/SFCompactRounded-Bold.woff') format('woff'),
		 url('../fonts/SFCompactRounded-Bold.ttf') format('truetype'),
		 url('../fonts/SFCompactRounded-Bold.svg#SFCompactRounded-Bold') format('svg');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'SFCompactRounded';
	src: url('../fonts/SFCompactRounded-Regular.eot');
	src: url('../fonts/SFCompactRounded-Regular.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/SFCompactRounded-Regular.woff2') format('woff2'),
		 url('../fonts/SFCompactRounded-Regular.woff') format('woff'),
		 url('../fonts/SFCompactRounded-Regular.ttf') format('truetype'),
		 url('../fonts/SFCompactRounded-Regular.svg#SFCompactRounded-Regular') format('svg');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

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


/* ==========================================================================
	 Base styles: opinionated defaults
	 ========================================================================== */

::-moz-selection {
	background: #b3d4fc;
	text-shadow: none;
}

::selection {
	background: #b3d4fc;
	text-shadow: none;
}

body {
	font-family: "SF-Compact-Rounded","SF Compact Rounded", "SFCompactRounded","Helvetica","Arial",sans-serif;
	font-size: 1em;
	color: #fff;
	background-color: #000;
	line-height: normal;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

a,
a:hover,
a:focus,
a:active {
	color: #f9c929;
	text-decoration: none;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.container {
	max-width: 1380px;
}

.btn-effect {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-ms-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
	position: relative;
	overflow: hidden;
}

.btn-effect:after {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	bottom: -50%;
	left: -50%;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(rgba(0, 0, 0, 0)),
		color-stop(50%, rgba(255, 255, 255, 0.5)),
		to(rgba(0, 0, 0, 0))
	);
	background: -o-linear-gradient(
		top,
		rgba(0, 0, 0, 0),
		rgba(255, 255, 255, 0.5) 50%,
		rgba(0, 0, 0, 0)
	);
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0),
		rgba(255, 255, 255, 0.5) 50%,
		rgba(0, 0, 0, 0)
	);
	-webkit-transform: rotateZ(60deg) translate(-7.5em, 10em);
	-ms-transform: rotate(60deg) translate(-7.5em, 10em);
	transform: rotateZ(60deg) translate(-7.5em, 10em);
	-webkit-transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
	-moz-transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
	-ms-transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
	-o-transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
	transition: visibility 0.1s ease-out, opacity 0.1s ease-out;
	opacity: 0;
	visibility: hidden;
}

.btn-effect:hover:after {
	opacity: 1;
	visibility: visible;
}

.btn-effect:hover::after,
.btn-effect:focus::after {
	-webkit-animation: shine 1.2s forwards;
	animation: shine 1.2s forwards;
}

@-webkit-keyframes shine {
	100% {
		-webkit-transform: rotateZ(60deg) translate(3em, -14em);
		transform: rotateZ(60deg) translate(3em, -14em);
	}
}
@keyframes shine {
	100% {
		-webkit-transform: rotateZ(60deg) translate(3em, -14em);
		transform: rotateZ(60deg) translate(3em, -14em);
	}
}

.btn-theme {
	border-radius: 10px;
	text-transform: uppercase;
	text-align: center;
	display: inline-block;
	padding: 10px 27px;
	font-size: 27px;
	font-weight: 900;
}

/* header */

.top-header {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

header {
	background-color: rgba(0, 0, 0, 0.70);
	padding-top: 15px;
	padding-bottom: 15px;
	position: fixed;
	width: 100%;
	left: 0;
	z-index: 999;
}
header.header--placeholder {
	position: static;
	visibility: hidden;
	pointer-events: none;
}

.mobile-menu {
	display: none;
}

header nav ul {
	display: flex;
	align-items: center;
}

header nav ul > li > a {
	font-size: 22px;
	letter-spacing: -1px;
	line-height: normal;
	color: #fefefe;
	font-weight: 800;
	margin-left: 10px;
	margin-right: 10px;
	position: relative;
}


header nav ul > li > a:hover,
header nav ul > li > a:focus {
	color: #f9c929;
}


.btn-join > img,
.get-access a > img {
	transition: transform .4s;
}

.btn-join:hover > img,
.get-access a:hover > img {
	transform: scale(1.1);
}

.bg {
	background-image: url(../images/bg-4-halloween.jpg);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: center -30px;

}

header .brand-logo img {
	max-width: 100%;
	margin-bottom: -75px;
	margin-top: -50px;
}

nav ul > li > a.btn-theme {
	padding: 3.5px 27px;
}

.spacer-390 {
	height: 520px;
}

.hero-message {
	position: relative;
}

.hero-message h2 {
	font-size: 30px;
	letter-spacing: -2px;
	color: #ffffff;
	font-weight: 900;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 13px 20px;
	display: inline-block;
	font-style: italic;
}

.hero-message h2 > span {
	color: #6300ff;
	font-size: 40px;
	line-height: 0;
	background: #f9c929;
	background: -moz-linear-gradient(left,  #f9c929 0%, #0e5762 100%);
	background: -webkit-linear-gradient(left,  #f9c929 0%,#0e5762 100%);
	background: linear-gradient(to right,  #f9c929 0%,#0e5762 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9c929', endColorstr='#0e5762',GradientType=1 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-right: 10px;
}

.free-tag {
	border-radius: 8px;
	background-color: #ffffff;
	text-transform: uppercase;
	color: #292a40;
	font-size: 46px;
	display: inline-block;
	font-family: "AvenyTWEB";
	padding: 0.25em 0.33em;
	position: relative;
	z-index: 1;
}

.free-tag span {
	background: #f9c929;
	background: -moz-linear-gradient(left,  #c929f9 0%, #5208b5 100%);
	background: -webkit-linear-gradient(left,  #c929f9 0%,#5208b5 100%);
	background: linear-gradient(to right,  #c929f9 0%,#5208b5 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f9c929', endColorstr='#0e5762',GradientType=1 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero-message .spacer {
	padding-left: 105px;
	position: relative;
}

.hero-message .spacer > img {
	position: absolute;
	left: -25px;
	bottom: -60px;
}

.hero-message {
	padding-bottom: 60px;
}

.section-hero {
	position: relative;
}

/* header */

/* home */
.slider .slick-arrow {
	position: absolute;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 15px;
	top: 0;
	border: none;
	font-size: 0;
	color: transparent;
	width: 53px;
	z-index: 9;
}

.slider .slick-arrow.slick-prev {
	background-image: url(../images/arrow-left.png);
	left: 0;
}

.slider .slick-arrow.slick-next {
	background-image: url(../images/arrow-right.png);
	right: 0;
}

.section-title {
	align-items: center;
	margin-bottom: 10px;
	margin-top: 20px;
}

.section-title h3 {
	font-size: 32px;
	color: #fff;
	font-weight: 900;
	font-style: normal;
	margin: 0;
	letter-spacing: -0.05em;
}

.section-title .free-tag  {
	font-size: 28px;
	padding: 0.2em 0.3em 0.01em;
	margin-left: 1em;
	margin-top: 0.3em;
}

.slide {
	padding-left: 0;
	padding-right: 0;
}

.slick-slide img {
	width: 100%;
	padding-right: 4px;
	padding-left: 4px;
}

.shadow {
	bottom: 0;
	width: 100%;
	height: 200px;
	position: absolute;
	left: 0;
	margin-bottom: -200px;
	-webkit-box-shadow: -2px -154px 60px -37px rgba(0,0,0,0.5);
-moz-box-shadow: -2px -154px 60px -37px rgba(0,0,0,0.5);
box-shadow: -2px -154px 60px -37px rgba(0,0,0,0.5);
}

.full-video {
	position: relative;
}

.full-video .control {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
}

footer h4 {
	font-size: 49px;
}



.get-access {
	position: relative;
}

.get-access .btn-theme {
	display: block;
	font-size: 86px;
	color: #fefefe;
	font-weight: 800;
}

.get-access .free-tag {
	position: absolute;
	right: 100px;
	top: 100%;
	margin-top: -25px;
}

footer {
	margin-top: 45px;
	margin-bottom: 0;
}

.footer-logo {
	margin-top: 0;
	margin-bottom: 22px;
}

footer p {
	font-size: 14px;
	color: #a3a3a3;
}

footer .footer-nav > a {
	font-size: 14px;
	transition: 1s all;
	color: #a3a3a3;
}

footer .footer-nav > a:hover {
	color: #5f5f5f;
}


/* page:- model */

.top-title {
	font-size: 32px;
	font-weight: 800;
	color: #fefefe;
	font-style: normal;
	text-align: center;
}

.model-box {
	display: flex;
	border: 2px solid #454443;
	border-radius: 4px;
	padding: 25px;
}

.model-thumb {
	margin-right: 15px;
}

.model-name {
	font-size: 45px;
	text-transform: uppercase;
	line-height: normal;
	margin: 0;
	letter-spacing: -0.025em;
}

.model-char li {
	font-size: 18px;
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-weight: 600;
}

.ico {
	display: inline-block;
	width: 25px;
	height: 25px;
	background-size: 15px;
	background-repeat: no-repeat;
	background-position: center center;
	margin-right: 10px;
	margin-top: 2px;
	margin-bottom: 2px;
}

.ico.ico-star {
	background-image: url('../images/ico-star.png');
}

.ico.ico-view {
	background-image: url('../images/ico-view.png');
}

.ico.ico-user {
	background-image: url('../images/ico-user.png');
}

.model-char {
	margin-top: 20px;
	margin-bottom: 20px;
}

.model-detail .btn-theme {
	padding-left: 50px;
	padding-right: 50px;
	border-radius: 4px;
	font-size: 27px;
}

.item-grid img {
	max-width: 100%;
	width: 100%;
	height: 250px;
	object-fit: cover;
	-o-object-fit: cover;
	-webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	-moz-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	-ms-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	-o-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
	transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.item-grid:hover img {
	-webkit-filter: contrast(1.1) brightness(1.1);
	filter: contrast(1.1) brightness(1.1);
}

.model-grid .row {
	margin-left: -5px;
	margin-right: -5px;
}

.model-grid .row > div {
	padding-right: 5px;
	padding-left: 5px;
}

.item-title {
	border: 2px solid #454443;
	text-align: center;
	font-weight: 900;
	font-size: 18px;
	padding: 5px;
	color: #fff;
	text-transform: uppercase;
}

.item-grid {
	margin-bottom: 20px;
}



.items .banner {
	margin-bottom: 12px;
}

.items .item {
	margin-bottom: 12px;
}
.items--models {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
	.items .item.item--model {
		flex: 0 1 auto;
		margin-bottom: 1.25%;
		width: 11.5%;
	}

.items .item .item-content {
	font-weight: normal;
	padding: 11px 11px 10px;
	background-color: #2b2a2a;
}
.items .item .item-content--m {
	text-align: center;
	padding: 5px 5px 2px;
}

.items .item .item-content h4 {
	font-size: 17px;
	letter-spacing: -0.025em;
	margin-bottom: 6px;
}
.items .item .item-content--m h4 {
	font-weight: bold;
}

.items .item .item-content h4 a {
	color: #fff;
	text-decoration: none;
}

.items .item .preview {
	position: relative;
	overflow: hidden;
}

.items .item .preview a {
	display: block;
	z-index: 9;
	position: relative;
}

.items .item .preview a:hover,
.items .item .preview a:active {
	background-color: rgba(255, 255, 255, 0.5);
}

.items .item .preview img {
	-webkit-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	-moz-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	-ms-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	-o-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	width: 100%;
}


.items .item .preview .overlay {
	background-color: rgba(255, 255, 255, 0.5);
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	transition: opacity 0.5s ease-in-out;
	opacity: 0;
}

/* .items .item:hover .preview img {
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
} */

.items .item:hover .preview .overlay {
	opacity: 0.5;
}

.items .item .item-content h4,
.items .item .item-content h4 a {
	display: block;
}
.items .item .item-content h4 a {
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}





/* page:- models */

.filter {
	align-items: center;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 13px;
	margin-top: 13px;
}

.filter_sort {
	align-items: center;
	display: flex;
}

.filter .label {
	font-size: 28px;
	text-transform: uppercase;
	margin-right: 10px;
}

.filter .free-tag {
	font-size: 28px;
	padding: 10px 15px;
	padding-bottom: 5px;
}

.filter .free-tag:not(.active) {
	background-color: #474544;
	color: #ffffff;
}

.filter .free-tag:not(.active) span {
	background: none;
	color: #ffffff;
	-webkit-text-fill-color: #ffffff;
}

.filter-select {
	font-family: "AvenyTWEB";
	background-color: #474544;
	color: #ffffff;
	border: none;
	font-size: 28px;
	text-transform: uppercase;
	padding: 11px 16px;
	border-radius: 4px;
	background-image: url('../images/dropdown-arrow.svg');
	background-repeat: no-repeat;
	background-size: 15px;
	background-position: 90% center;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 50px;
	padding-bottom: 5px;
}

.pagination {
	margin-top: 20px;
}

.pagination li.active > a {
	color: #7617d8;
	background-color: #ffffff;
}

.pagination li.prev > a {
	margin-right: 10px;
}
.pagination li.next > a {
	margin-left: 10px;
}

.pagination li > a {
	background-color: #404040;
	font-size: 33px;
	text-align: center;
	display: block;
	padding: 10px 20px;
	margin-left: 2px;
	margin-right: 2px;
	border-radius: 4px;
	padding-bottom: 5px;
	transition: 1s all;
}

.pagination li:not(.active):hover > a {
	background-color: #292a40;
}

.pagination li.prev > a {
	color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../images/page-arrow-left.png');
}

.pagination li.next > a {
	color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url('../images/page-arrow-right.png');
}

.section-devices {
	padding-top: 40px;
	padding-bottom: 40px;
}

.device-ins h6 {
	font-size: 18px;
	font-weight: 800;
	margin-top: 10px;
	margin-bottom: 10px;
}

.device-logos {
	padding-bottom: 15px;
}

/* page:- sites */

.sites {
	padding-top: 20px;
}

.site-box {
	padding: 27px;
	border-radius: 4px;
	color: #fff;
	background-color: #000;
	border: 2px solid #454443;
	margin-bottom: 20px;
}

.site-box .top-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding-bottom: 8px;
	border-bottom: 6px solid #2a2a2a;
	margin-bottom: 20px;
}

.site-name {
	font-family: "AvenyTWEB";
	font-size: 31px;
	text-transform: uppercase;
	color: #fff;
}

.site-detail {
	display: flex;
}

.site-detail .buttons > a {
	display: block;
	padding: 9px 25px;
	font-size: 22px;
	border-radius: 4px;
}

.site-thumb {
	min-width: 300px;
	margin-right: 12px;
}

.ico.ico-video {
	background-image: url('../images/ico-video.png');
	background-size: 25px;
}

.ico.ico-photo {
	background-image: url('../images/ico-photo.png');
	background-size: 30px;
	width: 30px;
}

.site-info .meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 15px;
}

.site-info .meta > a {
	display: flex;
	align-items: center;
	font-size: 15px;
	font-weight: 800;
	text-transform: uppercase;
	color: #fff;
}

.site-info > p {
	font-size: 18px;
	color: #979797;
}

.site-detail .buttons > a:first-child {
	margin-bottom: 8px;
}

.sites .row {
	margin-left: -10px;
	margin-right: -10px;
}

.sites .row > div {
	padding-left: 10px;
	padding-right: 10px;
}

/* page:- updates */

.update-box {
	display: flex;
	margin-bottom: 30px;
}

.updates {
	padding-top: 25px;
}

.update-thumb {
	margin-right: 15px;
	min-width: 650px;
}

.update-detail h3 {
	font-size: 55px;
	font-family: "AvenyTWEB";
	text-transform: uppercase;
}

.update-detail p {
	font-size: 18px;
	line-height: 27px;
}

.update-meta {
	font-size: 16px;
	font-weight: 800;
	color: #686868;
	margin-bottom: 20px;
}

.update-meta > span {
	display: block;
}

.update-detail .free-tag {
	padding-left: 30px;
	padding-right: 30px;
}

/* page:- video player */

.player {
	position: relative;
}

.player .tags {
	position: absolute;
	right: 20px;
	top: 20px;
}

.player-box {
	border-radius: 4px;
	background-color: #000000;
	border: 2px solid #454443;
	width: 9;
}

.video-detail {
	font-size: 18px;
	padding: 2em;
	padding-top: 0.9em;
}

.player .play-btn {
	z-index: 11;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -25px;
	margin-left: -25px;
}

.video-detail .btn-theme {
	border-radius: 4px;
	font-size: 29px;
}

.player .free-tag {
	font-size: 30px;
	border-radius: 4px;
	padding-bottom: 5px;
}

.video-bg {
	background-image: url('../images/video-bg.png');
	background-repeat: no-repeat;
	background-position: center top;
}

.section-video .top-title {
	color: #f9c929;
	padding-top: 27px;
	padding-bottom: 27px;
	margin-bottom: 0;
}

.video-js {
	width: 100%;
	height: 800px;
}

button.plyr__control--overlaid:hover {
	background: url('../images/play.png') !important;
}

button.plyr__control--overlaid {
	background: url('../images/play.png');
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	width: 160px !important;
	height: 160px;
}

/*.plyr__controls {
	display: none !important;
}*/

button.plyr__control--overlaid svg {
	display: none;
}

.section-video {
	/* padding-top: 100px; */
}

.full-video {
	padding: 30px 6% 0;
}


.hl {
	color: #0a9cff;
}
.hl-2 {
	color: #f9c929;
}



.btn-theme,
.btn {
	background-color: #f9c929;
	border-radius: 60px;
	font-family: "SF-Compact-Rounded","SF Compact Rounded", "SFCompactRounded","Helvetica","Arial",sans-serif;
	font-weight: 700;
	letter-spacing: -0.05em;
	text-align: center;
	color: #000;
	text-transform: uppercase;
	font-size: 28px;
	padding-bottom: 0;
	min-width: 212px;
	min-height: 1em;
	padding: 0.15em 0.2em 0.125em;
	white-space: normal;
	border: 2px solid transparent;
	line-height: 1;
}
.btn {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
}
	.btn > span {
		flex: 0 1 auto;
	}
	.btn > span + span {
		margin-left: 0.3em;
	}
	@media (max-width:499px){
		.btn {
			-webkit-box-orient: vertical;
			-webkit-box-direction: normal;
			-ms-flex-flow: column wrap;
			flex-flow: column wrap;
		}
		header .header-cta .btn {
			min-width: 170px;
		}
	}
.btn-theme:active,
.btn-theme:hover,
.btn:hover,
.btn:active {
	background-color: #000000;
	color: #f9c929;
	border-color: #f9c929;
}


header {
	padding-top: 5px;
	padding-bottom: 5px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

header .navbar {
	position: inherit;
	padding: 0;
}
.navbar-dark .navbar-toggler {
	border-color: rgba(255,255,255,.2);
	color: rgba(255,255,255,.85);
	padding: .125rem .35rem;
}
.navbar-dark .navbar-toggler-icon{
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.75)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

header .navbar-dark .navbar-nav .nav-link {
	color: #ffffff;
	font-size: 17px;
	text-transform: uppercase;
	font-weight: 700;
	padding-right: 15px;
	padding-left: 15px;
	cursor: pointer;
}

header .navbar-dark .navbar-nav .nav-link:hover,
header .navbar-dark .navbar-nav .nav-link:active,
header .navbar-dark .navbar-nav .nav-link:active:focus,
header .navbar-dark .navbar-nav .nav-link.active {
	color: #0a9cff;
}

header .navbar-dark .navbar-nav .nav-link:hover svg,
header .navbar-dark .navbar-nav .nav-link:active svg,
header .navbar-dark .navbar-nav .nav-link:active:focus svg,
header .navbar-dark .navbar-nav .nav-link.active svg {
	fill: #0a9cff;
}

header .navbar-dark .navbar-nav .nav-link svg {
	fill: #ffffff;
}

header .navbar-dark .navbar-nav .nav-link svg.arrow-down {
	margin-bottom: 3px;
	width: 16px;
	height: 16px;
}
.sites .site img,
.sites .site .site__link,
.sites .site,
footer .footer-links a,
.btn,
.pagination .page-link,
header .navbar-dark .navbar-nav .nav-link,
.trigger-search svg path,
.trigger-search svg,
.form-search button svg path,
.form-search button svg,
header .navbar-dark .navbar-nav .nav-link svg.arrow-down path,
header .navbar-dark .navbar-nav .nav-link svg.arrow-down {
	-webkit-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	-moz-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	-ms-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	-o-transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
	transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

header .navbar-dark .navbar-nav .nav-link:hover svg.arrow-down path {
	fill: #000 !important;
}

header .navbar-dark .navbar-nav .switcher {
	position: relative;
	z-index: 9999;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu {
	background: #fff;
	background: rgba(255, 255, 255, 0.8);
	padding: 1em 0;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu>li>a {
	text-transform: capitalize;
	color: #000;
	font-weight: 700;
	padding-left: 0.35em;
	padding-right: 0.25em;
	display: flex;
	align-items: center;
	width: 100%;
	transition: 0.5s ease all;
	margin-left: auto;
	margin-right: auto;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu>li>a .ico-arrow {
	fill: #0a9cff;
	transform: rotate(-90deg);
	width: 20px;
	height: 20px;
	margin-right: 3px;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu>li:hover>a {
	color: #0a9cff;
}

header .navbar-dark .navbar-nav .switcher .dropdown_menu>li:hover>a svg {
	fill: #0a9cff;
}

header .navbar-dark .navbar-nav .switcher:hover .dropdown_menu {
	display: block;
}

header .header-cta .btn {
	margin-right: 20px;
}

header .navbar-brand {
	margin-right: 25px;
}

header .navbar-brand img {
	max-width: 230px;
}

.dropdown_menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	perspective: 1000px;
	z-index: -1;
	min-width: 200px;
}

.dropdown_menu--animated {
	display: none;
	-webkit-animation: rotateMenu 400ms ease-in-out forwards;
	animation: rotateMenu 400ms ease-in-out forwards;
	transform-origin: top center;
}

@-webkit-keyframes rotateMenu {
	0% {
	transform: rotateX(-90deg);
	}

	70% {
	transform: rotateX(20deg);
	}

	100% {
	transform: rotateX(0deg);
	}
}

@keyframes rotateMenu {
	0% {
	transform: rotateX(-90deg);
	}

	70% {
	transform: rotateX(20deg);
	}

	100% {
	transform: rotateX(0deg);
	}
}

.trigger-search svg {
	fill: #fff;
}
.trigger-search:hover svg {
	fill: #f9c929;
}


footer {
	color: #323232;
}

footer .footer-logo img {
	width: 362px;
}

footer .footer-cta .btn {
	font-size: 47px;
	border-radius: 60px;
}

footer .footer-wrapper {
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
}

footer .footer-wrapper .pagination {
	justify-content: center;
	flex-wrap: wrap;
}

footer .footer-links {
	color: #f9c929;
}

footer .footer-links a {
	font-size: 17px;
	font-weight: 700;
	color: #d2d2d2;
	/* transition: 0.4s ease-in all; */
}

footer .footer-links a:hover,
footer .footer-links a:focus {
	color: #fff;
}

footer .copyright-content {
	font-size: 12px;
}


.pagination {
	flex-wrap: wrap;
	margin-bottom: 0;
	justify-content: center;
}
.pagination-title {
	align-self: center;
	font-weight: bold;
	font-size: 1.2em;
	margin-right: 0.25em;
}

.pagination .page-item.active .page-link {
	background-color: #c929f9;
	color: #fff;
}

.pagination .page-item {
	margin-bottom: 0.2em;
}
.pagination .page-link {
	border: 0;
	margin-right: 2px;
	margin-left: 2px;
	border-radius: 5px;
	background-color: #f9c929;
	color: #000;
	font-size: 23px;
	font-weight: 700;
	padding: 0.35em 0.5em 0.3em;
	-webkit-touch-callout:none !important;
	-webkit-user-select:none !important;
	-khtml-user-select:none !important;
	-moz-user-select:none !important;
	-ms-user-select:none !important;
	user-select:none !important;
	user-drag: none;
	user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	line-height: 1;
	text-transform: uppercase;
}
.pagination .page-link > span {
	font-weight: 400;
}
.pagination .page-link:hover,
.pagination .page-link:focus {
	background-color: #0a9cff;
	color: #fff;
}


.search {
	padding: 15px;
}

.form-search {
	background-color: #1a1a1a;
	padding: 20px;
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 999;
}

.form-search .form-control {
	background-color: #000000;
	color: #7b7b7b;
	border-radius: 40px;
	height: 70px;
	border: none;
	font-size: 28px;
	font-weight: 700;
	padding: 5px 30px;
	padding-right: 85px;
}

.form-search button {
	position: absolute;
	right: 40px;
	top: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	height: 100%;
	width: 100px;
}

.form-search button svg {
	fill: #ffffff;
	width: 35px;
	height: 35px;
}
.form-search button:hover svg {
	fill: #0a9cff;
}

.close-search {
	font-size: 20px;
	color: #fff;
	margin-left: 20px;
}
.close-search:hover {
	color: #f9c929;
}

.pos-relative {
	width: 100%;
	display: flex;
	align-items: center;
}

.player-box {
	width: 988px;
	max-width: 100%;
	margin: 0 auto;
}
.player {
	position: relative;
}

.player .btn-play {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -64px;
	margin-top: -64px;
}
.player .btn-play img,
.player .btn-play {
	-webkit-touch-callout:none !important;-webkit-user-select:none !important;-khtml-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important; user-drag: none; user-select: none;-webkit-user-drag: none;-webkit-user-select: none;
}

.player .overlay {
	position: absolute;
	left: 0;
	width: 100%;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	height: 100%;
}


.access-popup {
	display: none;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.access-popup .popup-wrap {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.access-popup .popup-banner {
	position: relative;
}

.access_upgrade {
	display: inline-block;
	max-width: 100%;
}
.access_upgrade_mobile {
    display: none;
    max-width: 100%;
}
a.close-popup {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 999;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 36px;
}

a.close-popup:hover,
a.close-popup:focus {
    color: #fff;
}
.access_now {
	display: inline-block;
	position: relative;
}

.access_now p {
	display: block;
	font-size: 28px;
	line-height: 36px;
	text-align:center;
	color: #fff;
}

.access_now p img {
    display: inline-block;
    height: auto !important;
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    vertical-align: middle;
    position: relative;
    top: -0.2em;
}



.access_now a.joinButton {
	background-color: #E4007A;
	padding: 10px;
	color: #fff;
	display: block;
	font-size: 22px;
	font-weight: 200;
	text-align: center;
	margin-top: 1em;
	letter-spacing: 0.05em;
}


.access_now a.joinButton:hover {
	color: #fff;
	font-weight: 600;
}




a.close-popup {
	position: absolute;
	right: 10px;
	top: 1px;
	z-index: 999;
	color: #ffc107;
	width: 20px;
	height: 29px;
	border-radius: 36px;
}

a.close-popup:hover,
a.close-popup:focus {
	color: #fff;
}

.tag {
	background-color: #f9c929;
	color: #000;
	font-size: 19px;
	font-weight: 700;
	text-align: center;
	display: flex;
	align-items: center;
	text-decoration: none;
	padding: 0.5em 0.75em;
	border-radius: 40px;
	transition: 0.5s ease-in all;
	margin-right: 0.5em;
	margin-left: 0.5em;
}

.tag svg {
	margin-right: 15px;
	fill: #000;
}

.tag:hover,
.tag:focus {
	background-color: #0a9cff;
	color: #fff;
	text-decoration: none;
}

.tag:hover svg,
.tag:focus svg {
	fill: #fff;
}

.tags {
	justify-content: space-between;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin: auto;
}

.tags .tag {
	margin-bottom: 0.5em;
}



body:not(.bg):not(.video-bg) .main {
	padding-top: 0.5em;
	padding-bottom: 15px;
	margin-top: 0;
}
@media (max-width: 991px) {
  body:not(.bg):not(.video-bg) .main {
    margin-top: 0;
  }
}



@media (max-width: 580px) {
	.navbar-brand {
		padding-top: 0;
		padding-bottom: 0;
	}
	footer .footer-cta .btn {
		font-size: 42px;
	}
}
@media (max-width: 480px) {
  header .header-cta .btn {
    font-size: 16px;
    margin-right: 10px;
    width: auto;
    min-width: 0;
    padding: 5px 12px 3px 12px;
    height: auto;
    min-height: 0;
  }
  header .navbar-brand img {
  	max-width: 150px;
  }
	footer .footer-cta .btn {
		font-size: 39px;
	}
}
@media (max-width: 449px) {
	footer .footer-cta .btn {
		font-size: 34px;
	}
}
@media (max-width: 380px) {
  header .header-cta .btn {
    font-size: 12px;
    margin-right: 17px;
    width: auto;
    min-width: 0;
    padding: 5px 8px 4px;
    height: auto;
    min-height: 0;
  }

  header .navbar-brand {
    margin-right: 5px;
  }
  header .header-cta .btn {
  	margin-right: 0;
  }
  footer .footer-cta .btn {
  	font-size: 30px;
  }
}
@media (max-width: 349px) {
  footer .footer-cta .btn {
  	font-size: 25px;
  }
}
@supports (mix-blend-mode: lighten) {
	.grad-text {
		display: inline-block;
		position: relative;
		color: #000;
		background: #fff;
		mix-blend-mode: multiply;
	}
	.grad-text::before {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: -webkit-gradient(linear,left top, right top,from(#e100c5), to(#2615f9));
		background: -o-linear-gradient(left,#e100c5, #2615f9);
		background: linear-gradient(to right,#e100c5, #2615f9);
		pointer-events: none;
	}
	.grad-text::before {
		mix-blend-mode: screen;
	}
}



@media (min-width: 1500px) {
  .items .item .item-content {
  	padding: 9px 9px 8px;
  }
}
@media (min-width: 1600px) {
  .items .item .item-content {
  	padding: 9px 9px 8px;
  }
}
@media (max-width: 1500px) {
	.items .item .item-content {
		padding: 7px 10px 5px;
	}
	.items .item .item-content h4 {
		font-size: 16px;
		margin-bottom: 0;
		line-height: 1.4;
	}
}
@media (max-width: 1400px) {
	.items .item .item-content {
		padding: 6px 10px 4px;
	}
	.items .item .item-content h4 {
		font-size: 15px;
	}
}
@media (max-width: 1300px) {
	.items .item .meta {
		font-size: 13px;
	}
	.items .item .item-content h4 {
		font-size: 14.5px;
	}
}
@media (max-width: 1200px) {
  .items .item .item-content h4 {
  	font-size: 13px;
  }
}
@media (max-width: 1200px) and (min-width: 990px) {
  .items .item.item--model {
    width: 15.333333333%;
  }
}
@media (max-width: 990px) {
  .items .item.item--model {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .tags .tag {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 22px;
  }
  .access_upgrade {
      display: none;
  }

  .access_upgrade_mobile {
      display: inline-block;
  }
}
@media (max-width: 576px) {
  .items .item .item-content {
    padding: 5px 5px 3px;
  }
  .items .item.item--model {
    width: 30.666666667%;
  }
}
@media (max-width: 480px) {
  .row.items>div {
    max-width: 100%;
  }

  .row.items {
    flex-direction: column;
  }
  .items .item .item-content h4 {
    font-size: 12px;
  }
}
/* Video overlay issue fixed */
@media screen and (max-width: 767px) {
	.plyr{
		z-index: 0 !important;
	}
}

#disclaimer {
	display: relative;
	color: white;
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 376px;
	padding: 10px 12px;
	text-align: center;
	background: rgba(0, 0, 0, 0.8);
	border: 1px solid #fff;
}
#disclaimer .close {
	position: absolute;
	top: 3px;
	right: 5px;
	border: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	color: white;
	text-align: center;
	background: none;
}
#disclaimer button {
	border: none;
	color: white;
	text-align: center;
	font-weight: bold;
	text-transform: uppercase;
	padding: 3px 20px;
	margin: 0.5rem 0;
	background: #f9c929;
}
#disclaimer .close {
	position: absolute;
	width: 25px;
	right: 0;
	border-radius: 20px;
	top: 0;
	border: 1px solid #000;
	cursor: pointer;
	opacity: 1;
}

#disclaimer p.header {
	font-size: 1rem;
	text-transform: uppercase;
}
#disclaimer p {
	text-align: center;
	margin: 0;
}
#disclaimer p span.bold {
	font-weight: bold;
}
#disclaimer p.footer {
	font-size: 0.7rem;
	line-height: 0.9rem;
}
@media only screen and (min-width: 1280px){
	#disclaimer {
	display: block;
	}
}
.desktopBanner, .mobileBanner{
	width: 100%;
}
.mobileBanner{
	display: none;
}
.noBg .desktopBanner{
	display: none;
}
.noBg .mobileBanner{
	display: none;
}

/* seo title */
.seo-text-container {
	max-width: 50%;
	margin: 20px auto 0 auto;
}
@media (max-width: 768px) {
	.seo-text-container {
		max-width: 90%;
		margin: 15px auto 0px auto;
	}

}

.top-title {
	font-size: 32px;
	font-weight: 800;
	color: #fefefe;
	font-style: normal;
	text-align: center;
}

.top-title-h3 {
	font-size: 1em;
	color: #fefefe;
	font-style: normal;
	text-align: center;
}
