/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  -webkit-animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}

@-webkit-keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Fontawesome Icon Style
--------------------------------------------------------------*/

.fa:before, [class^="fa-"]:before, [class*=" fa-"]:before {
  line-height: 1;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  font-family: var(--font-primary);
  padding: 80px 0;
  overflow: hidden;
}

.section-header {
  font-size: 16px;
  padding-bottom: 50px;
}

.section-header h2 {
  font-size: 3em;
  font-weight: 400;
  margin-bottom: 20px;
}

.section-header h3 {
  font-size: 2.25em;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header span {
  font-weight: 600;
  color: var(--color-primary);
}

.section-header p {
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

@media (max-width: 576px) {
  .section-header {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

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

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

.breadcrumbs ol li+li:before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

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

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

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

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}

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

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 15px;
  transition: all 0.5s;
  z-index: 997;
}

.header.sticked {
  background: rgba(20,20,35, .95);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 72px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-white);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .logo p {
  font-weight: 500;
  letter-spacing: 0.5rem;
  line-height: 0.5rem;
  text-align: right;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

@media (max-width: 767px) {
  .header .logo img {
    max-height: 54px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation 
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.9);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
	color: var(--color-primary);
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.3s;
  }

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

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

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

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

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

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover>a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

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

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

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

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

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 0;
    margin: 0;
    background: rgba(20, 20, 35);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-white);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-primary);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 35, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 96vh;
  padding: 0;
  background: var(--color-black);
  background: url("../img/ms-bg.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}

.hero:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35);
  border-radius: 50%;
  left: -960px;
  top: -40vh;
  z-index: 1;
  box-shadow: 30px 18px 0 rgba(11,11,19, 0.3);
}

.hero:after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  background-color: rgba(2,44,90, .9);
  border-radius: 50%;
  right: -480px;
  top: -980px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .hero:before {
	  left: -1120px;
  }
}

@media (max-width: 1199px) {
  .hero:before {
	  left: -1200px;
  }
  .hero:after {
	  right: -760px;
  }
}

@media (max-width: 767px) {
  .hero:before {
	  left: -1350px;
  }
}

@media (max-width: 576px) {
  .hero:before {
	  left: -1450px;
  }
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 25px;
  font-size: 3.500rem;
  font-weight: 300;
  -webkit-animation: fadeInDown 1s both 0.2s;
  animation: fadeInDown 1s both 0.2s;
}

.hero h1 span {
  font-weight: 600;
}

.hero h3, .hero h5 {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.250rem;
  }
  .hero h3 {
    font-size: 1.250rem;
  }
  .hero h5 {
    font-size: 1rem;
  }
}

.hero p {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  -webkit-animation: fadeInDownLite 1s both;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  -webkit-animation: fadeInUp 1s both 0.6s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero .carousel-item, .hero .carousel-item.active {
  padding: 0 3%;
  z-index: 2;
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators {
  justify-content: start;
  left: 15%;
  bottom: 60px;
}

.hero .carousel-indicators li {
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Liquidity Markets Section
--------------------------------------------------------------*/
.liquidity-markets {
  background: rgba(20, 20, 35);
}

.liquidity-markets .content {
  font-size: 1.25rem;
  color: var(--color-white);
}

.liquidity-markets .content h3 {
  font-weight: 600;
  font-size: 2.25rem;
}

.liquidity-markets .count-box {
  font-size: 16px;
  padding: 20px 0;
  width: 100%;
}

.liquidity-markets .count-box i {
  display: block;
  font-size: 3em;
  color: #a1bdd1;
  float: left;
  line-height: 0;
}

.liquidity-markets .count-box span {
  font-size: 2.125em;
  line-height: 0.75em;
  display: block;
  font-weight: 700;
  color: var(--color-primary);
  margin-left: 60px;
}

.liquidity-markets .count-box span:after {
  content: "+";
  margin-left: 3px;
}

.liquidity-markets .count-box p {
  padding: 5px 0 0 0;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 1.125em;
  color: var(--color-white);
  margin-left: 60px;
}

.liquidity-markets .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #2e4b5e;
  font-size: 1em;
  font-family: var(--font-secondary);
  transition: ease-in-out 0.3s;
}

.liquidity-markets .count-box a:hover {
  color: #477392;
}

@media (max-width: 575px) {
  .liquidity-markets .count-box {
    font-size: 13px;
  }
  
  .liquidity-markets .count-box span, 
  .liquidity-markets .count-box p {
    margin-left: 50px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  position: relative;
  background: rgba(20, 20, 35);
}

.services:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb));
  border-radius: 0 160px 0 0;
  z-index: 1;
}

