/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body, body p, body div, body span {
  /*font-family: "Open Sans", sans-serif;*/
  font-family: "Poppins", sans-serif;
  color: #777777;
  font-size: calc(1.0rem);
/*  line-height: calc(1.3rem);*/
}

body .red, body p.red, body div.red, body span.red {
  color: #ef2441;
}

body button.button, body button.button:hover {
  border: none;
  background: transparent;
}

a, a:not([href]):not([class]) {
  white-space: nowrap;
  color: #999999;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
a:hover, a:not([href]):not([class]):hover {
  color: #bd243a;
  text-decoration: none;
  cursor: pointer;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin-top: 0.3rem;
  margin-bottom: 0.3rem;
}

h1 {
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  cursor: default;
}

#header .logo a {
  font-weight: 900;
  color: #444444;
  font-size: 1.6rem;
  line-height: calc(1.9rem);
}
#header.transparent .logo a {
  color: #ffffff;
}

.navbar a, .navbar a:focus {
  font-weight: 600;
  color: #555555;
  font-size: 1rem;
  line-height: calc(1.3rem);
}

.navbar-mobile a, .navbar-mobile a:focus {
  font-weight: 600;
  color: #555555;
  font-size: 1rem;
  line-height: calc(1.3rem);
}

.h1, h1 {
  font-weight: 900;
  color: #333333;
  font-size: calc(1.2rem + 2.0vw);
  line-height: calc(1.6rem + 2.0vw);
}

.h2, h2 {
  font-weight: 600;
  color: #555555;
  font-size: calc(1.1rem + .4vw);
  line-height: calc(1.4rem + .4vw);
}

.h3, h3 {
  font-weight: 500;
  color: #555555;
  font-size: calc(1.1rem);
  line-height: calc(1.4rem);
}

.h4, h4 {
  font-weight: 500;
  color: #555555;
  font-size: calc(1.0rem);
  line-height: calc(1.3rem);
}

p.gain, span.gain {
  color: #71BF8C;
}
p.loss, span.loss {
  color: #bd243a;
}
p.eth, span.eth {
  color: #555555;
  font-weight: 500;
  font-size: 1rem;
}

.light-text {
  color: #999999;
}

span.small, span.small > p, span.small > span, span.small > a  {
  font-size: 0.9rem;
}

span.smaller, span.smaller > p, span.smaller > span, span.smaller > a  {
  font-size: 0.8rem;
}

.justify {
  text-align: justify;
}

.line-separator {
  display: block;
  height: 1px;
  width: 100%;
  background: #eaeaea;
}

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/
.loading_bg {
  position: absolute;
  display: block;
  top: 0px;
  left:  0px;
  right: 0px;
  bottom: 0px;
  z-index: 10;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.2);
}
.loading_bg i {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
  font-size: 40px;
  color: #ef2441;
}

/*--------------------------------------------------------------
# Dropdown selects
--------------------------------------------------------------*/
.dropdown {
  display: inline-block;
  padding: 0px;
  background: transparent;
  min-width: 200px;
  width: 100%;
}

.dropdown > button {
  margin: 0px;
  padding: 6px 20px;
  color: #555555;
  background: transparent;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  text-align: left;
  transition: .3s ease;
  width: 100%;
}

.dropdown-toggle::after {
  position: absolute;
  right: 18px;
  top: 1em;
}

.dropdown > button:hover, .dropdown > button:active, .dropdown > button.show {
  color: #ffffff;
  background: #ef2441;
  border: 1px solid #ef2441;
}

.dropdown .dropdown-menu {
  border-radius: 20px;
  border: 1px solid #eaeaea;
  overflow: hidden;
  padding: 0px;
/*  min-width: 200px;*/
  width: 100%;
}
.dropdown .dropdown-menu li {
  line-height: 50px;
  border: 0px;
  padding: 0px;
}
.dropdown .dropdown-menu button {
  color: #555555;
  border-radius: 0px;
  text-align: left;
  font-weight: 300;
  width: 100%;
  padding: 0px 20px;
  border: 0px;
}
.dropdown .dropdown-menu button:hover, .dropdown .dropdown-menu button.selected {
  color: #ef2441;
  background: #f6f6f6;
}
.dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #efefef;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ef2441;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 1rem;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #bd243a;
  color: #ffffff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 0px;
  background-color: #ffffff;
}
#header.transparent {
  background-color: transparent;
}
/*#header.transparent .container:has(> .navbar.navbar-mobile) {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}*/

