@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style-type: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:focus {
  outline: 0;
}

:focus-visible {
  outline: 0;
}

.form-control:focus {
  box-shadow: none;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  background: #EF6E4D;
  box-sizing: border-box;
  box-shadow: 0px 24px 48px rgba(0, 1, 44, 0.1607843137);
  border-radius: 0px;
  padding: 0;
  width: 38px;
  height: 38px;
  line-height: 34px;
  color: #fff;
}
.back-to-top:hover, .back-to-top:active, .back-to-top:focus {
  background: #EF6E4D;
  border-color: #EF6E4D;
  color: #fff;
  border: 2px solid #EF6E4D;
  box-shadow: none;
}
.back-to-top:hover i, .back-to-top:active i, .back-to-top:focus i {
  transform: translateY(-3px);
}
.back-to-top i {
  transition: 0.3s;
  font-size: 10px;
}

.btn-theme {
  background: #ef6e4d;
  border-radius: 0px;
  padding: 16px 21px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 1px;
  text-transform: capitalize;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
  border: 1px solid transparent;
  display: inline-block;
}
@media (max-width: 991.98px) {
  .btn-theme {
    padding: 13px;
    border-radius: 4px;
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .btn-theme {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
.btn-theme.btn-theme-outline {
  background: transparent;
  color: #565151;
  border: 1px solid #1c1c1c;
}
.btn-theme.btn-theme-outline i {
  transition: 0.3s;
}
.btn-theme.btn-theme-outline:hover {
  color: #ef6e4d;
  border-color: #ef6e4d;
}
.btn-theme.btn-theme-outline:hover i {
  transform: translateX(3px);
}
.btn-theme:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.25);
  color: #f6f5ee;
}

.title {
  margin-bottom: 80px;
}
.title h2 {
  margin-bottom: 0;
  letter-spacing: -0.02em;
  color: #363b64;
  font-weight: 600;
  font-size: 48px;
  line-height: 60px;
}
@media (max-width: 991.98px) {
  .title h2 {
    font-size: 40px;
  }
}
@media (max-width: 575.98px) {
  .title h2 {
    font-size: 34px;
  }
}
.title p {
  margin-bottom: 0;
  color: #575757;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  margin-top: 24px;
}
@media (max-width: 991.98px) {
  .title p {
    font-size: 16px;
  }
}
.title ul {
  margin-top: 50px;
  margin-bottom: 76px;
}
@media (max-width: 991.98px) {
  .title ul {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.title ul li {
  line-height: 36px;
  margin-bottom: 10px;
  display: flex;
}
.title ul li i {
  color: #4de450;
  line-height: 36px;
  margin-right: 14px;
}
@media (max-width: 991.98px) {
  .title ul li i {
    font-size: 16px;
  }
}
.title ul li span {
  color: #838383;
  font-weight: 400;
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .title ul li span {
    font-size: 16px;
  }
}

header {
  background: #fff;
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
header.sticky {
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1019607843);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1019607843);
}
header .navbar {
  padding: 0;
  height: 85px;
  margin: 0 -15px;
}
@media (max-width: 1199.98px) {
  header .navbar {
    margin: 0;
  }
}
@media (max-width: 767.98px) {
  header .navbar {
    padding: 15px 0;
    height: auto;
  }
}
header .navbar a.navbar-brand {
  padding: 0;
}
@media (max-width: 767.98px) {
  header .navbar a.navbar-brand {
    padding-top: 0.3125rem;
    padding-bottom: 0.3125rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  header .navbar a.navbar-brand img {
    max-width: 200px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  header .navbar a.navbar-brand img {
    max-width: 166px;
  }
}
@media (max-width: 767.98px) {
  header .navbar a.navbar-brand img {
    max-width: 100%;
  }
}
header .navbar .navbar-collapse {
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse {
    margin-top: 10px;
  }
}
header .navbar .navbar-collapse ul {
  align-items: center;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul {
    align-items: start;
    margin-top: 1rem;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li {
    margin-bottom: 10px;
  }
}
header .navbar .navbar-collapse ul li.dropdown {
  margin-right: 0;
  margin-left: 0;
}
header .navbar .navbar-collapse ul li.dropdown.theme-dropdown {
  position: relative;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.dropdown.theme-dropdown {
    width: 100%;
  }
}
header .navbar .navbar-collapse ul li.dropdown.theme-dropdown .dropdown-menu {
  background: #fff;
  border: 0.1px solid #f6f5ee;
  box-shadow: -8px 16px 16px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  border-radius: 0;
  margin-top: 10px;
  padding-bottom: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  padding-top: 1px;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.dropdown.theme-dropdown .dropdown-menu {
    border: 0;
    box-shadow: none;
    margin: 0;
    padding: 0;
    background: #f6f5ee;
    border-radius: 2px;
    margin-top: 10px;
  }
}
header .navbar .navbar-collapse ul li.dropdown.theme-dropdown .dropdown-menu::before {
  content: "";
  border-bottom: 16px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: -15px;
  left: 63px;
  z-index: 10;
  width: 0;
  height: 0;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.dropdown.theme-dropdown .dropdown-menu::before {
    display: none;
  }
}
header .navbar .navbar-collapse ul li.dropdown.theme-dropdown .dropdown-menu::after {
  content: "";
  border-bottom: 16px solid #f6f5ee;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  position: absolute;
  top: -17px;
  left: 63px;
  width: 0;
  height: 0;
  z-index: 8;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.dropdown.theme-dropdown .dropdown-menu::after {
    display: none;
  }
}
header .navbar .navbar-collapse ul li.dropdown.theme-dropdown a.dropdown-toggle::after {
  display: none;
}
header .navbar .navbar-collapse ul li.dropdown a .dropdown-toggle img.icon-down {
  margin-left: 5px;
  transition: transform 0.15s linear;
}
header .navbar .navbar-collapse ul li.dropdown a .dropdown-toggle:hover img.icon-down:hover {
  transform: translateY(3px);
}
header .navbar .navbar-collapse ul li.dropdown .dropdown-menu a.dropdown-item {
  font-size: 14px;
  line-height: 16px;
  color: #363b64;
  text-transform: capitalize;
  padding: 13px 25px 13px 25px;
  border-radius: 0;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.dropdown .dropdown-menu a.dropdown-item {
    padding: 15px 10px 15px 10px;
    color: #363b64;
  }
}
header .navbar .navbar-collapse ul li.dropdown .dropdown-menu a.dropdown-item:hover {
  color: #fff;
  background-color: #ef6e4d;
}
header .navbar .navbar-collapse ul li.active a.nav-link.active {
  color: #ef6e4d;
  background: inherit;
}
header .navbar .navbar-collapse ul li.nav-item {
  margin-left: 42px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  header .navbar .navbar-collapse ul li.nav-item {
    margin-left: 34px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  header .navbar .navbar-collapse ul li.nav-item {
    margin-left: 20px;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item {
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #f6f5ee;
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item a {
    display: block;
    width: 100%;
  }
}
header .navbar .navbar-collapse ul li.nav-item a.nav-link {
  margin-left: 0px;
  line-height: 24px;
  color: #363b64;
  transition: 0.5s;
  padding: 0;
  font-size: 14px;
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item a.nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
header .navbar .navbar-collapse ul li.nav-item a.nav-link img {
  width: 10px;
  margin-left: 5px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  header .navbar .navbar-collapse ul li.nav-item a.nav-link img {
    width: 10px;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item a.nav-link img {
    display: inline-block;
    float: right;
    width: 14px;
    margin-right: 18px;
  }
}
header .navbar .navbar-collapse ul li.nav-item a.nav-link:hover {
  color: #ef6e4d;
}
header .navbar .navbar-collapse ul li.nav-item a.nav-link:hover span.login-link {
  color: inherit;
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item a.nav-link:hover span.login-link {
    background-image: inherit;
    color: white;
  }
}
header .navbar .navbar-collapse ul li.nav-item a span.login-link {
  display: inline-block;
  width: 105px;
  height: 41px;
  border-radius: 41px;
  line-height: 36px;
}
@media (max-width: 991px) {
  header .navbar .navbar-collapse ul li.nav-item a span.login-link {
    width: 70px;
    height: 40px;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item a span.login-link {
    border: 0;
    background: transparent;
    text-align: left;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item:last-child {
    width: 100%;
  }
}
header .navbar .navbar-collapse ul li.nav-item:last-child a {
  font-size: 14px;
  padding: 7px 28px;
  border-radius: 0;
  background: transparent;
  border: 1px solid #414141;
  font-weight: 500;
  line-height: 24px;
  color: #414141;
  text-transform: capitalize;
  transition: 0.3s;
}
header .navbar .navbar-collapse ul li.nav-item:last-child a:hover {
  background: #ef6e4d;
  color: #f6f5ee;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) and (max-width: 991.98px) {
  header .navbar .navbar-collapse ul li.nav-item:last-child a {
    padding: 4px 10px;
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  header .navbar .navbar-collapse ul li.nav-item:last-child a {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 15px;
  }
  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }
}
.home-title {
  height: 100vh;
  padding-bottom: 0;
}
@media (max-width: 1199.98px) {
  .home-title {
    height: 100%;
  }
}
.home-title h1 {
  color: #363b64;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 48px;
  font-style: italic;
  font-weight: 800;
  line-height: 82px;
  margin: 0;
}
@media (max-width: 991.98px) {
  .home-title h1 {
    font-size: 36px;
    line-height: 60px;
  }
}
.home-title h2 {
  color: #363b64;
  font-size: 48px;
  font-weight: 700;
  line-height: 82px;
  margin: 0 0 40px 0;
}
@media (max-width: 991.98px) {
  .home-title h2 {
    font-size: 36px;
    line-height: 60px;
  }
}
@media (max-width: 767.98px) {
  .home-title img.topics {
    display: none;
  }
}
@media (min-width: 768px) {
  .home-title img.topics-sm {
    display: none;
  }
}

.banner-container {
  max-width: 1500px !important;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container {
    max-width: 1200px !important;
  }
}
.banner-container .animation-container {
  position: relative;
  overflow: hidden;
  min-height: 656px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/new-home/banner/bg-home.png");
}
.banner-container .animation-container .green-cartoon {
  position: absolute;
  bottom: -25px;
  left: 115px;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .green-cartoon {
    bottom: 40px;
    left: 70px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .green-cartoon {
    bottom: 13%;
    left: 5%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .green-cartoon {
    display: none;
  }
}
.banner-container .animation-container .red-cartoon {
  position: absolute;
  bottom: -25px;
  right: 76px;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .red-cartoon {
    bottom: 44px;
    right: 38px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .red-cartoon {
    bottom: 14%;
    right: 0%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .red-cartoon {
    display: none;
  }
}
.banner-container .animation-container .chips {
  position: absolute;
}
.banner-container .animation-container .chips.prop-trading {
  bottom: -5px;
  left: 19%;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.prop-trading {
    bottom: 63px;
    left: 20%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.prop-trading {
    bottom: 16%;
    left: 16%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.prop-trading {
    max-width: 200px;
    bottom: 24%;
    left: 8%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.prop-trading {
    max-width: 100px;
  }
}
.banner-container .animation-container .chips.trading-signals {
  bottom: 0px;
  left: 43.3%;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.trading-signals {
    bottom: 70px;
    left: 44%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.trading-signals {
    bottom: 20%;
    left: 40%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.trading-signals {
    max-width: 230px;
    bottom: 26%;
    left: 47%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.trading-signals {
    max-width: 100px;
  }
}
.banner-container .animation-container .chips.copy-trading {
  bottom: -5px;
  left: 34%;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.copy-trading {
    bottom: 60px;
    left: 36%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.copy-trading {
    bottom: 27%;
    left: 30%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.copy-trading {
    max-width: 200px;
    bottom: 22%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.copy-trading {
    max-width: 100px;
  }
}
.banner-container .animation-container .chips.strategy-market {
  bottom: 24%;
  left: 24%;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.strategy-market {
    bottom: 35%;
    left: 25%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.strategy-market {
    bottom: 50%;
    left: 18%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.strategy-market {
    max-width: 230px;
    bottom: 38%;
    left: 17%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.strategy-market {
    max-width: 100px;
  }
}
.banner-container .animation-container .chips.prop-coin {
  bottom: -5px;
  right: 22.5%;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.prop-coin {
    bottom: 13%;
    right: 24%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.prop-coin {
    bottom: 20%;
    right: 20%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.prop-coin {
    max-width: 210px;
    bottom: 30%;
    right: 10%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.prop-coin {
    max-width: 100px;
  }
}
.banner-container .animation-container .chips.get-trade {
  bottom: 17%;
  right: 16.4%;
  z-index: 1;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.get-trade {
    bottom: 31%;
    right: 18%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.get-trade {
    bottom: 38%;
    right: 15%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.get-trade {
    max-width: 250px;
    bottom: 43%;
    right: 4%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.get-trade {
    max-width: 100px;
  }
}
.banner-container .animation-container .chips.become-manager {
  bottom: 15%;
  right: 36%;
}
@media (min-width: 1200px) and (max-width: 1499.98px) {
  .banner-container .animation-container .chips.become-manager {
    bottom: 38%;
    right: 40%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner-container .animation-container .chips.become-manager {
    bottom: 50%;
    right: 30%;
  }
}
@media (max-width: 991.98px) {
  .banner-container .animation-container .chips.become-manager {
    max-width: 250px;
    bottom: 43%;
  }
}
@media (max-width: 767.98px) {
  .banner-container .animation-container .chips.become-manager {
    max-width: 100px;
  }
}

.top-cards {
  padding-top: 0;
}
.top-cards .card-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .top-cards .card-wrapper {
    flex-wrap: wrap;
    align-items: center;
  }
}
.top-cards .card-wrapper .card.left-card {
  max-width: 396px;
  border-radius: 4px;
  border: 1px solid #ecedee;
  background: #7af28b;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .top-cards .card-wrapper .card.left-card {
    max-width: 33.33%;
  }
}
@media (max-width: 767.98px) {
  .top-cards .card-wrapper .card.left-card {
    max-width: 100%;
  }
}
.top-cards .card-wrapper .card.left-card .card-body {
  padding-bottom: 0;
}
.top-cards .card-wrapper .card.left-card .card-body h4 {
  color: #363b64;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .top-cards .card-wrapper .card.left-card .card-body h4 {
    font-size: 20px;
  }
}
.top-cards .card-wrapper .card.left-card .card-body p {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 154.3%;
}
.top-cards .card-wrapper .card.middle-card {
  max-width: 325px;
  border: 0;
  gap: 20px;
  padding-bottom: 0;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .top-cards .card-wrapper .card.middle-card {
    max-width: 33.33%;
  }
}
@media (max-width: 767.98px) {
  .top-cards .card-wrapper .card.middle-card {
    max-width: 100%;
  }
}
.top-cards .card-wrapper .card.middle-card .custom-card {
  border-radius: 4px;
  border: 1px solid #ecedee;
  background: #f8fafb;
  margin: 0;
}
.top-cards .card-wrapper .card.middle-card .custom-card .card-body {
  padding: 20px 25px;
}
.top-cards .card-wrapper .card.middle-card .custom-card .card-body h5 {
  color: #363b64;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .top-cards .card-wrapper .card.middle-card .custom-card .card-body h5 {
    font-size: 20px;
  }
}
.top-cards .card-wrapper .card.middle-card .custom-card .card-body p {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 154%;
  margin-bottom: 22px;
}
@media (max-width: 767.98px) {
  .top-cards .card-wrapper .card.middle-card .custom-card .card-body .image-list {
    text-align: center;
  }
}
.top-cards .card-wrapper .card.middle-card .custom-card .card-body .image-list img {
  margin-bottom: 6px;
}
.top-cards .card-wrapper .card.right-card {
  max-width: 440px;
  border-radius: 4px;
  border: 1px solid #ecedee;
  background: #f9ce51;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  .top-cards .card-wrapper .card.right-card {
    max-width: 33.33%;
  }
}
@media (max-width: 767.98px) {
  .top-cards .card-wrapper .card.right-card {
    max-width: 100%;
  }
}
.top-cards .card-wrapper .card.right-card .card-body {
  padding-bottom: 0;
}
.top-cards .card-wrapper .card.right-card .card-body h4 {
  color: #363b64;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .top-cards .card-wrapper .card.right-card .card-body h4 {
    font-size: 20px;
  }
}
.top-cards .card-wrapper .card.right-card .card-body p {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 154.3%;
}
@media (max-width: 767.98px) {
  .top-cards .card-wrapper .card.right-card .card-body .image-list {
    text-align: center;
  }
}
.top-cards .card-wrapper .card.right-card .card-body .image-list img {
  margin-bottom: 6px;
}

@media (max-width: 1199.98px) {
  .stack {
    padding-top: 0;
  }
}
.stack .card {
  display: flex;
  justify-content: space-between;
  background-image: url("../img/new-home/bg-gradient.png");
  align-items: center;
  flex-direction: row;
  border: 0;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 1rem;
}
@media (max-width: 767.98px) {
  .stack .card {
    padding: 1rem;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .stack .card img {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .stack .card img {
    display: none;
  }
}
.stack .card .content h3 {
  margin: 0 0 18px 0;
  color: #fff;
  text-shadow: 4px 4px 64px #000;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}
@media (max-width: 991.98px) {
  .stack .card .content h3 {
    font-size: 20px;
    gap: 16px;
  }
}
.stack .card .content h3 svg {
  position: relative;
  top: 7px;
}
@media (max-width: 991.98px) {
  .stack .card .content h3 svg {
    top: 12px;
  }
}
.stack .card .content p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.stack .card .amount {
  padding-right: 82px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
@media (max-width: 991.98px) {
  .stack .card .amount {
    padding-right: 16px;
  }
}
.stack .card .amount span {
  display: inline-flex;
  border-radius: 56px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(159, 255, 230, 0.1);
  backdrop-filter: blur(4px);
  color: #6fffda;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.36px;
  padding: 0px 26px;
  min-height: 52px;
  align-items: center;
}
@media (max-width: 991.98px) {
  .stack .card .amount span {
    padding: 0 16px;
  }
}
.stack .card .amount p {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.48px;
}
@media (max-width: 991.98px) {
  .stack .card .amount p {
    font-size: 16px;
  }
}

.trader .title {
  margin-bottom: 78px;
}
.trader .title h2 {
  color: #363b64;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.trader .title p {
  margin: 0;
  color: #838383;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.trader .trader-details {
  margin-bottom: 16px;
}
.trader .trader-details .card {
  border-radius: 4px;
  border-color: #ecedee;
  background: #f8fafb;
  margin-bottom: 16px;
}
.trader .trader-details .card.prop-card .card-body {
  padding: 20px 10px 10px 30px;
}
@media (max-width: 575.98px) {
  .trader .trader-details .card.prop-card .card-body {
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .trader .trader-details .card.prop-card .card-body img {
    max-width: 170px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .trader .trader-details .card.prop-card .card-body img {
    max-width: 150px;
  }
}
.trader .trader-details .card.manager-card .card-body {
  flex-direction: column;
  padding-bottom: 0;
}
.trader .trader-details .card.sale-card .card-body {
  flex-direction: column;
  padding-bottom: 0;
}
.trader .trader-details .card.algo-card .card-body {
  padding: 20px 0px 10px 30px;
}
@media (max-width: 575.98px) {
  .trader .trader-details .card.algo-card .card-body {
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .trader .trader-details .card.algo-card .card-body img {
    max-width: 230px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .trader .trader-details .card.algo-card .card-body img {
    max-width: 270px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .trader .trader-details .card.algo-card .card-body img {
    max-width: 200px;
  }
}
.trader .trader-details .card .card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.trader .trader-details .card .card-body .content h3 {
  color: #363b64;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px 0;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .trader .trader-details .card .card-body .content h3 {
    font-size: 22px;
  }
}
.trader .trader-details .card .card-body .content p {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 154%;
}
@media (max-width: 1199.98px) {
  .algo {
    padding-top: 0;
  }
}
.algo .card {
  display: flex;
  justify-content: space-between;
  background-image: url("../img/new-home/bg-gradient-2.png");
  align-items: center;
  flex-direction: row;
  border: 0;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 1rem;
  padding: 0 80px 0 60px;
}
@media (max-width: 767.98px) {
  .algo .card {
    padding: 1rem;
  }
}
.algo .card .content h3 {
  margin: 0 0 10px 0;
  color: #fff;
  text-shadow: 4px 4px 64px #000;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}
.algo .card .content p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.algo .card .content .all-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
}
.algo .card .content .all-links a {
  text-decoration: none;
  padding: 16px 26px;
  display: inline-block;
  text-align: center;
  border: 1px solid transparent;
  max-width: 260px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 575.98px) {
  .algo .card .content .all-links a {
    padding: 16px 10px;
  }
}
.algo .card .content .all-links a.back-test-btn {
  background: #7af28b;
  color: #363b64;
}
.algo .card .content .all-links a.sign-up {
  border-color: #fff;
  color: #fcfcfc;
}
@keyframes rotateCube {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.algo .card img.cube-image {
  animation: rotateCube 10s infinite linear;
  transform-style: preserve-3d;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .algo .card img {
    max-width: 200px;
  }
}
@media (max-width: 767.98px) {
  .algo .card img {
    max-width: 160px;
  }
}
@media (max-width: 575.98px) {
  .algo .card img {
    display: none;
  }
}

.learn .title {
  margin-bottom: 78px;
}
.learn .title h2 {
  color: #363b64;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.learn .title p {
  margin: 0;
  color: #838383;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.learn .learn-details {
  margin-bottom: 16px;
}
.learn .learn-details .card {
  border-radius: 4px;
  border-color: #ecedee;
  background: #f8fafb;
  margin-bottom: 16px;
  min-height: 300px;
}
.learn .learn-details .card .card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  padding: 0 30px 0 30px;
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .learn .learn-details .card .card-body {
    flex-direction: column;
    padding: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199.98px) {
  .learn .learn-details .card .card-body {
    padding: 0 30px;
  }
}
@media (max-width: 575.98px) {
  .learn .learn-details .card .card-body {
    flex-direction: column;
    padding: 30px;
  }
}
.learn .learn-details .card .card-body .content h3 {
  color: #363b64;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px 0;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .learn .learn-details .card .card-body .content h3 {
    font-size: 22px;
  }
}
.learn .learn-details .card .card-body .content p {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 154%;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .learn .learn-details .card .card-body img {
    max-width: 200px;
  }
}

@media (max-width: 1199.98px) {
  .tools {
    padding-top: 0;
  }
}
.tools .card {
  display: flex;
  justify-content: space-between;
  background-image: url("../img/new-home/bg-gradient-3.png");
  align-items: center;
  flex-direction: row;
  border: 0;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 1rem;
  padding: 0 80px 0 60px;
}
@media (max-width: 1199.98px) {
  .tools .card {
    padding: 2rem;
  }
}
.tools .card .content h3 {
  margin: 0 0 10px 0;
  color: #fff;
  text-shadow: 4px 4px 64px #000;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 22px;
}
.tools .card .content p {
  margin-bottom: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.tools .card .content ul {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 35px;
  flex-wrap: wrap;
}
.tools .card .content ul li {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 19px;
  border-radius: 21.08px;
  background: #7af28b;
  box-shadow: 0px 0.659px 1.318px 0px rgba(16, 24, 40, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
}
@media (max-width: 767.98px) {
  .tools .card .content ul li {
    max-width: 48%;
  }
}
@media (max-width: 575.98px) {
  .tools .card .content ul li {
    max-width: 100%;
  }
}
.tools .card .content ul li.active {
  background: #f3d566;
}
.tools .card .content ul li.brand {
  background: #fd9277;
}
.tools .card img {
  animation: rotateCube 10s infinite linear;
  transform-style: preserve-3d;
}
@keyframes rotateCube {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@media (max-width: 1199.98px) {
  .tools .card img {
    display: none;
  }
}

.news .title {
  margin-bottom: 78px;
}
.news .title h2 {
  color: #363b64;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.news .title p {
  margin: 0;
  color: #838383;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.news .news-details .card {
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .news .news-details .card {
    margin-bottom: 40px;
  }
}
.news .news-details .card .card-body {
  padding: 0;
}
.news .news-details .card .card-body img {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .news .news-details .card .card-body img {
    width: 100%;
  }
}
.news .news-details .card .card-body .content h3 {
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 300px;
}
@media (max-width: 767.98px) {
  .news .news-details .card .card-body .content h3 {
    max-width: 100%;
  }
}
.news .news-details .card .card-body .content p {
  color: #838383;
  font-size: 17.778px;
  font-weight: 400;
  line-height: 154.3%;
}
.news .news-details .news-carousel {
  position: relative;
}
.news .news-details .news-carousel .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}
.news .news-details .news-carousel .owl-nav button {
  background-color: #ef6f4e;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.news .news-details .news-carousel .owl-nav button.owl-prev {
  left: -50px;
}
@media (max-width: 767.98px) {
  .news .news-details .news-carousel .owl-nav button.owl-prev {
    left: 0;
  }
}
.news .news-details .news-carousel .owl-nav button.owl-next {
  right: -50px;
}
@media (max-width: 767.98px) {
  .news .news-details .news-carousel .owl-nav button.owl-next {
    right: 0;
  }
}

.investment .title {
  margin-bottom: 78px;
}
.investment .title h2 {
  color: #363b64;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 16px 0;
}
.investment .title p {
  margin: 0;
  color: #838383;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}
.investment .investment-details {
  margin-bottom: 16px;
}
.investment .investment-details .card {
  border-radius: 4px;
  border-color: #ecedee;
  background: #f8fafb;
  margin-bottom: 16px;
}
.investment .investment-details .card.prop-card .card-body {
  padding: 20px 10px 10px 30px;
}
@media (max-width: 575.98px) {
  .investment .investment-details .card.prop-card .card-body {
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .investment .investment-details .card.prop-card .card-body img {
    max-width: 170px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .investment .investment-details .card.prop-card .card-body img {
    max-width: 150px;
  }
}
.investment .investment-details .card.manager-card .card-body {
  flex-direction: column;
  padding-bottom: 0;
}
.investment .investment-details .card.sale-card .card-body {
  flex-direction: column;
}
.investment .investment-details .card.algo-card .card-body {
  padding: 20px 30px 10px 30px;
}
@media (max-width: 575.98px) {
  .investment .investment-details .card.algo-card .card-body {
    flex-direction: column;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .investment .investment-details .card.algo-card .card-body img {
    max-width: 230px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .investment .investment-details .card.algo-card .card-body img {
    max-width: 270px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .investment .investment-details .card.algo-card .card-body img {
    max-width: 200px;
  }
}
.investment .investment-details .card .card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
}
.investment .investment-details .card .card-body .content h3 {
  color: #363b64;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 14px 0;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .investment .investment-details .card .card-body .content h3 {
    font-size: 22px;
  }
}
.investment .investment-details .card .card-body .content p {
  color: #838383;
  font-size: 14px;
  font-weight: 400;
  line-height: 154%;
}
.banner {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #f6f5ee;
}
.banner.global-banner .title-card {
  margin-bottom: 0;
}
.banner.global-banner .title-card .card-text ul li {
  line-height: 50px;
}
.banner.global-banner .title-card .card-para p {
  max-width: 100%;
}
.banner #carouselExampleCaptions button {
  background: transparent;
  width: auto;
}
@media (max-width: 575.98px) {
  .banner #carouselExampleCaptions button {
    display: none;
  }
}
.banner #carouselExampleCaptions button.carousel-control-prev {
  left: inherit;
  right: 50px;
  top: 110px;
}
.banner #carouselExampleCaptions button.carousel-control-next {
  top: 110px;
}
@media (max-width: 767.98px) {
  .banner {
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
}
.banner .banner-card-img {
  border: 0;
  border-radius: 0;
}
@media (max-width: 991.98px) {
  .banner .banner-card-img .card-image img {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .banner .banner-card-img .card-image img {
    margin-top: 20px;
  }
}
.banner .banner-card-img .card-image .trading-bg-icons {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 117px;
  height: 96px;
  background: rgba(240, 240, 240, 0.4);
  box-shadow: 12.2667px 15.3333px 35.7778px rgba(46, 46, 46, 0.15);
  border-radius: 12.2667px;
}
.banner .banner-card-img .card-image .trading-bg-icons ul {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.banner .banner-card-img .card-image .trading-bg-icons ul li:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.banner .banner-card-img .card-image .trading-bg-icons ul li:first-child span.up-arrow {
  margin-bottom: 7px;
}
.banner .banner-card-img .card-image .trading-bg-icons ul li:nth-child(2) {
  margin-left: 1px;
  margin-right: 5px;
}
.banner .banner-card-img .card-image .trading-bg-icons ul li:last-child {
  margin-bottom: 15px;
}
.banner .banner-card-img .card-image .player-icon {
  position: absolute;
  transform: translate(-50px, -50px);
  left: 50%;
  top: 50%;
  cursor: pointer;
}
.banner .title-card {
  border: 0;
  border-radius: 0;
  margin-bottom: 80px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .banner .title-card {
    padding-bottom: 30px;
  }
}
.banner .title-card .card-text {
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner .title-card .card-text {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.banner .title-card .card-text ul li {
  color: #363b64;
  font-weight: 700;
  font-size: 64px;
  line-height: 90px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .banner .title-card .card-text ul li {
    font-size: 60px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner .title-card .card-text ul li {
    font-size: 49px;
    line-height: 70px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .banner .title-card .card-text ul li {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .banner .title-card .card-text ul li {
    font-size: 40px;
    line-height: 80px;
  }
}
@media (max-width: 575.98px) {
  .banner .title-card .card-text ul li {
    font-size: 35px;
    line-height: 50px;
  }
}
.banner .title-card .card-para p {
  margin: 0 0 40px 0;
  line-height: 38px;
  color: #4A4A4A;
  font-size: 20px;
  max-width: 500px;
}
@media (max-width: 991.98px) {
  .banner .title-card .card-para p {
    font-size: 16px;
  }
}
.banner .title-card .card-links a {
  margin-right: 15px;
}
@media (max-width: 575.98px) {
  .banner .title-card .card-links a {
    margin-right: 0;
    text-align: center;
  }
}
.banner .review ul {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .banner .review ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.banner .review ul li {
  font-weight: 600;
  font-size: 20px;
  line-height: 35px;
  color: #363b64;
  margin-right: 20px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .banner .review ul li {
    margin-right: 18px;
  }
}
.banner .review ul li span {
  font-weight: 300;
  font-size: 16px;
  line-height: 31px;
}

.banner-modal .modal-dialog .modal-content .modal-body {
  padding: 0;
}
.banner-modal .modal-dialog .modal-content .modal-body button {
  position: absolute;
  top: -60px;
  right: -50px;
  color: #fff;
  font-size: 40px;
  font-weight: 100;
  text-shadow: none;
  border: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  background: #000;
  border-radius: 25px;
  opacity: 0.6;
}
@media (max-width: 767.98px) {
  .banner-modal .modal-dialog .modal-content .modal-body button {
    top: -36px;
    right: -7px;
    font-size: 25px;
    width: 25px;
    height: 25px;
    border-radius: 15px;
  }
}
.course-topic {
  background-color: #ef6e4d;
}
.course-topic .card {
  background-color: transparent;
  align-items: center;
  border: 0;
}
.course-topic .card img {
  max-width: 100px;
  margin-bottom: 20px;
}
.course-topic .card h2 {
  font-weight: 600;
  font-size: 25px;
  line-height: 37px;
  margin-bottom: 10px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .course-topic .card h2 {
    font-size: 20px;
  }
}
.course-topic .card p {
  font-weight: 300;
  font-size: 18px;
  line-height: 154.3%;
}

.new-course-module .new-course-card {
  padding: 30px;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
}
.new-course-module .new-course-card .card-image {
  margin-bottom: 15px;
}
.new-course-module .new-course-card .card-title {
  margin-bottom: 15px;
}
.new-course-module .new-course-card .card-title p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #363b64;
}
.new-course-module .new-course-card .card-infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.new-course-module .new-course-card .card-infos.live-btn a:last-child {
  background: #4cbc9a;
  color: #fff;
  display: block;
  width: 100%;
}
.new-course-module .new-course-card .card-infos.live-btn a:last-child svg {
  -webkit-animation: 1s blink ease infinite;
  -moz-animation: 1s blink ease infinite;
  -ms-animation: 1s blink ease infinite;
  -o-animation: 1s blink ease infinite;
  animation: 1s blink ease infinite;
  margin-right: 10px;
}
@keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-ms-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.new-course-module .new-course-card .card-infos .review {
  display: flex;
  align-items: center;
}
.new-course-module .new-course-card .card-infos .review svg {
  margin-right: 5px;
}
.new-course-module .new-course-card .card-infos .review span {
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: #383838;
  opacity: 0.8;
}
.new-course-module .new-course-card .card-infos .hours {
  display: flex;
  align-items: center;
}
.new-course-module .new-course-card .card-infos .hours svg {
  margin-right: 5px;
}
.new-course-module .new-course-card .card-infos .hours span {
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: #383838;
  opacity: 0.8;
}
.new-course-module .new-course-card .card-infos .amount {
  background: #fbeeec;
  padding: 5px 15px;
  box-shadow: inset 0px 4px 15px rgba(255, 255, 255, 0.25);
}
.new-course-module .new-course-card .card-infos .amount span {
  font-weight: 500;
  font-size: 16px;
  color: #ef6e4d;
}
.new-course-module .new-course-card .card-infos a {
  display: block;
  width: 170px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  height: 48px;
  text-align: center;
  line-height: 48px;
}
.new-course-module .new-course-card .card-infos a:first-child {
  background: rgba(76, 188, 154, 0.1);
  color: #4cbc9a;
}
.new-course-module .new-course-card .card-infos a:last-child {
  background-color: #fff;
  color: #ef6e4d;
}
.new-course-module .new-course-card .card-infos a:hover {
  text-decoration: none;
}
.new-course-module .new-course-card .books-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
}
.new-course-module .new-course-card .books-info .read-btn {
  background: #f1e8e9;
  padding: 16px 26px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .new-course-module .new-course-card .books-info .read-btn {
    padding: 12px;
  }
}
.new-course-module .new-course-card .books-info .read-btn span {
  color: #ef6e4d;
}
.new-course-module .new-course-card .books-info .icon-list {
  display: flex;
  justify-content: space-around;
}
.new-course-module .new-course-card .books-info .icon-list li a {
  margin-left: 1rem;
  display: inline-block;
  color: inherit;
}
.new-course-module .new-course-card .books-info .icon-list li a i {
  font-size: 24px;
}
.new-course-module .new-course-card .books-info .icon-list li a i.fa-eye {
  color: #3b469b;
}
.new-course-module .new-course-card .books-info .icon-list li a i.fa-heart {
  color: #ef6e4d;
}

@media (max-width: 575.98px) {
  .user-review {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.user-review .card {
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
  height: 220px;
  border: 0;
  border-radius: 0;
}
.user-review .card.all-card .card-body {
  display: block;
  padding-top: 30px;
}
.user-review .card.all-card .card-body .logo-icon {
  justify-content: flex-start;
}
.user-review .card.all-card .card-body .logo-icon img {
  margin-right: 10px;
}
.user-review .card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.user-review .card .card-body .logo-icon .small-text {
  font-size: 16px;
}
.user-review .card .card-body span {
  font-weight: 600;
  font-size: 22px;
  line-height: 36px;
  color: #313131;
}
.user-review .card .card-body ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767.98px) {
  .user-review .card .card-body ul {
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .user-review .card .card-body ul li {
    margin-right: 10px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .user-review .card .card-body ul li img {
    width: 28px;
  }
}
.user-review .card .card-body p {
  font-weight: 200;
  font-size: 14px;
  line-height: 22px;
  color: #313131;
}
.user-review .card .card-body p span {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  text-decoration: underline;
}
.user-review .card .card-body .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-review .card .card-body .line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 64px;
}
.user-review .card .card-body .rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 22px;
}
.user-review .card .card-body .rating img {
  width: 20px;
  margin-right: 5px;
}
.user-review .card .card-body .rating p {
  font-weight: 200;
  font-size: 12px;
  line-height: 26px;
}

.forex-signal .forex-signal-card {
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
  border: 0;
  border-radius: 0;
  padding: 30px;
  height: 400px;
  position: relative;
  margin-bottom: 20px;
}
.forex-signal .forex-signal-card.copy-people-card {
  height: auto;
}
.forex-signal .forex-signal-card.copy-people-card .card-headers {
  align-items: center;
}
.forex-signal .forex-signal-card.copy-people-card .signal-percent {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.forex-signal .forex-signal-card.copy-people-card .signal-percent span.signal-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #363b64;
}
.forex-signal .forex-signal-card.copy-people-card .signal-percent .profit-share {
  display: flex;
  flex-direction: column;
}
.forex-signal .forex-signal-card.copy-people-card .signal-percent .profit-share span {
  text-align: right;
}
.forex-signal .forex-signal-card.copy-people-card .signal-percent .profit-share span:first-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
}
.forex-signal .forex-signal-card.copy-people-card .signal-percent .profit-share span:last-child {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #ff606b;
}
.forex-signal .forex-signal-card.copy-people-card .card-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .reliable {
  display: flex;
  flex-direction: column;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .reliable span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #363b64;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .reliable .review .algo-icon i {
  font-size: 8px;
  color: #2ba848;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .algo-trade {
  display: flex;
  flex-direction: column;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .algo-trade span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #363b64;
  display: inline-block;
  margin-bottom: 7px;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .algo-trade span:last-child {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #3cc2e0;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .people {
  display: flex;
  flex-direction: column;
}
.forex-signal .forex-signal-card.copy-people-card .card-content .people span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #363b64;
  display: inline-block;
  margin-bottom: 7px;
}
.forex-signal .forex-signal-card.copy-people-card .card-links {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  bottom: 0;
}
.forex-signal .forex-signal-card.copy-people-card .card-links p {
  font-size: 14px;
  line-height: 21px;
  color: #383838;
  margin-bottom: 0;
}
.forex-signal .forex-signal-card.copy-people-card .card-links p span {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #363b64;
}
.forex-signal .forex-signal-card.copy-people-card .card-links button {
  background: #f1e8e9;
  padding: 16px 26px;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ef6e4d;
  border-radius: 0;
}
.forex-signal .forex-signal-card .card-headers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.forex-signal .forex-signal-card .card-headers .currency h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin: 0;
  color: #363b64;
}
.forex-signal .forex-signal-card .card-headers .currency p.h-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin: 0;
  color: #363b64;
}
.forex-signal .forex-signal-card .card-headers .currency span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
}
.forex-signal .forex-signal-card .card-headers .hour svg {
  vertical-align: -1px;
  margin-right: 3px;
}
.forex-signal .forex-signal-card .card-headers .hour span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
}
.forex-signal .forex-signal-card .card-image {
  margin-bottom: 20px;
  text-align: center;
}
.forex-signal .forex-signal-card .card-content .card-text {
  margin-bottom: 15px;
}
.forex-signal .forex-signal-card .card-content .card-text h5 {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 10px 0;
  color: #363b64;
}
.forex-signal .forex-signal-card .card-content .card-text p {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
  margin: 0;
}
.forex-signal .forex-signal-card .card-content .card-text p.s-title {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 10px 0;
  color: #363b64;
}
.forex-signal .forex-signal-card .card-links {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
  padding: 0px 30px;
}
.forex-signal .forex-signal-card .card-links a {
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #ef6e4d;
  display: block;
  text-align: center;
  border: 1px solid #ef6e4d;
  border-radius: 5px;
  padding: 16px 26px;
  transition: 0.3s;
  background-color: transparent;
}
.forex-signal .forex-signal-card .card-links a:hover {
  color: #fff;
  background-color: #ef6e4d;
}

@media (max-width: 767.98px) {
  .success-stories {
    padding: 0;
  }
}
.success-stories .card {
  background-color: transparent;
  border: 0;
}
.success-stories .card img {
  margin-bottom: 40px;
}
.success-stories .card h2 {
  font-weight: 500;
  font-size: 20px;
  line-height: 34px;
  margin-bottom: 20px;
  color: #212121;
}
@media (max-width: 991.98px) {
  .success-stories .card h2 {
    font-size: 18px;
  }
}
.success-stories .card p {
  font-weight: 300;
  font-size: 18px;
  line-height: 154.3%;
  color: #838383;
}
@media (max-width: 991.98px) {
  .success-stories .card p {
    font-size: 16px;
  }
}

.copy-trading .copy-trading-card {
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
  border: 0;
  border-radius: 0;
  padding: 30px;
  height: auto;
  position: relative;
  margin-bottom: 20px;
}
.copy-trading .copy-trading-card .card-headers {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.copy-trading .copy-trading-card .card-headers .currency h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin: 0;
  color: #363b64;
}
.copy-trading .copy-trading-card .card-headers .currency p.h-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  margin: 0;
  color: #363b64;
}
.copy-trading .copy-trading-card .card-headers .currency span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
}
.copy-trading .copy-trading-card .card-headers .hour svg {
  vertical-align: -1px;
  margin-right: 3px;
}
.copy-trading .copy-trading-card .card-headers .hour span {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
}
.copy-trading .copy-trading-card .signal-percent {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}
.copy-trading .copy-trading-card .signal-percent span.signal-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #363b64;
}
.copy-trading .copy-trading-card .signal-percent .profit-share {
  display: flex;
  flex-direction: column;
}
.copy-trading .copy-trading-card .signal-percent .profit-share span {
  text-align: right;
}
.copy-trading .copy-trading-card .signal-percent .profit-share span:first-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #383838;
}
.copy-trading .copy-trading-card .signal-percent .profit-share span:last-child {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #ff606b;
}
.copy-trading .copy-trading-card .card-image {
  margin-bottom: 20px;
  text-align: center;
}
.copy-trading .copy-trading-card .card-content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.copy-trading .copy-trading-card .card-content .reliable {
  display: flex;
  flex-direction: column;
}
.copy-trading .copy-trading-card .card-content .reliable span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #363b64;
}
.copy-trading .copy-trading-card .card-content .reliable .review .algo-icon i {
  font-size: 8px;
  color: #2ba848;
}
.copy-trading .copy-trading-card .card-content .algo-trade {
  display: flex;
  flex-direction: column;
}
.copy-trading .copy-trading-card .card-content .algo-trade span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #363b64;
  display: inline-block;
  margin-bottom: 7px;
}
.copy-trading .copy-trading-card .card-content .algo-trade span:last-child {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  color: #3cc2e0;
}
.copy-trading .copy-trading-card .card-content .people {
  display: flex;
  flex-direction: column;
}
.copy-trading .copy-trading-card .card-content .people span {
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #363b64;
  display: inline-block;
  margin-bottom: 7px;
}
.copy-trading .copy-trading-card .card-links {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  bottom: 0;
}
.copy-trading .copy-trading-card .card-links p {
  font-size: 14px;
  line-height: 21px;
  color: #383838;
  margin-bottom: 0;
}
.copy-trading .copy-trading-card .card-links p span {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #363b64;
}
.copy-trading .copy-trading-card .card-links button {
  background: #f1e8e9;
  padding: 16px 26px;
  border: 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #ef6e4d;
  border-radius: 0;
}

@media (max-width: 767.98px) {
  .books {
    padding: 0;
  }
}
.books .books-module .books-card {
  padding: 30px;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 2px 4px rgba(7, 4, 146, 0.1), 0px 24px 60px rgba(6, 47, 125, 0.05), 0px 12px 24px rgba(27, 59, 119, 0.05);
}
.books .books-module .books-card .card-image {
  margin-bottom: 15px;
}
.books .books-module .books-card .card-title {
  margin-bottom: 15px;
}
.books .books-module .books-card .card-title p {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #363b64;
}
.books .books-module .books-card .card-infos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.books .books-module .books-card .card-infos.live-btn a:last-child {
  background: #4cbc9a;
  color: #fff;
  display: block;
  width: 100%;
}
.books .books-module .books-card .card-infos.live-btn a:last-child svg {
  -webkit-animation: 1s blink ease infinite;
  -moz-animation: 1s blink ease infinite;
  -ms-animation: 1s blink ease infinite;
  -o-animation: 1s blink ease infinite;
  animation: 1s blink ease infinite;
  margin-right: 10px;
}
@keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-ms-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes blink {
  from, to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.books .books-module .books-card .card-infos .review {
  display: flex;
  align-items: center;
}
.books .books-module .books-card .card-infos .review svg {
  margin-right: 5px;
}
.books .books-module .books-card .card-infos .review span {
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: #cc7a16;
  opacity: 0.8;
}
.books .books-module .books-card .card-infos .hours {
  display: flex;
  align-items: center;
}
.books .books-module .books-card .card-infos .hours svg {
  margin-right: 5px;
}
.books .books-module .books-card .card-infos .hours span {
  font-weight: 400;
  font-size: 14px;
  line-height: 115%;
  color: #a098ae;
  opacity: 0.8;
}
.books .books-module .books-card .card-infos .amount {
  background: #fbeeec;
  padding: 5px 15px;
  box-shadow: inset 0px 4px 15px rgba(255, 255, 255, 0.25);
}
.books .books-module .books-card .card-infos .amount span {
  font-weight: 500;
  font-size: 16px;
  color: #ef6e4d;
}
.books .books-module .books-card .card-infos a {
  display: block;
  width: 170px;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  height: 48px;
  text-align: center;
  line-height: 48px;
}
.books .books-module .books-card .card-infos a:first-child {
  background: rgba(76, 188, 154, 0.1);
  color: #4cbc9a;
}
.books .books-module .books-card .card-infos a:last-child {
  background-color: #fff;
  color: #ef6e4d;
}
.books .books-module .books-card .card-infos a:hover {
  text-decoration: none;
}
.books .books-module .books-card .books-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
}
.books .books-module .books-card .books-info .read-btn {
  background: #f1e8e9;
  padding: 16px 26px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .books .books-module .books-card .books-info .read-btn {
    padding: 12px;
  }
}
.books .books-module .books-card .books-info .read-btn span {
  color: #ef6e4d;
}
.books .books-module .books-card .books-info .icon-list {
  display: flex;
  justify-content: space-around;
}
.books .books-module .books-card .books-info .icon-list li a {
  margin-left: 1rem;
  display: inline-block;
  color: inherit;
}
.books .books-module .books-card .books-info .icon-list li a i {
  font-size: 24px;
}
.books .books-module .books-card .books-info .icon-list li a i.fa-eye {
  color: #3b469b;
}
.books .books-module .books-card .books-info .icon-list li a i.fa-heart {
  color: #ef6e4d;
}
.books .books-carousel {
  margin: 0 auto;
}
.books .books-carousel .owl-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1350px) {
  .books .books-carousel .owl-nav {
    display: none;
  }
}
.books .books-carousel .owl-nav button {
  position: absolute;
  top: 45%;
  transform: translate(0, -100%);
}
.books .books-carousel .owl-nav button.owl-prev {
  left: -4rem;
}
.books .books-carousel .owl-nav button.owl-next {
  right: -4rem;
}
.books .books-carousel .owl-nav button i {
  color: #fff;
  width: 48px;
  height: 48px;
  background: #ef6e4d;
  border-radius: 24px;
  line-height: 48px;
  text-align: center;
}

@media (max-width: 575.98px) {
  .trading-opportunity {
    padding-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .trading-opportunity .title h2 {
    font-size: 37px;
  }
}
.trading-opportunity a.btn-theme {
  padding: 15px 85px;
}

.new-expert-modal .modal-dialog .modal-content {
  background: #fcfcfc;
  border-radius: 0;
  box-shadow: none;
}
.new-expert-modal .modal-dialog .modal-content .modal-body {
  padding: 50px 40px;
}
.new-expert-modal .modal-dialog .modal-content .modal-body button.close {
  position: absolute;
  top: 0px;
  right: 0px;
  font-size: 40px;
  font-weight: 100;
  text-shadow: none;
  border: 0;
  outline: 0;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  opacity: 0.6;
}
.new-expert-modal .modal-dialog .modal-content .modal-body h5 {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  margin: 0 0 70px 0;
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form ::placeholder {
  color: #363b64;
  opacity: 1;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form :-ms-input-placeholder {
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form ::-ms-input-placeholder {
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group.featureList h6 {
  margin: 0 0 30px 0;
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group.featureList ul li {
  display: flex;
  margin-bottom: 15px;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group.featureList ul li span {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #7e7e7e;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group.featureList ul li i {
  color: #06cf9f;
  margin: 0 10px 0 0;
  line-height: 30px;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group label {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #a098ae;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group span.amountLevel {
  margin-top: 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group input {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  background: #f5f5f5;
  height: 48px;
  padding: 7px 0 7px 24px;
  border: 0;
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form .form-group textarea {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  background: #f5f5f5;
  padding: 7px 0 7px 24px;
  border: 0;
  color: #363b64;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form a.checkoutLink {
  height: 48px;
  background: #ef6e4d;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #fcfcfc;
  border: 0;
}
.new-expert-modal .modal-dialog .modal-content .modal-body form button {
  height: 48px;
  background: #ef6e4d;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #fcfcfc;
  border: 0;
}

.contact-us .card {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.contact-us .card .card-body form ::placeholder {
  color: #363b64;
  opacity: 1;
}
.contact-us .card .card-body form :-ms-input-placeholder {
  color: #363b64;
}
.contact-us .card .card-body form ::-ms-input-placeholder {
  color: #363b64;
}
.contact-us .card .card-body form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
.contact-us .card .card-body form .form-group label {
  font-weight: 300;
  font-size: 14px;
  line-height: 21px;
  color: #a098ae;
}
.contact-us .card .card-body form .form-group span.amountLevel {
  margin-top: 12px;
  font-weight: 700;
  font-size: 24px;
  line-height: 36px;
  color: #363b64;
}
.contact-us .card .card-body form .form-group input {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  background: #f5f5f5;
  height: 48px;
  padding: 7px 0 7px 24px;
  border: 0;
  color: #363b64;
}
.contact-us .card .card-body form .form-group textarea {
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  background: #f5f5f5;
  padding: 7px 0 7px 24px;
  border: 0;
  color: #363b64;
}
.contact-us .card .card-body form button {
  height: 48px;
  background: #ef6e4d;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #fcfcfc;
  border: 0;
}

.filters ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.filters ul li {
  color: #838383;
  margin-right: 16px;
  background-color: transparent;
  font-weight: 300;
  border: 1px solid rgba(131, 131, 131, 0.5);
  font-size: 16px;
  text-align: center;
  border-radius: 37px;
  cursor: pointer;
  padding: 15px 37px;
  cursor: pointer;
  margin-bottom: 20px;
}
@media (min-width: 576px) and (max-width: 1199.98px) {
  .filters ul li {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 28px;
  }
}
@media (max-width: 575.98px) {
  .filters ul li {
    font-size: 14px;
  }
}
.filters ul li.active {
  background-color: #ef6e4d;
  color: #fff;
  border-color: #ef6e4d;
}

.filters-content {
  margin-top: 60px;
}
.filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}
.filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}

.blog-filter-content {
  border-bottom: 1px solid #d4d2d2;
  margin-bottom: 80px;
}

.blog-card-wrapper .card {
  border: 0;
  border-radius: 0;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  .blog-card-wrapper .card {
    margin-bottom: 40px;
  }
}
.blog-card-wrapper .card .card-body {
  padding: 0;
}
.blog-card-wrapper .card .card-body img {
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .blog-card-wrapper .card .card-body img {
    width: 100%;
  }
}
.blog-card-wrapper .card .card-body .content h3 {
  color: #212121;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 34px;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 300px;
}
@media (max-width: 767.98px) {
  .blog-card-wrapper .card .card-body .content h3 {
    max-width: 100%;
  }
}
.blog-card-wrapper .card .card-body .content p {
  color: #838383;
  font-size: 17.778px;
  font-weight: 400;
  line-height: 154.3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 50px;
}
@media (max-width: 575.98px) {
  .pagination-wrapper {
    justify-content: center;
    gap: 3rem;
  }
}
.pagination-wrapper p {
  margin: 0;
  color: #a098ae;
  font-size: 14px;
  font-weight: 400;
}
.pagination-wrapper p span {
  color: #363b64;
}
.pagination-wrapper nav .pagination {
  gap: 16px;
}
@media (max-width: 575.98px) {
  .pagination-wrapper nav .pagination {
    gap: 7px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.pagination-wrapper nav .pagination li.active a {
  background: #ef6e4d;
}
.pagination-wrapper nav .pagination li.disabled a {
  border: 0;
}
.pagination-wrapper nav .pagination li:last-child a {
  background: transparent;
  color: #838383;
}
.pagination-wrapper nav .pagination li a {
  border: 0;
  background: rgba(239, 110, 77, 0.0901960784);
  color: #ef6e4d;
  font-size: 18px;
  font-weight: 400;
  padding: 14px 22px;
}
.pagination-wrapper nav .pagination li a:focus {
  box-shadow: none;
}

.blog-details .title-content h2 {
  color: #363b64;
  font-size: 36px;
  font-weight: 700;
  line-height: 60px;
  margin: 0 0 20px 0;
}
.blog-details .title-content .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid #d4d2d2;
  margin-bottom: 31px;
  padding-bottom: 27px;
}
.blog-details .title-content .wrapper ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.blog-details .title-content .wrapper ul li {
  font-size: 17.778px;
  font-weight: 400;
  line-height: 154.3%;
}
.blog-details .title-content .wrapper ul li.tag {
  color: #ef6e4d;
}
.blog-details .title-content .wrapper ul li.date {
  color: #838383;
}
.blog-details .title-content .wrapper p {
  font-size: 17.778px;
  font-weight: 400;
  line-height: 154.3%;
  color: #838383;
  margin: 0;
}
.blog-details .title-content .wrapper p i {
  color: #ef6e4d;
  margin-right: 10px;
  cursor: pointer;
}
.blog-details img.blog-details-img {
  margin-bottom: 42px;
  width: 100%;
}
.blog-details .content-details {
  border-bottom: 1px solid #d4d2d2;
  margin-bottom: 54px;
  padding-bottom: 30px;
}
.blog-details .content-details p {
  color: #363b64;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

footer {
  padding-top: 100px;
  background: #171717;
}
@media (max-width: 767px) {
  footer {
    padding-top: 50px;
  }
}
footer .card .card-body {
  padding-left: 0;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .card .card-body {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  footer .card .card-body {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  footer .card .card-body {
    margin-bottom: 50px;
  }
}
footer .card .card-body img {
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  footer .card .card-body img {
    max-width: 100%;
    margin-bottom: 25px;
  }
}
footer .card .card-body p {
  margin: 0;
  line-height: 27px;
  color: #838383;
  font-weight: 300;
  font-size: 16px;
  line-height: 27px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .card .card-body p {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  footer ul {
    margin-bottom: 0;
  }
}
footer ul li {
  margin-bottom: 5px;
}
footer ul li.list-heading {
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  footer ul li.list-heading {
    margin-bottom: 10px;
  }
}
footer ul li.list-heading span {
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  line-height: 27px;
  text-transform: uppercase;
  font-size: 16px;
  transition: 0.3s;
  font-weight: 200;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer ul li.list-heading span {
    letter-spacing: 0;
  }
}
footer ul li.list-heading span:hover {
  color: #fff;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer ul li.list-heading span {
    font-size: 12px;
  }
}
footer ul li a {
  color: #fff;
  text-transform: capitalize;
  transition: 0.3s;
  font-weight: 200;
  font-size: 16px;
  line-height: 34px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer ul li a {
    font-size: 14px;
  }
}
footer ul li a:hover {
  color: #ef6e4d;
}
footer .social-links ul {
  margin-bottom: 30px;
}
footer .social-links ul li {
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  footer .social-links ul li {
    margin-right: 23px;
  }
}
footer .social-links ul li a {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-color: #ef6e4d;
  border-radius: 100%;
  line-height: 36px;
  text-align: center;
  color: #fff;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  footer .social-links ul li a {
    font-size: 14px;
  }
}
footer .social-links p {
  line-height: 27px;
  margin: 0 0 30px 0;
  display: flex;
  font-weight: 200;
  font-size: 16px;
}
@media (min-width: 576px) and (max-width: 991.98px) {
  footer .social-links p {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  footer .social-links p {
    justify-content: center;
  }
}
footer .social-links p span img {
  margin-right: 10px;
}
footer .bottom-footer {
  padding: 80px 0;
}
@media (max-width: 767.98px) {
  footer .bottom-footer {
    padding: 10px 0;
  }
}
footer .bottom-footer p {
  text-align: center;
  margin-bottom: 0;
  font-weight: 200;
  font-size: 16px;
  line-height: 27px;
  color: #838383;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  footer .bottom-footer p {
    font-size: 14px;
  }
}

.contact-number {
  padding-bottom: 250px;
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .contact-number {
    padding-bottom: 50px;
    padding-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .contact-number {
    padding-bottom: 60px;
  }
}
.contact-number svg {
  vertical-align: -12px;
  margin-right: 20px;
}
@media (max-width: 991.98px) {
  .contact-number svg {
    margin-right: 10px;
    width: 40px;
  }
}
.contact-number span {
  font-size: 46px;
  line-height: 79px;
}
@media (max-width: 991.98px) {
  .contact-number span {
    font-size: 30px;
  }
}

body {
  background: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
  padding-top: 85px;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
}

section {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  section {
    padding: 50px 0;
  }
}

.custom-container {
  max-width: 1200px;
}

.text-theme {
  color: #ef6e4d;
}

/*# sourceMappingURL=style.css.map */
