body {
  font-family: "Rubik", sans-serif;
  color: #000814;
}

a {
  text-decoration: none;
  color: #000814;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
a:hover {
  color: #1EFFE0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  font-weight: 400;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn.btn-main {
  background-color: #1EFFE0;
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 1px #1EFFE0;
  -moz-box-shadow: inset 0 0 0 1px #1EFFE0;
  -ms-box-shadow: inset 0 0 0 1px #1EFFE0;
  -o-box-shadow: inset 0 0 0 1px #1EFFE0;
  box-shadow: inset 0 0 0 1px #1EFFE0;
  color: #1EFFE0;
}
.btn.btn-main:hover {
  -webkit-box-shadow: inset 0 0 0 2px #1EFFE0;
  -moz-box-shadow: inset 0 0 0 2px #1EFFE0;
  -ms-box-shadow: inset 0 0 0 2px #1EFFE0;
  -o-box-shadow: inset 0 0 0 2px #1EFFE0;
  box-shadow: inset 0 0 0 2px #1EFFE0;
}
.btn.btn-outline {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 1px white;
  -moz-box-shadow: inset 0 0 0 1px white;
  -ms-box-shadow: inset 0 0 0 1px white;
  -o-box-shadow: inset 0 0 0 1px white;
  box-shadow: inset 0 0 0 1px white;
  color: white;
}
.btn.btn-outline:hover {
  -webkit-box-shadow: inset 0 0 0 2px white;
  -moz-box-shadow: inset 0 0 0 2px white;
  -ms-box-shadow: inset 0 0 0 2px white;
  -o-box-shadow: inset 0 0 0 2px white;
  box-shadow: inset 0 0 0 2px white;
}
.btn.btn-solid {
  background-color: #1EFFE0;
  font-weight: 500;
}
.btn.btn-solid:hover {
  color: black;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(30, 255, 224, 0.3);
  -moz-box-shadow: 0 0.5rem 1rem rgba(30, 255, 224, 0.3);
  -ms-box-shadow: 0 0.5rem 1rem rgba(30, 255, 224, 0.3);
  -o-box-shadow: 0 0.5rem 1rem rgba(30, 255, 224, 0.3);
  box-shadow: 0 0.5rem 1rem rgba(30, 255, 224, 0.3);
}
.btn.btn-white {
  background-color: white;
}
.btn.btn-link {
  font-weight: 500;
  color: #0DB2A2;
}
.btn.btn-user strong {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10rem;
}
.btn.btn-red {
  background-color: lightcoral;
}

.btn-close {
  background: none;
  width: auto;
  height: auto;
}

.mvh-100 {
  min-height: 100vh;
  height: 100%;
}

.text-green {
  color: #8ac926;
}

.text-red {
  color: lightcoral;
}

.fw-medium {
  font-weight: 500;
}

.fc-sec {
  color: #1EFFE0 !important;
}

.fc-gray {
  color: gray !important;
}

.fc-dsec {
  color: #0DB2A2 !important;
}

.fs-12 {
  font-size: 0.75rem;
}

.fs-14 {
  font-size: 0.875rem;
}

.form-control, .form-select {
  border: none;
  -webkit-box-shadow: inset 0 0 0 1px white;
  -moz-box-shadow: inset 0 0 0 1px white;
  -ms-box-shadow: inset 0 0 0 1px white;
  -o-box-shadow: inset 0 0 0 1px white;
  box-shadow: inset 0 0 0 1px white;
}
.form-control:focus, .form-select:focus {
  -webkit-box-shadow: inset 0 0 0 1px white;
  -moz-box-shadow: inset 0 0 0 1px white;
  -ms-box-shadow: inset 0 0 0 1px white;
  -o-box-shadow: inset 0 0 0 1px white;
  box-shadow: inset 0 0 0 1px white;
}

.form-upload {
  position: relative;
  background-color: rgba(211, 211, 211, 0.2);
  padding: 1rem;
  border-radius: 1rem;
}
.form-upload .form-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: 0.5rem;
  border: 1px dashed rgba(128, 128, 128, 0.3);
  margin: 0;
  color: gray;
  flex-direction: column;
}
.form-upload .form-control {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.form-custom {
  border-radius: 0;
  border-bottom: 2px solid lightgray;
}

button.form-custom {
  position: relative;
}
button.form-custom:after {
  background-image: url(../images/icons/chevron-down.svg);
  background-size: contain;
  border: none;
  width: 1.5rem;
  height: 1.5rem;
  position: absolute;
  right: 0.5rem;
  top: 0.25rem;
}

.form-check {
  padding-left: 2rem;
}
.form-check .form-check-input, .form-check .form-check-label {
  cursor: pointer;
}
.form-check .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: none;
  background-color: transparent;
  margin-left: -2rem;
  -webkit-box-shadow: 0 0 0 1px #1EFFE0;
  -moz-box-shadow: 0 0 0 1px #1EFFE0;
  -ms-box-shadow: 0 0 0 1px #1EFFE0;
  -o-box-shadow: 0 0 0 1px #1EFFE0;
  box-shadow: 0 0 0 1px #1EFFE0;
}
.form-check .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 1px #1EFFE0;
  -moz-box-shadow: 0 0 0 1px #1EFFE0;
  -ms-box-shadow: 0 0 0 1px #1EFFE0;
  -o-box-shadow: 0 0 0 1px #1EFFE0;
  box-shadow: 0 0 0 1px #1EFFE0;
}
.form-check .form-check-input:checked {
  background-color: #1EFFE0;
}
.form-check .form-check-input:checked[type=checkbox] {
  background-image: url(../images/icons/check.svg);
}