#header .container {
  min-height: 90px;
  padding: 16px 24px;
}
@media (min-width:1200px) {
  #header .container , #header .container-fluid {
    max-width: none;
    padding: 16px 80px;
  }
}

#header.header-scrolled,
#header.header-inner-pages {
/*  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.8);*/
  box-shadow: 0px 0px 16px rgba(127, 137, 161, 0.2);
}

#header .logo {
  display: flex;
  flex: 0 0 auto; 
  margin: 0;
  padding: 0px;
  letter-spacing: 1px;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/

.navbar {
  flex-grow: 1;
  padding: .5rem 0rem;
}

.navbar ul {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: center;
  gap: 16px;
}
.navbar ul.buttons {
  padding: 0px 42px 0px 42px;
}
.navbar ul.search {
  flex-grow: 1;
  padding: 0px 16px 0px 0px;
}
.navbar ul.buttons-end {
  padding: 0px 0px 0px 16px;
  border-left: 1px solid #eaeaea;
}
#header.transparent .navbar ul.buttons-end {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
#header.transparent .navbar.navbar-mobile ul.buttons-end {
  border-left: 0px;
}

@media (min-width: 576px) {
  #navbar ul li.nav-search-small {
    display: none;
  }
}

.navbar>ul>li.nav-btn-full {
  display: flex;
}
.navbar>ul>li.nav-btn-mobile {
  display: none;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
#header.transparent .navbar a,
#header.transparent .navbar a:focus  {
  color: #ffffff;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus {
  color: #ef2441;
}
#header.transparent .navbar a:hover,
#header.transparent .navbar .active,
#header.transparent .navbar .active:focus  {
  color: #eeeeee;
}

.navbar a.nav-redbtn,
.navbar a.nav-redbtn:focus {
  text-align: center;
  height: 40px;
  line-height: 40px;
  width: 44px;
  justify-content: center;
  border-radius: 20px; 
  color: #ffffff;
  background: #ef2441;
  transition: 0.3s;
  font-size: 20px;
}
.navbar a.nav-redbtn:hover,
.navbar a.nav-redbtn:focus:hover {
  color: #ffffff;
  background: #bd243a;
}

#header.transparent .navbar a.nav-redbtn,
#header.transparent .navbar a.nav-redbtn:focus {
  color: #555555;
  background: #ffffff;
}
#header.transparent .navbar a.nav-redbtn:hover,
#header.transparent .navbar a.nav-redbtn:focus:hover {
  color: #333333;
  background: rgba(255, 255, 255, 0.8);
}

.navbar ul li.nav-search {
  position: relative;
  display: flex;
  flex-grow: 1;
  height: 40px;
  line-height: 38px;
  border-radius: 20px;
  border: 1px solid rgba(33, 33, 33, 0.2);
  font-size: 14px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
#header.transparent .navbar ul li.nav-search {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.navbar ul li.nav-search input {
  background: transparent;
  padding: 0 40px 0px 18px;
  display: flex;
  flex-grow: 1;
  width: 60px;
  border: 0px;
  color: #333333;
  z-index: 1;
}
#header.transparent .navbar ul li.nav-search input  {
  color: #ffffff;
}
.navbar ul li.nav-search input:focus{
    outline: none;
}
.navbar ul li.nav-search i {
  position: absolute;
  right: 0px;
  width: 40px;
  top: 0px;
  display: block;
  height: 40px;
  line-height: 38px;
  font-size: 14px;
  color: #cccccc;
  text-align: center;
  z-index: 10;
}
#header.transparent .navbar ul li.nav-search i  {
  color: #ffffff;
}
.navbar ul li.nav-search .pholder-clear {
  cursor: pointer;
  font-size: 1.3rem;
  display: none;
}
.navbar ul li.nav-search .pholder-clear:hover {
  color: #bbbbbb;
}
#header.transparent .navbar ul li.nav-search .pholder-clear:hover  {
  color: #eeeeee;
}
.navbar ul li.nav-search .pholder {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 36px 0px 18px;
  color: #aaaaaa;
  z-index: 0;
}
#header.transparent .navbar ul li.nav-search .pholder {
  color: #ffffff;
}
.navbar ul li.nav-search input:focus ~ .pholder,
.navbar ul li.nav-search input:valid ~ .pholder {
  display: none;
}
.navbar ul li.nav-search input:valid ~ .pholder-clear  {
  display: inline-block;
}
.navbar ul li.nav-search input:valid ~ .pholder-search  {
  display: none;
}

