/*----------------------------------------
[Master Stylesheet]

Project:	Unitok HTML Template
Version:	1.0.1
Primary use:	Unitok HTML Template
----------------------------------------*/
/*----------------------------------------
[Table of contents]

1. Fonts
2. Common styles
3. Header
4. Main
5. Breadcrumb
6. Paginator
7. Filter
8. Home
9. Hero
10. Card
11. Post
12. Asset
13. Sellers
14. Activity
15. Partners
16. Feature
17. Step
18. Knowledge
19. FAQ
20. Сollection
21. Author
22. Profile
23. Contacts
24. Article
25. Share
26. Comments
27. Footer
28. Sign
29. Page 404
30. Modal
31. Select2
32. Scrollbar-track
----------------------------------------*/
/*==============================
	Fonts
==============================*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&family=Inter:wght@400;500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@600&display=swap');

:root{
  --primary: #1a1a1a;
  --accent: #7833d9;
  /* --secondary: #222227; */
  --secondary: #27292b;
  --tertiary: #bdbdbd;
  --card-background: #27292B;
  --card-hover: #7833d9;
  --card-price: #FFF;
  --card-title: #FFF;
  --main-font: 'Prompt', sans-serif;
  /* --loader-spinner-color:#e6431d; */
  --loader-spinner-color:#7833d9;
}

/*==============================
	Common styles
==============================*/
.my-swal {
  z-index: 300000 !important;
}
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
  font-family: var(--main-font) !important;
}
body {
  font-family: var(--main-font);
  font-weight: 400;
  background-color: var(--primary);
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
  cursor: pointer;
}
button:focus {
  outline: none;
}
a {
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow;
  text-decoration: none;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea,
select {
  padding: 0;
  margin: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  box-shadow: none;
  transition: 0.5s ease;
  transition-property: color, border-color, box-shadow;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
select::-ms-expand {
  display: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* input[type=number] {
  -moz-appearance: textfield;
} */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #fff;
  color: var(--secondary);
  text-shadow: none;
}
::selection {
  background: #fff;
  color: var(--secondary);
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: var(--tertiary);
  opacity: 1;
}
::-moz-placeholder {
  color: var(--tertiary);
  opacity: 1;
}
:-moz-placeholder {
  color: var(--tertiary);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--tertiary);
  opacity: 1;
}
:focus {
  outline: -webkit-focus-ring-color auto 0px;
}
body::-webkit-scrollbar {
  display: none;
}
body::-webkit-scrollbar-track {
  background: none !important;
}
/* body::-webkit-scrollbar-thumb {
  background-color: var(--tertiary);
  outline: 1px solid var(--secondary);
} */
.tab-content {
  width: 100%;
}
.tab-content::-webkit-scrollbar {
  display: none;
  }
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}
.fade {
  transition: opacity 0.4s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
:focus-visible {
  outline: 0px dotted;
}
.row--grid {
  margin-right: -10px;
  margin-left: -10px;
}
.row--grid .col-6,
.row--grid .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 768px) {
  .row--grid {
    margin-right: -15px;
    margin-left: -15px;
  }
  .row--grid .col-6,
  .row--grid .col-12 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.row--sidebar {
  margin-right: -10px;
  margin-left: -10px;
}
.row--sidebar .col-6,
.row--sidebar .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}
.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
/* .owl-carousel .owl-item {
  -webkit-transform: none;
} */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1330px;
  }
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  height: 70px;
  background-color: var(--primary);
  border-bottom: 1px solid var(--secondary);
  z-index: 101;
}
.background--black{
  background-color: #000 !important;
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  width: 100%;
  position: relative;
  padding: 0 15px;
}
.header__logo {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
}
.header__logo img {
  width: auto;
  height: 34px;
  display: block;
}
.header__actions {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  margin-left: auto;
  /* margin-left: 30px; */
  margin-right: 42px;
}
.header__action {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 22px;
  position: relative;
  margin-left: 20px;
}
.header__action:first-child {
  margin-left: 0;
}
.header__action--profile {
  width: auto;
}
.header__action-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 36px;
  width: 100%;
}
.header__action-btn span {
  display: none;
}
.header__action-btn svg {
  width: 22px;
  height: auto;
  fill: var(--tertiary);
  transition: fill 0.5s ease;
}
.header__action-btn:hover svg {
  fill: #fff;
}
.header__btn {
  position: absolute;
  width: 22px;
  height: 22px;
  display: block;
  right: 15px;
  top: 24px;
}


/* input[type="number"] {
  width: 70px;
  padding: 4px 5px;
  border: 1px solid #bbb;
  border-radius: 3px;
  caret-color: #27292b;
} */

input[type="checkbox"]{
  appearance: auto !important;
}

input[type="range"] {
  /* -webkit-appearance: none; */
  margin-right: 15px;
  width: 200px;
  height: 7px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  background-image: linear-gradient(#7A33E1, #7A33E1);
  background-size: 70% 100%;
  background-repeat: no-repeat;
}

/* Input Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #7A33E1;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
  /* -webkit-appearance: none; */
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #7A33E1;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-ms-thumb {
  /* -webkit-appearance: none; */
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #7A33E1;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
  background: #7A33E1;
}

input[type="range"]::-moz-range-thumb:hover {
  background: #7A33E1;
}

input[type="range"]::-ms-thumb:hover {
  background: #7A33E1;
}

/* Input Track */
input[type=range]::-webkit-slider-runnable-track  {
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}

input[type=range]::-moz-range-track {
  /* -webkit-appearance: none; */
  box-shadow: none;
  border: none;
  background: transparent;
}

