@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes wordCarousel {
  0%, 10% {
    transform: translateY(0);
  }
  20%, 30% {
    transform: translateY(-1.1em);
  }
  40%, 50% {
    transform: translateY(-2.2em);
  }
  60%, 70% {
    transform: translateY(-3.3em);
  }
  80%, 90% {
    transform: translateY(-4.4em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes tickerAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes moveAnimation {
  0% {
    transform: translate(0, 0) rotate(0);
    width: 30%;
    opacity: 0.5;
  }
  25% {
    transform: translate(-50%, -50%) rotate(90deg);
    width: 50%;
    opacity: 0.3;
  }
  50% {
    transform: translate(-90%, -90%) rotate(180deg);
    width: 70%;
    opacity: 0.1;
  }
  75% {
    transform: translate(100%, -100%) rotate(270deg);
    width: 50%;
    opacity: 0.3;
  }
  100% {
    transform: translate(-100%, 100%) rotate(360deg);
    width: 30%;
    opacity: 0.5;
  }
}
@keyframes mobAnim {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(50%);
  }
}
body {
  color: #000;
  font-family: "Kanit", sans-serif;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.white-txt {
  color: #fff;
}

.site-logo {
  height: 60px;
}

.btn {
  background-image: linear-gradient(to right, #a3a2a2 0%, #e3e3e3 51%, #969696 100%);
  font-size: 15px;
  padding: 12px 20px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: rgba(0, 0, 0, 0.75);
  border-radius: 60px;
  font-weight: 600;
}
.btn:hover {
  background-position: right center;
  color: #000;
  text-decoration: none;
}

.secondary-btn {
  background-image: linear-gradient(to right, #0d0d0f 0%, #6e6e6f 51%, #0d0d0f 100%);
  color: #fff;
}
.secondary-btn:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
}

header .container-fluid {
  padding: 0;
}

.navbar-nav {
  margin-left: 20px;
}

@media only screen and (max-width: 991px) {
  .navbar-collapse {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
  }
  .navbar-collapse .navbar-nav .nav-item .nav-link {
    color: #000;
  }
  .navbar-collapse .navbar-nav .nav-item.active {
    color: #000;
  }
}
.nav-item {
  padding: 0 30px;
}
.nav-item .active {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .nav-item {
    padding: 0;
  }
}

.hero-title {
  font-size: 106px;
  text-transform: uppercase;
  margin: 55px 0;
  line-height: 1;
  background: linear-gradient(315deg, #4f7ac8 16%, #9c94f1 27.27%, #82a9cd 49.67%, #f989b8 70.25%, #d79a91 88.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: blur(50);
}
@media only screen and (max-width: 1400px) {
  .hero-title {
    font-size: 85px;
  }
}
@media only screen and (max-width: 1024px) {
  .hero-title {
    font-size: 72px;
  }
}
@media only screen and (max-width: 991px) {
  .hero-title {
    font-size: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-title {
    font-size: 36px;
  }
}

.title-outer {
  opacity: 1;
}

.home-hero:before {
  content: "";
  position: absolute;
  width: 30%;
  height: 60%;
  right: 0;
  bottom: 0;
  background: conic-gradient(from -45.44deg at 50% 50%, #628de0 0deg, #968fea 69.37deg, #66aef4 150deg, #e171a0 202.5deg, #f48e7e 335.63deg, #628de0 360deg);
  filter: blur(72px);
  opacity: 0.5;
  border-radius: 100%;
  animation: moveAnimation 100s infinite alternate;
}
@media only screen and (max-width: 991px) {
  .home-hero:before {
    height: 34%;
    width: 48%;
    transform-origin: center;
    animation: mobAnim 10s infinite alternate;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.hero-section {
  background: #23242d;
  padding-top: 100px;
  padding-bottom: 100px;
  color: rgba(255, 255, 255, 0.8);
  background-size: 300% 300%;
  animation: gradientAnimation 30s ease-in-out infinite;
  backdrop-filter: blur(10px);
  position: relative;
}
.hero-section .container {
  position: relative;
  z-index: 1;
}

.left-gradient-img {
  position: absolute;
  top: 0%;
  left: 0;
  animation: moveUpDown 20s infinite;
}

.right-gradient-img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 0;
}

.hero-desc {
  max-width: 430px;
  font-size: 20px;
  margin-bottom: 40px;
}

.title {
  text-align: center;
  font-size: 65px;
  background: linear-gradient(192deg, #628de0 0%, #968fea 19.27%, #66aef4 41.67%, #e171a0 56.25%, #f48e7e 93.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media only screen and (max-width: 767px) {
  .title {
    font-size: 48px;
  }
}

.word-carousel {
  display: inline-block;
  overflow: hidden;
  height: 1.1em;
  line-height: 1em;
  margin-bottom: -0.23em;
}
.word-carousel span {
  display: block;
  margin-bottom: 0.1em;
  background: linear-gradient(315deg, #90a9d7 16%, #d3cffc 27.27%, #90bfec 49.67%, #ffcfe3 70.25%, #efa398 88.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-anim-container {
  overflow: hidden;
  position: relative;
  opacity: 0.3;
  position: absolute;
  right: -5%;
  width: 422px;
  height: 584px;
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .logo-anim-container {
    display: none;
  }
}
@media only screen and (max-width: 1400px) {
  .logo-anim-container {
    scale: 0.8;
    top: -35px;
  }
}
@media only screen and (max-width: 1024px) {
  .logo-anim-container {
    scale: 0.7;
    top: -65px;
  }
}

.logo-anim {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.logo2-anim {
  width: 80px;
  top: 24.4%;
  left: 50.8%;
  z-index: 1;
  border: solid 10px #000;
  border-radius: 100%;
}

.logo3-anim {
  max-height: 400px;
  left: 25%;
  top: 54.5%;
  z-index: -1;
}

.logo4-anim {
  max-height: 390px;
  top: 55.5%;
  left: 73%;
  z-index: -1;
}

.word-carousel-inner {
  position: relative;
  animation: wordCarousel 10s cubic-bezier(0.54, 0.28, 0.24, 0.99) infinite;
  animation-fill-mode: both;
}

.ticker-container {
  padding: 50px 0;
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 100%;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}
@media only screen and (max-width: 767px) {
  .ticker-container {
    padding: 30px 0;
  }
}
.ticker-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #628de0 0%, #968fea 19.27%, #66aef4 41.67%, #e171a0 56.25%, #f48e7e 93.23%);
  filter: blur(55px);
}

.ticker-container-inner {
  white-space: nowrap;
  will-change: transform;
  animation: tickerAnim 6s linear infinite;
  display: flex;
  position: absolute;
  width: 100%;
  justify-content: space-between;
  gap: 90px;
}
@media only screen and (max-width: 767px) {
  .ticker-container-inner {
    width: 2000px;
  }
}

.ticker-text {
  font-size: 52px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .ticker-text {
    font-size: 32px;
  }
}

.ticker-content {
  display: flex;
  margin-right: 2rem;
  align-items: center;
  gap: 35px;
}
.ticker-content img {
  max-height: 40px;
}

@media only screen and (max-width: 991px) {
  .navbar-toggler-icon {
    background-image: url(../images/ham-dark.png);
  }
}
.header {
  z-index: 1;
}
.header .dark-logo {
  display: none;
}
.header .nav-link {
  color: rgba(255, 255, 255, 0.6);
}
.header .nav-link.active {
  color: #fff;
}
.header:not(.header-sticky) {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
.header:not(.header-sticky) .nav-link {
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (min-width: 992px) {
  .header:not(.header-sticky) .nav-link.active {
    color: #fff;
  }
}
@media only screen and (max-width: 991px) {
  .header:not(.header-sticky) .navbar-toggler-icon {
    background-image: url(../images/hamburger.png);
  }
}

.navbar-brand {
  width: 150px;
}

.header-sticky {
  position: fixed;
  top: 0;
  width: 98%;
  background: #23242d;
  z-index: 3;
  transition: all 0.2s ease-in;
  box-shadow: 1px 1px 6px hsla(0deg, 0%, 94%, 0.1);
  margin: 8px 1%;
  border-radius: 10px;
}
.header-sticky .dark-logo {
  display: block;
  height: 50px;
}
.header-sticky .site-logo:not(.dark-logo) {
  display: none;
}

.service-sec {
  padding-top: 100px;
  padding-bottom: 150px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  background: conic-gradient(from -45.44deg at 50% 50%, #628de0 0deg, #968fea 69.37deg, #66aef4 150deg, rgb(225, 113, 160) 202.5deg, rgba(244, 142, 126, 0.8) 335.63deg, #628de0 360deg);
}
.service-sec:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: rgba(35, 36, 45, 0.6);
  z-index: -1;
}
.service-sec .title {
  -webkit-text-fill-color: unset;
  background: unset;
}

.section-subhead {
  max-width: 740px;
  margin: 0 auto 30px;
}

.services-box {
  max-width: 950px;
  margin: 70px auto 0;
  position: relative;
  text-align: center;
}

.service-hero-img {
  border-radius: 45px;
}

.services {
  background: linear-gradient(to right, #efefef 0%, #969696 100%);
  width: 18%;
  height: 22%;
  padding: 20px;
  border-radius: 12% 0;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: left;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  position: absolute;
  transition: all 1s;
  overflow: hidden;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  .services {
    font-size: 12px;
    padding: 10px;
    height: 70px;
    width: 21%;
  }
}
.services .icon {
  width: 100%;
}
.services .icon i {
  font-size: 48px;
}
@media only screen and (max-width: 767px) {
  .services .icon i {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .services .icon {
    width: 30px;
  }
}

.service1 {
  top: 7%;
  left: 17%;
  background: #f48e7e;
  color: #fff;
  backdrop-filter: blur(100px);
  box-shadow: 2px 2px 15px rgba(244, 142, 126, 0.2);
}

.service2 {
  right: 15.2%;
  top: 7%;
  background: #3e78e7;
  color: #fff;
  box-shadow: 2px 2px 15px rgba(62, 121, 231, 0.2);
}

.service3 {
  left: 17%;
  bottom: 14.5%;
  color: #fff;
  box-shadow: 2px 2px 15px #ddd;
  background: #6cb6ff;
  box-shadow: 2px 2px 15px rgba(108, 182, 255, 0.2);
}

.service4 {
  right: 15.2%;
  bottom: 14.5%;
  color: #fff;
  background: #968fea;
  box-shadow: 2px 2px 15px rgba(155, 129, 210, 0.2);
}

.service5 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
  color: #fff;
  background: #e171a0;
  box-shadow: 2px 2px 15px rgba(225, 113, 160, 0.2);
}

.tic-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: scale(0) translate(-50%, -50%);
  transition: all 1s;
  transform-origin: 0 0;
}

.bacground-cricle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86%;
  /* height: 100%; */
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: spin 25s linear infinite;
  -webkit-animation: spin 25s linear infinite;
  opacity: 0.12;
}

.light-gradient-left {
  position: absolute;
  top: 0;
  z-index: -1;
}

.light-gradient-right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.move-left {
  transform: translateX(-50%);
}

.section-desc {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: 200;
}

.section-title {
  font-size: 52px;
  margin-bottom: 20px;
}

.home2 .section-title {
  font-size: 52px;
  margin-bottom: 20px;
  background: linear-gradient(315deg, #90a9d7 16%, #d3cffc 27.27%, #90bfec 49.67%, #ffcfe3 70.25%, #efa398 88.23%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cont-wrapper {
  padding-right: 30px;
}
@media only screen and (max-width: 767px) {
  .cont-wrapper {
    padding: 0;
    margin: 30px 0;
  }
}

.single-services {
  transition: all 0.5s;
}
@media only screen and (max-width: 767px) {
  .single-services .single-service:nth-child(odd) .service-row {
    flex-direction: column-reverse;
  }
}

.single-service {
  padding: 90px 0;
  position: relative;
  color: #23242d;
  min-height: 100vh;
  display: flex;
  align-items: center;
  z-index: 1;
}
.single-service:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: all 0.5s;
}

.service-row {
  max-width: 1140px;
  margin: 0 auto;
}

.service-course {
  color: #fff;
}
.service-stack {
  color: #fff;
}
.service-investor {
  color: #fff;
}
.service-brokerage {
  color: #fff;
}
.service-algorithm {
  color: #fff;
}
.stats {
  padding-top: 65px;
  padding-bottom: 65px;
  position: relative;
  overflow: hidden;
  background: rgb(35, 36, 45);
  color: #fff;
}
.stats .container {
  position: relative;
}
.stats .row {
  max-width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .stats .row {
    gap: 15px;
  }
}
.stats:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(192deg, #628de0 0%, #968fea 19.27%, #66aef4 41.67%, #e171a0 56.25%, #f48e7e 93.23%);
  filter: blur(60px);
  z-index: 0;
  opacity: 0.5;
}

.stats-box {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  padding: 5px 20px;
  border-left: solid 3px #969696;
}

.stats-main-title {
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.stats-title {
  font-size: 38px;
}

.slick-arrow {
  width: 58px;
  height: 58px;
  border: none !important;
  border-radius: 30px !important;
  background: #fff !important;
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 15px 30px rgba(131, 150, 255, 0.25) !important;
}
@media only screen and (max-width: 767px) {
  .slick-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.testimonials {
  padding: 80px 0;
  background: linear-gradient(180deg, #f6f4ff 0%, #dedce5 100%);
  background: #23242d;
  position: relative;
  color: #fff;
}
.testimonials .para-dark {
  color: #fafcff;
}
.testimonials .highlight {
  color: #fd8b02;
  font-weight: 600;
}
.testimonials .slick-list {
  padding-bottom: 15px;
}
.testimonials .quote {
  position: absolute;
  right: 70px;
  top: 10px;
  transform-origin: right top;
  transform: scale(1);
  opacity: 0.7;
}
.testimonials .reviews {
  margin-top: 50px;
}
.testimonials .customer-type {
  color: #3e78e7;
}
.testimonials .single-review {
  padding: 50px 30px 20px;
  text-align: left;
  background-image: url(../images/testimonials/quote.png);
  background-position: 30px 5px;
  background-repeat: no-repeat;
  background-size: 32px;
}
@media only screen and (max-width: 767px) {
  .testimonials .single-review {
    background-position: top center;
  }
}
.testimonials .single-review .content {
  color: #fff;
  font-weight: 300;
  line-height: 1.5em;
}
@media only screen and (max-width: 767px) {
  .testimonials .single-review .content {
    text-align: center;
  }
}
.testimonials .single-review .author {
  margin-top: 20px;
}
.testimonials .single-review .author .name {
  color: #445f19;
  font-weight: 500;
}
.testimonials .single-review .author .desi {
  color: #8c8c8c;
}
.testimonials .review-customer-det {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .testimonials .review-customer-det {
    justify-content: center;
  }
}
.testimonials .review-logo img {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  object-fit: cover;
}
.testimonials .slick-next {
  right: -60px;
}
@media only screen and (max-width: 767px) {
  .testimonials .slick-next {
    right: -10px;
  }
}
.testimonials .slick-prev {
  left: -60px;
}
@media only screen and (max-width: 767px) {
  .testimonials .slick-prev {
    left: -10px;
  }
}

.contact-sec {
  padding-top: 65px;
  padding-bottom: 65px;
  background-image: linear-gradient(to left, #fff 0%, #fff 25%, #efefef 100%);
}

.form-floating {
  margin-bottom: 18px;
}

form .form-control {
  border-radius: 40px;
}

.form-floating > .form-control {
  padding: 10px 20px;
  height: 50px;
}
.form-floating > .form-control:focus ~ label {
  opacity: 0.5;
}
.form-floating > .form-control:focus ~ label::after {
  background: transparent;
}
.form-floating label {
  padding: 12px 20px;
  color: #969696;
}

.message {
  height: 80px;
  padding: 15px 20px;
}
.message::placeholder {
  color: #969696;
}

.submit-btn {
  padding: 12px 30px;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 600;
  margin-top: 15px;
}

.form-box {
  padding: 50px;
  box-shadow: 1px 1px 20px #ddd;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .form-box {
    padding: 30px 20px;
  }
}

.contact-detail {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 500;
}

.contact-detail-main {
  margin-top: 40px;
}
@media only screen and (max-width: 767px) {
  .contact-detail-main {
    margin-top: 0;
    margin-bottom: 20px;
  }
}
.contact-detail-main a {
  color: #23242d;
}

.contact-desc {
  font-size: 18px;
}

footer {
  background-color: #23242d;
  padding-top: 65px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  footer {
    padding: 50px 15px 0 15px;
  }
}

.footer-logo {
  height: 60px;
}

.about-tic {
  margin: 15px 10px;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .about-tic {
    margin: 15px 0px;
  }
}

.footer-widget-title {
  margin-bottom: 20px;
}

.services-menu {
  padding: 0;
  list-style: none;
}
.services-menu li {
  padding-bottom: 15px;
}
.services-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.services-menu a:hover {
  color: #fff;
}

.social-list {
  display: flex;
  gap: 20px;
}

.social {
  background-image: linear-gradient(to right, #a3a2a2 0%, #e3e3e3 51%, #969696 100%);
  width: 40px;
  height: 40px;
  line-height: 41px;
  text-align: center;
  border-radius: 100%;
  font-size: 20px;
  color: #0d0d0f;
  transition: 0.5s;
  background-size: 200% auto;
}
.social:hover {
  background-position: right center;
}

.copyright-row {
  padding-bottom: 25px;
  padding-top: 25px;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  margin-top: 25px;
}
@media only screen and (max-width: 767px) {
  .copyright-row {
    text-align: center;
  }
}

.terms-privacy {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: end;
}
@media only screen and (max-width: 767px) {
  .terms-privacy {
    justify-content: center;
    margin-top: 10px;
  }
}

.tp-link {
  text-decoration: none;
  color: #fff;
}

.usp-section {
  padding-top: 65px;
  padding-bottom: 65px;
  position: relative;
  color: #fff;
  background: rgb(35, 36, 45);
}
.usp-section:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: linear-gradient(192deg, #628de0 0%, #968fea 19.27%, #66aef4 41.67%, #e171a0 56.25%, #f48e7e 93.23%);
  filter: blur(60px);
  z-index: 0;
  opacity: 0.5;
}
.usp-section .container {
  position: relative;
}

.anim-icon {
  height: 70px;
  margin-bottom: 15px;
}

.box-icon-title {
  font-size: 26px;
  margin-bottom: 15px;
}

.box-icon {
  max-width: 310px;
  margin: 0 auto;
}

.calculator {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}
.calculator:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background: conic-gradient(from -45.44deg at 50% 50%, #628de0 0deg, #968fea 69.37deg, #66aef4 150deg, rgb(225, 113, 160) 202.5deg, rgba(244, 142, 126, 0.8) 335.63deg, #628de0 360deg);
  z-index: -1;
  filter: blur(72px);
}

.calculator-box {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 2px 2px 20px rgba(255, 255, 255, 0.5);
}
.calculator-box h4 {
  color: #23242d;
}

.cal-title {
  color: #23242d;
}

.cal-inv {
  font-size: 28px;
  font-weight: 500;
  color: #3e78e7;
}

.form-range {
  margin-bottom: 20px;
}

.cal-return {
  font-size: 28px;
  color: #e171a0;
  font-weight: 500;
}

.cal-title {
  font-weight: 500;
}

.calc-row {
  align-items: center;
}

/**************************************/
.home2 .single-service {
  padding: 0;
}
.home2 .single-service:before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgb(208, 146, 136) 0%, rgb(244, 142, 126) 23%, rgb(238, 181, 140) 72%);
  z-index: -1;
}
@media only screen and (max-width: 991px) {
  .home2 .single-service:before {
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .service-course .single-service {
    flex-direction: column-reverse;
  }
}
.service-course .single-service:before {
  right: 0;
  background: linear-gradient(0deg, rgb(246, 163, 151) 0%, rgb(255, 203, 195) 53%, rgb(255, 177, 164) 100%);
}

.service-stack .single-service:before {
  left: 0;
  background: linear-gradient(0deg, rgb(92, 140, 236) 0%, rgb(137, 176, 247) 53%, rgb(46, 112, 238) 100%);
}

@media only screen and (max-width: 991px) {
  .service-investor .single-service {
    flex-direction: column-reverse;
  }
}
.service-investor .single-service:before {
  right: 0;
  background: radial-gradient(circle, rgb(130, 191, 247) 0%, rgb(128, 189, 250) 51%, rgb(87, 171, 255) 100%);
}

.service-brokerage .single-service:before {
  left: 0;
  background: radial-gradient(circle, rgb(165, 160, 232) 0%, rgb(131, 121, 249) 51%, rgb(158, 152, 232) 100%);
}

@media only screen and (max-width: 991px) {
  .service-algorithm .single-service {
    flex-direction: column-reverse;
  }
}
.service-algorithm .single-service:before {
  right: 0;
  background: linear-gradient(0deg, rgb(255, 95, 162) 0%, rgb(255, 159, 199) 53%, rgb(244, 69, 142) 100%);
}

.service-col {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .service-col {
    min-height: 50vh;
  }
}

.service-content-col {
  padding: 8% 5% 8% 8%;
  color: #fff;
  background: #000;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .service-content-col {
    padding: 30px;
  }
}
.service-content-col:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(315deg, #628de0 0%, #968fea 19.27%, #66aef4 41.67%, #e171a0 56.25%, #f48e7e 93.23%);
  left: 0;
  top: 0;
  z-index: -1;
  /* filter: blur(52px); */
  opacity: 0.15;
}

.video-sec {
  background-color: #23242d;
  z-index: 1;
  position: relative;
}

.video-banner {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: -8px;
}
.video-banner video {
  width: 100%;
}

.list-style-none {
  list-style: none;
}

.terms .header:not(.header-sticky) {
  position: relative;
  background: #23242d;
}

.page-header__title {
  margin-top: 50px;
}

.mt-20 {
  margin-top: 20px;
}

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