@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,600;0,700;0,800;1,600;1,700;1,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Acme&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;0,700;1,500;1,700&display=swap");

:root {
    --color-gray-100: #392951;
    --color-gray-90: #1b1128;
    --color-gray-80: #332a3f;
    --color-gray-70: #4b4356;
    --color-gray-60: #7b7583;
    --color-gray-50: #9f9ba5;
    --color-button-hover: #f04bff;
    --font-color: rgb(243, 242, 244);
    --border-color: rgba(131, 131, 131, 0.25);
    --padding: 8%;
    --min-font-header: 58px;
    --min-font: 14px;
    --font-main: "Mabry Pro", "Space Grotesk", "Segoe UI", "Helvetica Neue";
    --font-family-second: "Power Grotesk", "Space Grotesk", "Segoe UI", Roboto, "Helvetica Neue";
    --font-family-third: "Montserrat";
	--font-family: 'Acme';
    --font-p: 'Space Grotesk', sans-serif;
    --font-numbers: 'Karla', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    text-decoration: none;
}

body {
	min-width: 320px;
    background-color: var(--color-gray-100);
    color: #fff;
	font-family: var(--font-main);
}

h1, h2, h3 {
	font-family: var(--font-family-third);
	font-weight: 500;
}

h3 {
	font-size: 28px;
}

video, img {
	max-width: 100%;
}

video {
	background-color: transparent;
}

img {
	height: auto;
	vertical-align: middle;
}

ul {
    list-style: none;
}

p {
	line-height: 1.4;
	font-size: 18px;
	font-weight: 300;
}

a {
	color: #f04bff;
}