.services:after {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  left: -1400px;
  top: 0;
  box-shadow: 30px -5px 0 rgba(11,11,19, 0.04);
  z-index: 1;
}

.services .container {
  position: relative;
  z-index: 2;
}

.services .img {
  position: relative;
  width: 100%;
  height: 180px;
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: 0.6s;
}

.services .details {
  min-height: 184px;
  padding: 30px;
  margin: -75px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--color-primary);
}

.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Professional Clients Section
--------------------------------------------------------------*/
.professional-clients {
  background: url("../img/professional-clients-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  border-radius: 0 0 0 160px;
  color: var(--color-white);
}

.professional-clients:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,44,90, .93);
  border-radius: 0 0 0 120px;
}

.professional-clients .list-group {
  border-radius: 0;
}
.professional-clients .list-group-item {
  color: var(--color-white);
  background-color: transparent;
  padding: 10px 30px;
}
.professional-clients .list-group-horizontal > .list-group-item:first-child:not(:last-child) {
  border-bottom-left-radius: 0;
}
.professional-clients .list-group-horizontal > .list-group-item:last-child:not(:first-child) {
  border-top-right-radius: 0;
}

@media (min-width: 576px) {
  .professional-clients .list-group-horizontal-sm > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
  }
  .professional-clients .list-group-horizontal-sm > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 768px) {
  .professional-clients .list-group-horizontal-md > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: 0;
  }
  .professional-clients .list-group-horizontal-md > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
  }
}
@media (min-width: 992px) {
  .professional-clients .list-group-horizontal-lg > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: 0;
  }
  .professional-clients .list-group-horizontal-lg > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
  }
}
@media (min-width: 1200px) {
  .professional-clients .list-group-horizontal-xl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: 0;
  }
  .professional-clients .list-group-horizontal-xl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
  }
}
@media (min-width: 1400px) {
  .professional-clients .list-group-horizontal-xxl > .list-group-item:first-child:not(:last-child) {
    border-bottom-left-radius: 0;
  }
  .professional-clients .list-group-horizontal-xxl > .list-group-item:last-child:not(:first-child) {
    border-top-right-radius: 0;
  }
}

/*--------------------------------------------------------------
# Easy Access Liquidity Section
--------------------------------------------------------------*/
.easy-access-liquidity {
  position: relative;
  background: rgba(var(--color-white-rgb));
}

.easy-access-liquidity:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  right: -1400px;
  bottom: 0;
  z-index: 0;
  box-shadow: -30px 5px 0 rgba(11,11,19, 0.04);
}

.easy-access-liquidity h4 {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 22px;
}

.easy-access-liquidity .liquidity-item {
  width: 130px;
  height: 80px;
  padding: 12px;
  margin: 5px;
  background: rgba(var(--color-white-rgb));
  box-shadow: 0px 1px 10px rgba(var(--color-black-rgb), 0.15);
  border-radius: 10px;
  text-align: center;
}

.easy-access-liquidity .liquidity-item img {
  max-width: 106px;
  max-height: 56px;
}

/*--------------------------------------------------------------
# Liquidity Features Section
--------------------------------------------------------------*/
.liquidity-features {
  position: relative;
  background: rgba(20, 20, 35);
  color: var(--color-white);
}

.liquidity-features .feature-box {
  font-size: 16px;
  padding: 20px 0;
  width: 100%;
}

