@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@300;400&display=swap");
@font-face {
  font-family: 'neo-sans-light';
  src: url("../assets/fonts/Neo-Sans-Light.otf");
}

@font-face {
  font-family: 'neo-sans-regular';
  src: url("../assets/fonts/Neo-Sans-regular.otf");
}

@font-face {
  font-family: 'neo-sans-bold';
  src: url("../assets/fonts/neo_sans_bold.ttf");
}

html {
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'neo-sans-bold', sans-serif;
}

p {
  font-size: 1.6rem;
  font-family: 'Noto Sans Display', sans-serif;
}

.btn {
  border-radius: 0;
  padding: 1.4rem 1.5rem;
  font-size: 1.6rem;
  font-family: 'neo-sans-bold', sans-serif;
  width: 24rem;
  height: 5rem;
}

.btn-purple {
  color: white;
  border: 0;
  background-color: #7528ab;
}

.btn-purple:hover {
  color: white;
  background-color: #591e82;
}

.btn-purple-outline {
  color: #591e82;
  border: 0;
  background-color: white;
  border: 1px solid #591e82;
}

.btn-purple-outline:hover {
  color: white;
  background-color: #591e82;
}

.btn-green {
  color: white;
  border: 0;
  background-color: #e9971d;
}

.btn-green:hover {
  color: white;
  background-color: #db8401;
}

.btn-complaint {
  color: white;
  border: 0;
  background-color: #ee2a37;
  -webkit-box-shadow: 0 16px 64px #ee2a377a;
          box-shadow: 0 16px 64px #ee2a377a;
}

.btn-complaint:hover {
  color: white;
  background-color: #be1621;
}

.primary-color {
  color: #f4b34f;
}

.primary-color:hover {
  color: #f4b34f;
}

.dark-bg {
  background-color: #1d2730;
}

.c-grey-7 {
  color: #1d2730;
}

.section-title-lg {
  font-family: 'neo-sans-bold', sans-serif;
  font-size: 3.4rem;
  font-weight: bold;
}

.section-title {
  font-family: 'neo-sans-bold', sans-serif;
  font-size: 2.8rem;
  font-weight: bold;
}

.section-title-sm {
  font-family: 'neo-sans-bold', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}

.section-desc-lg {
  font-family: 'neo-sans-light', sans-serif;
  font-size: 2rem;
  font-weight: bold;
}

.section-desc-md {
  font-family: 'neo-sans-light', sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}

.section-desc-sm {
  font-family: 'neo-sans-light', sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
}

.section-desc-sm-light {
  font-family: 'Noto Sans Display', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
}

.section-desc-sm {
  font-family: 'neo-sans-bold', sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.section-mt {
  margin-top: 48px;
}

.section-pt {
  padding-top: 48px;
}

.mb-24 {
  margin-bottom: 2.4rem;
}

.mb-16 {
  margin-bottom: 1.6rem;
}

.shadow {
  position: absolute;
  width: 25rem;
  height: 25rem;
  -webkit-filter: blur(7rem);
          filter: blur(7rem);
  z-index: 1;
}

.orange-shadow {
  background: #e9971d;
}

.purple-shadow {
  background: #7528ab;
}

body::-webkit-scrollbar {
  width: 4px;
  /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
  background: white;
  /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
  background-color: #e9971d;
  /* color of the scroll thumb */
}

body {
  background-color: #f0f3f7;
  position: relative;
}

.filter {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 98.53px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.513);
  z-index: 200;
}

.nav-container {
  background: #1d2730;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.45);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.45);
  width: 100%;
  /* Icon 4 */
  /* Icon 4 */
}

.nav-container #nav-icon4 {
  top: 6px;
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.nav-container #nav-icon4 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.nav-container #nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-container #nav-icon4 span:nth-child(2) {
  top: 10px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-container #nav-icon4 span:nth-child(3) {
  top: 20px;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

.nav-container #nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 2px;
  left: 0px;
}

.nav-container #nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.nav-container #nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 24px;
  left: 0px;
}

