@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;1,800&display=swap');

@font-face {
	src: url("fonts/shapiro-75-heavy-extd.ttf");
	font-family: "shapirobold ttf";
}

@font-face {
	src: url("fonts/shapiro-65-light-heavy-extd.ttf");
	font-family: var(--display-font);
}

@font-face {
	src: url("fonts/Gilroy-Re.ttf");
	font-family: var(--body-font);
}

@font-face {
	src: url("fonts/Gilroy-Light.ttf");
	font-family: var(--body-font);
}

@font-face {
	src: url("fonts/Gilroy-Medium.ttf");
	font-family: var(--body-font);
}

@font-face {
	src: url("fonts/Gilroy-Bold.ttf");
	font-family: var(--body-font);
}

@font-face {
	src: url("fonts/Gavency-Free-Regular.otf");
	font-family: "Gavency";
	font-weight: 900;
}

:root {
	--main-bg-color: #0F0F0F;
	--main-text-color: #d9f0f9;
	--light-border-color: rgba(204, 216, 220, .2);
	--accent-color: rgba(118, 168, 187, 1);
	--accent-80: rgba(118, 168, 187, .8);
	--accent-50: rgba(118, 168, 187, .5);
	--accent-30: rgba(118, 168, 187, .3);
	--accent-20: rgba(118, 168, 187, .2);
	--accent-10: rgba(118, 168, 187, .1);
	--error-color: #eb455f;
	--body-font: 'Urbanist', sans-serif;
	--display-font: 'Gavency';
	--custom-gradient: linear-gradient(153.05deg, #1F282C 3.76%, #11191C 41.7%, #121212 99.32%);
}

body {
	font-family: var(--body-font);
}


body #root,
body p,
body a {
	color: var(--main-text-color);
}

body a {
	transition: color .2s ease-in-out;
}

body a:hover {
	color: var(--accent-color);
}


/*==! header-area==*/

.header-area {
	padding: 24px 32px;
	border-bottom: solid 1px var(--accent-20);
}

.inner-header-container {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
}

.messagebar {
	width: 100%;
	background-color: var(--main-text-color);
	color: var(--main-text-color);
	font-family: var(--body-font);
	font-size: 13pt;
	padding-top: 7px;
	padding-bottom: 7px;
	text-align: center;
}

a.navbar-brand.studio {
	flex-grow: 1;
	margin-right: 0;
	padding: 0;
	max-width: 200px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	grid-gap: 8px;
}

.navbar-brand img,
.navbar-brand .logo {
	min-height: 80px;
	width: auto;
	min-width: 80px;
}


.navbar-brand .logo svg {
	width: 100%;
	height: 100%;
}

.navbar-brand .logo svg .cls-1 {
	fill: var(--main-text-color);
	transition: all .25s ease-in-out;
}

.navbar-brand span {
	font-size: 16px;
	line-height: 1.5em;
	font-family: 'Gavency';
	transition: all .25s ease-in-out;
}

@media screen and (max-width: 992px) {
	.navbar-brand span {
		font-size: 14px;
	}
}

@media screen and (max-width: 650px) {
	.navbar-brand span {
		display: none;
	}

	.navbar-brand img,
	.navbar-brand .logo {
		max-height: 80px;
		max-width: 80px;
	}
}

.navbar-brand:hover span {
	color: var(--accent-color);
}

.navbar-brand:hover .logo svg .cls-1 {
	fill: var(--accent-color);
}


.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler {
	color: black;
	margin-right: 10px;
	font-size: 30px;
	margin-top: -20px;
	display: inline-block;
}

.navbar-toggler i {
	color: black;
	margin-right: 10px;
	font-size: 30px;
	margin-top: -200px;
	display: inline-block;
}

.colps ul li {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.colps ul li a,
.colps ul li button,
.colps ul li .nav {
	font-size: 14px;
	line-height: 21px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	font-family: var(--body-font);
	color: var(--main-text-color);
}

.colps ul li a {
	font-weight: 600;
}

.colps ul li button,
.colps ul li .nav {
	font-weight: bold;
}

#navbarNav {
	display: flex;
	justify-content: flex-end;
}

.overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgb(0, 0, 0);
	background-color: rgba(0, 0, 0, 0.9);
	overflow-x: hidden;
	transition: 0.5s;
}