/* appearance issue css  */
input[type="range"]::-ms-track {
  /* -webkit-appearance: none; */
  box-shadow: none;
  border: none;
  background: transparent;
}
/* .slider_{
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;  
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}
.slider_::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%; 
  background: #7A33E1;
  cursor: pointer;
}

.slider_::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
} */
.header__btn span {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  right: 0;
  width: 22px;
  height: 2px;
  background-color: var(--tertiary);
  border-radius: 2px;
  transition: 0.5s ease;
  transition-property: width, background-color;
}
.header__btn span:first-child {
  top: 0;
}
.header__btn span:nth-child(2) {
  top: 10px;
  width: 16px;
}
.header__btn span:last-child {
  top: 20px;
  width: 10px;
}
.header__btn:hover span {
  background-color: var(--accent);
}
.header__btn--active span {
  background-color: var(--accent);
}
.header__btn--active span:nth-child(2) {
  width: 22px;
}
.header__btn--active span:last-child {
  width: 22px;
}
.header__search {
  position: absolute;
  left: 0;
  top: -71px;
  /* width: 100%; */
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: var(--primary);
  z-index: 1;
  padding: 0 15px;
  border-bottom: 1px solid var(--secondary);
  transition: top 0.5s ease;
  width: 414px;
}
.header__search input {
  width: 414px;
  height: 40px;
  background-color: var(--secondary);
  color: #fff;
  font-size: 16px;
  border-radius: 12px;
  border: none;
  padding: 0 45px 0 20px;
  font-family: var(--main-font);
  font-weight: 400;
}
.header__search input:focus {
  border-color: #fff;
}
.header__search button {
  position: absolute;
  right: 60px;
  top: 15px;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.header__search button svg {
  width: 20px;
  height: auto;
  fill: var(--tertiary);
  transition: 0.5s ease;
}
.header__search button:hover svg {
  fill: var(--accent);
}
.header__search button.close {
  right: 20px;
}
.header__search--active {
  top: 0;
}
.header__menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  background-color: var(--primary);
  z-index: 99;
  width: 280px;
  padding: 25px 25px 0;
  transform: translate3d(281px, 0, 0);
  transition: transform 0.5s ease;
  border-left: 1px solid var(--secondary);
}
.header__menu--active {
  transform: translate3d(0, 0, 0);
}
.header__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  position: relative;
}
.header__nav-item {
  margin-bottom: 20px;
  position: relative;
}
.header__nav-item:last-child {
  margin-bottom: 0;
}
.header__nav-link:hover{
border-bottom: 4px solid #7833d9;
animation: 0.5s;
}
.header__nav-link {
  border: 4px solid transparent;
  height: 100%;
  font-size: 16px;
  border-radius: 4px;
  color: var(--tertiary);
  line-height: 22px;
  height: 22px;
  padding-top: 12px;
  padding-bottom: 12px;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-weight: 400;
  font-family: var(--main-font);
}
.header__nav-link svg {
  fill: var(--tertiary);
  width: 14px;
  height: auto;
  transition: fill 0.5s ease;
  margin-left: 1px;
  margin-top: 2px;
}
.handleshownft{
  display: none;
}
.header__nav-link--menu svg {
  width: 20px;
  margin-top: 0;
  margin-left: 0;
}
.header__nav-link--active {
  color: var(--accent);
  cursor: default;
  font-weight: 500;
}
.header__nav-link--active:hover {
  color: var(--accent) !important;
}
.header__nav-link:hover,
.header__nav-link[aria-expanded="true"] {
  color: #fff;
}
.header__nav-link:hover svg,
.header__nav-link[aria-expanded="true"] svg {
  fill: var(--accent);
}
.header__nav-menu {
  display: block;
  position: absolute !important;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  top: 0;
  background-color: var(--primary);
  border-radius: 16px;
  padding: 0 20px;
  width: 200px;
  transition: opacity 0.5s ease;
  transform: translate3d(0px, 22px, 0px);
  margin-top: 10px;
  height: auto;
  border: 1px solid var(--secondary);
}
.header__nav-menu .header__nav-menu {
  margin-top: 5px;
  margin-left: 20px;
}
.header__nav-menu li {
  position: relative;
  margin-bottom: 15px;
}
.header__nav-menu li:first-child {
  padding-top: 20px;
}
.header__nav-menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 20px;
}
.header__nav-menu a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.5s ease;
  position: relative;
  font-family: var(--main-font);
}
.header__nav-menu a svg {
  fill: var(--tertiary);
  width: 14px;
  height: auto;
  transition: 0.5s ease;
  margin-left: 1px;
  margin-top: 2px;
}
.header__nav-menu a:hover,
.header__nav-menu a[aria-expanded="true"] {
  color: #fff;
}
.header__nav-menu a:hover svg,
.header__nav-menu a[aria-expanded="true"] svg {
  fill: var(--accent);
}
.header__nav-menu.show {
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
}
.header__profile-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  background-color: #27292B;
  padding: 0 6px 0 6px;
  height: 54px;
  border: 1px solid var(--secondary);
  border-radius: 16px;
}
.header__profile-btn--verified:after {
  content: '';
  position: absolute;
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  bottom: 5px;
  left: 30px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
.header__profile-btn img {
  display: none;
  width: 40px !important;
  height: 40px;
  border-radius: 12px;
  margin-right: 6px;
}
.header__profile-btn div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-left: 6px;
}
.header__profile-btn p {
  margin-bottom: 0;
  line-height: 22px;
  font-size: 18px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
}
.header__profile-btn span {
  font-size: 12px;
  color: var(--tertiary);
  line-height: 18px;
}
.header__profile-btn svg {
  fill: var(--tertiary);
  width: 16px;
  height: auto;
  transition: fill 0.5s ease;
  margin-left: 6px;
  margin-top: 2px;
}
.header__profile-btn:hover {
  border-color: var(--accent);
}
.header__profile-btn:hover svg,
.header__profile-btn[aria-expanded="true"] svg {
  fill: var(--accent);
}
.header__profile-menu {
  display: block;
  position: absolute !important;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  top: 0;
  background-color: var(--primary);
  border-radius: 16px;
  padding: 20px;
  min-width: 180px;
  transition: opacity 0.5s ease;
  transform: translate3d(0px, 54px, 0px) !important;
  height: auto;
  border: 1px solid var(--secondary);
  right: 0 !important;
  left: auto !important;
  margin-top: 2px;
}
.header__profile-menu li {
  margin-bottom: 15px;
  width: 100%;
}
.header__profile-menu li:last-child {
  margin-bottom: 0;
}
.header__profile-menu li:last-child {
  padding-top: 15px;
  border-top: 1px solid var(--secondary);
}
.header__profile-menu a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 400;
  transition: color 0.5s ease;
  position: relative;
  font-family: var(--main-font);
}
.header__profile-menu a svg {
  fill: #fff;
  width: 20px;
  height: auto;
  transition: fill 0.5s ease;
  margin-right: 10px;
}
.header__profile-menu a:hover {
  color: #fff;
}
.header__profile-menu a:hover svg {
  fill: var(--accent);
}
.header__profile-menu.show {
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
}
@media (min-width: 576px) {
  .header__action--signin {
    width: auto;
    padding-left: 22px;
  }
  .header__action--signin:before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 24px;
    background-color: var(--secondary);
    top: 50%;
    left: 0;
    margin-top: -11px;
  }
  .header__action--signin:hover a span,
  .header__action--signin:hover button span {
    color: #fff;
  }
  .header__action--signin:hover a svg,
  .header__action--signin:hover button svg {
    fill: var(--accent);
  }
  .header__action-btn span {
    display: block;
    white-space: nowrap;
    color: var(--tertiary);
    font-size: 14px;
    margin-right: 10px;
    font-family: var(--main-font);
    font-weight: 400;
    transition: color 0.5s ease;
  }
  .header__action-btn--signin {
    /* background-color: var(--card-background); */
    background-color: var(--accent);
    font-size: 18px;
    font-weight: 600;
    padding: 0 20px;
  }
  
  .header__action-btn--signin span {
    margin-right: 0;
    color: #fff;
  }
  .header__action-btn--signin svg {
    display: none;
  }
  .header__action-btn--signin:hover {
    color: var(--accent) !important;
    background-color: var(--card-background);
  }
  .header__action-btn--signin:hover span {
    color: var(--accent);
  }
  .header__content {
    padding: 0 30px;
  }
  .header__search {
    padding: 0 30px;
  }
  .header__search button {
    right: 75px;
  }
  /* .header__search button.close {
    right: 30px;
  } */
  .header__btn {
    right: 30px;
  }
  .header__profile-btn img {
    display: block;
  }
  .header__profile-btn--verified:after {
    display: block;
  }
}
@media (min-width: 768px) {
  .header__action {
    margin-left: 30px;
  }
  .header__action--signin {
    padding-left: 32px;
  }
  .header__actions {
    margin-right: 52px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    width: auto;
    margin-right: 50px;
  }
  .header__btn {
    display: none;
  }
  .header__content {
    padding: 0 50px;
  }
  .header__actions {
    margin-right: 0;
  }
  .header__action--search {
    display: none;
  }
  .header__action--signin {
    padding-left: 0;
  }
  .header__action--signin:before {
    display: none;
  }
  .header__action-btn svg {
    fill: var(--accent);
  }
  .header__action-btn--signin {
    height: 40px;
    min-width: 100px;
  }
  .header__search {
    position: relative;
    top: auto;
    left: auto;
    /* width: 970px; */
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .header__search input {
    padding: 0 40px 0 20px;
    width: 414px;
  }
  .header__search button {
    right: 20px;
  }
  /* .header__search button.close {
    display: none;
  } */
  .header__search--active {
    top: auto;
  }
  .header__menu {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
    padding: 0;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    background-color: transparent;
    transform: translate3d(0, 0, 0);
    border: none;
    transition: transform 0s ease;
  }
  .header__nav {
    flex-direction: row;
    align-items: center;
    width: auto;
  }
  .header__nav-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    height: 70px;
    margin-bottom: 0;
    margin-left: 30px;
  }
  .header__nav-menu {
    transform: translate3d(0px, 46px, 0px);
  }
  .header__nav-menu .header__nav-menu {
    transform: translate3d(0px, 22px, 0px);
  }
}
@media (min-width: 1440px) {
  .header__search {
    width: 414px;
  }
}
/*==============================
	Main
==============================*/
.main {
  position: relative;
  margin-top: 70px;
}
.main__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
}
.main__title h1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: var(--main-font);
  font-weight: bold;
  color: #fff;
  font-size: 30px;
  line-height: 140%;
  margin-bottom: 0;
  position: relative;
}
.main__title h1 b {
  font-weight: 500;
}
.main__title h1 a {
  color: #fff;
}
.main__title h1 a:hover {
  color: var(--accent);
}
.main__title h2 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: var(--main-font);
  font-weight: bold;
  color: #fff;
  font-size: 26px;
  line-height: 150%;
  margin-bottom: 0;
  position: relative;
}
.main__title h2 svg {
  width: 26px;
  height: auto;
  fill: var(--accent);
  margin-right: 10px;
}
.main__title h2 b {
  font-weight: 500;
}
.main__title h2 a {
  color: #fff;
}
.main__title h2 a:hover {
  color: var(--accent);
}
.main__title h3 {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
  line-height: 100%;
  position: relative;
}
.main__title p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: var(--tertiary);
  margin-top: 20px;
  margin-bottom: 0;
}
.main__title p b {
  font-weight: 600;
}
.main__title p a {
  color: var(--accent);
  text-decoration: underline;
}
.main__title p a:hover {
  text-decoration: none;
}
.main__title ol {
  padding-left: 0;
  list-style: none;
  counter-reset: li;
  margin-bottom: 0;
}
.main__title ol ol {
  padding-left: 15px;
  margin-top: 10px;
}
.main__title ol ol ol {
  margin-top: 10px;
  margin-bottom: 10px;
}
.main__title ol ol ol li {
  margin-top: 5px;
}
.main__title ol h4 {
  font-size: 16px;
  color: #fff;
  display: inline-block;
  margin-bottom: 0;
  margin-top: 20px;
  font-weight: 500;
  font-family: var(--main-font);
}
.main__title ol li {
  font-size: 16px;
  line-height: 24px;
  color: var(--tertiary);
  position: relative;
}
.main__title ol li b {
  font-weight: 600;
  color: var(--tertiary);
}
.main__title ol li a {
  color: #eb5757;
}
.main__title ol li a:hover {
  color: #eb5757;
  text-decoration: underline;
}
.main__title ol li:last-child {
  margin-bottom: 0;
}
.main__title ol li:before {
  counter-increment: li;
  content: counters(li, ".") ". ";
}
.main__title--page {
  margin-bottom: 0;
  margin-top: 24px;
}
.main__title--border-top {
  padding-top: 55px;
  border-top: 1px solid var(--secondary);
}
.price__range{
  font-weight: 600;
  font-size: 14px;
  color: var(--tertiary);
  margin-bottom: 5px;
}
._reset_filter{
  font-weight: 600;
  color: #7A33E1;
  font-size: 16px; 
  cursor: pointer;
}
._filter{
  font-weight: 600;
  color: #FFFFFF;
  font-size: 16px; 
}
.filter_resetfilter{
  margin-bottom: 25px;
  height: 50px;
  display: flex;
  align-items: center;
}
.filter_box_container{
  margin-top: 30px;
}
.main__title--center {
  justify-content: center;
  align-items: center;
}
.main__title--center h1,
.main__title--center h2 {
  text-align: left;
  justify-content: left;
}
.main__link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--tertiary);
  font-weight: 400;
  margin-bottom: 5px;
}
.main__link svg {
  width: 22px;
  height: auto;
  fill: var(--tertiary);
  margin-left: 5px;
  transition: fill 0.5s ease;
  margin-right: -3px;
}
.main__link:hover {
  color: #fff;
}
.main__link:hover svg {
  fill: var(--accent);
}
.main__carousel-wrap {
  position: relative;
}
.main__carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  position: relative;
}
.main__carousel .owl-dot {
  margin-right: 10px;
}
.main__carousel .owl-dot:last-child {
  margin-right: 0;
}
.main__carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: var(--tertiary);
  transition: 0.5s ease;
}
.main__carousel .owl-dot.active span {
  width: 20px;
  background-color: var(--accent);
}
.main__nav {
  display: none;
}
.main__filter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding: 20px 20px 10px;
  background-color: var(--primary);
  position: relative;
  border: 1px solid var(--secondary);
  border-radius: 16px;
}
.main__filter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.main__filter-search {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
}
.main__filter-search input {
  width: 100%;
  height: 40px;
  background-color: var(--secondary);
  color: #fff;
  font-size: 14px;
  border-radius: 12px;
  border: none;
  padding: 0 60px 0 20px;
  font-family: var(--main-font);
}
.main__filter-search input:focus {
  border-color: var(--secondary);
}
.main__filter-search button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.main__filter-search button svg {
  width: 20px;
  height: auto;
  fill: var(--tertiary);
  transition: 0.5s ease;
}
.main__filter-search button:hover svg {
  fill: var(--accent);
}
.main__load {
  width: 160px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 500;
  margin: 30px auto 0;
  transition: 0.5s ease;
  transition-property: color, background-color, border-color, box-shadow, transform, margin-top, height;
}
.main__load:hover {
  color: var(--accent);
  background-color: var(--secondary);
}
.main__load[aria-expanded="true"] {
  margin-top: 0;
  transform: scale(0);
  height: 1px;
}
.main__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}
.main__tabs li {
  margin-top: 15px;
  margin-right: 15px;
}
.main__tabs li:last-child {
  margin-right: 0;
}
.main__tabs a {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  color: var(--tertiary);
  font-size: 16px;
  background-color: var(--secondary);
  border-radius: 12px;
  padding: 0 15px;
  height: 32px;
}
.main__tabs a:hover {
  color: #fff;
}
.main__tabs a.active {
  color: #fff;
  background-color: var(--accent);
}
.main__video-bg {
  margin-top: 60px;
  padding-bottom: 60px;
}
.main__video {
  width: 160px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 500;
  margin-top: 30px;
}
.main__video:hover {
  color: var(--accent);
  background-color: var(--secondary);
}
.main__author {
  display: block;
  position: relative;
  width: 100%;
  height: 200px;
  background-color: var(--secondary);
  z-index: 1;
}
@media (min-width: 768px) {
  .main {
    padding: 0 0 70px;
  }
  .main__title {
    margin-top: 70px;
    margin-bottom: 0;
  }
  .main__title h1 {
    font-size: 36px;
  }
  .main__title h2 {
    font-size: 30px;
  }
  .main__title h2 svg {
    width: 30px;
  }
  .main__title p:last-child {
    margin-bottom: 10px;
  }
  .main__title--sidebar {
    margin-bottom: 10px;
  }
  .main__title--border-top {
    padding-top: 65px;
  }
  .main__title--page {
    margin-top: 60px;
  }
  .main__carousel .owl-dots {
    margin-top: 30px;
  }
  .main__filter {
    padding: 0 20px;
    flex-direction: row;
    align-items: center;
    margin-top: 30px;
    height: 70px;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 220px;
    margin-right: 30px;
  }
  .main__filter-search input {
    width: 220px;
  }
  .main__load {
    margin: 40px auto 0;
  }
  .main__tabs li {
    margin-top: 20px;
    margin-right: 20px;
  }
  .main__tabs li:last-child {
    margin-right: 0;
  }
  .main__video-bg {
    margin-top: 70px;
    padding-bottom: 70px;
  }
  .main__video {
    margin-top: 40px;
  }
  .main__author {
    height: 300px;
  }
}
@media (min-width: 992px) {
  .main__title--sidebar {
    margin-top: 30px;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 248px;
  }
  .main__filter-search input {
    width: 248px;
  }
}
@media (min-width: 1200px) {
  .main__nav {
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    right: 0;
    top: -35px;
    z-index: 2;
  }
  .main__nav svg {
    width: 30px;
    height: auto;
    fill: var(--tertiary);
    transition: fill 0.5s ease;
  }
  .main__nav:hover svg {
    fill: var(--accent);
  }
  .main__nav--prev {
    right: 25px;
  }
  .main__nav--next {
    right: -5px;
  }
  .main__nav--hero {
    top: auto;
    bottom: 25px;
  }
  .main__nav--hero svg {
    fill: #fff;
  }
  .main__nav--hero.main__nav--prev {
    right: 95px;
  }
  .main__nav--hero.main__nav--next {
    right: 65px;
  }
  .main__filter-search {
    margin-bottom: 0;
    width: 220px;
  }
  .main__filter-search input {
    width: 220px;
  }
  .main__title--create {
    margin-top: 30px;
  }
}
@media (min-width: 1440px) {
  .main__filter-search {
    margin-bottom: 0;
    width: 260px;
  }
  .main__filter-search input {
    width: 260px;
  }
}
/*==============================
	Breadcrumb
==============================*/
.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 25px;
}
.breadcrumb__item {
  font-size: 14px;
  color: var(--tertiary);
  transition: 0.5s ease;
  position: relative;
  margin-right: 34px;
}
.breadcrumb__item:before {
  content: '';
  position: absolute;
  left: 100%;
  top: 1px;
  bottom: 0;
  width: 34px;
  background: url("../img/breadcrumb.svg") no-repeat center/16px auto;
}
.breadcrumb__item:hover {
  color: var(--tertiary);
}
.breadcrumb__item:last-child {
  margin-right: 0;
}
.breadcrumb__item:last-child:before {
  display: none;
}
.breadcrumb__item--active {
  cursor: default;
  margin-right: 0;
}
.breadcrumb__item--active:before {
  display: none;
}
.breadcrumb__item--active:hover {
  color: var(--tertiary);
}
.breadcrumb a {
  color: var(--tertiary);
}
.breadcrumb a:hover {
  color: var(--accent);
}
/*==============================
	Paginator
==============================*/
.paginator {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  width: 100%;
  height: 50px;
  border-radius: 16px;
  background-color: var(--primary);
  border: 1px solid var(--secondary);
}
.paginator__pages {
  display: none;
}
.paginator__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.paginator__list li {
  margin-right: 15px;
}
.paginator__list li:last-child {
  margin-right: 0;
}
.paginator__list li.active a {
  color: var(--accent);
  cursor: default;
  font-weight: 500;
}
.paginator__list a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background-color: var(--secondary);
  font-size: 14px;
  color: var(--tertiary);
  font-weight: 400;
  font-family: var(--main-font);
}
.paginator__list a svg {
  width: 22px;
  height: auto;
  fill: var(--tertiary);
  transition: fill 0.5s ease;
}
.paginator__list a:hover {
  color: var(--accent);
}
.paginator__list a:hover svg {
  fill: var(--accent);
}
@media (min-width: 768px) {
  .paginator {
    padding: 0 20px;
    margin: 40px auto 0;
    height: 60px;
    justify-content: space-between;
  }
  .paginator__pages {
    display: block;
    font-size: 14px;
    color: var(--tertiary);
    font-weight: 400;
    font-family: var(--main-font);
  }
}
/*==============================
	Filter
==============================*/
.filter-wrap {
  margin-top: 20px;
  height: 100%;
}
.filter-wrap__btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background-color: var(--secondary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 500;
}
.filter-wrap__btn:hover {
  color: #fff;
  background-color: var(--secondary);
}
@media (min-width: 768px) {
  .filter-wrap {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .filter-wrap {
    margin-top: 0;
  }
  .filter-wrap__btn {
    display: none;
  }
  .filter-wrap__content {
    display: block !important;
    position: relative;
    height: 100%;
  }
}
.filter {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 20px;
}
.filter__title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: auto;
  width: 100%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 25px;
}
.filter__title button {
  font-size: 12px;
  font-weight: 400;
  color: var(--accent);
}
.filter__title button:hover {
  color: #eb5757;
}
.filter__group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.filter__group:last-child {
  margin-bottom: 0;
}
.filter__label {
  line-height: 100%;
  font-weight: 400;
  font-size: 14px;
  color: var(--tertiary);
  margin-bottom: 15px;
  font-family: var(--main-font);
}
.filter__label b {
  font-weight: 500;
  color: #fff;
}
.filter__select-wrap {
  position: relative;
  width: 100%;
}
.filter__select {
  background: url("../img/arrow2.svg") no-repeat center right 20px var(--secondary);
  background-size: 18px auto;
  border: 1px solid transparent;
  border-radius: 12px;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--main-font);
}
.filter__select:focus {
  border-color: var(--accent);
}
.filter__input {
  background-color: var(--secondary);
  border: 1px solid transparent;
  border-radius: 12px;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 14px;
  width: 100%;
  padding: 0 20px;
  font-family: var(--main-font);
}
.filter__input:focus {
  border-color: var(--accent);
}
.filter__checkboxes {
  position: relative;
  margin-top: 5px;
}
.filter__checkboxes:first-child {
  margin-top: 0;
}
.filter__checkboxes li {
  position: relative;
  margin-bottom: 15px;
}
.filter__checkboxes li:last-child {
  margin-bottom: 0;
}
.filter__checkboxes input:not(:checked),
.filter__checkboxes input:checked {
  position: absolute;
  left: -9999px;
}
.filter__checkboxes input:not(:checked) + label,
.filter__checkboxes input:checked + label {
  font-size: 14px;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  padding-left: 36px;
  line-height: 24px;
  font-family: var(--main-font);
  margin: 0;
  transition: color 0.5s ease;
}
.filter__checkboxes input:not(:checked) + label a,
.filter__checkboxes input:checked + label a {
  color: var(--accent);
}
.filter__checkboxes input:not(:checked) + label a:hover,
.filter__checkboxes input:checked + label a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.filter__checkboxes input:not(:checked) + label {
  color: var(--tertiary);
}
.filter__checkboxes input:checked + label {
  color: #fff;
}
.filter__checkboxes input:not(:checked) + label:before,
.filter__checkboxes input:checked + label:before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  background-color: var(--secondary);
  border-radius: 8px;
}
.filter__checkboxes input:not(:checked) + label:after,
.filter__checkboxes input:checked + label:after {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  transition: 0.5s ease;
  background-color: var(--accent);
  border-radius: 10px;
  border: 6px solid var(--secondary);
}
.filter__checkboxes input:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.filter__checkboxes input:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.filter__checkboxes label::-moz-selection {
  background: transparent;
  color: var(--tertiary);
}
.filter__checkboxes label::selection {
  background: transparent;
  color: var(--tertiary);
}
.filter__btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 500;
}
.filter__btn:hover {
  color: var(--accent);
  background-color: var(--secondary);
}
.audio__tag__nft{
    width: 100%;
    height: 40px;
    object-fit: cover;
    margin-top: -5px;
    }