a.button {
    display: inline-block;
	margin-top: 32px;
	padding: 20px 40px;
	border: 0;
    border-radius: 56px;
    background-image: linear-gradient(to right, #2600fc, #ff00ea, #2600fc);
	background-size: 200% 100%;
	color: #fff;
    font-size: 18px;
    font-weight: 500;
	transition: background-position .4s ease-in-out, box-shadow .4s ease-in-out;
    -webkit-transition: background-position .4s ease-in-out, box-shadow .4s ease-in-out;
    -moz-transition: background-position .4s ease-in-out, box-shadow .4s ease-in-out;
    -ms-transition: background-position .4s ease-in-out, box-shadow .4s ease-in-out;
    -o-transition: background-position .4s ease-in-out, box-shadow .4s ease-in-out;
}

a.button:hover {
	background-position-x: 100%;
    box-shadow: 0 4px 15px 0 rgba(116, 79, 168, 0.75);
}

button {
	padding: 0;
	border: 0;
	background-color: transparent;
	cursor: pointer;
}

button[disabled] {
	cursor: not-allowed;
}

/* Grid Flex-box */
.f-row {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
}

.f-row--inline {
	display: -webkit-inline-box;
	display: -moz-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

.f-row--item {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.f-row--item-2 {
	-webkit-box-flex: 2;
	-moz-box-flex: 2;
	-ms-flex: 2;
	flex: 2;
}

.f-row--item-3 {
	-webkit-box-flex: 3;
	-moz-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
}

.f-row--item-top {
	-ms-flex-item-align: start;
	align-self: flex-start;
}

.f-row--item-center {
	-ms-flex-item-align: center;
	-ms-grid-row-align: center;
	align-self: center;
}

.f-row--item-bottom {
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.f-row--space-around {
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

.f-row--space-between {
	-webkit-box-pack: justify;
	 -moz-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.f-row--space-center {
	-webkit-box-pack: center;
	 -moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.f-row--space-right {
	-webkit-box-pack: end;
	-moz-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.f-row--top {
	-webkit-box-align: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	 align-items: flex-start;
}

.f-row--center {
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.f-row--bottom {
	-webkit-box-align: end;
	-moz-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.f-row--between {
	-webkit-box-align: baseline;
	-moz-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.f-direction--row {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
}

.f-direction--column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.f-direction--row-reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-moz-box-orient: horizontal;
	-moz-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.f-direction--column-reverse {
	-webkit-box-orient: vertical;
	-webkit-box-direction: reverse;
	-moz-box-orient: vertical;
	-moz-box-direction: reverse;
	-ms-flex-direction: column-reverse;
	flex-direction: column-reverse;
}

.f-wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.f-grow {
	-webkit-box-flex: 1;
	-moz-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
}

.d-inline-block {
	display: inline-block;
}

.d-block {
	display: block;
}

.d-none {
	display: none;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	overflow: hidden;
	/* IE6, IE7 */
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.bg-gradient {
	position: relative;
}

.bg-gradient:before {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: linear-gradient(90deg, #00bcd4 10%, #ff0057 100%);
	filter: blur(90px);
	z-index: -1;
}

.text-subtitle {
	font-size: 22px;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-nowrap {
	white-space: nowrap;
}

.text-uppercase {
	text-transform: uppercase;
}

.text-purple {
	color: #f04bff;
}

.header-center {
	margin-bottom: 30px;
    text-align: center;
    font-style: normal;
}

.header-center.decor h2:after {
	content: "✦";
	position: relative;
    top: -5px;
	margin-left: 15px;
    font-size: 20px;
}

.content, footer {
	padding-top: 80px;
	padding-bottom: 80px;
}

.content h2, .content h5 {
	font-size: 35px;
}

.content p + p {
	margin-top: 10px;
}

.btn-toggle {
	position: relative;
	width: 35px;
	height: 20px;
}

.btn-toggle:before, .btn-toggle:after, .btn-toggle__icon {
	height: 3px;
	border-radius: 3px;
	background-color: #fff;
}

.btn-toggle:before, .btn-toggle:after {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	-webkit-transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
	transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
	-o-transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), -o-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
	-moz-transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -moz-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
	transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
	transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -moz-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -o-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.btn-toggle:before {
	top: 0;
}

.btn-toggle:after {
	bottom: 0;
}

.btn-toggle__icon {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	     -o-transform: scale(1);
	        transform: scale(1);
	display: block;
	font-size: 0;
	-webkit-transition: -webkit-transform 0.3s ease-in;
	transition: -webkit-transform 0.3s ease-in;
	-o-transition: -o-transform 0.3s ease-in;
	-moz-transition: transform 0.3s ease-in, -moz-transform 0.3s ease-in;
	transition: transform 0.3s ease-in;
	transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in, -moz-transform 0.3s ease-in, -o-transform 0.3s ease-in;
}

.btn-carders {
    margin-top: 80px;
}

.social-section {
	padding-left: 5px;
}

.social-section li {
	display: inline-block;
}

.social-section li a {
	display: inherit;
    color: #37aee2;
}

.social-section li a i {
    font-size: 38px;
    transition: .3s ease-in-out;
}

.social-section li a i:hover {
    color: #43c6ff;
}

/* -----------header------------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
	background: transparent;
	z-index: 9999;
}

header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
	padding: 0 var(--padding);
    background: linear-gradient(to bottom, var(--color-gray-100), rgba(60, 41, 80, 0.2)) !important;
    color: #fff !important;
}

header .logo {
	display: inline-block;
	width: 220px;
}

header .right-header, header .right-header nav ul {
    display: flex;
    align-items: center;
}

header .right-header {
	justify-content: flex-end;
	flex-grow: 1;
}

header .right-header nav ul li a {
    display: inline-block;
    padding: 10px 20px;
	color: var(--font-color);
	font-family: var(--font-main);
    font-size: 20px;
    transition: 0.2s ease-in-out;
}

header .right-header nav ul li a:hover {
    color: var(--color-button-hover);
}

header.menu-open .btn-toggle:before, header.menu-open .btn-toggle:after {
	transition: top 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), bottom 0.3s cubic-bezier(0.77, 0.2, 0.05, 1), transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -moz-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1), -o-transform 0.6s cubic-bezier(0.77, 0.2, 0.05, 1);
}

header.menu-open .btn-toggle:before {
	top: 8px;
	transform: rotate(45deg);
}

header.menu-open .btn-toggle:after {
	bottom: 8px;
	transform: rotate(-45deg);
}

header.menu-open .btn-toggle__icon {
	transform: scale(0);
	transition: transform 0.3s ease-in, -webkit-transform 0.3s ease-in, -moz-transform 0.3s ease-in, -o-transform 0.3s ease-in;
}

/* --------------------collection---------------------- */
.collection {
	position: relative;
    height: 100vh;
}

.collection .background {
    background-image: url("../img/collection-grid.png");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0.1;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.collection .content {
	position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
	padding-right: var(--padding);
    padding-left: var(--padding);
	height: 100vh;
}

.collection .content .text {
    max-width: 600px;
}

.collection .content .text h1 {
    color: var(--font-color);
    font-family: var(--font-family-third);
    font-weight: 500;
    font-size: 45px;
    margin-bottom: 20px;
}

.collection .content .text p {
    color: var(--font-color);
    margin: 20px 0;
}

.collection .content .video-section,
.collection .content .image-section {
	max-width: 45%;
	text-align: right;
}

.collection .content .video-section:before,
.collection .content .image-section:before {
	/* top: -70%;
    left: 90%;
	width: 400px;
    height: 400px; */
	width: 100%;
	height: 100%;
	animation: spin 5s linear infinite;
}

.collection .content .video-section video,
.collection .content .image-section img,
.exchange .content .video-section video,
.exchange .content .image-section img {
	padding: 16px;
	background-color: rgba(255, 255, 255, .05);
}

.collection .content .video-section video,
.collection .content .image-section img {
	border-radius: 40% 30px 40% 30px;
}

/* --------------------collection-carders---------------------- */
.collection-carders {
    position: relative;
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.collection-carders .content .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.collection-carders .content .boxes .card {
    text-align: center !important;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    width: calc(25% - 2rem);
    margin: 1rem;
    padding: 16px;
}

.collection-carders .content .boxes .card .card-image {
    height: 325px;
    overflow: hidden;
}

.collection-carders .content .boxes .card .card-image img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
	-o-object-fit: cover;
	object-fit: cover;
}

.collection-carders .content .boxes .card .card-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 4px;
}

.collection-carders .content .boxes .card .card-text h2 {
    font-family: var(--font-family-second);
    font-size: 22px;
    font-weight: 500;
    line-height: 22px;
	color: var(--font-color);
}

.collection-carders .content .boxes .card .card-text span {
    color: rgb(183, 180, 187);
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
}

.collection-carders .content .text-subtitle,
.faq .content .text-subtitle {
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}

.collection-carders .content .text-subtitle {
	margin-bottom: 80px;
}

.btn-carders i {
    display: inline-flex;
    margin-left: 8px;
    align-items: center;
}

.collection-carders .content .boxes .card,
.collection-carders .content .boxes .card.card-2 {
    transition: all 0.4s ease-in-out !important;
    -webkit-transition: all 0.4s ease-in-out !important;
    -moz-transition: all 0.4s ease-in-out !important;
    -ms-transition: all 0.4s ease-in-out !important;
    -o-transition: all 0.4s ease-in-out !important;
}

.collection-carders .content .boxes .card.card-2 {
    transform: translateY(45px);
    -webkit-transform: translateY(45px);
    -moz-transform: translateY(45px);
    -ms-transform: translateY(45px);
    -o-transform: translateY(45px);
}

.collection-carders .content .boxes .card:hover {
    transform: scale(1.1) !important;
}

/* -------------------------img-zigzag----------------------- */
.img-zigzag {
    display: flex;
    justify-content: center;
    margin-top: 48px;
    margin-bottom: 48px;
}

.img-zigzag img {
    width: 80px;
    height: 14px;

}

/* -------------------------img-zigzag----------------------- */

/* -------------------------choose-us ----------------------- */
.choose-us {
    position: relative;
    padding-left: var(--padding);
    padding-right: var(--padding);

}

.choose-us .container {
	padding-top: 20px;
    padding-bottom: 80px;
}

.choose-us .container .cols {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	width: 100%;
}

.choose-us .container .cols .card {
    text-align: left !important;
    background-color: rgba(255, 255, 255, .05);
    border-radius: 24px;
    width: calc(25% - 2rem);
    margin: 1rem;
    padding: 48px 24px;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

.choose-us .container .cols .card:hover {
    transform: scale(1.1);
}

.choose-us .container .cols .card span {
    font-family: var(--font-family);
    font-size: 64px;
    font-weight: 700;
    line-height: 65.8px;
    margin-bottom: 20px;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-us .container .cols .card .card-margin-top {
    margin-top: 24px;
}

.choose-us .container .cols .card h3 {
    margin-bottom: 20px;
    line-height: 31.5px;
}

.choose-us .container .cols .card-bottom {
    transform: translateY(45px);
    -webkit-transform: translateY(45px);
    -moz-transform: translateY(45px);
    -ms-transform: translateY(45px);
    -o-transform: translateY(45px);
}

/* ---------------------features---------------- */
.features {
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.features .content .side-2,
.features .content .side-1 {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
    justify-content: space-between;
}

.features .content .image-section,
.features .content .text-section {
    position: relative;
    width: 50%;
    height: 100%;
    padding-left: 16px;
    padding-right: 16px;
}

.features .content .image-section img {
    width: 100%;
}

.features .content .side-2 .image-section,
.features .content .side-1 .text-section {
    padding-left: 120px;
}

.features .content .side-2 .text-section .span-panel,
.features .content .side-1 .text-section .span-panel {
    font-family: var(--font-family-second);
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 20px;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.features .content .side-2 .text-section h2,
.features .content .side-1 .text-section h2 {
    margin-bottom: 20px;
	margin-top: 20px;
    line-height: 1.07;
}

.features .content .side-2 .text-section p,
.features .content .side-1 .text-section p {
    line-height: 1.5;
}

.features .content .side-2 .text-section .row,
.features .content .side-1 .text-section .row {
    display: flex;
    margin-top: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.features .content .side-2 .text-section .row .box,
.features .content .side-1 .text-section .row .uk-panel {
    padding: 25px 10px;
}

.features .content .side-1 .text-section .row h5 {
    margin-bottom: 5px;
    text-transform: uppercase;
}

.features .content .side-2 .text-section .row span,
.features .content .side-1 .text-section .row span {
    font-size: 16px;
    line-height: 22.4px;
    font-weight: 400;
}

.features .content .side-2 .row .box {
    display: flex;
    align-items: center;
}

.features .content .side-2 .box-icon {
    padding: 16px;
    border-radius: 22px;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    margin-right: 16px;
}

.features .content .side-2 .box-icon i {
    font-size: 32px;
}

/* -----------------------team----------------------- */
.team {
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.team .content {
    height: 100%;
    width: 100%;
    position: relative;
}

.team .content .team-card {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px 30px;
    justify-content: space-evenly;
}


.team .content .team-card .card-s4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all .4s ease-in-out;
}

.team .content .team-card .card-s4.card-center-up {
    transform: translateY(-30px);
}

.team .content .team-card .card-s4:hover {
    transform: scale(1.1);
}

.team .content .team-card .card-s4 .image-card {
    width: 160px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .05) !important;
    padding: 8px;
}

.team .content .team-card .card-s4 .image-card img {
    max-width: 100%;
    border-radius: 50%;
    height: auto;
    vertical-align: middle;
}

.team .content .team-card .card-s4 .text-card {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.team .content .team-card .card-s4 .text-card h3 {
    font-family: var(--font-family);
    font-size: 28px;
    line-height: 28px;
    font-weight: 700;
    margin-bottom: 4px;
}

.team .content .team-card .card-s4 .text-card span {
    font-family: var(--font-p);
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.team .content .team-card .card-s4 .text-card ul {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-card .card-s4 .text-card ul li {
    display: inline-block;
    padding: 8px;
}

.team-card .card-s4 .text-card ul li a {
    color: var(--font-color);
    transition: all 0.3s ease-in-out;
}

.team-card .card-s4 .text-card ul li a i {
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.team-card .card-s4 .text-card ul li a:hover {
    color: var(--color-button-hover);
}

.team-card .card-s4 .text-card ul li a:hover i {
    transform: scale(1.2);
}

/* --------------------counter-section------------------- */
.counter-section {
    width: 100%;
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.counter-section .content {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    position: relative;
}

.counter-section .content .row {
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-style: normal;
}

.counter-section .content .row .row-icon {
    width: 60px;
}

.counter-section .content .row .row-icon img {
    width: 100%;
}

.counter-section .content .number {
    margin-top: 20px;
    margin-bottom: 12px;
}

.counter-section .content .number span {
    font-family: var(--font-numbers);
    font-size: 72px;
    font-weight: 700;
    font-style: normal;
}

.counter-section .content h6 {
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
}

.counter-section .image-background {
    position: absolute;
    opacity: .7;
}

.counter-section .left-bottom {
    bottom: 1%;
    left: 36%;
    width: 28px;
}

.counter-section .top-right {
    right: 26%;
    top: 0%;
    width: 28px;
}

/* -----------------roadmap-------------------- */
.roadmap {
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.roadmap .content {
    font-style: normal;
    width: 100%;
    height: auto;
    display: grid;
    place-items: center;
}

.roadmap .container {
	position: relative;
    padding: 80px 0 20px;
    width: 80%;
    height: 100%;
    margin: auto;
}

.roadmap .container ul {
    height: 100%;
    position: relative;
}

.roadmap .container ul::after {
    content: " ";
    position: absolute;
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: rgb(66, 62, 62);
}

.roadmap .container ul > li {
    background-color: rgba(255, 255, 255, .05) !important;
    border-radius: 32px;
    padding: 32px;
    width: 50%;
    height: auto;
    position: relative;
    margin-bottom: 30px;
    z-index: 99;
}

.roadmap .container ul > li:nth-child(6) {
    margin-bottom: 0;
}

.roadmap .container ul > li .circle {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-image: linear-gradient(45deg, #2600fc, #ff00ea);
    top: 50%;
}

.circle::after {
    content: ' ';
    width: 20px;
    height: 20px;
    border-radius: 50%;
    position: absolute;
    left: -50%;
    top: 50%;
    transform: translateY(-50%);
    border: 2px solid rgb(66, 62, 62);
}

ul li:nth-child(odd) .circle {
    transform: translate(50%, -50%);
    right: -30px;
}

ul li:nth-child(even) .circle {
    transform: translate(-50%, -50%);
    left: -30px;
}

.roadmap .container ul > li:nth-child(odd) {
    float: left;
    clear: right;
    text-align: left;
    transform: translateX(-30px);
}

.roadmap .container ul > li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
}

.roadmap .container ul > li .plan-text .plan-number {
    font-family: var(--font-family-second);
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    margin-bottom: 20px;
    background-image: linear-gradient(25deg, #2600fc, #ff00ea);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.roadmap .container ul > li .plan-text h3 {
    margin: 20px 0;
	line-height: 36.8px;
}

.roadmap .container ul > li .plan-text p {
	line-height: 30px;
    margin-top: 20px;
}

.roadmap .container ol {
	padding-left: 20px;
	line-height: 30px;
	font-size: 18px;
    font-weight: 300;
}

@media only screen and (min-width:798px) and (max-width: 1100px) {
    .roadmap .container {
        width: 80%;
    }
}

@media only screen and (max-width: 798px) {
    .roadmap .container {
        width: 100%;
    }

    .roadmap .container ul::after {
        left: -40px;
    }

    .roadmap .container ul > li {
        width: 100%;
        float: none;
        clear: none;
        margin-bottom: 80px;
    }

    .roadmap .container ul > li .circle {
        left: -40px;
        transform: translate(-50%, -50%);
    }

    .roadmap .container ul > li:nth-child(odd) {
        transform: translateX(0px);
        text-align: left;
    }

    .roadmap .container ul > li:nth-child(even) {
        transform: translateX(0px);
    }
}

@media only screen and (max-width: 550px) {
    .roadmap .container {
        width: 100%;
    }

    .roadmap .container ul::after {
        left: -20px;
    }

    .roadmap .container ul > li .circle {
        left: -20px;
    }
}

/* --------------------------faq-------------------------------- */
.faq {
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.faq .content {
    position: relative;
    font-style: normal;
}

.faq .icon-topapp {
	width: 110px;
	margin-left: 15px;
}

.faq .content .question-list {
    margin-top: 80px;
    width: 680px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(255, 255, 255, .05) !important;
    border-radius: 24px;
    padding: 48px;
}

details {
    border-bottom: 1px solid #aaa;
    padding-bottom: 20px;
    padding-top: 20px;
}

summary {
    display: flex;
    justify-content: space-between;
	line-height: 26px;
    list-style: none;
	font-family: var(--font-family-third);
	font-size: 19px;
    font-weight: 500;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

summary:hover {
    color: var(--color-button-hover);
}

summary::-webkit-details-marker {
    display: none;
}

summary:after {
    content: "\002B";
    font-size: 26px;
    color: #aaa;
    font-weight: 400;
}

details[open] summary {
    margin-bottom: .5em;
    color: var(--color-button-hover);
}

details[open] summary:after {
    content: "\00D7";
}

details[open] div {
    padding: 25px 0;
}

.question-list .details p {
    font-size: 22px;
    font-weight: 400;
    line-height: 27px;
    color: rgba(170, 170, 170, 0.947);
}

/* --------------------exchange----------------- */
.exchange .content .video-section,
.exchange .content .image-section {
	max-width: 550px;
    margin-top: 40px;
    margin-right: auto;
    margin-left: auto;
}

.exchange .content .video-section:before,
.exchange .content .image-section:before {
	top: 60%;
    left: 50%;
    transform: translate(-50%, -45%);
	width: 80%;
    height: 80%;
}

.exchange .content .video-section video,
.exchange .content .image-section img {
	border-radius: 20% 30px 20% 30px;
}

/* --------------------about----------------- */
.about {
	position: relative;
    width: 100%;
    padding-left: var(--padding);
    padding-right: var(--padding);
}

.about:after {
	content: "";
	position: absolute;
	bottom: -180px;
	left: 50%;
    transform: translateX(-50%);
	width: 100%;
	height: 250px;
	background: url("../img/footer-bg.png");
    background-repeat: no-repeat;
    background-position: 50% 50%;
	z-index: -1;
}

.about .content {
    position: relative;
    font-style: normal;
}

.about .content .back-map {
    position: absolute;
    top: 50%;
	right: 0;
    bottom: 0;
    left: 0;
	transform: translateY(-50%);
	width: 100%;
	height: 90%;
    background-image: url("../img/map.svg");
    background-position: center;
    background-repeat: no-repeat;
    opacity: .06;
	z-index: -1;
}

.about .content .text-subtitle {
	margin-bottom: 20px;
}

.about .content .text {
    max-width: 960px;
	margin-right: auto;
    margin-left: auto;
}

.about .content a.button {
	margin-bottom: 80px;
}

.about img {
    position: absolute;
	opacity: .6;
}

.about img.left-bottom {
    bottom: 16%;
    left: 20%;
    width: 36px;
}

.about img.right-bottom {
    right: 14%;
    bottom: 20%;
    width: 28px;
}

.about img.top-right {
    top: 8%;
    right: 10%;
    width: 36px;
}

.about img.top-left {
    top: 4%;
    left: 16%;
    width: 24px;
}

.contacts {
	max-width: 800px;
	margin-right: auto;
    margin-left: auto;
	padding: 16px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .05);
	z-index: 10;
}

.contacts.bg-gradient:before {
	top: 20px;
	left: 50%;
    transform: translateX(-50%);
	width: 100%;
	height: 30%;
}

.contacts h3 {
	margin-bottom: 20px;
}

.contacts table {
	max-width: 570px;
    margin-right: auto;
    margin-left: auto;
}

.contacts table td {
	padding-bottom: 12px;
}

.contacts table td:first-child {
	width: 130px;
	vertical-align: top;
}

.contacts table tr:last-child td {
	padding-bottom: 0;
}

.contacts table td:last-child {
	padding-left: 5px;
	font-weight: 300;
}

/* ----------------------footer---------------- */
footer .container {
    padding-left: var(--padding);
    padding-right: var(--padding);
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    font-style: normal;
}

footer .container .end-footer a {
    font-size: 16px;
}

footer .container .end-footer p {
    text-align: center;
    font-size: 16px;
    color: rgb(183, 180, 187);
}

@-webkit-keyframes spin {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0);
	}
	50% {
		transform: rotate(180deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* ------------------------------------------------------------------------------ */
@media (max-width: 1400px) {
	:root {
		--padding: 3%;
	}
	
	.collection .content .video-section:before,
	.collection .content .image-section:before {
		width: 80%;
		height: 80%;
	}
}

@media (max-width: 1200px) {
	header .right-header nav ul li a {
		padding-right: 15px;
		padding-left: 15px;
		font-size: 18px;
	}

	.collection .content .text {
		max-width: 500px;
	}

	.collection .content .text h1 {
		font-size: 38px;
	}
}

@media (max-width: 991px) {
	header .right-header nav ul li a {
		font-size: 16px;
	}

	.collection .content .text {
		margin-bottom: 40px;
	}

	.collection-carders .content .boxes .card,
	.choose-us .container .cols .card {
        width: calc(50% - 2rem);
    }
	
	.about:after {
		display: none;
	}

	.about .content .subtitle {
		font-size: 20px;
	}
}

@media (min-width: 767px) and (max-width: 991px) {
    /* ----------------general--------------- */
    a.button {
        font-size: 16px;
        font-weight: 700;
        padding: 15px 30px;
    }

    /* -----------------header--------------------- */
    header {
        background-color: var(--color-gray-100);
    }
	
	header .logo {
		width: 117px;
	}

    /* -----------------collection and about--------------------- */
    /* .about .content .subtitle {
        font-size: 22px;
        font-weight: 500;
    } */

    /* ---------------------features--------------------- */
    .features .content .side-2 {
        flex-wrap: wrap-reverse;
    }

    .features .content .image-section,
    .features .content .text-section {
        width: 100%;
    }

    .features .content .image-section {
        display: flex;
        justify-content: center;
    }

    .features .content .image-section img {
        width: 80%;
    }

    .features .content .side-2 .text-section,
    .features .content .side-2 .image-section,
    .features .content .side-1 .text-section {
        padding: 25px;
        text-align: center;
    }

    .features .content .side-1 .text-section .row h5,
    .features .content .side-2 .text-section h3,
    .features .content .side-1 .text-section h3 {
        font-size: 56px;
    }

    /* -----------------team--------------------- */
    .team .content .back-map {
        background-size: contain;
    }

    .team .content .team-card .card-s4.card-center-up {
        transform: translateY(0px);
    }

    /*------------------counter----------------- */
    .counter-section .content .row {
        width: 50%;
    }
}

@media (max-width: 767px) {
    /* ----------------general--------------- */
	* {
		scroll-margin-top: 100px;
	}
	
	a.button {
		margin-top: 0;
		padding: 15px 30px;
		font-size: 16px;
		font-weight: 700;
	}
	
	.content p,
	.collection .content .text a,
	.features .content .side-2 .text-section p, 
	.features .content .side-1 .text-section p,
	.roadmap .container ul > li .plan-text p,
	.about .content .text p {
		font-size: 17px;
	}
	
	.header-center {
		margin-bottom: 20px;
	}
	
	.header-center h2 {
		font-size: 25px;
	}

	.header-center.decor h2:after,
	.counter-section .image-background {
		display: none;
	}

	.content, footer {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.btn-toggle {
        display: inline-block;
    }

    /* -----------------header--------------------- */
    header {
        background-color: rgba(57, 41, 81, .7);
    }

	header .right-header nav {
		position: fixed;
		top: 125px;
		right: -100%;
		width: 100%;
		background: linear-gradient(to bottom, #43345a 40%, #773a5e 100%);
		-webkit-transition: right 0.5s cubic-bezier(0.86, 0.01, 0.77, 0.78);
		-o-transition: right 0.5s cubic-bezier(0.86, 0.01, 0.77, 0.78);
		-moz-transition: right 0.5s cubic-bezier(0.86, 0.01, 0.77, 0.78);
		transition: right 0.5s cubic-bezier(0.86, 0.01, 0.77, 0.78);
	}

	header .right-header nav {
		padding-top: 20px;
		padding-bottom: 20px;
	}

	header .right-header nav ul,
	.header-center.decor {
		display: block;
	}

	header.menu-open .right-header nav {
		right: 0;
	}

	header.menu-open .btn-toggle {
		z-index: 30;
	}

    /* -----------------collection--------------------- */
	.collection, .collection .content {
		height: auto;
	}

	.collection {
		padding-top: 110px;
	}

	.collection .content {
		display: block;
	}

	.collection .content .video-section,
	.collection .content .image-section {
		max-width: 100%;
	}

    .about .content h2,
    .collection .content .text h1 {
        font-size: 30px;
    }

    .collection .content .text a {
		padding: 15px 30px;
        font-weight: 700;
    }

	/* ---------------------choose-us--------------------- */
	.choose-us .container .cols .card h3,
	.features .content .side-1 .text-section .row h5,
    .features .content .side-2 .text-section h3,
    .features .content .side-1 .text-section h3,
	.roadmap .container ul > li .plan-text h3	{
		font-size: 20px;
	}

    /* ---------------------features--------------------- */
    .features .content .side-2 {
        flex-wrap: wrap-reverse;
    }

    .features .content .image-section,
    .features .content .text-section {
        width: 100%;
    }

    .features .content .image-section {
        display: flex;
        justify-content: center;
    }

    .features .content .image-section img {
        width: 80%;
    }

    .features .content .side-2 .text-section,
    .features .content .side-2 .image-section,
    .features .content .side-1 .text-section {
        padding: 25px;
        text-align: center;
    }

    .features .content .side-2 .text-section .row,
    .features .content .side-1 .text-section .row {
        justify-content: center;
    }

    /* ---------------------features end--------------------- */

    /* ---------------------team start--------------------- */
    .team .content .back-map {
        background-size: contain;
    }

    /* ---------------------team end--------------------- */

    /* -----------------counter start--------------------- */
    .counter-section .content .row {
        width: 100%;
    }

	.counter-section .content .number span {
		font-size: 42px;
	}

    /* -----------------counter end--------------------- */
    /* -----------------faq--------------------- */
    .faq .icon-topapp {
		display: inline-block;
		margin-top: 20px;
		margin-left: 0;
	}
	
	.faq .content .question-list {
        width: 100%;
        padding: 25px;
    }

    .faq .content .question-list summary, .about .content .subtitle {
        font-size: 18px;
    }

    /* -----------------about--------------------------- */
    .about img.left-bottom {
        left: 1%;
    }
	
	.about .content .text {
		margin-bottom: 32px;
	}

    /* -----------------footer--------------------------- */
    footer .container .social-section li {
        padding: 16px;
    }

    footer .container .social-section li a i {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
	.collection-carders .content .boxes .card,
	.choose-us .container .cols .card {
        width: 100%;
        margin: 0 0 2rem 0;
    }

    .collection-carders .content .boxes .card.card-2,
	.choose-us .container .cols .card-bottom {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
    }
	
	.choose-us .container {
		padding-top: 50px;
	}
}