.overlay-content {
	position: relative;
	top: 25%;
	width: 100%;
	text-align: center;
	margin-top: 30px;
}

.overlay a {
	padding: 8px;
	text-decoration: none;
	font-size: 36px;
	color: #b2aeae;
	display: block;
	transition: 0.3s;
	font-family: var(--body-font);
	font-weight: 600;
}

.overlay a:hover,
.overlay a:focus {
	color: #f1f1f1;
}

.overlay .closebtn {
	position: absolute;
	top: 38px;
	right: 13px;
	font-size: 60px;
}

@media screen and (max-height: 450px) {
	.overlay a {
		font-size: 20px
	}

	.overlay .closebtn {
		font-size: 40px;
		top: 15px;
		right: 35px;
	}
}

a.nav-link:hover {
	color: var(--accent-color);

}


/*!== hero-area==*/

.box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.box a {
	text-align: center;
}

.hero-title h2 {
	font-weight: 900;
	font-size: 48px;
	line-height: 148%;
	font-family: "Gavency";
	text-align: center;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	margin: 0 0 20px 0;
}

.hero-title h5 {
	font-family: var(--body-font);
	font-weight: 700;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--main-text-color);
	margin: 0 0 16px 0;
}

.hero-title .description {
	font-family: var(--body-font);
	font-weight: 400;
	font-size: 18px;
	line-height: 159%;
	text-align: center;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	margin-bottom: 32px;
}

.hero-title hr {
	margin: 120px 0;
	height: 1px;
	color: var(--main-text-color);
	opacity: 1;
}

.wrapped {
	text-align: center;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	display: table;
	position: absolute;
	height: 100%;
	width: 100%;
}

.wrapped h1 {
	color: var(--main-text-color);
	font-size: 70px;
	font-weight: 700;
	padding: 0px 0 0px 15px;
	margin: 0 0 30px 0;
	text-transform: uppercase;
}

.middle {
	display: table-cell;
	vertical-align: middle;
}

.inner {
	margin-left: auto;
	margin-right: auto;
}

.time-area>div {
	display: inline-block;
}

.time-area .counter-days,
.time-area .counter-hours,
.time-area .counter-minutes,
.time-area .counter-seconds {
	font-weight: 700;
	font-size: 48px;
	line-height: 148%;
	font-family: var(--display-font);
	text-align: center;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	padding: 0 2px;
	min-width: 100px;
	display: inline-block;
}

.time-area span {
	font-weight: 700;
	font-size: 42px;
	line-height: 148%;
	font-family: var(--display-font);
	text-align: center;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	padding: 0 2px;
	display: inline-block;
}

.countdown {
	font-weight: 700;
	font-size: 48px;
	line-height: 148%;
	font-family: var(--display-font);
	text-align: left;
	letter-spacing: 0.01em;
	color: var(--accent-80);
	padding: 0 2px;
	min-width: 100px;
	display: inline-block;
	width: 100%;
}

/*!== collection-area==*/
.collection-title {
	margin-bottom: 80px;
}

.collection-title h2 {
	font-family: var(--display-font);
	font-weight: 900;
	font-size: 48px;
	line-height: 148%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	margin: 0 0 16px;
}

.collection-title p {
	font-weight: 400;
	font-size: 18px;
	font-family: var(--body-font);
	line-height: 159%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	margin: 0;
	padding: 0;
}

.blur-pro {
	position: relative;
	display: block;
	text-decoration: none;
}

.blur-pro::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background: var(--custom-gradient);
	border-radius: 10px;
	text-decoration: none;
	border: solid 1px var(--accent-50);
}

.innerbox1 {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 0;
}

.innerbox1 img {
	width: 100%;
}


.f-text {
	font-weight: 700;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	width: 80%;
	font-family: 'Gavency', sans-serif;
}