/*
.navbar .dropdown ul {
  border-radius: 6px;
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 50px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #ef2441;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  color: #444444;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #ef2441;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
*/

/**
* Mobile Navigation 
*/

@media (max-width: 575px) {
  .navbar {
    flex-grow: 0;
  }
}
@media (max-width: 991px) {
  .navbar>ul>li.nav-btn-full {
    display: none;
  }
  .navbar>ul>li.nav-btn-mobile {
    display: list-item;
  }
}

i.mobile-nav-toggle {
  position: absolute;
  right: 20px;
  top: 30px;
  color: #444444;
  font-size: 22px;
  cursor: pointer;
  display: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  transition: 0.5s;
  z-index: 1;
}
i.mobile-nav-toggle.fa-close {
  font-size: 24px;
}

#header.transparent i.mobile-nav-toggle {
  color: #ffffff;
}

.navbar-mobile i.mobile-nav-toggle {
  position: absolute;
  top: 44px;
  right: 24px;
  font-size: 1.7rem;
  color: #555555;
}

@media (max-width: 991px) {
  i.mobile-nav-toggle {
    display: block;
  }
  .navbar ul.buttons, .navbar ul.buttons-end {
    display: none;
  }
  .navbar ul.search {
    padding: 0px 50px 0px 32px;
  }
}
@media (max-width: 575px) {
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  overscroll-behavior: contain;
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  padding-top: 90px;
  background-color: #ffffff;
}
#header.transparent .navbar-mobile {
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.navbar-mobile ul {
  width: 100%;
/*  background-color: #ffffff;*/
  overflow-y: auto;
}

.navbar-mobile ul.buttons {
  display: block;
  padding: 16px 10px 0px 10px;
  border-top: 1px solid #eeeeee;
}
#header.transparent .navbar-mobile ul.buttons {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar-mobile ul.buttons-end {
  display: block;
  padding: 0px 10px;
  height: 100%;
}
.navbar-mobile ul.search {
  display: none;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 8px 16px;
  font-size: 1.0rem;
  color: #444444;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ef2441;
}

/*
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ef2441;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}
*/

/*--------------------------------------------------------------
# Search container
--------------------------------------------------------------*/