.nav-container .nav-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 142px auto;
      grid-template-columns: 142px auto;
}

.nav-container .nav-top .form-control {
  color: white;
}

.nav-container .nav-top .form-control::-webkit-input-placeholder {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'neo-sans-light', sans-serif;
  color: #a5a5a5;
}

.nav-container .nav-top .form-control:-ms-input-placeholder {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'neo-sans-light', sans-serif;
  color: #a5a5a5;
}

.nav-container .nav-top .form-control::-ms-input-placeholder {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'neo-sans-light', sans-serif;
  color: #a5a5a5;
}

.nav-container .nav-top .form-control::placeholder {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'neo-sans-light', sans-serif;
  color: #a5a5a5;
}

.nav-container .nav-top .form-control:focus {
  font-size: 1.6rem;
  color: #1d2730;
  background-color: white !important;
}

.nav-container .nav-top .sm-top-search {
  margin-right: 10rem;
  padding-right: 1.5rem;
  display: none;
  width: 400px;
}

@media screen and (max-width: 530px) {
  .nav-container .nav-top .sm-top-search {
    width: 350px;
  }
}

@media screen and (max-width: 480px) {
  .nav-container .nav-top .sm-top-search {
    width: 300px;
  }
}

@media screen and (max-width: 430px) {
  .nav-container .nav-top .sm-top-search {
    width: 270px;
  }
}

@media screen and (max-width: 400px) {
  .nav-container .nav-top .sm-top-search {
    width: 100%;
  }
}

.nav-container .nav-top .sm-top-search .form-control {
  color: white;
}

.nav-container .nav-top .sm-top-search .form-control:focus {
  font-size: 1.6rem;
  color: #1d2730;
  background-color: white !important;
}

.nav-container .nav-top .search-sm {
  color: white;
  font-size: 2.4rem;
  margin: 0 1rem;
  cursor: pointer;
}

.nav-container .nav-top .dropdown-toggle::after {
  display: none;
}

.nav-container .nav-top .dropdown-menu {
  padding: 5rem 2.4rem 20rem 2.4rem;
  background-color: white;
  width: 336px;
  top: 92.53px;
  right: -9rem;
}

@media screen and (max-width: 576px) {
  .nav-container .nav-top .dropdown-menu {
    top: 53px;
    right: -5rem;
  }
}

.nav-container .nav-top .dropdown-menu .form-control {
  width: 100%;
  font-size: 15px;
  color: #4a5b68;
  border: 1px solid #a2aeb7;
  z-index: 2;
  position: relative;
  background: 0 0;
  min-height: 50px;
  border-radius: 2px;
  margin: 0;
}

@media screen and (max-width: 576px) {
  .nav-container .nav-top .dropdown-menu {
    top: 5.5rem;
  }
}

.nav-container .nav-top .dropdown-menu .fa-times {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  font-size: 2.5rem;
  cursor: pointer;
}

.nav-container .nav-top .dropdown-menu .google-btn {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
  background-repeat: no-repeat;
  background-position: 12px 11px;
}

.nav-container .nav-top .dropdown-menu .facebook-btn {
  position: relative;
}