.n-text {
	font-weight: 300;
	font-size: 14px;
	line-height: 17px;
	text-align: right;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	width: 20%;
}

.title-box {
	padding: 13px 15px 19px 15px;
	margin: 0 0 63px 0;
}

.title-box table {
	width: 100%;
}

.title-box hr {
	margin: 16px 0;
	border: solid 1px var(--accent-50);
	background-color: transparent;
}

.price,
.price1,
.td-text,
.td-text1 {
	width: 50%;
}

.price,
.price1,
.artist {
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.01em;
	color: var(--accent-80);
	padding: 0 0 7px 0;
	font-family: var(--body-font);
}

.artist {
	padding-top: 16px;
}

.price1,
.td-text1 {
	text-align: right;
}

.td-text,
.td-text1 {
	font-weight: 900;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	font-family: var(--body-font);
}

.bid {
	text-align: center;
}

.bid span {
	font-weight: 600;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	letter-spacing: 0.01em;
	color: #FFFFFF;
	display: inline-block;
	background: var(--accent-30);
	transition: all .25s ease-in-out;
	padding: 7px 7px;
	text-decoration: none;
	margin: 16px 0 0 0;
	display: block;
	border-radius: 100px;
	border: solid 2px transparent;
}

/*!== about-area ==*/
div.container.about-container {
	max-width: 1150px;
	margin: 0 auto;
}

.about-area {
	margin-top: 110px;
}

.about-title p {
	font-weight: 200;
	font-size: 18px;
	line-height: 159%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	padding: 0 4% 0 0;
	font-family: var(--body-font);
	padding: 0;
}

.about-title-2 h2,
.about-title-2 h4 {
	font-family: "Gavency";
	font-weight: 900;
	line-height: 148%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
}

.about-title-2 h2 {
	font-size: 48px;
	margin: 0 0 24px 0;
}

.about-title-2 h4 {
	font-size: 18px;
	margin: 0 0 16px 0;
}

.about-title-2 p {
	font-weight: 200;
	font-size: 18px;
	line-height: 159%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	padding: 0 4% 0 0;
	font-family: var(--body-font);
	padding: 0 10% 0 0;
}

.content1,
.content2 {
	margin: 0 0 30px 0;
}

.content3 {
	margin: 0 0 46px 0;
}

.big-logo img {
	width: 100%;
	margin: 0 0 100px 0;
}

.regularlink {
	padding: 0px;
	margin: 0px;
}

.aboutlink {
	font-weight: 500;
	font-size: 16px;
	line-height: 26px;
	text-align: center;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	text-decoration: none;
	background: #ECECEC;
	padding: 10px 24px;
	font-family: var(--body-font);
	display: inline-block;
	margin: 0 7px 46px 0;
}

/*!== asked-area ==*/

.ques h2 {
	font-weight: 200;
	font-size: 48px;
	line-height: 148%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	font-family: var(--display-font);
	margin: 0 0 65px 0;
}

.asked-title h2 {
	font-weight: 200;
	font-size: 48px;
	line-height: 148%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	font-family: var(--display-font);
}

.user-content p {
	font-family: 'Urbanist', sans-serif;
}

.bdr h2 button {
	font-weight: 900;
	font-size: 20px;
	line-height: 30px;
	letter-spacing: 0.01em;
	color: var(--accent-color);
	font-family: 'Gavency', sans-serif;
}

.human {
	background-color: transparent;
	/* border-radius: 10px !important; */
	margin-bottom: 16px;
	padding: 16px 24px 16px 32px;
}

.acr {
	font-size: 18px;
	line-height: 159%;
	letter-spacing: 0.01em;
	color: var(--main-text-color);
	padding: 0 0 15px;
	font-weight: 400;
}

.acr ul {
	margin: 0;
}

.acr a {
	color: var(--accent-80);
	font-size: 18px;
	font-weight: 400;
}


.sw-accordion-button {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	padding: 1rem 0;
	font-size: 1rem;
	color: #212529;
	text-align: left;
	border: 0;
	border-radius: 0;
	overflow-anchor: none;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
}