@media (min-width: 1200px) {
  .filter {
    margin-top: 30px;
    padding-left: 10px;
  }
  .filter--sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-bottom: 120px;
  }
}
/*==============================
	Home
==============================*/
.home {
  background: url("../img/blurryEffectForHome.svg") no-repeat bottom center/cover, #000000;
  border-bottom: 1px solid var(--secondary);
  min-height: 650px;
}
.home--hero {
  background: transparent;
  border-bottom: none;
}
.home__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  /* min-height: 400px; */
  width: 100%;
  /* padding: 48px 0; */
  max-height: 90vh;
}
.main__title .tabs{
  font-family:arial;
  margin:0 auto;
  width:70%;
  text-align:center;
  margin-top:15vh;
}

.tab-buttons button{
  /* margin-right:15px; */
  font-size:20px;
  font-weight: 700;
  font-family: var(--main-font);
  background:#333536;
  border:none;
  outline:none;
  padding:10px 50px ;
  cursor:pointer;
  color:#fff;
  transition:all ease-in-out .2s;
  /* border-bottom:2px solid transparent; */
  
}
.trending__top__container{
  background-color: #27292b;
  border-radius: 8px;
  padding: 2rem 1rem;
}

.main__title .active_home_tabs{
  background-color: #7833d9;
  color:#fff;
  border-radius: 8px;
}
.main__title .tab-buttons{
  background-color: #333536;
  display: flex;
    padding: 8px;
    border-radius: 8px;
    margin-bottom:50px;
    max-width: 340px;
}
.home__content--center {
  align-items: center;
}
.home__content--center .home__title {
  text-align: center;
}
.home__content--center .home__text {
  text-align: center;
}
.home__content--center .home__btns {
  justify-content: center;
}
.home__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  font-size: 30px;
  font-family: 'Prompt', sans-serif;
  margin-bottom: 0;
  line-height: 140%;
}
.trending__top__container small{
color: #BDBDBD;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
}
.top__trending__card{
  background-color: #333536;
  color:#fff;
  border-radius: 8px;
  padding: 12px;
  margin: 6px auto;
  font-size: 18px;
  font-weight: 500;
}
[data-rk] .ju367v9c{
  background-color: #7833d9 !important;
}
.home__title b {
  font-weight: bold;
}
.home__title span {
  color: var(--accent);
}
.home__text {
  position: relative;
  z-index: 2;
  color: var(--tertiary);
  font-size: 16px;
  font-family: var(--main-font);
  line-height: 28px;
  margin-bottom: 0;
  margin-top: 15px;
}
.home__btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 12px;
}
.home__btn {
  width: auto;
  min-width: 140px;
  height: 50px;
  border-radius: 16px;
  background-color: var(--secondary);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 2;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0 20px;
  margin-top: 20px;
  margin-right: 20px;
}
.home__btn2 {
  width: auto;
  min-width: 140px;
  height: 50px;
  border-radius: 16px;
  background-color: var(--secondary);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 2;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0 20px;
  margin-top: 0px;
  margin-right: 20px;
}
.home__btn svg {
  fill: #fff;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.home__btn:last-child {
  margin-right: 0;
}
.home__btn:hover {
  color: var(--accent);
}
.home__btn--clr {
  background-color: var(--accent);
  color: #fff;
}
.home__btn--clr:hover {
  background-color: var(--secondary);
  color: var(--accent);
}
@media (max-width: 768px) {
  .home__content {
    padding: 0px;
    margin-top: 0px;
    display: block;
    max-height: unset;
  }
  .left-main{
    margin-top: 2em !important;
  }
  ._top_span{
    margin-top: 30px;
  }
  .home__title {
    font-size: 36px;
  }
  .home__btn {
    margin-top: 30px;
    margin-right: 20px;
    min-width: 160px;
    padding: 0 25px;
    display: flex;
  }
  .home__btn2 {
    margin-top: 0px;
    margin-right: 0px;
    min-width: 160px;
    padding: 0 12px;
    display: flex;
    font-size: 16px;
  }
  
  .home__btn:last-child {
    margin-right: 0;
  }
  .home__content .ShowcaseCard .card{
    margin-top: 4em;
    justify-content: space-evenly;
  }
  .main .card{
    justify-content: space-evenly;
    align-items: center;
    margin-top: 35px !important;
  }
  .apply_filter{
    width: 100% !important;
  }
}
@media (min-width: 1200px) {
  .home__title {
    font-size: 42px;
  }
  .home__btn {
    margin-top: 0px;
  }
}
/*==============================
	Hero
==============================*/
.hero {
  display: block;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.hero .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 25px;
  position: relative;
}
.hero .owl-dot {
  margin-right: 10px;
}
.hero .owl-dot:last-child {
  margin-right: 0;
}
.hero .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: var(--tertiary);
  transition: 0.5s ease;
}
.hero .owl-dot.active span {
  width: 20px;
  background-color: var(--accent);
}
.hero .owl-stage-outer {
  border-radius: 16px;
}
.hero__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 360px;
  border-radius: 16px;
  overflow: hidden;
  padding: 40px 20px;
  position: relative;
}
.hero__slide:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(30deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.hero__title {
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: 400;
  font-size: 30px;
  font-family: var(--main-font);
  margin-bottom: 0;
  line-height: 140%;
}
.hero__title b {
  font-weight: 500;
}
.hero__title span {
  color: var(--accent);
}
.hero__text {
  position: relative;
  z-index: 2;
  color: var(--tertiary);
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 0;
  margin-top: 15px;
}
.hero__btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 10px;
}
.hero__btn {
  width: auto;
  min-width: 140px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--secondary);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: 500;
  padding: 0 20px;
  margin-top: 20px;
  margin-right: 20px;
}
.hero__btn svg {
  fill: #fff;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.hero__btn:last-child {
  margin-right: 0;
}
.hero__btn:hover {
  color: var(--accent);
}
.hero__btn--clr {
  background-color: var(--accent);
  color: #fff;
}
.hero__btn--clr:hover {
  background-color: var(--secondary);
  color: var(--accent);
}
@media (min-width: 576px) {
  .hero__slide {
    min-height: 400px;
  }
}
@media (min-width: 768px) {
  .hero .owl-dots {
    margin-top: 30px;
  }
  .hero__slide {
    padding: 40px;
    padding-right: 10%;
    min-height: 460px;
  }
  .hero__title {
    font-size: 36px;
  }
  .hero__btn {
    margin-top: 30px;
    margin-right: 30px;
    min-width: 160px;
    padding: 0 25px;
  }
  .hero__btn:last-child {
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .hero__slide {
    padding-right: 25%;
  }
}
@media (min-width: 1200px) {
  .hero .owl-dots {
    justify-content: flex-end;
    margin-top: -44px;
    margin-bottom: 0;
    padding-right: 124px;
    z-index: 2;
    position: absolute;
  }
  .hero .owl-dot span {
    background-color: rgba(255,255,255,0.6);
  }
  .hero .owl-dot.active span {
    background-color: #fff;
  }
  .hero__title {
    font-size: 42px;
  }
  .hero__btn {
    margin-top: 40px;
  }
  .hero__slide {
    padding: 60px;
    padding-right: 50%;
  }
}
/*==============================
	Сard
==============================*/
.card {
  margin-top: 30px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 8px;
  border: 1px solid var(--secondary);
  border-radius: 10px;
  background-color: var(--card-background);
  transition: transform 350ms;
}
.card:hover{
  transform: translateY(-20px);
  border: 1px solid var(--card-hover);
  box-shadow: 0px 42px 17px -28px var(--card-hover);
}
.card__cover {
  width: 100%;
  padding: 2px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  background: transparent;
  height: 300px;
}
.card__cover__for__no__img{
  background: #1a1a1a;
  /* height: 300px; */
  height: 180px;
  width: 100%;
}
.card__cover img {
  width: 100%;
}
.card__cover--carousel {
  display: block;
}
.card__cover--carousel img {
  border-radius: 16px;
}
.card__cover--carousel .owl-dots {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  left: 0;
  bottom: 20px;
  position: absolute;
  padding: 0 20px;
}
.card__cover--carousel .owl-dot {
  margin-right: 10px;
}
.card__cover--carousel .owl-dot:last-child {
  margin-right: 0;
}
.card__cover--carousel .owl-dot span {
  display: block;
  height: 4px;
  width: 10px;
  border-radius: 2px;
  background-color: #fff;
  transition: background-color 0.5s ease;
}
.card__cover--carousel .owl-dot.active span {
  background-color: var(--accent);
}
.card__cover--video svg {
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  fill: var(--tertiary);
  width: 20px;
  height: auto;
  pointer-events: none;
}
.card__title {
  display: block;
  width: 94%;
  margin: auto;
  color: var(--card-title);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: break-word;
  font-family: var(--main-font);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 2px;
  transition: color 0.5s ease;
}
.card__title a {
  color: var(--card-title);
}
.card__title a:hover {
  color: var(--accent);
}
.card__title:hover {
  color: var(--accent);
}
.card__author {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}
.card__author--verified:after {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  bottom: -2px;
  left: 24px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
.card__author img {
  display: block;
  overflow: hidden;
  width: 40px !important;
  height: 40px;
  border-radius: 10px;
  margin-right: 10px;
}
.card__author a {
  font-family: var(--main-font);
  font-weight: 500;
  color: var(--tertiary);
  font-size: 16px;
}
.card__author a:hover {
  color: var(--accent);
}
.card__info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* border-top: 0.2px solid #7833d9; */
  background-color: #212325;
  border-radius: 16px;
  padding-top: 20px;
  margin-top: -10px;
  z-index: 0;
  padding-bottom: 7px;
  padding-left: 8px;
  padding-right: 8px;
}
.price__info_auction {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-top: 15px;
}
.card__body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  padding-top: 10px;
  margin-top: 10px;
}
.card__price {
  display: inline-flex;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: 5px;
  width: 94%;
  margin: auto;
  /* margin-left: 2%;
  margin-right: 2%; */
  background-color: #333536;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  align-items: center;
}
.card__price_auction-web {
  display: inline-flex;
  border: 1px solid transparent;
  border-radius: 16px;
  flex-direction: row;
  padding: 5px;
  width: 100%;
  background-color: #333536;
  /* flex-direction: column; */
  /* justify-content: center; */
  z-index: 1;
  /* align-items: center; */
}
.card__price_auction-mobile{
  display: none;
}
.card__price_auction-web span:first-child {
  font-size: 14px;
  line-height: 100%;
  color: var(--card-price);
  font-family: var(--main-font);
}
.card__price_auction-web span:last-child {
  font-size: 24px;
  line-height: 100%;
  color: var(--card-price);
  font-weight: bolder;
  margin-top: 10px;
}
.card__price span:first-child {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: var(--tertiary);
  font-family: var(--main-font);
}
.card__price span:last-child {
  font-size: 24px;
  line-height: 100%;
  color: var(--card-price);
  font-weight: bolder;
  margin-top: 10px;
}
.card__likes {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.card__likes svg {
  width: 24px;
  height: auto;
  transition: fill 0.5s ease;
  fill: var(--tertiary);
}
.card__likes span {
  font-size: 18px;
  line-height: 18px;
  color: var(--tertiary);
  margin-left: 5px;
  transition: color 0.5s ease;
}
.card__likes span:empty {
  margin-left: 0;
}
.card__likes:hover svg {
  fill: #F2135D;
}
.card__likes--active svg {
  fill: #F2135D;
}
.card__likes--active span {
  color: #fff;
}
.card__likes--active:hover svg {
  fill: var(--tertiary);
}
.card__likes--active:hover span {
  color: var(--tertiary);
}
.card__time {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 32px;
  border-radius: 4px;
  position: relative;
  margin-top: 10px;
  bottom: 0;
  left: 0;
  border: 2px solid var(--accent);
  color: #fff;
  font-size: 12px;
  background-color: var(--secondary);
  font-weight: 400;
  padding: 0 12px;
}
.card__time svg {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 16px;
  height: auto;
  margin-right: 6px;
  fill: var(--accent);
  margin-left: -3px;
}
.card__time--clock {
  border-color: #7833d9;
}
.card__time--clock svg {
  fill: #7833d9;
}

/* Card Loaders */

/* Card Loaders End */
@media (min-width: 768px) {
  .card {
    margin-top: 24px;
  }

}
/*==============================
	Post
==============================*/
.post {
  position: relative;
  margin-top: 20px;
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
  background-color: var(--secondary);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: calc(100% - 20px);
}
.post__img {
  display: block;
  width: 100%;
  position: relative;
  background-color: #000;
}
.post__img:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  opacity: 0.1;
  transition: opacity 0.5s ease;
  z-index: 2;
}
.post__img img {
  width: 100%;
  position: relative;
  z-index: 1;
}
.post__img:hover:before {
  opacity: 0.3;
}
.post__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 20px;
  background-color: var(--secondary);
  border-radius: 0 0 16px 16px;
  height: 100%;
  position: relative;
}
.post__category {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 28px;
  min-width: 70px;
  width: auto;
  color: #fff;
  font-size: 13px;
  background-color: var(--accent);
  border-radius: 10px;
  padding: 0 15px;
  margin-bottom: 20px;
  position: absolute;
  bottom: 100%;
  left: 20px;
  z-index: 2;
}
.post__category:hover {
  color: #fff;
  background-color: var(--secondary);
}
.post__title {
  display: block;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 24px;
  line-height: 140%;
  color: #fff;
  margin-bottom: 20px;
  overflow: hidden;
  width: 100%;
}
.post__title a {
  color: #fff;
  display: block;
}
.post__title a:hover {
  color: var(--accent);
}
.post__meta {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 20px;
}
.post__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: var(--tertiary);
}
.post__date svg {
  fill: #fff;
  width: 16px;
  height: auto;
  margin-right: 5px;
}
.post__comments {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: var(--tertiary);
}
.post__comments svg {
  fill: #fff;
  width: 16px;
  height: auto;
  margin-right: 5px;
}
@media (min-width: 768px) {
  .post {
    margin-top: 30px;
    height: calc(100% - 30px);
  }
}
/*==============================
	Asset
==============================*/
.asset__item {
  /* display: flex;
  flex-direction: row; */
  /* justify-content: center;
  align-items: center; */
  /* position: relative; */
  /* padding: 20px 20px 70px 20px; */
  padding: 0px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  /* margin-top: 20px; */
  /* border: 1px solid var(--secondary); */

}
.asset__item img {
  /* width: auto; */
  width: inherit;
  /* max-width: 100%; */
  border-radius: 16px;
  /* height: 100%; */
  height: auto;
  /* height: inherit; */
}
.asset__info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 20px;
}
.asset__desc {
  display: block;
  width: 100%;
}
.asset__desc h2 {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}
.asset__desc p {
  font-size: 16px;
  line-height: 26px;
  color: var(--tertiary);
  margin-bottom: 15px;
  display: block;
  width: 100%;
}
.asset__desc p:last-child {
  margin-bottom: 0;
}
.asset__authors {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid var(--secondary);
}
.asset__authors--tab {
  padding-top: 0;
  border-top: none;
}
.asset__authors li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 15px;
}
.asset__authors li span {
  font-size: 13px;
  color: var(--tertiary);
  margin-bottom: 12px;
  line-height: 100%;
}
.asset__authors li p {
  font-size: 14px;
  line-height: 100%;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 400;
  margin-bottom: 0;
}
.asset__authors li:last-child {
  margin-bottom: 0;
}
.asset__author {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
}
.asset__author--verified:after {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  bottom: -2px;
  left: 28px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
.asset__author img {
  display: block;
  overflow: hidden;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 8px;
}
.asset__author a {
  font-family: var(--main-font);
  font-weight: 300;
  color: var(--tertiary);
  font-size: 18px;
}
.top_creators{
  border-radius: 12px 12px 0px 0px !important; 
  height: 184px !important;
  object-fit: cover;
  width: 100% !important;
  margin-right: 0px !important;
}
.asset__author a:hover {
  color: var(--accent);
}
.asset__actions--scroll {
  height: auto;
  overflow: hidden !important;
  /* border: 2px solid white; */
  margin-top: 20px;
}
.asset__actions--scroll .asset__action:first-child {
  margin-top: 0;
}
.asset__action {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  position: relative;
  margin-top: 20px;
}
.asset__action:last-child {
  margin-bottom: 3px;
}
.asset__action--verified:after {
  content: '';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  bottom: -2px;
  left: 28px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
/* .asset__action img {
  display: block;
  overflow: hidden;
  width: 44px !important;
  height: 44px;
  border-radius: 50%;
  margin-right: 10px;
} */
.asset__action p {
  font-size: 14px;
  line-height: 22px;
  color: var(--tertiary);
  font-family: var(--main-font);
  font-weight: 400;
  margin-bottom: 0;
}
.asset__action p a {
  color: #fff;
  font-weight: 500;
}
.asset__action p a:hover {
  color: var(--accent);
}
.asset__action p b {
  font-weight: 500;
  color: #fff;
}
.asset__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 30px;
  border-bottom: 1px solid var(--secondary);
}
.asset__tabs li {
  margin-right: 30px;
}
.asset__tabs li:last-child {
  margin-right: 0;
}
.asset__tabs a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  height: 36px;
  color: var(--tertiary);
  position: relative;
  font-size: 14px;
  font-family: var(--main-font);
  white-space: nowrap;
}
.asset__tabs a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-color: var(--accent);
  transition: 0.5s ease;
  transform: translateY(2px);
  opacity: 0;
  border-radius: 2px 2px 0 0;
}
.asset__tabs a:hover {
  color: #fff;
}
.asset__tabs a.active {
  color: #fff;
  cursor: default;
}
.asset__tabs a.active:before {
  opacity: 1;
  transform: translateY(0);
}
.asset__btns {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid var(--secondary);
}
.asset__btn {
  width: calc(50% - 10px);
  height: 50px;
  border-radius: 16px;
  background-color: var(--secondary);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight:700;
  position: relative;
  z-index: 2;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: 500;
  padding: 0 20px;
  margin-top: 20px;
  
  margin-right: 20px;
}
.asset__btn svg {
  fill: #fff;
  width: 28px;
  height: auto;
  margin-right: 7px;
}
.asset__btn:last-child {
  margin-right: 0;
}
.asset__btn:hover {
  color: var(--accent);
}
.asset__btn--clr {
  background-color: var(--accent);
  color: #fff;
  font-weight: bold;
  border-radius: 16px;
}
.asset__btn--clr:hover {
  background-color: var(--secondary);
  color: var(--accent);
}
.asset__btn--full {
  width: 100%;
}
.asset__likes {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  bottom: 20px;
  right: 20px;
  height: 28px;
  z-index: 1;
}
.asset__likes svg {
  width: 18px;
  height: auto;
  transition: fill 0.5s ease;
  fill: var(--tertiary);
}
.asset__likes span {
  font-size: 13px;
  line-height: 18px;
  color: var(--tertiary);
  margin-left: 5px;
  transition: color 0.5s ease;
}
.asset__likes span:empty {
  margin-left: 0;
}
.asset__likes:hover svg {
  fill: #eb5757;
}
.asset__likes--active svg {
  fill: #eb5757;
}
.asset__likes--active span {
  color: #fff;
}
.asset__likes--active:hover svg {
  fill: var(--tertiary);
}
.asset__likes--active:hover span {
  color: var(--tertiary);
}
.asset__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  border-top: 1px solid var(--secondary);
  padding-top: 20px;
}
.asset__price {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(50% - 10px);
  padding-left: 20px;
}
.asset__price span:first-child {
  font-size: 14px;
  line-height: 100%;
  color: var(--tertiary);
  line-height: 20px;
}
.asset__price span:last-child {
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  margin-top: 10px;
}
.asset__timer {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  position: relative;
  padding-right: 20px;
  border-right: 1px solid var(--secondary);
}
.asset__timer span {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 14px;
  height: 20px;
  line-height: 100%;
  color: var(--tertiary);
}
.asset__timer span svg {
  width: 20px;
  height: auto;
  margin-right: 5px;
  fill: var(--accent);
}
.asset__clock {
  font-size: 18px;
  line-height: 100%;
  color: #fff;
  margin-top: 10px;
}
@media (min-width: 576px) {
  .asset__authors {
    flex-direction: row;
  }
  .asset__authors li {
    margin-bottom: 0;
    margin-right: 60px;
  }
  .asset__authors li:last-child {
    margin-right: 0;
  }
  .asset__authors--tab {
    flex-direction: column;
  }
  .asset__authors--tab li {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .asset__authors--tab li:last-child {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .asset__item {
    margin-top: 30px;
    height: auto;
    min-height: calc(100% - 30px);
  }
  .asset__info {
    margin-top: 30px;
  }
}
/*==============================
	Sellers-list
==============================*/
.sellers-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.sellers-list li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}
.sellers-list__number {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-right: 15px;
  color: var(--tertiary);
  font-size: 14px;
}
.sellers-list__author {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: calc(100% - 40px);
  position: relative;
  height: 60px;
  padding-left: 75px;
}
.sellers-list__author--verified:after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  bottom: -2px;
  left: 42px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
.sellers-list__author img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: hidden;
  width: 60px !important;
  height: 60px;
  border-radius: 16px;
}
.sellers-list__author a {
  font-family: var(--main-font);
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  margin-bottom: 5px;
}
.sellers-list__author a:hover {
  color: var(--accent);
}
.sellers-list__author span {
  color: var(--tertiary);
  font-size: 14px;
  font-weight: 400;
}
@media (min-width: 576px) {
  .sellers-list {
    height: 640px;
  }
  .sellers-list li {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .sellers-list {
    height: 450px;
  }
  .sellers-list li {
    width: 33%;
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .sellers-list {
    height: 300px;
  }
  .sellers-list li {
    width: 20%;
    margin-top: 40px;
  }
}
/*==============================
	Activity
==============================*/
.activity {
  margin-top: 20px;
  border-radius: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--secondary);
}
.activity__cover {
  width: 100px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.activity__cover img {
  width: 100%;
}
.activity__content {
  width: calc(100% - 120px);
  margin-left: 20px;
}
.activity__title {
  display: block;
  width: 100%;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: break-word;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 15px;
  transition: color 0.5s ease;
}
.activity__title a {
  color: #fff;
}
.activity__title a:hover {
  color: var(--accent);
}
.activity__title:hover {
  color: var(--accent);
}
.activity__text {
  font-size: 16px;
  line-height: 26px;
  color: var(--tertiary);
  font-family: var(--main-font);
  font-weight: 400;
  margin-bottom: 15px;
}
.activity__text a {
  color: #fff;
  font-weight: 500;
}
.activity__text a:hover {
  color: var(--accent);
}
.activity__text b {
  font-weight: 500;
  color: #fff;
}
.activity__time {
  font-size: 14px;
  color: var(--tertiary);
}
@media (min-width: 576px) {
  .activity__cover {
    width: 120px;
  }
  .activity__content {
    width: calc(100% - 140px);
  }
}
@media (min-width: 768px) {
  .activity {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .activity__cover {
    width: 140px;
  }
  .activity__content {
    width: calc(100% - 160px);
  }
}
/*==============================
	Partners
==============================*/
.partners {
  margin-top: 60px;
}
.partners__img img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  opacity: 0.7;
  transition: 0.5s;
}
.partners__img:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
  opacity: 1;
}
@media (min-width: 768px) {
  .partners {
    margin-top: 70px;
  }
}
/*==============================
	Feature
==============================*/
.feature {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--secondary);
}
.feature__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: rgba(97,100,255,0.15);
}
.feature__icon svg {
  fill: var(--accent);
  width: auto;
  height: 26px;
}
.feature__icon--purple {
  background-color: rgba(128,81,212,0.15);
}
.feature__icon--purple svg {
  fill: #8051d4;
}
.feature__icon--red {
  background-color: rgba(235,87,87,0.15);
}
.feature__icon--red svg {
  fill: #eb5757;
}
.feature__icon--blue {
  background-color: rgba(47,128,237,0.15);
}
.feature__icon--blue svg {
  fill: #2f80ed;
}
.feature__icon--green {
  background-color: rgba(37,165,106,0.15);
}
.feature__icon--green svg {
  fill: #25a56a;
}
.feature__title {
  font-family: var(--main-font);
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  margin-left: 15px;
  width: calc(100% - 65px);
}
.feature__text {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: #FFFFFF;
  font-family: var(--main-font);
  margin-bottom: 0;
  margin-top: 15px;
}
.feature__text a {
  color: var(--accent);
  text-decoration: underline;
}
.feature__text a:hover {
  color: var(--accent);
  text-decoration: none;
}
.feature--last {
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .feature {
    margin-top: 30px;
    padding-bottom: 0;
    border-bottom: none;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .feature {
    margin-top: 40px;
  }
}
/*==============================
	Step
==============================*/
.step {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--primary);
  border: 1px solid var(--secondary);
}
.step__number {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  font-family: var(--main-font);
  line-height: 100%;
  font-weight: 500;
  font-size: 22px;
  color: var(--accent);
  background-color: rgba(97,100,255,0.15);
}
.step__title {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  margin-left: 15px;
  width: calc(100% - 65px);
}
.step__text {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 26px;
  color: var(--tertiary);
  margin-bottom: 0;
  margin-top: 15px;
}
.step__text a {
  color: var(--accent);
  text-decoration: underline;
}
.step__text a:hover {
  color: var(--accent);
  text-decoration: none;
}
@media (min-width: 768px) {
  .step {
    margin-top: 30px;
  }
}
/*==============================
	Knowledge
==============================*/
.knowledge {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--primary);
  border: 1px solid var(--secondary);
}
.knowledge__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  width: 100%;
}
.knowledge__title svg {
  fill: var(--accent);
  width: 24px;
  height: auto;
  margin-right: 10px;
}
.knowledge__list {
  width: 100%;
}
.knowledge__list li {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
}
.knowledge__list li:last-child {
  margin-bottom: 0;
}
.knowledge__list li:before {
  content: '';
  position: absolute;
  display: block;
  height: 1px;
  bottom: 6px;
  left: 0;
  right: 0;
  border-top: 1px dotted rgba(189,189,189,0.4);
  z-index: 1;
}
.knowledge__list span {
  color: var(--tertiary);
  background-color: var(--primary);
  position: relative;
  z-index: 2;
  font-size: 14px;
  display: block;
  padding-left: 4px;
}
.knowledge__list a {
  color: #fff;
  background-color: var(--primary);
  position: relative;
  z-index: 2;
  display: block;
  padding-right: 4px;
}
.knowledge__list a:hover {
  color: var(--accent);
}
@media (min-width: 768px) {
  .knowledge {
    margin-top: 30px;
  }
}
/*==============================
	FAQ
==============================*/
.faq {
  display: block;
  margin-top: 50px;
}
.faq__title {
  font-family: var(--main-font);
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 15px;
}
.faq__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 20px;
  width: 100%;
  color: var(--tertiary);
  padding-right: 20px;
}
.faq__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .faq {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .faq {
    padding: 0 20px;
  }
}
/*==============================
	Сollection
==============================*/
.collection {
  margin-top: 20px;
  border-radius: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.collection__cover {
  width: 100%;
  height: 110px;
  background-color: var(--secondary);
}
.collection__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0 20px 20px;
  background-color: var(--primary);
  border-radius: 0 0 16px 16px;
  border: 1px solid var(--secondary);
}
.collection__avatar {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-top: -30px;
  margin-bottom: 10px;
  position: relative;
}
.collection__avatar img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--primary);
}
.collection__avatar--verified:after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  bottom: -2px;
  right: -2px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