.search-container {
  display: block;
  transition: .3s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 10;
  top: -200px;
  left: 0px;
  right: 0px;
  margin-left: 0px;
  margin-right: 0px;
  background: #ffffff;
  max-height: 60vh;
  overflow-y: auto;
  border-top: 1px solid #eeeeee;
  overscroll-behavior: contain;
}
.search-container.opened {
  transition: .3s ease;
  visibility: visible;
  opacity: 1;
  top: 71px;
}
@media screen and (min-width: 576px) {
  .search-container.opened {
    top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .search-container.opened {
    top: 116px;
  }
}

.search-container .searching-results {
  overflow: hidden;
  height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search-container .searching-results.opened {
  height: 104px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.search-container .searching-results i {
  color: #ef2441;
  font-size: 1.6rem;
}

.search-container .search-results {
  margin-left: 0px;
  margin-right: 0px;
}

@media (min-width:1200px) {
  .search-container .search-results {
    margin-left: 80px;
    margin-right: 80px;
  }
}

.search-container .search-results table {
  width: 100%;
  margin-bottom: 14px;
}
.search-container .search-results table thead tr {
  height: 40px;
}
.search-container .search-results table thead tr.noresults {
  height: 90px;
}
.search-container .search-results table thead tr.noresults td {
  padding: 17px 10px 3px 10px;
  text-align: center;
}
.search-container .search-results table thead tr td {
  padding: 10px 10px 0px 10px;
}
.search-container .search-results table thead tr td span {
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.search-container .search-results table tbody tr {
  height: 50px;
  vertical-align: middle;
}
.search-container .search-results table tbody tr td {
  padding: 0px 5px;
}
.search-container .search-results table tbody td .button {
  display: block;
  padding: 5px;
  border-radius: 10px;
}
.search-container .search-results table tbody td .button:hover {
  background: rgba(127, 137, 161, 0.05);
  cursor: pointer;
}
.search-container .search-results table tbody tr td .search-img {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  background-color: #eeeeee;
  vertical-align: middle;
  margin-right: 10px;
}
.search-container .search-results table tbody tr td span {
  font-weight: 400;
  font-size: 1.0rem;
  color: #777777;
  vertical-align: middle;
}
.search-container .search-results table tbody tr td span.title {
  font-weight: 500;
  font-size: 1.0rem;
  color: #555555;
  vertical-align: middle;
}
.search-container .search-results table tbody tr td span.noresults {
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #777777;
  vertical-align: middle;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background-size: cover;
}

#hero .container,
#hero .container-fluid {
  padding-top: 84px;
}

#hero h1, #hero h2 {
  margin: 0;
  text-shadow: 0px 2px 1px rgba(255, 255, 255, 0.6);
}

#hero .hero-text {
    position: relative;
    gap: 1.2vw;
}

@media (max-width: 1199px) {
  #hero {
    text-align: center;
  }
}


/*calc((((((100vw - 160px) * .58) * .56) + 20px)*/

@media screen and (min-width: 1200px) and (max-height: calc((((100vw) * .58) * .56 ) + 180px)) {
  #hero {
    height: auto;
    padding: 40px 0px;
  }
}

@media screen and (max-width: 1199px) and (max-height: 825px) {
  #hero {
    height: auto;
    padding: 40px 0px;
  }
}

@media screen and (max-width: 991px) {
  #hero {
    height: auto;
    padding: 40px 0px;
  }
}

@media screen and (max-width: 575px) {
  #hero {
    height: auto;
    padding: 34px 0px;
  }
}



/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes left-right {
  0% {
    transform: translateX(5px);
  }

  100% {
    transform: translateX(-5px);
  }
}




/*--------------------------------------------------------------
# Hero cubes
--------------------------------------------------------------*/

#hero {
  position: relative;
  background-image: linear-gradient(#ffffff, #f1f1f1, #efefef);
}

.cubes{
    display: none;
}
@media (min-width:576px) {
  .cubes{
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
  }

  .cubes li{
      position: absolute;
      display: block;
      list-style: none;
      width: 20px;
      height: 20px;
      background: rgba(255, 255, 255, 0.8);
      animation: animate-cubes 25s linear infinite;
      bottom: -150px;
      
  }

  .cubes li:nth-child(1){
      left: 25%;
      width: 80px;
      height: 80px;
      animation-delay: 0s;
  }


  .cubes li:nth-child(2){
      left: 10%;
      width: 20px;
      height: 20px;
      animation-delay: 2s;
      animation-duration: 12s;
  }

  .cubes li:nth-child(3){
      left: 70%;
      width: 20px;
      height: 20px;
      animation-delay: 4s;
  }

  .cubes li:nth-child(4){
      left: 40%;
      width: 60px;
      height: 60px;
      animation-delay: 0s;
      animation-duration: 18s;
  }

  .cubes li:nth-child(5){
      left: 65%;
      width: 20px;
      height: 20px;
      animation-delay: 0s;
  }

  .cubes li:nth-child(6){
      left: 15%;
      width: 110px;
      height: 110px;
      animation-delay: 3s;
  }

  .cubes li:nth-child(7){
      left: 35%;
      width: 150px;
      height: 150px;
      animation-delay: 7s;
  }

  .cubes li:nth-child(8){
      left: 50%;
      width: 25px;
      height: 25px;
      animation-delay: 15s;
      animation-duration: 45s;
  }

  .cubes li:nth-child(9){
      left: 20%;
      width: 15px;
      height: 15px;
      animation-delay: 2s;
      animation-duration: 35s;
  }

  .cubes li:nth-child(10){
      left: 5%;
      width: 150px;
      height: 150px;
      animation-delay: 0s;
      animation-duration: 11s;
  }

  @keyframes animate-cubes {
      0%{
          transform: translateY(0) rotate(0deg);
          opacity: 1;
          border-radius: 0;
      }
      100%{
          transform: translateY(-1000px) rotate(720deg);
          opacity: 0;
          border-radius: 50%;
      }
  }
}