.progress {
  height: 0.25rem;
  background-color: rgba(128, 128, 128, 0.3);
}
.progress .progress-bar {
  background-color: #1EFFE0;
}

h1.title {
  position: relative;
}
h1.title:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 10rem;
  height: 2px;
  background-color: #1EFFE0;
}
h1.title.text-start:before {
  left: 0;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.abs-img {
  position: relative;
  overflow: hidden;
}
.abs-img:before {
  content: "";
  display: block;
}
.abs-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center center;
}
.abs-img.abs11:before {
  padding-bottom: 100%;
}
.abs-img.abs169:before {
  padding-bottom: 56.25%;
}

.swiper-pagination .swiper-pagination-bullet {
  background-color: gray;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #1EFFE0;
}

.fixed-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  clip: rect(0, auto, auto, 0);
  overflow: hidden;
}
.fixed-image img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.nav-custom .nav-link {
  border: none;
  background-color: transparent;
  color: gray;
  font-weight: 500;
}
.nav-custom .nav-link.active {
  color: #000814;
}
.nav-custom.nav-market .nav-item {
  position: relative;
  border-bottom: 2px solid rgba(30, 255, 224, 0);
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.nav-custom.nav-market .active {
  border-bottom: 2px solid #1effe0;
  background-color: rgba(30, 255, 224, 0.1);
}

.accordion .accordion-item {
  border: none;
  margin-bottom: 0.5rem;
}
.accordion .accordion-button {
  background-color: rgba(30, 255, 224, 0.1);
  color: #000814;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
}
.accordion .accordion-button:after {
  background-image: url(../images/icons/plus-black.svg);
}
.accordion .accordion-button[aria-expanded=true]:after {
  background-image: url(../images/icons/minus-black.svg);
}
.accordion .accordion-collapse {
  background-color: rgba(30, 255, 224, 0.1);
}

.offcanvas {
  background-color: #000814;
}
.offcanvas li a {
  color: white;
}
.offcanvas li .active {
  color: #1EFFE0;
}

.pagination .page-item.active .page-link {
  -webkit-box-shadow: inset 0 0 0 1px #1EFFE0;
  -moz-box-shadow: inset 0 0 0 1px #1EFFE0;
  -ms-box-shadow: inset 0 0 0 1px #1EFFE0;
  -o-box-shadow: inset 0 0 0 1px #1EFFE0;
  box-shadow: inset 0 0 0 1px #1EFFE0;
  background-color: white;
  color: #0DB2A2;
}
.pagination .page-item .page-link {
  border-radius: 0.25rem;
  border: none;
  color: gray;
  height: 3rem;
  width: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.swiper-btn {
  width: 3rem;
  height: 3rem;
  background-color: white;
  padding: 1rem;
  border-radius: 50%;
}
.swiper-btn:after {
  font-size: 1rem;
  color: #000814;
}

.sticky {
  position: sticky;
  top: 1rem;
}

header {
  background-color: rgba(0, 8, 20, 0.8);
  position: relative;
  top: 0;
  z-index: 10;
}
header .logo img {
  height: 4rem;
}
header nav a {
  padding: 1rem;
  color: white;
  border-radius: 0.25rem;
}
header nav a:hover, header nav a.active {
  color: #1EFFE0;
  background-color: rgba(255, 255, 255, 0.1);
}

.front-overlay {
  position: relative;
  z-index: 1;
}
.front-overlay .front-content {
  background-color: rgba(0, 8, 20, 0.8);
  position: relative;
  z-index: 1;
}
.front-overlay .front-content .detail li {
  padding: 0.25rem 0;
}
.front-overlay .front-content .detail li + li {
  border-top: 1px solid #1EFFE0;
}
.front-overlay .front-content .puzzle-count strong {
  width: 5rem;
}

.front-content.detail-content {
  background-color: rgba(211, 211, 211, 0.2);
}
.front-content.detail-content .detail li {
  padding: 0.25rem 0;
}
.front-content.detail-content .detail li + li {
  border-top: 1px solid #1EFFE0;
}
.front-content.detail-content .btn-outline {
  -webkit-box-shadow: inset 0 0 0 1px #1EFFE0;
  -moz-box-shadow: inset 0 0 0 1px #1EFFE0;
  -ms-box-shadow: inset 0 0 0 1px #1EFFE0;
  -o-box-shadow: inset 0 0 0 1px #1EFFE0;
  box-shadow: inset 0 0 0 1px #1EFFE0;
}
.front-content.detail-content .puzzle-count strong {
  width: 5rem;
}

.front-timer ul {
  padding: 1rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 0 0 1px #1EFFE0;
  -moz-box-shadow: 0 0 0 1px #1EFFE0;
  -ms-box-shadow: 0 0 0 1px #1EFFE0;
  -o-box-shadow: 0 0 0 1px #1EFFE0;
  box-shadow: 0 0 0 1px #1EFFE0;
}
.front-timer ul li:nth-child(odd) {
  width: 4rem;
}

hr {
  border-top-color: lightgray;
}

.single-puzzle {
  -webkit-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  -moz-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  -ms-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  -o-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  border-radius: 0.5rem;
  display: block;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.single-puzzle:hover {
  background-color: rgba(30, 255, 224, 0.1);
  -webkit-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  -moz-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  -ms-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  -o-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
}
.single-puzzle span {
  color: gray;
}
.single-puzzle strong {
  font-weight: 500;
  color: #000814;
}
.single-puzzle .btn-fav {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background-color: rgba(255, 255, 255, 0.3);
}
.single-puzzle .btn-fav.active .default {
  display: none;
}
.single-puzzle .btn-fav.active .active {
  display: block;
}
.single-puzzle .btn-fav img {
  width: 100%;
  height: 100%;
  position: relative;
}
.single-puzzle .btn-fav .default {
  display: block;
}
.single-puzzle .btn-fav .active {
  display: none;
}

.front-status {
  position: relative;
}
.front-status .content {
  background-color: rgba(0, 8, 20, 0.8);
  position: relative;
  z-index: 1;
}
.front-status .content strong {
  position: relative;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
}
.front-status .content strong:before {
  content: "";
  position: absolute;
  width: 5rem;
  background-color: #1EFFE0;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.front-about.about-page .single {
  height: 100%;
}
.front-about .single {
  background-color: rgba(30, 255, 224, 0.1);
  padding: 2rem 1rem;
  border-radius: 1rem;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.front-about .single:hover {
  -webkit-box-shadow: inset 0 0 0 1px #1EFFE0;
  -moz-box-shadow: inset 0 0 0 1px #1EFFE0;
  -ms-box-shadow: inset 0 0 0 1px #1EFFE0;
  -o-box-shadow: inset 0 0 0 1px #1EFFE0;
  box-shadow: inset 0 0 0 1px #1EFFE0;
}
.front-about .single strong {
  font-weight: 500;
  min-height: 3rem;
  margin-bottom: 0.25rem;
}
.front-about .single img {
  margin-bottom: 0.5rem;
}
.front-about .swiper-slide {
  display: flex;
  align-self: stretch;
  height: auto;
}

.front-market {
  position: relative;
}
.front-market .content {
  background-color: rgba(0, 8, 20, 0.8);
  position: relative;
  z-index: 1;
}

.front-news .single-news {
  -webkit-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  -moz-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  -ms-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  -o-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.3);
  border-radius: 0.5rem;
  display: block;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.front-news .single-news:hover {
  background-color: rgba(30, 255, 224, 0.1);
  -webkit-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  -moz-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  -ms-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  -o-box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
  box-shadow: inset 0 0 0 1px rgba(30, 255, 224, 0.3);
}
.front-news .single-news strong, .front-news .single-news span {
  color: #000814;
}

footer {
  position: relative;
}
footer .content {
  background-color: rgba(0, 8, 20, 0.8);
  position: relative;
  z-index: 1;
}
footer .content a {
  color: gray;
}
footer .content a:hover {
  color: white;
}

.log-image {
  position: relative;
  background-color: #000814;
}
.log-image .logo {
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 4rem;
}
.log-image .bg-image {
  opacity: 0.2;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.registry-number .form-select {
  width: 4rem;
  flex-grow: 0;
}

.register-steps li {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: #f2f2f2;
  font-weight: 500;
  text-align: center;
  line-height: 1.5rem;
  position: relative;
}
.register-steps li + li {
  margin-left: 2rem;
}
.register-steps li + li:before {
  content: "";
  position: absolute;
  top: 50%;
  width: 1.5rem;
  left: -1.75rem;
  border-top: 1px solid #1EFFE0;
}
.register-steps li.done {
  opacity: 0.5;
}
.register-steps li.done:before {
  border-top: 1px solid lightgray;
}
.register-steps li.active {
  background-color: #1EFFE0;
}
.register-steps li.active:before {
  border-top: 1px solid lightgray;
}

.profile-container {
  border-radius: 0.5rem;
  -webkit-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.5);
  -moz-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.5);
  -ms-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.5);
  -o-box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.5);
  box-shadow: inset 0 0 0 1px rgba(211, 211, 211, 0.5);
  padding: 1rem 1rem 0;
}
.profile-container .wallet-info li + li {
  border-top: 1px solid #1EFFE0;
}
.profile-container .nav .nav-link {
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.profile-container .nav .nav-link.active {
  border-bottom: 2px solid #1EFFE0;
}

.profile-left {
  padding: 2rem 1rem;
  background-color: rgba(211, 211, 211, 0.2);
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}
.profile-left .user img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
  object-position: center center;
}

.user-menu {
  border-top: 1px solid lightgray;
  padding-top: 1rem;
}
.user-menu .active a, .user-menu li:hover a {
  color: #000814;
  background-color: white;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}
.user-menu .active a .chevron, .user-menu li:hover a .chevron {
  opacity: 1;
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}
.user-menu a {
  color: gray;
  margin: 0 -1rem 0 -0.5rem;
}
.user-menu a strong {
  font-weight: 400;
}
.user-menu a .chevron {
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}

.offcanvas .user-menu a {
  margin: 0;
}
.offcanvas .user-menu .active a, .offcanvas .user-menu li:hover a {
  border-radius: 0.5rem;
}
.offcanvas .main-menu a {
  display: flex;
  align-items: center;
  width: 100%;
}
.offcanvas .main-menu .active a {
  background-color: white;
  color: #000814;
  border-radius: 0.25rem;
}

.mobile-user-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0.5rem 1rem;
  -webkit-box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 -0.5rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 10;
  background-color: white;
}