.sw-accordion-button:not(.collapsed) {
	color: var(--accent-color);
	box-shadow: none;
}

.sw-accordion-button:not(.collapsed)::after {
	background-image: url("./images/top-arw.svg");
	transform: rotate(0deg);
}

.sw-accordion-button::after {
	background-image: url("./images/top-arw.svg");
	transform: rotate(-180deg);
}

.sw-accordion-button:focus {
	box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
	.sw-accordion-button {
		transition: none;
	}
}

.sw-accordion-button:not(.collapsed) {
	box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.sw-accordion-button:not(.collapsed)::after {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCA2MCAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMzAuNUwzMCAxLjVMNTkgMzAuNSIgc3Ryb2tlPSIjQ0NEOERDIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==);
	transform: rotate(0deg);
}

.sw-accordion-button::after {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-left: auto;
	content: "";
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iMzIiIHZpZXdCb3g9IjAgMCA2MCAzMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMzAuNUwzMCAxLjVMNTkgMzAuNSIgc3Ryb2tlPSIjQ0NEOERDIiBzdHJva2Utd2lkdGg9IjIiLz4KPC9zdmc+Cg==);
	background-repeat: no-repeat;
	background-size: 1.25rem;
	transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.sw-accordion-button::after {
		transition: none;
	}
}

.sw-accordion-button:hover {
	z-index: 2;
}

.sw-accordion-button:focus {
	z-index: 3;
	outline: 0;
}

.sw-accordion-header {
	margin-bottom: 0;
}

.sw-accordion-item {
	border-bottom: solid 1px var(--light-border-color);
}

.sw-accordion-flush .sw-accordion-collapse {
	border-width: 0;
}

.sw-accordion-flush .sw-accordion-item {
	border-right: 0;
	border-left: 0;
	border-radius: 0;

}

.sw-accordion-flush .sw-accordion-item:first-child {
	border-top: 0;
}

.sw-accordion-flush .sw-accordion-item:last-child {
	border-bottom: 0;
}

.sw-accordion-flush .sw-accordion-item .sw-accordion-button {
	border-radius: 0;
}

/*!== footer-area ==*/

.footer-area {
	background: transparent;
	border-top: solid 1px var(--accent-10);
	margin: 110px 0 0 auto;
	padding: 40px 0;
}

.power {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.power a {
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	margin-top: 8px;
}

.power a span {
	font-weight: 300;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	opacity: 0.75;
	font-family: var(--body-font);
	display: inline-block;
	margin-top: -8px;
	margin-right: 8px;
}

.power a img {
	width: 150px;
	margin-top: -14px;
}

.privacy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: left;
	height: 100%;
}

@media screen and (max-width: 992px) {
	.privacy {
		align-items: center;
	}
}

.privacy>p {
	display: flex;
	grid-gap: 8px;
}

.privacy>p>span {
	color: white;
}

.privacy a {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.01em;
	color: #FFFFFF;
	font-family: 'Urbanist', sans-serif;
	text-decoration: none;
}

.privacy a span {
	font-size: 40px !important;
	vertical-align: middle;
	margin-top: -4px;
	display: inline-block;
}

.pwr {
	font-weight: 400;
	font-size: 23px;
	line-height: 26px;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: #FFFFFF;
	text-decoration: none;
	opacity: 0.75;
	transition: 0.3s all ease;
}

.pwr1 {
	font-weight: 700;
}

.market {
	padding: 4px 18px 6px 18px;
	background: #222222;
	display: inline-block;
	font-weight: 500;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.01em;
	color: #FFFFFF;
	text-decoration: none;
	transition: 0.3s all ease;
}

.first-tg {
	margin: 0 0px 2px 0;
}

.first-tg a:hover,
.first-tg1 a:hover {
	color: #fff;
}

.mrc,
.mrc1 {
	margin: 0px 0px 0 -2px;
}


.acr img {
	margin: 10px 0;
}

.preview-media {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.preview-media::after {
	content: '';
	display: block;
	position: relative;
	width: 100%;
	padding-bottom: 100%;
}

.preview-media>video,
.preview-media>img {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}