/*--------------------------------------------------------------
# Hero carousel
--------------------------------------------------------------*/
#hero .carousel {
  max-width: 920px;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  margin-bottom: 0px;
  overflow: hidden;
  cursor: default;
}
#hero .carousel-indicators {
  position: relative; 
  display: flex;
  flex-grow: 1;
  justify-content: center;
  padding-left: 0;
  margin-top: 30px;
  margin-right: 0px;
  margin-left: 0px;
  list-style: none;
}

#hero .carousel-indicators li {
  width: 50px;
  height: 6px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 1;
  border-top: 0px;
  border-bottom: 0px;
  border-radius: 3px;
  margin-bottom: 2px;
  overflow: hidden;
  transition: opacity .6s ease;
}

#hero .carousel-indicators .active {
  background-color: #ef2441;
}

#hero .carousel-inner {
  padding: 0px;
  border-radius: 40px;
  box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.15);

/*  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0)*/
}

#hero .carousel-collection .carousel-collection-item {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  background: #ffffff;
  overflow: hidden;
}

#hero .carousel-collection .carousel-collection-item .carousel-image {
  display: flex;
  flex: 2;
  padding-top: 56%;
  min-width: 250px;
  border: 10px solid #ffffff;
  border-radius: 42px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

#hero .carousel-collection .carousel-collection-item .carousel-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 1;
  padding: 10px 10px 10px 0px;
  overflow: hidden;
  min-width: 200px;
}

#hero .carousel-collection .carousel-collection-item .carousel-info .box-avatar {
  display: flex;
  flex: 2;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 30px 10px 20px 10px;
}


@media (max-width: 1199px) {
  #hero .carousel {
    max-width: 80%;
  }
  #hero .carousel-collection .carousel-collection-item .carousel-image {
    padding-top: 52%;
  }
}

@media (max-width: 767px) {
  #hero .carousel {
    max-width: 90%;
  }
}

@media (max-width: 575px) {
  #hero .carousel {
    max-width: none;
  }
  #hero .carousel-collection .carousel-collection-item .carousel-image {
    padding-top: 80%;
  }
  #hero .carousel-collection .carousel-collection-item .carousel-info .box-avatar {
    display: none;
  }
  #hero .carousel-collection .carousel-collection-item .carousel-info {
    min-width: 100%;
    padding: 10px;
  }
}

#hero .carousel-collection .carousel-collection-item .box-avatar .avatar {
  display: flex;
  width: 70%;
  padding-top: 70%;
  border-radius: 70%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

#hero .carousel-collection .carousel-collection-item .carousel-info .box-infos {
  flex-wrap: wrap;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
}

#hero .carousel-collection .carousel-collection-item .carousel-info .box-btn {
  display: flex;
  flex-direction: column;
  padding: 10px;
  width: 100%;
}

#hero .carousel-collection .carousel-collection-item .carousel-info .box-infos .box {
  display: flex;
  flex-grow: 1;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

#hero .carousel-collection .carousel-collection-item .carousel-info .box-infos .box h3 {
  overflow: hidden;
  text-align: center;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0px 0px 16px 0px;
}
#hero .carousel-collection .carousel-collection-item .carousel-info .box-infos .box span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  width: 100%;
  height: 50px;
  text-overflow: ellipsis;
}

#hero .carousel-collection .carousel-collection-item .carousel-info .box-infos .box .redbtn {
  margin-top: 20px;
}


/*--------------------------------------------------------------
# Multi carousel
--------------------------------------------------------------*/