.collection__name {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 5px;
}
.collection__name a {
  color: #fff;
}
.collection__name a:hover {
  color: var(--accent);
}
.collection__number {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--tertiary);
  font-weight: 400;
}
@media (min-width: 768px) {
  .collection {
    margin-top: 30px;
  }
}
/*==============================
	Author
==============================*/
.author {
  margin-top: 20px;
  border-radius: 16px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.author--page {
  overflow: visible;
  margin-top: 0;
  z-index: 2;
}
.author--page .author__avatar {
  width: 160px;
  max-width: 160px;
  height: 160px;
  margin-top: -80px;
  margin-bottom: 15px;
}
.author--page .author__avatar img {
  border: 2px solid var(--primary);
  border-radius: 50%;
}
.author--page .author__avatar--verified:after {
  width: 24px;
  height: 24px;
  background-size: 18px auto;
}
.author__cover {
  width: 100%;
  height: 120px;
  background-color: var(--secondary);
  border-top: 1px solid var(--secondary);
  border-left: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
  border-radius: 16px 16px 0 0;
}
.author__cover--bg {
  border: none;
}
.author__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 14px;
  background-color: var(--card-background);
  border-radius: 16px 16px 16px 16px;
  border-left: 1px solid var(--secondary);
  border-top: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  height: auto;
}
.profile__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 1em 20px 20px;
  background-color: var(--card-background);
  border-radius: 16px;
  border-left: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
  height: auto;
}
.author__avatar {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin-top: -30px;
  margin-bottom: 12px;
  position: relative;
}
.author__avatar img {
  width: 100%;
  border-radius: 40px;
  border: 1px solid var(--primary);
}
.author__avatar--verified:after {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  bottom: -2px;
  right: -2px;
  border-radius: 50%;
  background: url("../img/verified.svg") no-repeat center var(--accent);
  background-size: 14px auto;
  z-index: 1;
  pointer-events: none;
}
.author__name {
  display: block;
  width: 100%;
  font-size: 24px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 6px;
}
.author__name a {
  color: #fff;
}
.author__name a:hover {
  color: var(--accent);
}
.author__nickname {
  display: block;
  width: 100%;
  font-size: 16px;
  color: var(--accent);
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 10px;
}
.author__nickname a {
  color: var(--accent);
}
.author__nickname a:hover {
  color: #fff;
}
.author__text {
  display: block;
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  color: var(--tertiary);
  font-weight: 400;
  margin-bottom:0;
  /* min-height: 72px; */
}
.author__wrap {
  display: flex;
  flex-direction: row;
  /* justify-content: space-between; */
  align-items: center;
  width: 100%;
  background-color: #333536;
  /* border-top: 1px solid var(--secondary); */
  padding: 10px;
  border-radius: 16px;
  margin-top: 15px;
}
.author__followers {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.author__followers p {
  font-size: 20px;
  line-height: 100%;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--main-font);
}
.author__followers span {
  font-size: 14px;
  display: flex;
  justify-content: center;
  color: var(--tertiary);
  line-height: 100%;
  margin-top: 8px;
}
.author__follow {
  width: 100%;
  height: 42px;
  border-radius: 2px;
  background-color: var(--secondary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-size: 13px;
  position: relative;
  padding: 0.5rem;
  z-index: 2;
  border-radius: 12px;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: bolder;
  letter-spacing: 1.2px;
}
.author__follow:hover {
  color: #fff;
  background-color: var(--accent);
}
.author__follow--true {
  background-color: var(--accent);
  color: #fff;
}
.author__follow--true:hover {
  background-color: var(--secondary);
  color: var(--accent);
}
.author__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.author__social a {
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  position: relative;
}
.author__social a svg {
  width: 20px;
  height: auto;
  fill: var(--tertiary);
  transition: fill 0.5s ease;
}
.author__social a:last-child {
  margin-right: 0;
}
.author__social a:hover svg {
  fill: var(--accent);
}
.author__code {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-top: 15px;
  height: 32px;
  background-color: var(--secondary);
  border-radius: 10px;
  position: relative;
}
.author__code input {
  width: 100%;
  padding: 0 40px 0 15px;
  height: 30px;
  border: none;
  background-color: transparent;
  color: var(--tertiary);
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-wrap: break-word;
  cursor: default;
  position: relative;
  z-index: 1;
  transition: 0s;
}
.author__code ::-moz-selection {
  background: transparent;
  color: var(--tertiary);
}
.author__code ::selection {
  background: transparent;
  color: var(--tertiary);
}
.author__code button {
  position: absolute;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  top: 0;
  right: 0;
  height: 32px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  transition: 0s;
}
.author__code button span {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  background-color: var(--secondary);
  border-radius: 8px;
  font-size: 12px;
  line-height: 22px;
  padding: 0 8px;
  color: var(--tertiary);
  bottom: 100%;
  margin-bottom: 5px;
  transform: scale(0);
  pointer-events: none;
  opacity: 0;
  transition: 0.4s ease;
  transition-property: opacity, transform;
}
.author__code button svg {
  fill: var(--accent);
  width: 18px;
  height: auto;
  opacity: 0.75;
  transition: opacity 0.5s ease;
}
.author__code button.active span {
  transform: scale(1);
  opacity: 1;
}
.author__code button.active svg {
  opacity: 1;
}
.author__code button:hover svg {
  opacity: 1;
}
.author__link {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  font-size: 14px;
  line-height: 20px;
  color: var(--tertiary);
  font-family: var(--main-font);
  font-weight: 400;
}
.author__link svg {
  width: 20px;
  height: auto;
  fill: var(--accent);
  margin-right: 5px;
}
.author__link:hover {
  color: var(--accent);
}
@media (min-width: 576px) {
  /* .author__text {
    min-height: 96px;
  } */
  .author--page .author__text {
    padding-right: 40%;
  }
}
@media (min-width: 768px) {
  .author {
    margin-top: 30px;
  }
  .author--page {
    margin-top: 0;
  }
  .author--page .author__text {
    padding-right: 50%;
  }
  /* .author__text {
    min-height: 72px;
  } */
}
@media (min-width: 1200px) {
  .author--page {
    padding-right: 10px;
  }
  .author--page .author__text {
    padding-right: 0;
  }
}
/*==============================
	Profile
==============================*/
.profile {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: var(--primary);
  padding: 20px 0 0 20px;
  border-radius: 16px;
  position: relative;
  margin-top: 0px;
  /* border: 1px solid var(--secondary); */
}
.profile__tabs {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: 100%;
  padding-bottom: 0.5rem;
}
.profile__tabs li {
  margin-right: 20px;
}
.profile__tabs li:last-child {
  margin-right: 0;
}
.profile__tabs a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  /* height: 40px; */
  color: var(--tertiary);
  position: relative;
  padding-bottom: 8px;
  padding-top: 8px;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--main-font);
  white-space: nowrap;
}
.profile__tabs a:hover {
  color: #fff;
}
.profile__tabs a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-color: var(--accent);
  transition: 0.5s ease;
  transform: translateY(2px);
  opacity: 0;
  border-radius: 2px 2px 0 0;
}
.profile__tabs a.active {
  color: #fff;
  cursor: default;
}
.profile__tabs a.active:before {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 576px) {
  .profile__tabs li {
    margin-right: 25px;
  }
  .profile__tabs li:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .profile {
    margin-top: 0px;
    padding: 0 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .profile__tabs {
    border-bottom: none;
    margin-bottom: 0;
    width: auto;
    margin-right: auto;
  }
  .profile__tabs li {
    margin-right: 30px;
  }
  .profile__tabs li:last-child {
    margin-right: 0;
  }
  .profile__tabs a {
    align-items: center;
    /* height: 70px; */
  }
}
/*==============================
	Contacts
==============================*/
.contacts__list {
  margin-top: 20px;
}
.contacts__list li {
  margin-bottom: 15px;
}
.contacts__list li:last-child {
  margin-bottom: 0;
}
.contacts__list a {
  font-size: 16px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 400;
}
.contacts__list a:hover {
  color: var(--accent);
}
.contacts__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.contacts__social a {
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  position: relative;
}
.contacts__social a svg {
  width: 100%;
  height: auto;
  fill: var(--tertiary);
  transition: fill 0.5s ease;
}
.contacts__social a:last-child {
  margin-right: 0;
}
.contacts__social a:hover svg {
  fill: var(--accent);
}
@media (min-width: 768px) {
  .contacts__social {
    margin-top: 10px;
  }
}
/*==============================
	Article
==============================*/
.article {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 25px;
}
.article__category {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 28px;
  min-width: 70px;
  width: auto;
  color: #fff;
  font-size: 13px;
  background-color: var(--accent);
  border-radius: 10px;
  padding: 0 15px;
}
.article__category:hover {
  color: #fff;
  background-color: var(--secondary);
}
.article__date {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
  color: var(--tertiary);
  height: 28px;
}
.article__date svg {
  fill: #fff;
  width: 16px;
  height: auto;
  margin-right: 5px;
}
.article__content {
  position: relative;
}
.article__content img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 16px;
}
.article__content iframe {
  display: block;
  width: 100%;
  height: 240px;
  margin-bottom: 20px;
  border-radius: 16px;
  border: none;
}
.article__content h1,
.article__content h2,
.article__content h3,
.article__content h4,
.article__content h5,
.article__content h6 {
  font-family: var(--main-font);
  font-weight: 400;
  color: #fff;
  margin-bottom: 15px;
  line-height: 140%;
}
.article__content h1:last-child,
.article__content h2:last-child,
.article__content h3:last-child,
.article__content h4:last-child,
.article__content h5:last-child,
.article__content h6:last-child {
  margin-bottom: 0;
}
.article__content h1 {
  font-size: 30px;
}
.article__content h2 {
  font-size: 28px;
}
.article__content h3 {
  font-size: 24px;
}
.article__content h4 {
  font-size: 22px;
}
.article__content h5 {
  font-size: 18px;
}
.article__content h6 {
  font-size: 16px;
}
.article__content p {
  display: block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--tertiary);
  margin-bottom: 20px;
}
.article__content p b {
  font-weight: 600;
}
.article__content p a {
  color: var(--accent);
  text-decoration: underline;
}
.article__content p a:hover,
.article__content p a:focus {
  color: var(--accent);
  text-decoration: none;
}
.article__content p:last-child {
  margin-bottom: 0;
}
.article__content blockquote {
  display: block;
  position: relative;
  font-family: var(--main-font);
  padding: 0 0 0 20px;
  font-size: 16px;
  line-height: 28px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 20px;
}
.article__content blockquote:before {
  content: '';
  position: absolute;
  display: block;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  background-color: var(--accent);
  border-radius: 3px;
}
.article__content blockquote:last-child {
  margin-bottom: 0;
}
.article__content ul {
  margin-bottom: 20px;
  display: block;
}
.article__content ul li {
  font-size: 16px;
  line-height: 28px;
  font-weight: 400;
  color: var(--tertiary);
  padding-left: 20px;
  position: relative;
}
.article__content ul li:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent);
  left: 0;
  top: 50%;
  margin-top: -2px;
}
.article__content ul:last-child {
  margin-bottom: 0;
}
.article__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  .article__content iframe {
    height: 280px;
  }
}
@media (min-width: 768px) {
  .article {
    margin-top: 25px;
  }
  .article__content h1 {
    font-size: 36px;
  }
  .article__content h2 {
    font-size: 32px;
  }
  .article__content h3 {
    font-size: 28px;
  }
  .article__content h4 {
    font-size: 24px;
  }
  .article__content h5 {
    font-size: 20px;
  }
  .article__content h6 {
    font-size: 18px;
  }
  .article__content iframe {
    height: 400px;
  }
  .article__content img {
    margin-bottom: 30px;
  }
  .article__meta {
    margin-bottom: 25px;
  }
}
@media (min-width: 1200px) {
  .article__content iframe {
    height: 460px;
  }
}
/*==============================
	Share
==============================*/
.share {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.share--asset {
  /* position: absolute; */
  bottom: 20px;
  left: 20px;
  margin-top: 16px;
  z-index: 1;
  width: auto;
  display: inline-flex;
}
.share--asset .share__link {
  min-width: 50px;
  justify-content: center;
  margin-top: 0;
}
.share--asset .share__link svg {
  margin-right: 0;
}
.share--asset span {
  display: none;
}
.share__link {
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 15px;
  height: 28px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  background-color: #00acee;
  font-family: var(--main-font);
}

.share__link svg {
  fill: #fff;
  margin-right: 10px;
  margin-top: 1px;
  transition: fill 0.5s ease;
}
.share__link:last-child {
  margin-right: 0;
}
.share__link--fb {
  background-color: #3b5998;
}
.share__link--tw {
  background-color: #55acee;
}
.share__link--vk {
  background-color: #4c6c91;
}
.share__link--link {
  background-color: var(--secondary);
}
.share__link:hover {
  background-color: var(--accent);
  color: #fff;
}
@media (min-width: 576px) {
  .share--asset span {
    display: block;
  }
  .share--asset .share__link {
    justify-content: flex-start;
  }
  .share--asset .share__link svg {
    margin-right: 10px;
  }
}
/*==============================
	Comments
==============================*/
.comments {
  margin-top: 50px;
  padding-top: 50px;
  border-top: 1px solid var(--secondary);
}
.comments__title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 30px;
}
.comments__title h4 {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  margin-bottom: 0;
  position: relative;
  font-family: var(--main-font);
}
.comments__title span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 6px;
  background-color: var(--accent);
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  margin-left: 10px;
}
.comments__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  margin-bottom: 20px;
}
.comments__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  border-radius: 10px;
}
.comments__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
  font-family: var(--main-font);
}
.comments__time {
  display: block;
  font-size: 12px;
  color: var(--tertiary);
  line-height: 20px;
  font-weight: 400;
}
.comments__text {
  display: block;
  margin-bottom: 0;
  color: var(--tertiary);
  font-size: 16px;
  line-height: 26px;
  padding: 20px 0;
  position: relative;
  border-top: 1px solid var(--secondary);
  border-bottom: 1px solid var(--secondary);
}
.comments__text b {
  font-weight: 600;
}
.comments__text a {
  color: var(--accent);
}
.comments__text a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.comments__text span {
  display: block;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  min-height: 80px;
  border-radius: 12px;
  color: var(--tertiary);
  background-color: var(--secondary);
}
.comments__item {
  margin-bottom: 20px;
  display: block;
  background-color: var(--primary);
  border: 1px solid var(--secondary);
  padding: 20px;
  border-radius: 16px;
}
.comments__item--answer,
.comments__item--quote {
  margin-left: 20px;
}
.comments__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0 0;
  position: relative;
}
.comments__actions button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  height: 20px;
}
.comments__actions button span {
  font-size: 12px;
  color: var(--tertiary);
  text-transform: uppercase;
  transition: color 0.5s ease;
  display: none;
}
.comments__actions button svg {
  width: 16px;
  height: auto;
  fill: var(--tertiary);
  transition: fill 0.5s ease;
}
.comments__actions button:hover span {
  color: #fff;
}
.comments__actions button:hover svg {
  fill: var(--accent);
}
.comments__actions button:last-child {
  margin-right: 0;
}
.comments__actions button:last-child svg {
  width: 18px;
}
.comments__rate {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 0;
  top: 20px;
}
.comments__rate button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--tertiary);
  font-size: 14px;
  margin-right: 24px;
  position: relative;
  height: 20px;
}
.comments__rate button svg {
  width: 16px;
  height: auto;
  opacity: 0.6;
  transition: 0.5s ease;
  margin-top: 1px;
}
.comments__rate button:last-child {
  margin-right: 0;
}
.comments__rate button:last-child svg {
  margin-left: 8px;
  fill: #eb5757;
  width: 16px;
}
.comments__rate button:first-child svg {
  margin-right: 8px;
  fill: #25a56a;
  width: 16px;
}
.comments__rate button:first-child:before {
  content: '';
  position: absolute;
  display: block;
  left: 100%;
  margin-left: 12px;
  width: 1px;
  height: 16px;
  background-color: var(--secondary);
  top: 50%;
  transform: translateY(-50%);
}
.comments__rate button:hover {
  color: #fff;
}
.comments__rate button:hover svg {
  opacity: 1;
}
.comments__form {
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--secondary);
  background-color: var(--primary);
  margin-top: 30px;
}
.comments__form .row {
  margin-left: -10px;
  margin-right: -10px;
}
.comments__form .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}
.comments__form .sign__btn .sign__btn2{
  margin: 0;
}
.Home--Hero--Img img{
  margin-top: -150px;
}
.Home--Hero--Img{
  min-height: 85vh;
}
@media (min-width: 576px) {
  .comments__actions button span {
    display: block;
    margin-left: 6px;
  }
  .comments__form .sign__btn .sign__btn2{
    width: 180px;
  }
}
@media (min-width: 768px) {
  .comments {
    margin-top: 60px;
    padding-top: 60px;
  }
  .comments__item--answer,
  .comments__item--quote {
    margin-left: 30px;
  }
}
/*==============================
	Footer
==============================*/
.footer {
  background-color: var(--primary);
  padding: 30px 0 20px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  border-top: 1px solid var(--secondary);
}
.footer__logo {
  margin-top: 60px;
}
.footer__logo img {
  width: auto;
  height: 40px;
  display: block;
}
.footer__tagline {
  margin-top: 15px;
  display: block;
  font-size: 14px;
  line-height: 24px;
  color: var(--tertiary);
  margin-bottom: 0;
}
.footer__links {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
}
.footer__links a {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  color: var(--tertiary);
  font-size: 16px;
}
.footer__links a svg {
  width: 20px;
  height: auto;
  fill: var(--accent);
  margin-right: 10px;
}
.footer__links a:hover {
  color: var(--accent);
}
.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
}
.footer__social a {
  margin-top: 20px;
  margin-right: 20px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  position: relative;
}
.footer__social a svg {
  width: 100%;
  height: auto;
  fill: var(--tertiary);
  transition: fill 0.5s ease;
}
.footer__social a:last-child {
  margin-right: 0;
}
.footer__social a:hover svg {
  fill: var(--accent);
}
.footer__content {
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__copyright {
  display: block;
  font-size: 13px;
  color: var(--tertiary);
  margin-top: 20px;
  font-family: var(--main-font);
  font-weight: 400;
}
.footer__copyright a {
  color: var(--tertiary);
}
.footer__copyright a:hover {
  color: var(--accent);
}
.footer__title {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  margin-bottom: 15px;
}
.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer__nav a {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 12px;
  color: var(--tertiary);
  font-family: var(--main-font);
  font-weight: 400;
}
.footer__nav a:last-child {
  margin-bottom: 0;
}
.footer__nav a:hover {
  color: #fff;
}
.footer__lang {
  position: relative;
  margin-top: 20px;
}
.footer__lang-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background-color: rgba(255,255,255,0.1);
  padding: 0 16px 0 8px;
  height: 36px;
  border-radius: 18px;
}
.footer__lang-btn img {
  width: 20px;
  height: auto;
  margin-right: 8px;
  border-radius: 50%;
}
.footer__lang-btn span {
  color: var(--tertiary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: color 0.5s ease;
}
.footer__lang-btn:hover span {
  color: #fff;
}
.footer__lang-dropdown {
  display: block;
  position: absolute !important;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  top: 0;
  background-color: var(--primary);
  border-radius: 16px;
  padding: 16px;
  min-width: 100px;
  transition: opacity 0.5s ease;
  height: auto;
  border: 1px solid var(--secondary);
}
.footer__lang-dropdown li {
  width: 100%;
  margin-bottom: 15px;
}
.footer__lang-dropdown li:last-child {
  margin-bottom: 0;
}
.footer__lang-dropdown a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.footer__lang-dropdown a img {
  width: 20px;
  height: auto;
  margin-right: 8px;
  border-radius: 50%;
}
.footer__lang-dropdown a span {
  color: var(--tertiary);
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  transition: color 0.5s ease;
}
.footer__lang-dropdown a:hover span {
  color: #fff;
}
.footer__lang-dropdown.show {
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
}
@media (min-width: 576px) {
  .footer {
    padding: 30px 0 20px;
  }
}
@media (min-width: 768px) {
  .footer {
    padding: 20px 0 25px;
  }
  .footer__content {
    margin-top: 20px;
    padding-top: 25px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .footer__logo {
    margin-top: 50px;
  }
  .footer__title {
    margin-top: 50px;
  }
  .footer__social {
    width: auto;
    order: 2;
  }
  .footer__social a {
    margin-top: 0;
  }
  .footer__copyright {
    margin-top: 0;
    order: 1;
  }
}
@media (min-width: 1200px) {
  .footer__social {
    display: inline-flex;
    width: auto;
  }
  .listing__and__offer__component_mobile{
    display: none;
  }
  .listing__and__offer__component_desktop{
    display: unset !important;
  }
}
.listing__and__offer__component_desktop{
  display: none;
}
/*==============================
	Sign
==============================*/
.sign {
  display: block;
  position: relative;
}
.sign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 25px 0 0;
}
.sign__form {
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  padding: 30px 20px;
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--secondary);
}
.sign__form--contacts,
.sign__form--profile,
.sign__form--create {
  margin-top: 20px;
  max-width: 100%;
  padding: 20px 20px 5px;
  align-items: flex-start;
}
.sign__form--contacts .sign__btn .sign__btn2, 
.sign__form--profile .sign__btn .sign__btn2,
.sign__form--create .sign__btn  .sign__btn2{
  margin: 0 0 15px;
}
.sign__form--contacts .row,
.sign__form--profile .row,
.sign__form--create .row {
  margin-left: -10px;
  margin-right: -10px;
}
.sign__form--contacts .col-12,
.sign__form--profile .col-12,
.sign__form--create .col-12 {
  padding-left: 10px;
  padding-right: 10px;
}
.sign__form--profile .sign__btn .sign__btn2{
  margin: 5px 0 15px;
}
.sign__logo {
  display: block;
  margin-bottom: 30px;
}
.sign__logo a {
  max-width: 100%;
  width: auto;
}
.sign__logo img {
  width: auto;
  height: 50px;
}
.sign__title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--main-font);
  color: #fff;
  margin-bottom: 20px;
}
.sign__label {
  font-weight: 400;
  font-size: 14px;
  color: var(--tertiary);
  margin-bottom: 5px;
  padding-left: 20px;
}
.popup__label{
  font-weight: 400;
  font-size: 18px;
  color: var(--tertiary);
  margin-bottom: 0 !important;
}
.sign__label b {
  font-weight: 600;
  color: #fff;
}
.sign__input {
  background-color: var(--secondary);
  border: 1px solid transparent;
  border-radius: 12px;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 0 20px;
  font-family: var(--main-font);
}
.popup__input{
  width: 100%;
  border: 3px solid transparent;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: #fff;
    background-color: var(--secondary);
    padding: 6px 8px;
    text-align: center;
}
.popup__input:focus{
  border-color: var(--accent);
}
.sign__input:focus {
  border-color: var(--accent);
}
.sign__select {
  background: url("../img/arrow2.svg") no-repeat center right 20px var(--secondary);
  background-size: 18px auto;
  border: 1px solid transparent;
  border-radius: 12px;
  height: 46px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--main-font);
}
.sign__select:focus {
  border-color: var(--accent);
}
.sign__textarea {
  background-color: var(--secondary);
  border: 1px solid transparent;
  border-radius: 12px;
  height: 92px;
  position: relative;
  color: #fff;
  font-size: 16px;
  width: 100%;
  padding: 15px 20px;
  resize: none;
  font-family: var(--main-font);
}
.sign__textarea:focus {
  border-color: var(--accent);
}
.sign__group {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  flex-wrap: wrap;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
}
.sign__group--row .sign__label {
  padding-left: 0;
}
.sign__group--checkbox {
  width: 100%;
  text-align: left;
}
.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
  position: absolute;
  left: -9999px;
}
.sign__group--checkbox input:not(:checked) + label,
.sign__group--checkbox input:checked + label {
  font-size: 14px;
  color: var(--tertiary);
  font-weight: normal;
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  line-height: 22px;
  margin: 0;
}
.sign__group--checkbox input:not(:checked) + label a,
.sign__group--checkbox input:checked + label a {
  color: var(--accent);
}
.sign__group--checkbox input:not(:checked) + label a:hover,
.sign__group--checkbox input:checked + label a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.sign__group--checkbox input:not(:checked) + label:before,
.sign__group--checkbox input:checked + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: var(--secondary);
  border: 1px solid transparent;
  border-radius: 6px;
}
.sign__group--checkbox input:not(:checked) + label:after,
.sign__group--checkbox input:checked + label:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  text-align: center;
  transition: 0.5s ease;
  background: url("../img/checkmark.svg") no-repeat center/20px auto;
  border-radius: 6px;
}
.sign__group--checkbox input:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}
.sign__group--checkbox input:checked + label:after {
  opacity: 1;
  transform: scale(1);
}
.sign__group--checkbox label::-moz-selection {
  background: transparent;
  color: var(--tertiary);
}
.sign__group--checkbox label::selection {
  background: transparent;
  color: var(--tertiary);
}
.transparent__btn{
  border: 3px solid var(--accent) !important;
  background: transparent !important;
  color: #fff !important;
}
.listings__phera{
  display: block;
    width: 100%;
    font-size: 16px;
    line-height: 26px;
    color: var(--tertiary);
    margin-top: 20px;
    margin-bottom: 0;
}
.sign__btn {
  width: 100%;
  height: 50px;
  border-radius: 16px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 2;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 15px auto;
}
.sign__btn2 {
  width: 100%;
  height: 50px;
  border-radius: 16px;
  background-color: var(--secondary);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: var(--accent);
  font-size: 18px;
  position: relative;
  z-index: 2;
  /* text-transform: uppercase; */
  font-family: var(--main-font);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 15px auto;
}
.sign__btn:hover {
  color: var(--accent);
  background-color: var(--secondary);
}
.sign__text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  width: 100%;
  text-align: center;
}
.sign__text:first-child {
  margin-top: 0;
}
.sign__text a {
  position: relative;
  color: var(--accent);
}
.sign__text a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.sign__text--small {
  font-size: 13px;
  line-height: 21px;
  text-align: left;
  color: var(--tertiary);
}
.sign__delimiter {
  font-size: 14px;
  color: var(--tertiary);
  line-height: 100%;
  width: 100%;
  display: block;
  text-align: center;
}
.sign__social {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 15px;
  margin-top: 15px;
}
.sign__social a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 46px;
  width: calc(33% - 10px);
  border-radius: 12px;
  color: #fff;
}
.sign__social a svg {
  height: auto;
  fill: #fff;
  transition: 0.5s ease;
}
.sign__social a.fb {
  background-color: #3b5999;
}
.sign__social a.fb svg {
  width: 10px;
}
.sign__social a.gl {
  background-color: #df4a32;
}
.sign__social a.gl svg {
  width: 18px;
}
.sign__social a.tw {
  background-color: #1da1f2;
}
.sign__social a.tw svg {
  width: 20px;
}
.sign__social a:hover {
  background-color: var(--tertiary);
}
.sign__social a:hover.fb svg {
  fill: #3b5999;
}
.sign__social a:hover.gl svg {
  fill: #df4a32;
}
.sign__social a:hover.tw svg {
  fill: #1da1f2;
}
.sign__value {
  font-size: 24px;
  color: #fff;
  display: block;
  font-weight: 500;
  margin-left: 10px;
  font-family: var(--main-font);
}
.sign__radio {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-top: 5px;
}
.sign__radio--single {
  padding-top: 20px;
  margin-top: 0;
  border-top: 1px solid var(--secondary);
}
.sign__radio li {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
.sign__radio li:last-child {
  margin-bottom: 0;
}
.sign__radio input:not(:checked),
.sign__radio input:checked {
  position: absolute;
  left: -9999px;
}
.sign__radio label {
  display: block;
  margin: 0;
  position: relative;
  font-weight: 400;
  cursor: pointer;
  font-size: 16px;
  color: var(--tertiary);
  line-height: 24px;
  padding-left: 32px;
  transition: 0.5s ease;
}
.sign__radio label:before {
  content: '';
  display: block;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 6px solid var(--secondary);
  background-color: transparent;
  border-radius: 50%;
  left: 0;
  top: 2px;
  transition: 0.5s ease;
}
.sign__radio label:hover {
  color: #fff;
}
.sign__radio input:checked + label {
  color: #fff;
}
.sign__radio input:checked + label:before {
  border-color: var(--accent);
}
.sign__file {
  position: relative;
  width: 100%;
  height: 46px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
  display: block;
}
.sign__file input {
  position: absolute;
  left: -9999px;
  opacity: 0;
  z-index: 1;
}
.sign__file label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 46px;
  color: var(--tertiary);
  padding: 0 60px 0 20px;
  background-color: var(--secondary);
  margin: 0;
  width: 100%;
  font-size: 16px;
  cursor: pointer;
  transition: 0.5s ease;
  font-family: var(--main-font);
  font-weight: 400;
}
.sign__file label:hover {
  color: #fff;
}
@media (min-width: 576px) {
  .sign__form {
    padding: 40px;
  }
  .sign__form--contacts,
  .sign__form--profile,
  .sign__form--create {
    padding: 20px 20px 5px;
  }
  .sign__logo {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) {
  .sign__form--contacts,
  .sign__form--profile,
  .sign__form--create {
    margin-top: 30px;
  }
  .sign__form--contacts .sign__btn .sign__btn2,
  .sign__form--profile .sign__btn .sign__btn2,
  .sign__form--create .sign__btn .sign__btn2 {
    margin: 10px 0 15px;
  }
}
@media (min-width: 992px) {
  .sign__form--profile .sign__btn .sign__btn2 {
    width: 160px;
  }
}
/*==============================
	Page 404
==============================*/
.page-404 {
  display: block;
  position: relative;
}
.page-404__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 25px 0 0;
}
.page-404__content {
  background-color: var(--primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 1px solid var(--secondary);
}
.page-404__title {
  position: relative;
  color: #fff;
  line-height: 100%;
  font-size: 100px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: var(--main-font);
}
.page-404__text {
  text-align: center;
  display: block;
  width: 100%;
  color: var(--tertiary);
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
.page-404__btn {
  width: 100%;
  height: 50px;
  border-radius: 12px;
  background-color: var(--accent);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: 500;
  margin: 0 auto;
}
.page-404__btn:hover {
  color: #fff;
  background-color: var(--secondary);
}
@media (min-width: 576px) {
  .page-404__content {
    padding: 40px;
  }
}
/*==============================
	Modal
==============================*/
.modal {
  position: relative;
  display: block;
  background-color: var(--primary);
  margin: 40px auto;
  width: 90%;
  max-width: 420px;
  padding: 20px;
  border-radius: 16px;
  overflow: hidden;
}
.modal--form {
  padding: 20px 20px 5px;
}
.modal--asset {
  max-width: 1300px;
  padding: 35px 20px 20px;
}
.modal .mfp-close {
  display: none;
}
.modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
}
.modal__close svg {
  fill: var(--tertiary);
  opacity: 0.6;
  transition: 0.5s ease;
  height: auto;
  width: 24px;
}
.modal__close:hover svg {
  opacity: 1;
  fill: var(--accent);
}
@media (min-width: 768px) {
  .modal {
    padding: 40px;
  }
  .modal--asset {
    padding: 10px 40px 40px;
  }
  .modal--form {
    padding: 40px 40px 25px;
  }
  .modal--form .modal__close {
    top: 37px;
    right: 35px;
  }
  .modal--form .sign__btn .sign__btn2{
    margin-top: 30px;
  }
}
.mfp-bg {
  background: rgba(34,34,39,0.75);
}
.mfp-container {
  padding: 0 15px !important;
}
.my-mfp-zoom-in .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transform: scale(0.8);
}
.my-mfp-zoom-in.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  transform: scale(1);
}
.my-mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 1;
}
.my-mfp-zoom-in.mfp-removing .zoom-anim-dialog {
  transform: scale(0.8);
  opacity: 0;
}
.my-mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}
.my-mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
.mfp-iframe-scaler iframe {
  border-radius: 12px;
  box-shadow: none;
  background-color: var(--primary);
}
.mfp-iframe-holder .mfp-close {
  color: transparent;
  transition: opacity 0.4s;
}
.mfp-iframe-holder .mfp-close:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 44px;
  background: url("../img/close.svg") no-repeat center;
  background-size: 30px auto;
}
.mfp-iframe-holder .mfp-content {
  max-width: 910px;
}
.mfp-figure::after {
  box-shadow: none;
  background-color: var(--secondary);
}
.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 1;
}
.mfp-fade.mfp-bg.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}
.mfp-fade.mfp-bg.mfp-removing .mfp-content {
  opacity: 0;
}
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}
/*==============================
	Select2
==============================*/
.select2-container {
  width: auto !important;
  margin-right: 30px;
}
.select2-container .select2-selection--single {
  height: 40px;
  background-color: transparent;
  border-radius: 0;
  border: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 40px;
  color: #fff;
  padding: 0 18px 0 0;
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 400;
  transition: 0.5s ease;
}
.select2-container .select2-selection--single[aria-expanded="true"] {
  background-color: transparent;
}
.select2-container .select2-selection--single:hover .select2-selection__rendered {
  color: var(--accent);
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 20px;
  width: 18px;
  top: 10px;
  right: 0;
  background: url("../img/arrow.svg") no-repeat center right;
  background-size: 16px auto;
  margin-top: 1px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--accent);
  color: #fff;
  white-space: nowrap;
}
.select2-container--default .select2-results__option--selected {
  color: #fff;
  background-color: var(--accent);
  cursor: default;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: transparent;
  color: var(--accent);
  cursor: default;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: transparent;
  color: var(--accent);
}
.select2-results__option {
  padding: 0 0;
  font-size: 14px;
  font-family: var(--main-font);
  font-weight: 400;
  color: #fff;
  height: 36px;
  line-height: 36px;
  transition: 0.5s ease;
}
.select2-dropdown {
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-top: none;
  border-radius: 16px !important;
  min-width: 180px;
  padding: 6px 0 6px 15px;
  background-color: var(--secondary);
  z-index: 98;
}
.select2-container--open .select2-dropdown--below {
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}
.select2-container--open .select2-dropdown--above {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
/*==============================
	Scrollbar-track
==============================*/
.scrollbar-track-y {
  background: var(--secondary) !important;
  top: 0px !important;
  bottom: 0px !important;
  height: auto !important;
  width: 4px !important;
  border-radius: 4px !important;
  right: 0px !important;
  overflow: hidden;
}
.scrollbar-thumb-y {
  background: var(--accent) !important;
  width: 4px !important;
  border-radius: 4px !important;
}
.scrollbar-track-x {
  background: var(--secondary) !important;
  left: 0px !important;
  right: 0px !important;
  height: 4px !important;
  width: auto !important;
  border-radius: 4px !important;
  bottom: 0px !important;
  overflow: hidden;
}
.scrollbar-thumb-x {
  background: var(--accent) !important;
  height: 4px !important;
  border-radius: 4px !important;
}
/* Loader Styles */

 @keyframes ldio-2i68vob9qdg {
   0% {
     opacity: 1
   }

   100% {
     opacity: 0
   }
 }

 .ldio-2i68vob9qdg div {
   left: 96px;
   top: 55px;
   position: absolute;
   animation: ldio-2i68vob9qdg linear 1.1111111111111112s infinite;
   background: var(--loader-spinner-color);
   width: 8px;
   height: 22px;
   border-radius: 4px / 11px;
   transform-origin: 4px 45px;
 }

 .ldio-2i68vob9qdg div:nth-child(1) {
   transform: rotate(0deg);
   animation-delay: -1.0101010101010102s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(2) {
   transform: rotate(32.72727272727273deg);
   animation-delay: -0.9090909090909091s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(3) {
   transform: rotate(65.45454545454545deg);
   animation-delay: -0.8080808080808081s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(4) {
   transform: rotate(98.18181818181819deg);
   animation-delay: -0.7070707070707071s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(5) {
   transform: rotate(130.9090909090909deg);
   animation-delay: -0.6060606060606061s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(6) {
   transform: rotate(163.63636363636363deg);
   animation-delay: -0.5050505050505051s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(7) {
   transform: rotate(196.36363636363637deg);
   animation-delay: -0.40404040404040403s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(8) {
   transform: rotate(229.0909090909091deg);
   animation-delay: -0.30303030303030304s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(9) {
   transform: rotate(261.8181818181818deg);
   animation-delay: -0.20202020202020202s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(10) {
   transform: rotate(294.54545454545456deg);
   animation-delay: -0.10101010101010101s;
   background: var(--loader-spinner-color);
 }

 .ldio-2i68vob9qdg div:nth-child(11) {
   transform: rotate(327.27272727272725deg);
   animation-delay: 0s;
   background: var(--loader-spinner-color);
 }

 .loadingio-spinner-spinner-tv1v85x4ss {
   width: 200px;
   height: 200px;
   display: inline-block;
   overflow: hidden;
   background: none;
 }

 .ldio-2i68vob9qdg {
   width: 100%;
   height: 100%;
   position: relative;
   transform: translateZ(0) scale(1);
   backface-visibility: hidden;
   transform-origin: 0 0;
   /* see note above */
 }

 .ldio-2i68vob9qdg div {
   box-sizing: content-box;
 }

 /* Toogler */
 .switch {
   position: relative;
   display: inline-block;
   width: 60px;
   height: 20px;
   padding: 1em;
   /* margin-top: 15px; */
   /* margin-left: 40px; */
 }

 .switch input {
   opacity: 0;
   width: 0;
   height: 0;
 }

 .slider {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: var(--primary);
   border: 1px solid var(--accent);
   -webkit-transition: .4s;
   transition: .4s;
 }

 .slider:before {
   position: absolute;
   content: "";
   height: 20px;
   width: 20px;
   left:8px;
   bottom: 5px;
   background-color: white;
   -webkit-transition: .4s;
   transition: .4s;
 }

 input:checked+.slider {
   background-color: var(--accent);
 }

 input:focus+.slider {
   box-shadow: 0 0 1px var(--accent);
 }

 input:checked+.slider:before {
   -webkit-transform: translateX(26px);
   -ms-transform: translateX(26px);
   transform: translateX(26px);
 }

 /* Rounded sliders */
 .slider.round {
   border-radius: 34px;
 }

 .slider.round:before {
   border-radius: 50%;
 }

 audio{
   filter: invert(1);
 } 
 .blogCategory{
   display: inline-flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
   height: 43px;
   min-width: 70px;
   width: 12em;
   color: #fff;
   font-size: 13px;
   background-color: var(--accent);
   border-radius: 2px; 
   padding: 20px 15px;
 }


.search{
  position: absolute;
  top: 60px;
  left: 17em;
}

 .dataResult {
   width: 414px;
   background-color: var(--secondary);
   border-radius: 4px;
   box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
   padding: 20px;
   overflow: hidden;
   overflow-y: auto;
 }

 .dataResult::-webkit-scrollbar {
   display: none;
 }

 .dataResult .dataItem {
   width: 100%;
   height: 50px;
   display: flex;
   padding: 20px;
   align-items: center;
   color: white;
   font-family: var(--main-font);
   font-weight: bold;
 }

 .dataItem{
   margin-left: 1em;
   margin-top: 1em;
 }
 .usrlink{
   color: var(--accent);
 }

.usrlink:hover{
  color: var(--accent);
}
 #clearBtn {
   cursor: pointer;
 }

 .unlockContent{
   padding: 1em;
   background-color: var(--secondary);
   font-family: var(--main-font);
   border: 2px solid var(--accent);
   border-radius: 4px;
   resize: none;
 }
.seeall{
  font-family: var(--main-font);
  font-weight: bold;
  padding: 10px;
  border-radius: 2px;
  background-color: var(--accent);
  color: #FFF;
  text-decoration: unset;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}
.input__error__class{
  border: 2px solid #ff0000 !important;
}
.input__error__class__img{
  border: 3px dotted #ff0000 !important;
}
.input__error__message{
  color: #ff0000;
  margin-left: 0.5rem;
}
/* Xplore */
.accordion_summary{
  border: 1px solid #36383E !important;
  background-color: #27292B !important;
  border-radius: 12px !important;
}
.swal2-icon{
  border-color: transparent !important;
}
.swal2-icon img{
  width: 15rem;
}
.accordion{
  font-family: var(--main-font);
  font-weight: bold;
  font-size: 18px;
  background-color: #1a1a1a !important;
  border-radius: 12px;
  
}
#panel1a-header{
  background-color: var(--secondary);
  color: #FFF;
}
.MuiCheckbox-colorSecondary.Mui-checked{
  color: var(--accent) !important;
}
.MuiCheckbox-root {
  color: var(--accent) !important;
}
.MuiAccordionDetails-root{
  background-color: #1a1a1a;
  color: white;

}
.MuiTypography-displayBlock{
  font-family: var(--main-font) !important;
  font-weight: bold !important;
}

.user__search {
  position: relative;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
  padding: 0 15px;
  transition: top 0.5s ease;
}
.filter-all{
  background-color: rgb(26, 26, 26);
  border: 2px solid transparent;
  margin-top: 30px;
  height: 50px;
  display: flex;
  align-items: center;
}
.filter-all--explore{
  background-color: rgb(26, 26, 26);
  border: 2px solid transparent;
  margin-top: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  justify-content: center;
}
._chip_{
  font-size: 12px !important;
  font-weight: 600 !important;
}
._chip_:hover{
  border: 1px solid #7833d9 !important;
  border-radius: 12px !important;
}
._chip_active{
  border: 1px solid #7833d9 !important;
  border-radius: 12px !important;
}

.user__search input {
  width: calc(100% - 30px);
  height: 40px;
  background-color: var(--secondary);
  color: #fff;
  font-size: 14px;
  border-radius: 12px;
  border: none;
  padding: 0 45px 0 20px;
  font-family: var(--main-font);
  font-weight: 400;
}

.user__search input:focus {
  border-color: #fff;
}

.user__search button {
  position: absolute;
  right: 60px;
  top: 15px;
  height: 40px;
  width: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.user__search button svg {
  width: 20px;
  height: auto;
  fill: var(--tertiary);
  transition: 0.5s ease;
}

.user__search button:hover svg {
  fill: var(--accent);
}

.user__search button.close {
  right: 15px;
}

.user__search--active {
  top: 0;
}

.usersearch {
  position: relative;
  
}
.searchh_items:hover{
  color: white !important;
}

.userdataResult {
  background-color: #27292b !important;
  width: 100%;
  background-color: var(--secondary);
  border-radius: 16px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  overflow: hidden;
  overflow-y: auto;
}
.userdataResult::-webkit-scrollbar {
  display: none;
}

.userdataResult .userdataItem {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  color: white;
  font-family: var(--main-font);
  font-weight: bold;
}

.userdataItem {
  margin-left: 1em;
  margin-top: 1em;
}

.applyfilter__btn {
  width: auto;
  min-width: 140px;
  height: 50px;
  border-radius: 2px;
  background-color: var(--secondary);
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
  font-family: var(--main-font);
  font-weight: bolder;
  letter-spacing: 1.5px;
  padding: 0 20px;
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 4em;
}
.applyfilter__btn:hover {
  background-color: var(--accent);
  color: #FFF;
}

.PreviewAudio::-webkit-media-controls-panel{
  background: whitesmoke;
  justify-content: center;
  border-radius: 0px 0px 12px 12px !important;
}

/* .PreviewAudio::-webkit-media-controls-mute-button{

}

.PreviewAudio::-webkit-media-controls-play-button{

} */

.PreviewAudio::-webkit-media-controls-timeline-container{
 display: none;
}

.PreviewAudio::-webkit-media-controls-current-time-display{
  display: none;
}

.PreviewAudio::-webkit-media-controls-time-remaining-display{
  display: none;
}

.PreviewAudio::-webkit-media-controls-timeline{
  display: none;
}

/* .PreviewAudio::-webkit-media-controls-volume-slider-container{
}

.PreviewAudio::-webkit-media-controls-volume-slider{
} */

.PreviewAudio::-webkit-media-controls-seek-back-button{
  display: none;
}

.PreviewAudio::-webkit-media-controls-seek-forward-button{
  display: none;
}

.PreviewAudio::-webkit-media-controls-fullscreen-button{
  display: none;
}

.PreviewAudio::-webkit-media-controls-rewind-button{
  display: none;
}

.PreviewAudio::-webkit-media-controls-return-to-realtime-button{
display: none;
}

.PreviewAudio::-webkit-media-controls-toggle-closed-captions-button{
display: none;
}
.PreviewAudio::-internal-media-controls-overflow-button {
  display: none !important;
}
.PreviewAudio::-webkit-media-controls-enclosure{
  border: 0;
  border-radius: 0;
  background: transparent;
}
.btn-resend{
  padding: 0.4em;
  /* color: var(--accent); */
  color: var(--card-title);
  background: transparent;
  
}
.btn-resend-active{
  padding: 0.4em;
  color: var(--accent);
  /* color: var(--card-title); */
  background: transparent;

}
.btn-disabled {
  background-color: var(--secondary) !important;
}
.collection--icon--cover{
  margin-top: -70px;
  z-index: 99;
  width: 200px;
    /*  height: 205px; */
  /* background: var(--accent); */
  border-radius: 16px;
}

.collection--details div{
  border-right: 1px solid #848484;
}
.collection--details span{
  color: #BDBDBD;
  font-size: 15px;
}
.collection--details h3{
  color: #fff;
  font-size: 22px;
}
.collections--more--details span{
  color: #BDBDBD;
  font-size: 15px;
}
.collections--more--details h5{
  color: #fff;
  margin: 0 0.5em !important;
  font-size: 18px;
}
.load--collection--result{
  width: 95%;
  margin: auto;
}
.sign__group textarea{
  height: unset !important;
}

.collectionTitle{
  color: var(--card-title);
  font-family: var(--main-font);
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
}
.infinite-scroll-component {
  height: auto;
  overflow-x: hidden !important;
}
iframe{
  display: none;
}
.MuiAccordionSummary-content.Mui-expanded{
  margin: 12px 0 !important;
}
.MuiAccordionSummary-root.Mui-expanded{
  min-height: 48px !important;
}
.selected--collection{
  border: 1px solid #7833d9 !important;
}
.no--matching--order--section{
  width: 40%;
}
.filter--section--mobile{
  display: none;
}
.nft--option--details{
  width: 400px;
}
.div--choose--file{
  border: 4px dotted #27292b;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 12px;
    color: var(--tertiary);
    border-radius: 12px;
}
.div--choose--file input{
  width: 220px;
}
.close--btn{
  color: #fff;
    position: absolute;
    left: 14rem;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #dc3545;
}
.delete--btn--on--update{
  color: #fff;
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background: #dc3545;
    top: 10px;
    right: 20px;
}
.minwidth--300{
  min-width: 350px;
  height: 300px;
}

.card__details span{
  font-size: 12px;
  color: #D7D7D7;
  }
  .card__details{
    padding: 10px 0;
    width: 100%;
    margin: 22px 0;
    margin-top: 0;
  }
  .card__details h3{
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  }
  .card__detials__total__volume{
    border-left: 0.5px solid #848484;
    display: flex;
      flex-direction: column;
      justify-content: center;
  
  }
  .card__details__flore{
    border-right: 0.5px solid #848484;
    display: flex;
      flex-direction: column;
      justify-content: center;
  }
  .card__info__top{
    background-color: #333536 !important;
    padding: 8px !important;
    border-radius: 8px !important;
  }
  .minwidth--300--topCard{
    height: 180px !important;
    width: 283px !important;
  }
  .minwidth--300--topCard--audio{
    height: 135px !important;
    width: 283px !important;
  }
  .card__cover__top{
    height: 180px !important;
    border-radius: 8px !important;
    display: unset !important;
  }
  .card__top{
    border-radius: 8px !important;
  }
@media (max-width: 672px) {
  .header__logo img{
    height: 30px !important;
  }
  .no--matching--order--section{
    width: 100%;
  }
  .applyfilter__btn{
    margin-left:0 ;
    margin-right: 0;
  } 
  
  .Home--Hero--Img img{
    margin-top: 0;
    width: 100%;
    min-height: unset;
  }
  .Home--Hero--Img{
    min-height: unset;
  }
}
@media (max-width: 992px) {
  .last--skeleton{
    display: none;
  }
}
@media (max-width: 575px) {
  .filter--section--web{
    display: none;
  }
  .filter--section--mobile{
    display: block;
    margin-top: 30px;
  }
  .nft--option--details{
    width: 100%;
  }
  .asset__item img{
    margin-top: 12px;
  }
  .header__action--search{
    display: none;
  }
  .header__actions{
    margin-right: 0;
  }
  .main__title h2{
    font-size: 22px;
  }
  .main--row--minting{
    width: 100%;
  }
  .div--choose--file input{
    width: 100px;
  }
  .card__cover{
    height: auto;
  }
  .minwidth--300{
    min-width: 100%;
    width: 143px;
    height: 132px;
  }
  .minwidth--300--topCard{
    min-width: 100% !important;
    width: 143px !important;
    height: 132px !important;
  }
  .minwidth--300--topCard--audio{
    min-width: 100% !important;
    width: 143px !important;
    height: 80px !important;
  }

  .card__title{
    font-size: 18px;
  }
  .asset__author a{
    font-size: 14px;
  }
  .card__price span:last-child{
    font-size: 18px;
    font-weight: 500;
  }
  .author__followers p{
    font-size: 18px;
  }
  .asset__author img{
    display: none;
  }
  .asset__authors .asset__author img{
    display: unset !important;
  }
  .card__likes svg{
    width: 18px;
  }
  .card__price_auction-mobile{
    display: inline-flex;
  border: 1px solid transparent;
  border-radius: 16px;
  flex-direction: row;
  padding: 5px;
  width: 100%;
  background-color: #333536;
  /* flex-direction: column; */
  /* justify-content: center; */
  z-index: 1;
  /* align-items: center; */
  }
  .card__price_auction-mobile span:first-child{
    font-size: 14px;
  line-height: 100%;
  color: var(--card-price);
  font-family: var(--main-font);
  }
  .card__price_auction-mobile span:last-child{
    font-size: 24px;
  line-height: 100%;
  color: var(--card-price);
  font-weight: bolder;
  margin-top: 10px;
  }
  .card__price_auction-web{
    display: none;
  }
  /* .card{
    height: 94%;
  } */
  .card__cover__top{
    height: auto !important;
    display: unset !important;
  }
  .on--auction--wallet--price{
    display: none;
  }
  .home__content{
    padding-bottom: 2rem;
  }
  .top_creators{
    display: block !important;
    height: 132px !important;
  }
  .author__wrap{
    margin-top: 8px;
  }
  .card__title a{
    font-size: 18px;
  }
  .profile__tabs{
  overflow-x: scroll;
  }
  .hero__section_card__img {
    height: auto !important;
  }
  .hero__section__cards2{
    height: 200px !important;
  }
  .hero__section__cards1{
    height: 200px !important;
  }
  .hero__section__cards3{
    height: 200px !important;
  }
  .hero__main__div{
    position: relative;
    min-height: 390px !important;
    width: 94% !important;
    margin: auto;
  }
  .hero__section_card__img img{
    height: 100px !important;
  }
  .hero__section__card__text{
    font-size: 18px !important;
  }
  .hero__section__cards1 .hero__section__card__text{
    height: 74px !important;
  }
  .hero__section__cards3 .hero__section__card__text{
    height: 74px !important;
  }
  .marginLeft-30{
    margin-left: 0px !important;
  }
  .hide--on--mobile{
    display: none;
  }
  .main__title .tab-buttons{
    margin-top: 30px;
  }
  .tab-buttons button{
    width: 115px;
    padding: 10px;
  }
  .main__title .tab-buttons{
    width: 250px;
  }
  .tab--see--all{
    margin-top: 30px !important;
  }
}
.tab--see--all{
  margin-bottom: 50px !important;
}

.marginLeft-30{
  margin-left: -30px;
}
.profile--p--tag{
  font-size: 24px;
  color: #fff;
  text-align: center;
}
.hero__section__card{
  width: 240px;
  padding: 8px;
  cursor: pointer;
  background: radial-gradient(54.02% 54.02% at 50% 50%, #6B1BDC 0%, #331563 100%);
border: 3px solid #FFFFFF;
border-radius: 16px;
}
.hero__section_card__img{
  height: 180px;
  width: 98%;
  margin: auto;
  border-radius: 12px;

}
.hero__section_card__img img{
  height: 100%;
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}
/* .hero__section__card:hover{
  transform: scale(1.2);
  transition: 0.2s;
} */
.hero__section__cards1 { 
  transition: all .4s ease-in-out; 
}
.hero__section__cards1:hover { 
  transform: scale(1.1);
  height: 280px; 
  z-index: 99;
}
.hero__section__cards2 {
   transition: all .4s ease-in-out;
   }
.hero__section__cards2:hover { 
  transform: scale(1.1);
height: 280px; 
z-index: 99;
}
.hero__section__cards3 {
   transition: all .4s ease-in-out;
   }
.hero__section__cards3:hover { 
  transform: scale(1.1);
height: 280px; 
z-index: 99;
}
.hero__section__cards1{
  height: 250px;
  margin-right: -50px;
  transform: rotate(15deg)
}
.hero__section__cards2{
  height: 280px;
  z-index: 90;
}
.hero__section__cards3{
  height: 250px;
  margin-left: -50px;
  transform: rotate(-15deg)
}
.hero__section__cards2 .hero__section__card__text{
  height: 74px;
}
.hero__section__card:hover .hero__section__card__text{
  height: 74px;
  transition: .4s;
}
.hero__section__cards1 .hero__section__card__text{
  height: 52px;
}
.hero__section__cards3 .hero__section__card__text{
  height: 52px;
}
.hero__main__div__background__img{
  position: absolute;
}
.hero__main__div__background__img img{
  width: 100%;
}
.hero__main__div{
  position: relative;
  min-height: 550px;
}
.hero__section__card__text{
  display: flex;
  justify-content: center;
  align-items: center;
  height: max-content;
  /* border: 2px solid red; */
  width: 100%;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.copies__img__history{
  display: inline !important;
  height: 20px !important;
  width: 20px !important;
  margin-right: 0 !important;
}
.asset__action img {
  display: block;
  overflow: hidden;
  /* width: 44px !important; */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-right: 10px;
}