.nav-container .nav-top .dropdown-menu .facebook-btn svg {
  width: 24px;
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.nav-container .nav-top .dropdown-menu .divider-or {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 20px auto;
      grid-template-columns: auto 20px auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.nav-container .nav-top .dropdown-menu .btn-outline {
  border: 1px solid #a2aeb7;
  padding: 6px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 2px;
  text-align: center;
  font-family: 'neo-sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #4a5b68;
  cursor: pointer;
  margin-top: 5px;
}

.nav-container .nav-top .dropdown-menu .form-check-label {
  font-size: 1.4rem;
  font-family: 'neo-sans-light', sans-serif;
}

.nav-container .nav-top .dropdown-menu .form-check-input {
  position: relative;
  top: 0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 1rem;
}

.nav-container .nav-top .btn-outline {
  height: 3.8rem;
  font-size: 1.4rem;
  padding: 0.7rem 0.8rem;
  color: white;
  width: auto;
  border: 1px solid #4a5b68;
  border-radius: 0.2rem;
  white-space: nowrap;
}

.nav-container .nav-top .btn-outline:hover, .nav-container .nav-top .btn-outline:focus {
  color: #f4b34f;
}

.nav-container .nav-top form {
  width: 80%;
  height: 3.8rem;
  margin-left: 0.8rem;
}

.nav-container .nav-top form .input-group {
  border-radius: 2px;
}

.nav-container .nav-top form .input-group .btn {
  border-radius: 2px;
  border: 1px solid #4a5b68;
}

.nav-container .nav-top form .form-control {
  height: 3.6rem;
  background: rgba(123, 140, 152, 0.1);
  border: 1px solid #4a5b68;
}

.nav-container .nav-top form button {
  height: 3.6rem;
  width: auto;
  padding: 0.6rem 1.6rem;
}

.nav-container .nav-top .btn-language {
  margin: 0 0.8rem;
}

@media screen and (max-width: 575px) {
  .nav-container .navbar-expand-sm {
    padding: 0;
  }
}

.nav-container .navbar .nav-link {
  font-size: 1.6rem;
  color: white;
  font-weight: bold;
  padding: 0 0.8rem 0.8rem;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
}

.nav-container .navbar .nav-link:hover {
  color: #f4b34f;
  border-bottom: 3px solid #f4b34f;
}

.nav-container .navbar-toggler {
  color: white !important;
}

.nav-container .navbar-toggler:focus {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

@media screen and (max-width: 575px) {
  .nav-container .navbar-collapse {
    background-color: #1d2730;
    position: fixed !important;
    left: -25rem;
    top: 53px;
    height: 100vh;
    width: 25rem;
    padding: 3rem 0;
    border-right: 1px solid #4a5b68;
    -webkit-transition: left 0.2s ease-out;
    transition: left 0.2s ease-out;
  }
  .nav-container .navbar-collapse .nav-link {
    padding: 1rem;
    border-bottom: 2px solid #4a5b68;
  }
}

.nav-container .navbar .show {
  left: 0 !important;
}

.hero {
  position: relative;
  background-color: #1d2730;
  overflow: hidden;
}

.hero .scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.hero .box span {
  width: 20px;
  height: 20px;
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: -10px;
  -webkit-animation: animate 2s infinite;
          animation: animate 2s infinite;
}

.hero .box span:nth-child(2) {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}

.hero .box span:nth-child(3) {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}

@-webkit-keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}

@keyframes animate {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(45deg) translate(10px, 10px);
            transform: rotate(45deg) translate(10px, 10px);
  }
  100% {
    opacity: 0;
  }
}

.hero .shadow {
  width: 15rem;
  height: 15rem;
  -webkit-filter: blur(7rem);
          filter: blur(7rem);
}

.hero .purple-shadow {
  top: -5.5rem;
  left: -5.5rem;
}

.hero .orange-shadow {
  top: -5.5rem;
  right: -5.5rem;
}

@media screen and (min-width: 992px) {
  .hero .lg-image img {
    z-index: 100;
  }
  .hero .shadow {
    width: 25rem;
    height: 25rem;
    -webkit-filter: blur(7rem);
            filter: blur(7rem);
  }
  .hero .purple-shadow {
    top: 0%;
    left: 10%;
  }
  .hero .orange-shadow {
    top: 40%;
    right: 12%;
  }
}

.hero-content {
  padding: 6.4rem 0.5rem;
  padding-top: 14.8rem;
}

.hero .form-control {
  background-color: #1d2730;
  border: 1px solid #4a5b68;
  font-size: 2rem;
  padding: 0.4rem 2.5rem;
  font-family: 'neo-sans-light';
  font-weight: bold;
  height: 4.8rem;
  border-radius: 2px;
  color: #4a5b68;
}

.hero .form-control:focus {
  color: black;
  background-color: white;
}

.hero .btn {
  width: 5rem;
  height: auto;
  padding: 0;
  background-color: rgba(123, 140, 152, 0.1);
  border: 1px solid #4a5b68;
  border-radius: 2px;
}

.hero .fa-search {
  padding: 1rem;
  font-size: 14px;
  color: white;
}

.hero-cards {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
      grid-template-columns: auto auto auto;
  background-color: rgba(123, 140, 152, 0.1);
  border: 1px solid #4a5b68;
  -ms-grid-column-align: center;
      justify-self: center;
}

.hero-card {
  background-color: #1d2730;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 1.6rem;
  border: 0.5px solid #4a5b68;
  background-color: transparent;
  cursor: pointer;
}

.hero-card:hover {
  background: rgba(123, 140, 152, 0.2);
}

.hero-card__title {
  margin: 1.6rem 0;
  font-size: 2.5rem;
  color: #f4b34f;
  text-shadow: 0 0 3rem #f4b34f91;
}

.hero-card__desc {
  font-size: 1.4rem;
  font-family: 'neo-sans-bold';
}

.hero-card i {
  font-size: 3rem;
  color: #f4b34f;
}

.hero .learn-more {
  font-size: 1.4rem;
  font-family: 'neo-sans-bold';
  font-weight: bold;
  text-decoration: none;
}

.hero .learn-more:hover {
  text-decoration: underline;
}

@media screen and (max-width: 575px) {
  .casino-review .btn,
  .how-thing-works .btn {
    width: 100% !important;
  }
}

.casino-review .accordion-item,
.how-thing-works .accordion-item {
  padding: 0 2rem 0 1.6rem;
  margin: 0.8rem 0;
}

.casino-review .accordion-body,
.how-thing-works .accordion-body {
  font-size: 1.6rem;
  color: #4a5b68;
  font-family: 'neo-sans-regular';
}

.casino-review .accordion-button,
.how-thing-works .accordion-button {
  height: 5rem !important;
  color: #4a5b68 !important;
  background-color: white !important;
  opacity: 0.85;
}

.casino-review .accordion-button i,
.how-thing-works .accordion-button i {
  margin-right: 1rem;
  color: #e9971d;
}

.casino-review .accordion-button:focus,
.how-thing-works .accordion-button:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.casino-review .accordion-button:active,
.how-thing-works .accordion-button:active {
  color: #e9971d;
}

.casino-review .accordion-button:not(.collapsed),
.how-thing-works .accordion-button:not(.collapsed) {
  color: #e9971d;
  background-color: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.casino-review .accordion-link,
.how-thing-works .accordion-link {
  text-decoration: none;
  color: #e9971d;
  font-family: 'neo-sans-bold';
}

.casino-review .accordion-link:hover,
.how-thing-works .accordion-link:hover {
  text-decoration: underline;
}

.casino-review {
  padding-bottom: 6.4rem;
}

.casino-review-accortion {
  max-width: 50rem;
}

.casino-review-accortion-2 {
  margin-left: auto !important;
  margin-right: 0;
}

.better-standards {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 4.8rem;
  margin-bottom: 6.4rem;
}

@media screen and (max-width: 575px) {
  .better-standards .btn {
    width: 100% !important;
  }
}

.better-standards .container {
  z-index: 2;
}

.better-standards .purple-shadow {
  bottom: -7.5rem;
  left: -7.5rem;
}

.better-standards .orange-shadow {
  top: -7.5rem;
  right: -7.5rem;
}

.better-standards .chip {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}

.better-standards .guru {
  position: absolute;
  bottom: 0;
  right: 5%;
}

@media screen and (max-width: 55rem) {
  .better-standards .guru {
    right: 0%;
    z-index: -1;
  }
}

.better-standards .neo-fs-20 {
  font-size: 2rem;
  margin: 3rem 0;
  font-family: 'neo-sans-bold', sans-serif;
}

.better-standards .neo-fs-20 .num {
  font-size: 3.2rem;
  line-height: 3.8rem;
  background: -webkit-linear-gradient(90deg, #f4b34f 0%, #db8401 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.better-standards .standard-info-card {
  margin: 0 0.5rem;
  position: relative;
  z-index: 3;
  padding: 24px;
  border-radius: 2px;
  border: 1px solid rgba(123, 140, 152, 0.1);
  background: -webkit-gradient(linear, right top, left top, from(#222e38), to(#1d2730));
  background: linear-gradient(270deg, #222e38 0%, #1d2730 100%);
  margin-top: 8px;
  overflow: hidden;
}

.better-standards .standard-info-card .fa-check-circle {
  font-size: 2rem;
  color: #f4b34f;
  padding-top: 0.2rem;
  padding-right: 1rem;
}

.better-standards .standard-info-card .fa-check-circle::before {
  -webkit-box-shadow: 0 -1px 8px #f4b34fab;
          box-shadow: 0 -1px 8px #f4b34fab;
  border-radius: 50%;
}

.better-standards .standard-info-card .btn {
  margin-top: 6.4rem;
  width: 24rem;
}

.better-standards .standard-info-card .btn-purple {
  -webkit-box-shadow: 0 16px 64px #4c1287;
          box-shadow: 0 16px 64px #4c1287;
}

.better-standards .standard-info-card .standard-item-hp {
  margin-bottom: 2.4rem;
}

.better-standards .standard-info-card:before {
  z-index: 5;
  content: '';
  top: -1px;
  height: 8px;
  width: calc(100% + 2px);
  left: -1px;
  border-top-right-radius: 2px;
  border-top-left-radius: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#f4b34f), to(#db8401));
  background: linear-gradient(90deg, #f4b34f 0%, #db8401 100%);
  position: absolute;
}

.how-thing-works .card {
  -webkit-box-shadow: 0 4px 8px rgba(29, 39, 48, 0.16);
          box-shadow: 0 4px 8px rgba(29, 39, 48, 0.16);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.how-thing-works .card:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.how-thing-works .card:hover .card-body {
  padding: 2.4rem 2.6rem;
}

.how-thing-works .card-head {
  background-color: #1d2730;
}

.how-thing-works .card-body {
  padding: 2.4rem;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}

.how-thing-works .card-subtitle {
  font-size: 1.4rem;
  color: #7b8c98;
}

.how-thing-works .card-title {
  font-size: 2.2rem;
  font-family: 'neo-sans-bold', sans-serif;
  font-weight: bold;
  margin: 1.6rem 0;
}

.how-thing-works .card-text {
  font-size: 1.6rem;
  color: #7b8c98;
  font-family: 'Noto Sans Display', sans-serif;
}

.how-thing-works .review-container {
  padding: 0 1rem !important;
}

.how-thing-works .review-container .swiper-button-next,
.how-thing-works .review-container .swiper-button-prev {
  top: 0 !important;
}

.how-thing-works .review-container .swiper-button-prev {
  left: auto;
  right: 50px !important;
}

@media screen and (max-width: 575px) {
  .how-thing-works .review-container .swiper-button-prev {
    left: 5px !important;
    right: auto;
  }
}

.how-thing-works .review-container .inner {
  max-width: 560px;
}

.how-thing-works .card-2 {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  padding: 1.6rem;
  color: #e9971d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: linear-gradient(90.45deg, #f8f8fa 0.03%, #fff 100%);
  border-radius: 2px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.how-thing-works .card-2:hover {
  -webkit-box-shadow: 0 10px 16px rgba(0, 0, 0, 0.16);
          box-shadow: 0 10px 16px rgba(0, 0, 0, 0.16);
  background: -webkit-gradient(linear, left top, left bottom, from(#f4b34f), color-stop(80%, rgba(248, 248, 250, 0)));
  background: linear-gradient(180deg, #f4b34f 0%, rgba(248, 248, 250, 0) 80%);
}

@media screen and (max-width: 992px) {
  .how-thing-works .card-2 {
    padding: 2.2rem 2.2rem 4.2rem 2.2rem;
  }
}

.how-thing-works .card-2-number {
  position: absolute;
  z-index: 2;
  padding: 0.2rem 0.6rem;
  background: rgba(123, 140, 152, 0.1);
  border-radius: 2px;
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  color: #4a5b68;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 19px;
}

.how-thing-works .card-2-head {
  height: 70%;
}

.how-thing-works .card-2-body {
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  margin-bottom: 2.1rem;
}

.how-thing-works .card-2 i {
  font-size: 4rem;
  margin-bottom: 2rem;
}

.how-thing-works .card-2-title {
  font-size: 1.8rem;
}

.forum-category-container {
  position: relative;
  margin: 10rem 0;
  background: #1d2730;
  padding: 10rem 0;
  overflow: hidden;
}

.forum-category-container .shadow {
  width: 17rem;
  height: 17rem;
  -webkit-filter: blur(10rem);
          filter: blur(10rem);
}

.forum-category-container .purple-shadow {
  top: -6rem;
  left: -6rem;
}

.forum-category-container .orange-shadow {
  bottom: -6rem;
  right: -6rem;
}

.forum-category-container .container {
  z-index: 10;
}

.forum-category-container .forum-categories {
  max-width: 50rem;
  margin: auto;
}

.forum-category-container .forum-categories .fa-check-circle {
  font-size: 2rem;
  color: #f4b34f;
  padding-top: 0.2rem;
  padding-right: 1rem;
}

.forum-category-container .forum-categories .fa-check-circle::before {
  -webkit-box-shadow: 0 -1px 8px #f4b34fab;
          box-shadow: 0 -1px 8px #f4b34fab;
  border-radius: 50%;
}

.forum-category-container .swiper3 {
  position: static;
}

.forum-category-container .swiper3 .card-3 {
  min-height: 30rem !important;
  background: rgba(123, 140, 152, 0.1);
  border: 1px solid rgba(123, 140, 152, 0.1);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 2px;
  color: #fff;
  padding: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 6rem auto auto;
      grid-template-rows: 6rem auto auto;
  height: 100%;
  width: 100%;
  cursor: pointer;
}

.forum-category-container .swiper3 .card-3:hover {
  background: rgba(123, 140, 152, 0.2);
}

.forum-category-container .swiper3 .card-3-body {
  height: 80%;
}

.forum-category-container .swiper3 .card-3 i {
  font-size: 3.2rem;
  color: #f4b34f;
}

.forum-category-container .swiper3 .card-3-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-family: 'Noto Sans Display', sans-serif;
}

.forum-category-container .swiper3 .card-3-footer small {
  font-size: 1.2rem;
}

.news-tips {
  margin-bottom: 6.4rem;
}

@media screen and (max-width: 575px) {
  .news-tips .btn {
    width: 100% !important;
  }
}

.news-tips .section-title {
  padding-bottom: 3rem;
}

.news-tips .news-cards {
  margin-bottom: 5rem;
}

.news-tips .card {
  -webkit-box-shadow: 0 4px 8px rgba(29, 39, 48, 0.16);
          box-shadow: 0 4px 8px rgba(29, 39, 48, 0.16);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.news-tips .card:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.news-tips .card:hover .card-body {
  padding: 2.4rem 2.6rem;
}

.news-tips .card-head {
  background-color: #1d2730;
}

.news-tips .card-body {
  padding: 2.4rem;
  -webkit-transition: padding 0.3s ease-in-out;
  transition: padding 0.3s ease-in-out;
}

.news-tips .card-subtitle {
  font-size: 1.4rem;
  color: #7b8c98;
}

.news-tips .card-title {
  font-size: 2.2rem;
  font-family: 'neo-sans-bold', sans-serif;
  font-weight: bold;
  margin: 1.6rem 0;
}

.news-tips .card-text {
  font-size: 1.6rem;
  color: #7b8c98;
  font-family: 'Noto Sans Display', sans-serif;
}

.footer {
  width: 100%;
  overflow: hidden;
  background: #1d2730;
  color: white;
  padding: 1.5rem 1rem 2rem;
}

.footer__title {
  font-size: 2.2rem;
  margin: 2.5rem 0 1.5rem;
  color: #e9971d;
  font-weight: bold;
}

.footer__desc {
  margin: 0.4rem 0;
}

.footer i {
  color: #e9971d;
  font-size: 2.5rem;
  margin-right: 0.7rem;
}

.footer__social {
  padding-top: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 30rem auto 40rem;
      grid-template-columns: 30rem auto 40rem;
}

.footer__social .social a {
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .footer__social {
    -ms-grid-columns: 15rem auto 35rem;
        grid-template-columns: 15rem auto 35rem;
  }
}

@media screen and (max-width: 991px) and (min-width: 576px) {
  .footer__social {
    -ms-grid-columns: auto auto;
        grid-template-columns: auto auto;
  }
  .footer__social .social-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .footer__social form {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / span 2;
  }
  .footer__social .image-container {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

@media screen and (max-width: 576px) {
  .footer__social {
    -ms-grid-columns: auto !important;
        grid-template-columns: auto !important;
  }
}

.footer__social .social {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__social .social i {
  font-size: 3rem;
  color: white;
  margin-right: 2rem;
}

.footer__social .input-group {
  border-radius: 3px;
}

.footer__social .input-group button {
  border-radius: 3px;
  width: auto;
}

.footer__social .form-control {
  background: #56595c;
  color: #a2aeb7;
  font-size: 1.6rem;
  border: 0;
}

.footer__logos {
  border-top: 1px solid #4a5b68;
}

.footer__logos .footer__title {
  margin: 2.5rem 0 1.5rem;
}

.footer__logos .images {
  margin: 2.4rem 0;
}

.footer__logos img {
  margin: 0 30px 10px 0;
}

.footer__copyright {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  padding: 2rem 0;
  border-top: 1px solid #4a5b68;
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    -ms-grid-columns: auto;
        grid-template-columns: auto;
  }
}

.footer__copyright img {
  margin-right: 2rem;
}

.footer__copyright p {
  margin: 1rem 0;
  color: #7b8c98;
  font-size: 1.2rem;
  font-family: 'Noto Sans Display', sans-serif;
}

@media screen and (max-width: 768px) {
  .footer__copyright p {
    margin: 2rem 0;
  }
}

.swiper {
  padding: 3rem 0 2.4rem 0;
  width: 100%;
  height: 100%;
}

.swiper-slide {
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-next-2,
.swiper-button-next-3 {
  position: absolute;
  font-size: 2rem;
  right: 12.5px;
  top: -14px;
  z-index: 1000;
}

.swiper-button-next i,
.swiper-button-next-2 i,
.swiper-button-next-3 i {
  color: #212529;
}

.swiper-button-next::after,
.swiper-button-next-2::after,
.swiper-button-next-3::after {
  content: '';
}

.swiper-button-prev,
.swiper-button-prev-2,
.swiper-button-prev-3 {
  position: absolute;
  font-size: 2rem;
  right: 50px;
  top: -14px;
  z-index: 1000;
}

.swiper-button-prev i,
.swiper-button-prev-2 i,
.swiper-button-prev-3 i {
  color: #212529;
}

.swiper-button-prev::after,
.swiper-button-prev-2::after,
.swiper-button-prev-3::after {
  content: '';
}

@media screen and (max-width: 575px) {
  .swiper-button-prev,
  .swiper-button-prev-2,
  .swiper-button-prev-3 {
    right: auto;
    left: 13px;
  }
}

@media screen and (max-width: 575px) {
  .swiper-button-prev-3 {
    left: 3px;
  }
}

.swiper-pagination {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  top: 0;
  left: 0.3rem !important;
  z-index: 9;
}

@media screen and (max-width: 575px) {
  .swiper-pagination {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
}

.swiper-pagination-bullet {
  width: 3rem;
  height: 0.4rem;
  border-radius: 0;
}

.swiper-pagination-bullet-active {
  background-color: #e9971d;
}
/*# sourceMappingURL=home.css.map */