@media (min-width: 576px) {
  #main .carousel.multi-carousel .carousel-inner {
    display: flex;
  }
  #main .carousel.multi-carousel .carousel-item {
    margin-right: 0;
    flex: 0 0 50%;
    display: block;
  }
}
@media (min-width: 768px) {
  #main .carousel.multi-carousel .carousel-item {
    flex: 0 0 33.333333%;
  }
}
@media (min-width: 992px) {
  #main .carousel.multi-carousel .carousel-item {
    flex: 0 0 25%;
  }
}
@media (min-width: 1400px) {
  #main .carousel.multi-carousel .carousel-item {
    flex: 0 0 20%;
  }
}
@media (min-width: 1640px) {
  #main .carousel.multi-carousel .carousel-item {
    flex: 0 0 16.666666%;
  }
}

#main .carousel.multi-carousel .carousel-control-prev, #main .carousel.multi-carousel .carousel-control-next{
    transition: .6s ease;
    background-color: #ef2441;
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    z-index: 1;
}
#main .carousel.multi-carousel .carousel-control-prev:hover, #main .carousel.multi-carousel .carousel-control-next:hover {
    background: #bd243a;
    opacity: 1;
}
#main .carousel.multi-carousel .carousel-control-prev {
    left: -12px;
}
#main .carousel.multi-carousel .carousel-control-next {
    right: -12px;
}

@media (min-width: 576px) {
  #main .carousel.multi-carousel .carousel-control-prev.disabled, #main .carousel.multi-carousel .carousel-control-next.disabled {
    transition: .6s ease;
    opacity: 0.4;
    cursor: default;
  }
}

#main .carousel.multi-carousel .carousel-inner {
    /*padding: 1em 0px;*/
}

#main .carousel.multi-carousel {
    margin: 0px 10px;
}

#main .carousel.multi-carousel .carousel-item {
  padding: 14px 10px;
  overflow: hidden;
}

#main .carousel.multi-carousel .card {
    transition: .3s ease;
    margin-top: 6px;
    display: flex;
    padding: 0px;
    overflow: hidden;
    border-radius: 30px;
    border: 0px;
    box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.12);
}
#main .light-grey .carousel.multi-carousel .card {
    box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.05);
}

@media (min-width: 576px) {
  #main .carousel.multi-carousel .card:hover {
      transition: .3s ease;
      margin-top: 0px;
      box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.20);
  }
  #main .light-grey .carousel.multi-carousel .card:hover {
      box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.15);
  }
}

#main .carousel.multi-carousel .card .box-avatar {
  position: relative;
  display: flex; 
  padding: 40px 0px 0px 0px;
  align-items: end;
  justify-content: center;
}

#main .carousel.multi-carousel .card .box-avatar .avatar {
  display: flex;
  width: 50%;
  padding-top: 50%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

#main .carousel.multi-carousel .card .box-avatar .verified {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  bottom: 5%;
  left: calc(68% - 18px);
  line-height: 36px;
  text-align: center;
}
#main .carousel.multi-carousel .card .box-avatar .verified .fa-stack {
  text-align: center;
}
#main .carousel.multi-carousel .card .box-avatar .verified i.fa-check {
  color: #ffffff;
  text-align: center;
  line-height: 36px;
  font-size: 12px;
}
#main .carousel.multi-carousel .card .box-avatar .verified i.fa-circle {
  color: #71BF8C;
  text-align: center;
  line-height: 36px;
  font-size: 20px;
}
#main .carousel.multi-carousel .card .box-avatar .verified i.fa-seal {
  color: #90DEA9;
  text-align: center;
  line-height: 36px;
  font-size: 36px;
  text-shadow: 0px 3px 6px rgba(33, 33, 33, 0.1);
}

#main .carousel.multi-carousel .card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#main .carousel.multi-carousel .card .card-body h3 {
  overflow: hidden;
  text-align: center;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#main .carousel.multi-carousel .card .card-body .card-title {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  text-align: center;
  height: 40px;
  margin: 0px;
}

#main .carousel.multi-carousel .card .card-body .card-value {
  font-weight: 500;
  margin: 0px;
}

#main .carousel.multi-carousel .card .card-body .card-currency {
  font-weight: normal;
  margin: 0px;
}

#main .carousel.multi-carousel .card .card-body .card-grow {
  margin: 0px;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/