.news-detail-content {
  margin: 2rem 0;
}
.news-detail-content img {
  width: 100%;
  border-radius: 0.25rem;
  margin: 1rem 0;
}
.news-detail-content h1 {
  font-size: 1.5rem;
}

.social-drop img {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0;
}
.social-drop .dropdown-menu {
  padding: 0.5rem 0.5rem 0;
  border: none;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.social-drop .dropdown-menu .btn {
  margin-bottom: 0.5rem;
}
.social-drop .dropdown-menu .btn:hover {
  background-color: rgba(30, 255, 224, 0.1);
  color: #0DB2A2;
}

.about-header ul {
  padding: 0 1rem;
}
.about-header li {
  padding: 0.5rem;
  position: relative;
  display: block;
  width: 20%;
}
.about-header li:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
}
.about-header li:before {
  content: "";
  padding-bottom: 150%;
  display: block;
}
.about-header li img {
  display: block;
  width: calc(100% - 1rem);
  height: calc(100% - 1rem);
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  border-radius: 0.5rem;
  -webkit-transition: 0.2s ease;
  -moz-transition: 0.2s ease;
  -ms-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.about-header li:nth-child(1) img, .about-header li:nth-child(3) img {
  top: 10%;
}
.about-header li:nth-child(2) img {
  top: 20%;
}
.about-header li:nth-child(4) img {
  top: -10%;
}
.about-header li:nth-child(5) img {
  top: 5%;
}

.app-download {
  background-color: #000814;
}
.app-download li {
  max-width: 8rem;
  margin-right: 1rem;
  align-self: stretch;
}
.app-download li:last-child {
  margin: 0;
}
.app-download a {
  background-color: white;
  height: 100%;
}

.about-team .single {
  background-color: rgba(30, 255, 224, 0.1);
  padding: 1rem;
  border-radius: 1rem;
}
.about-team .single .image {
  margin-bottom: 0.5rem;
}

.detailSlide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.market-container {
  background-color: rgba(211, 211, 211, 0.2);
}

@media (max-width: 991.98px) {
  .swiper-btn {
    width: 2rem;
    height: 2rem;
  }
  .swiper-btn:after {
    font-size: 0.75rem;
  }
  .about-header ul {
    padding: 0;
  }
  .about-header li {
    width: 33.3333%;
  }
  .about-header li:nth-child(4), .about-header li:nth-child(5) {
    display: none;
  }
  header .logo img {
    height: 3rem;
  }
  .front-suggest {
    padding: 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .front-suggest .status {
    margin: 1rem 0;
  }
  .footer-logo {
    height: 3rem;
  }
  .front-market .swiper-slide {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .log-image {
    height: 7.5rem !important;
  }
  .log-image .logo {
    height: 3rem;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .log-image .bg-image {
    opacity: 0.2;
  }
}
@media (max-width: 1199px) {
  .login-register {
    padding: 2rem;
  }
}/*# sourceMappingURL=wrap.css.map */