.liquidity-features .feature-box i {
  font-size: 2.5em;
  font-weight: 500;
  color: var(--color-primary);
  float: left;
  line-height: 0;
}

.liquidity-features .feature-box p {
  font-size: 1.25em;
  line-height: 1.25em;
  font-weight: 700;
  color: var(--color-white);
  margin-left: 32px;
}

@media (max-width: 575px) {
  .liquidity-features .feature-box {
    font-size: 13px;
  }
  
  .liquidity-features .feature-box  p {
    margin-left: 25px;
  }
}

/*--------------------------------------------------------------
# Inner Page Banner Section
--------------------------------------------------------------*/
.liquidity-banner, 
.technology-banner, 
.about-us-banner,
.contact-banner {
  width: 100%;
  height: 84vh;
  background: var(--color-black);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.liquidity-banner {
  background: url("../img/ms-bg.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.technology-banner {
  background: url("../img/tech-bg.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-us-banner {
  background: url("../img/about-us-bg.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-banner {
  background: url("../img/contact-bg.jpg") center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.liquidity-banner:before, 
.technology-banner:before, 
.about-us-banner:before,
.contact-banner:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background: rgba(20,20,35);
  border-radius: 50%;
  left: -1080px;
  top: -40vh;
  z-index: 1;
  box-shadow: 30px 18px 0 rgba(11,11,19, 0.3);
}

.liquidity-banner:after, 
.technology-banner:after,
.about-us-banner:after,
.contact-banner:after {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  background-color: rgba(2,44,90, .9);
  border-radius: 50%;
  right: -480px;
  top: -980px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .liquidity-banner:before, 
  .technology-banner:before, 
  .about-us-banner:before,
  .contact-banner:before  {
	  left: -1120px;
  }
}

@media (max-width: 1199px) {
  .liquidity-banner:before, 
  .technology-banner:before, 
  .about-us-banner:before,
  .contact-banner:before {
	  left: -1200px;
  }
  .liquidity-banner:after, 
  .technology-banner:after,
  .about-us-banner:after, 
  .contact-banner:after {
	  right: -760px;
  }
}

@media (max-width: 767px) {
  .liquidity-banner:before, 
  .technology-banner:before, 
  .about-us-banner:before,
  .contact-banner:before {
	  left: -1350px;
  }
}

@media (max-width: 576px) {
  .liquidity-banner:before, 
  .technology-banner:before, 
  .about-us-banner:before,
  .contact-banner:before {
	  left: -1450px;
  }
}

.liquidity-banner h1, 
.technology-banner h1,
.about-us-banner h1,
.contact-banner h1 {
  color: var(--color-white);
  margin-bottom: 25px;
  font-size: 3.500rem;
  font-weight: 300;
  -webkit-animation: fadeInDown 1s both 0.2s;
  animation: fadeInDown 1s both 0.2s;
}

.liquidity-banner h1 span, 
.technology-banner h1 span,
.about-us-banner h1 span, 
.contact-banner h1 span {
  font-weight: 600;
}

.liquidity-banner h3, .liquidity-banner h5, 
.technology-banner h3, .technology-banner h5, 
.about-us-banner h3, .about-us-banner h5, 
.contact-banner h3, .contact-banner h5 {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .liquidity-banner h1, 
  .technology-banner h1,
  .about-us-banner h1,
  .contact-banner h1 {
    font-size: 2.250rem;
  }
  .liquidity-banner h3, 
  .technology-banner h3,
  .about-us-banner h3,
  .contact-banner h3  {
    font-size: 1.250rem;
  }
  .liquidity-banner h5, 
  .technology-banner h5,
  .about-us-banner h5,
  .contact-banner h5 {
    font-size: 1rem;
  }
}

.liquidity-banner p, 
.technology-banner p,
.about-us-banner p,
.contact-banner p {
  color: var(--color-secondary-light);
  -webkit-animation: fadeInDown 1s both 0.4s;
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.liquidity-banner .banner-content, 
.technology-banner .banner-content,
.about-us-banner .banner-content, 
.contact-banner .banner-content {
  padding: 0 3% 1%;
  z-index: 2;
}

/*--------------------------------------------------------------
# Liquidity Access Section
--------------------------------------------------------------*/
.liquidity-access {
  position: relative;
  background: var(--color-white);
  top: -160px;
  border-radius: 0 160px 0 0;
  z-index: 3;
  margin-bottom: -160px;
}

.liquidity-access:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  left: -1080px;
  top: -107vh;
  box-shadow: 30px 18px 0 rgba(11,11,19, 0.04);
  z-index: 0;
}

.liquidity-access .count-box {
  font-size: 16px;
  padding: 5px 0;
}

.liquidity-access .count-box p {
  padding: 5px 0 0 0;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 1.125em;
}

.liquidity-access .count-box p span {
  font-size: 1.375em;
  font-weight: 600;
  color: var(--color-primary);
  vertical-align: baseline;
}

.liquidity-access .count-box p span:after {
  content: "+";
  margin-left: 3px;
}

@media (max-width: 575px) {
  .liquidity-access .count-box {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Liquidity Conditions Section
--------------------------------------------------------------*/
.liquidity-conditions {
  position: relative;
  background: rgba(20, 20, 35);
  color: var(--color-white);
  border-radius: 0 0 0 160px;
}

.liquidity-conditions h3 {
  font-size: 36px;
  font-weight: 600;
}

.liquidity-conditions h4 {
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
}

.liquidity-conditions .condition-box {
  font-size: 16px;
  padding: 20px 0;
  width: 100%;
}

.liquidity-conditions .condition-box i {
  font-size: 2.5em;
  font-weight: 500;
  color: var(--color-primary);
  float: left;
  line-height: 0;
}

.liquidity-conditions .condition-box p {
  font-size: 1.25em;
  line-height: 1.25em;
  font-weight: 700;
  color: var(--color-white);
  margin-left: 32px;
}

@media (max-width: 575px) {
  .liquidity-conditions .condition-box {
    font-size: 13px;
  }
  
  .liquidity-conditions .condition-box  p {
    margin-left: 25px;
  }
}

/*--------------------------------------------------------------
# Institutional Section
--------------------------------------------------------------*/
.institutional {
  position: relative;
  background: rgba(var(--color-white-rgb));
}

.institutional:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  right: -1200px;
  top: -80px;
  z-index: 0;
  box-shadow: -30px 5px 0 rgba(11,11,19, 0.04);
}

.institutional h3 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

.institutional h4 {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-primary);
  padding-left: 50px;
  margin-bottom: 10px;
}

.institutional h4:before {
  content: " \27A2";
  position: absolute;
  font-weight: 600;
  font-size: 24px;
  left: 0;
  top: 0;
}

.institutional p {
  padding-left: 50px;
  margin-bottom: 30px;
}

.institutional img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/*--------------------------------------------------------------
# White Label Section
--------------------------------------------------------------*/
.white-label {
  position: relative;
  background: var(--color-white);
  top: -160px;
  border-radius: 0 160px 0 0;
  z-index: 3;
  margin-bottom: -160px;
}

.white-label:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  left: -1080px;
  top: -107vh;
  z-index: 0;
  box-shadow: 30px 5px 0 rgba(11,11,19, 0.04);
}

.white-label h4 {
  width: 100%;
  font-weight: 600;
  font-size: 28px;
  text-align: center;
}

.white-label p {
  margin-bottom: 30px;
}

.white-label img {
  width: 100%;
  max-width: 600px;
  height: auto;
  z-index: 2;
}

/*--------------------------------------------------------------
# Related Products Section
--------------------------------------------------------------*/
.related-products {
  position: relative;
  background: url("../img/related-products-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--color-white);
  border-radius: 0 0 0 160px;
}

.related-products:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(2,44,90, .94);
  border-radius: 0 0 0 160px;
}

.related-products h3 {
  font-size: 36px;
  font-weight: 600;
}

.related-products .product-box {
  font-size: 16px;
  padding: 20px;
  width: 100%;
}

.related-products .product-box h5 {
  font-size: 1.5em;
  line-height: 1.5em;
  font-weight: 700;
  color: var(--color-white);
}

.related-products .product-box i {
  font-size: 2.5em;
  color: var(--color-primary);
  align-self: center;
}

.related-products .product-box p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .related-products .product-box {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Benefits Section
--------------------------------------------------------------*/
.benefits {
  position: relative;
  background: rgba(var(--color-white-rgb));
}

.benefits:before {
  content: '';
  position: absolute;
  width: 1200px;
  height: 1200px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  right: -800px;
  top: 0;
  z-index: 0;
  box-shadow: -30px 0 0 rgba(11,11,19, 0.04);
}

.benefits h3 {
  font-size: 36px;
  font-weight: 600;
}

.benefits .product-box {
  font-size: 16px;
  padding: 20px 10px;
  width: 100%;
}

.benefits .product-box i {
  font-size: 2.5em;
  color: var(--color-primary);
  min-width: 50px;
  text-align: center;
}

.benefits .product-box p {
  font-size: 16px;
  margin-left: 15px;
}

.benefits .product-box p span {
  display: block;
  font-size: 1.125em;
  line-height: 1.125em;
  font-weight: 600;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .benefits .product-box {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about-us {
  position: relative;
  background: var(--color-white);
  top: -160px;
  border-radius: 0 160px 0 0;
  z-index: 3;
  margin-bottom: -160px;
}

.about-us:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  left: -1080px;
  top: -107vh;
  z-index: 0;
  box-shadow: 30px 5px 0 rgba(11,11,19, 0.04);
}

/*--------------------------------------------------------------
# About Us Detail Section
--------------------------------------------------------------*/
.about-us-detail {
  background: url("../img/about-us.jpg") no-repeat;
  background-position: -20px center;
  background-size: cover;
  position: relative;
  left: 0;
  top: 0;
  max-width: 80%;
  height: 400px;
  border-radius: 160px 0 160px 0;
  color: var(--color-white);
  margin-top: 60px;
  margin-bottom: 150px;
}

.about-us-detail .about-us-content {
  position: absolute;
  right: -20%;
  top: -90px;
  width: 100%;
  max-width: 600px;
  padding: 40px 40px 20px 40px;
  background: rgba(2,44,90, .98);
  border-radius: 60px 0 60px 0;
}

.about-us-detail .about-us-content h4 {
  position: relative;
  font-weight: 600;
  font-size: 24px;
  color: var(--color-primary);
  padding-left: 50px;
  margin-bottom: 10px;
}

.about-us-detail .about-us-content h4:before {
  content: " \27A2";
  position: absolute;
  font-weight: 600;
  font-size: 24px;
  left: 0;
  top: 0;
}

.about-us-detail .about-us-content p {
  padding-left: 50px;
  margin-bottom: 30px;
}

@media (max-width: 1199px) {
	.about-us-detail {
	  display: inline-block;
	  background-position: -60px center;
	  max-width: 90%;
	  margin-top: 0;
	}

	.about-us-detail .about-us-content {
	  position: inherit;
	  max-width: 100%;
	  margin-top: 350px;
	  left: 10%;
	  top: -60px;
	}
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  position: relative;
  background: var(--color-white);
  top: -160px;
  border-radius: 0 160px 0 0;
  z-index: 3;
  margin-bottom: -160px;
}

.contact:before {
  content: '';
  position: absolute;
  width: 1800px;
  height: 1800px;
  background-color: rgba(20,20,35, 0.08);
  border-radius: 50%;
  left: -1080px;
  top: -107vh;
  z-index: 0;
  box-shadow: 30px 5px 0 rgba(11,11,19, 0.04);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
  background: var(--color-white);
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 13px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content {
  background: var(--color-secondary);
  padding: 60px 0 30px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

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

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

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 991px) {
  .footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
  }

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

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-secondary-dark);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

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

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.hero-waves {
  display: block;
  margin-top: 60px;
  width: 100%;
  height: 60px;
  z-index: 0;
  position: absolute;
  bottom: 0;
}

.wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
}

.wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
}

.wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}