a.redbtn {
  font-weight: 600;
  font-size: 1.0rem;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0px 60px 0px 30px;
  height: 50px;
  white-space: normal;
  line-height: 50px;
  border-radius: 25px;
  transition: 0.5s;
  color: #ffffff;
  background: #ef2441;
  position: relative;
  text-align: left;
}
a.redbtn.fit {
  width: fit-content;
}

a.redbtn:hover {
  background: #bd243a;
}

a.redbtn i {
  font-size: 1.2rem;
  position: absolute;
  right: 26px;
  top: 0px;
  line-height: 48px;
  animation: left-right 2s ease-in-out infinite alternate-reverse both;
}


/*--------------------------------------------------------------
# Section
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
/*  font-size: 32px;*/
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #ef2441;
  bottom: 0;
  left: calc(50% - 25px);
}

.section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}
.section.halfpadding {
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.section.nopadding-top {
  padding: 0 0 60px 0;
}
.section.nopadding-bottom {
  padding: 60px 0 0 0;
}
.section.nopadding {
  padding: 0px;
}
@media screen and (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
  .section.nopadding-top {
    padding: 0 0 40px 0;
  }
  .section.nopadding-bottom {
    padding: 40px 0 0 0;
  }
  .section.nopadding {
    padding: 0px;
  }
}
@media screen and (max-width: 575px) {
  .section {
    padding: 30px 0;
  }
  .section.nopadding-top {
    padding: 0 0 30px 0;
  }
  .section.nopadding-bottom {
    padding: 30px 0 0 0;
  }
  .section.nopadding {
    padding: 0px;
  }
}

.section.light-grey {
  background-color: #f9f9f9;
}

.section .content ul {
  list-style: none;
  padding: 0;
}

.section .content ul li {
  padding-bottom: 10px;
}

.section .content ul i {
/*  vertical-align: text-top;*/
  padding-right: 4px;
  color: #ef2441;
}

.section .content p:last-child {
  margin-bottom: 0;
}

.section .content.content-buttons {
  flex-direction: row;
  justify-content: right;
  column-gap: 30px;
}
@media (max-width:575px) {
  .section .content.content-buttons {
    justify-content: left;
    column-gap: 16px;
  }
}

.section .content.content-buttons a {
  text-decoration: none;
}

.section .content.content-buttons a.active, .section .content.content-buttons a:hover {
  color: #ef2441;
  text-decoration: none;
}

.section .content.content-buttons a.active {
  font-weight: 900;
  color: #ef2441;
}

.section .content {
  display: flex;
/*  align-self: center;*/
  padding-top: 5px;
  padding-bottom: 5px;
  gap: 10px;
  flex-direction: column;
}
.section .content.nopadding {
  padding: 0px;
}
@media (max-width:575px) {
  .section .content {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .section .content.small-center {
    text-align: center;
    justify-content: center;
  }
}
.section .content.content-vertical {
  flex-wrap: wrap;
}

.section .content.content-center {
  align-content: center;
  justify-content: center;
}
.section .content.content-center-v {
  align-content: center;
}
.section .content.content-center-h {
  justify-content: center;
}



.section .content .collection-item {
  overflow: hidden;
  padding: 14px 10px;
  flex: 1;
}

.section .content .collection-item .card {
  margin-top: 6px;
  transition: .3s ease;
  display: flex;
  padding: 0px;
  overflow: hidden;
  border-radius: 30px;
  border: 0px;
  box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.12);

/*  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0)*/
}
.section .content .collection-item .card:hover {
  box-shadow: 0px 4px 10px rgba(127, 137, 161, 0.20);
}

.section .content .collection-item .card .avatar {
  position: absolute;
  margin-top: 36%;
  left: 16px;
  display: block;
  width: 20%;
  padding-top: calc(20% - 6px);
  border-radius: 50%;
  border: 3px solid #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  z-index: 1;
}

.section .content .collection-item .card .card-image {
  position: relative;
  padding-top: 46%;
  overflow: hidden;
}

.section .content .collection-item .card .card-image .card-image-content {
  transition: 0.3s;
  position: absolute;
  display: block;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}


@media (min-width:992px) {
  .section .content .collection-item .card:hover {
    margin-top: 0px;
  }
}

.section .content .collection-item .card:hover .card-image .card-image-content {
    transition: 0.3s;
    -ms-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.section .content .collection-item .card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  padding: 13% 19px 16px 19px;
}

.section .content .collection-item .card .card-body .card-title {
  flex-grow: 1;
}

.section .content .collection-item .card .card-body .card-title h3 {
  overflow: hidden;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.section .content .collection-item .card .card-body .card-box-horizontal {
  display: flex;
}

.section .content .collection-item .card .card-body .card-box {
  flex: 1;
}

.button {
  cursor: pointer;
}
.button.readmore {
  font-weight: 600;
}

.section .table {
  margin: 6px 0px;
}

p.text-readmore {
  width: 100%;
  margin: 0px;
}
p.text-readmore.active {
  white-space: normal;
}
p.text-readmore span.text-readmore-full {
  display: none;
}
p.text-readmore.active span.text-readmore-full {
  display: inline;
}
p.text-readmore span.text-readmore-short {
  display: inline;
}
p.text-readmore.active span.text-readmore-short {
  display: none;
}

.section .table thead tr th {
  border: 0px;
  font-size: 0.9rem;
  font-weight: 400;
  color: #ef2441;
  text-transform: uppercase;
  vertical-align: middle;
}

.section .table thead tr th.cnt {
  width: 24px;
  padding: 0px;
  text-align: center;
}

.section .table thead tr th.small, .section .table tbody tr td.small {
  width: 120px;
  min-width: 120px;
  text-align: right;
}

section .table tbody {
  cursor: pointer;
}
.section .table tbody tr:hover {
  background: rgba(127, 137, 161, 0.05);
}
.section .table tbody tr td.cnt {
  padding: 0px;
  text-align: center;
}

.section .table tbody tr td {
  border: 0px;
  font-size: 1.0rem;
  font-weight: 400;
  color: #777777;
  vertical-align: middle;
  padding: 12px 8px;

  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100px;
}

.section .table tbody tr td.bold {
  font-weight: 500;
  color: #555555;
}

.section .table tbody tr td .table-img {
  display: inline-block;
  height: 70px;
  width: 70px;
  border-radius: 12px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0px 4px 8px rgba(127, 137, 161, 0.1);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f2f6f9;
  min-height: 40px;
  margin-top: 85px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 56px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  font-size: 14px;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c6387;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer, #footer p, #footer div, #footer span {
  color: #ffffff;
}
#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer h5,
#footer h6 {
  color: #ffffff;
}

#footer {
  background: linear-gradient(45deg, rgba(239, 36, 65, 0.9) 0%, rgba(180, 20, 50, 0.9) 100%), url("../img/hero-bg.jpg") center center no-repeat;
  background-size: cover;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  position: relative;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  color: #ffffff;
  margin: 0 0 30px 0;
  text-transform: uppercase;
}

#footer .footer-top .footer-contact p {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

#footer .footer-top h4 {
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
/*  text-decoration: underline;*/
  color: #ffffff;
}

#footer .footer-top .footer-links ul a i {
  vertical-align: bottom;
  padding-right: 8px;
}

#footer .copyright-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Container
--------------------------------------------------------------*/
.row {
  justify-content: center;
}
@media (min-width:576px) {
  .container {
    max-width: none;
  }
}
@media (min-width:768px) {
  .container {
    max-width: none;
  }
}
@media (min-width:992px) {
  .container {
    max-width: none;
  }
}
@media (min-width:1200px) {
  .container, .container-fluid {
    max-width: 1920px;
    padding: 0px 80px;
  }
}
@media (max-width: 1199px) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    padding-left: 24px;
    padding-right: 24px;
  }
}


/*--------------------------------------------------------------
# Small radius
--------------------------------------------------------------*/

@media (max-width:575px) {
  #hero .carousel-inner {
    border-radius: 15px;
  }
  #hero .carousel-collection .carousel-collection-item .carousel-image {
    border-radius: 20px;
  }
  #main .carousel.multi-carousel .card {
    border-radius: 10px;
  }
  .section .content .collection-item .card {
    border-radius: 10px;
  }
}
