
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html {
overflow-x: hidden;
}

body {
  font-family: poppins,sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #d9232d;
}

a:hover {
  color: #e24d55;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
 
}

p{
font-family: poppins,sans-serif;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d9232d;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #ed3e1f;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    background: white;
    transition: all 0.5s;
    z-index: 997;
     padding-top: 20px;
     padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
}
#header.header-scrolled {
    box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
    padding-top: 20px;
     padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
}
#header.header-inner-pages {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#header .logo a {
  color: #556270;
}
#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #202020;
    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: #d9232d !important;
}
li.active a {
    color: red;
}
.navbar .getstarted, .navbar .getstarted:focus {
    background: #e61c1f;
    padding: 5px;
    margin-left: 0;
    border-radius: 4px;
    font-weight: 400;
    color: #fff;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #ed3e1f;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  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;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #d9232d;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #556270;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(63, 73, 83, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  height: 450px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #556270;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #d9232d;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #d9232d;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 80vh;
    background-color: rgba(63, 73, 83, 0.8);
    overflow: hidden;
    position: relative;
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 15px;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 70px;
  left: 50px;
  right: 50px;
}
#hero .container {
    text-align: center;
    width: 50%;
    margin: auto;
}
#hero h2 {
    color: #fdaf17;
    font-size: 80px;
    line-height: 80px;
    font-weight: 700;
    width: 100%;
    margin: auto;
    text-shadow: 10px 10px 10px #000;
    text-transform: uppercase;
}
#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}


#hero .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-inner .carousel-item-next,
#hero .carousel-inner .carousel-item-prev,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .carousel-control-next-icon:hover, #hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  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: #d9232d;
}
#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #d9232d;
}
#hero .btn-get-started:hover {
  background: #df3740;
}

a.text-shadow {
    font-size: 30px;
    color: #fff;
    font-weight: 800;
    text-align: right;
}
/*--------------------------------------------------------------
# Experience Section
--------------------------------------------------------------*/

section.experience-sec {
    background: #fdaf17;
}
.experience-border-right {
    box-shadow: 0px 0px 10px 1px rgb(2 11 38 / 63%);
     height: auto;
         margin: 10px;
}
h4.experince {
    padding: 40px;
    font-size: 25px;
    color: #252525;
    font-weight: 800;
    text-shadow: 2px 2px 10px #b18606;
    text-align: center;
    font-family: "Open Sans", sans-serif;
        line-height: 35px;
}
h4.experince span {
    font-size: 35px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.single-column.row{
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    padding: 10px;
}

/* Create four equal columns that sits next to each other */
.column {
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
  max-width: 20%;
  padding: 0 4px;
}

.unique.row{
    display: -ms-flexbox; 
    display: flex;
    -ms-flex-wrap: wrap; 
    flex-wrap: wrap;
    padding: 10px;
}
.unique-column {
  -ms-flex: 20%; /* IE10 */
  flex: 20%;
  max-width: 20%;
  padding: 0 4px;
}

section.investment-products .unique {
    width: 90%;
    margin: auto;
}

section.services {
    padding: 80px 0 80px;
}
.section-title h1 {
    width: 40%;
    margin: auto;
    text-align: center;
    padding-bottom: 50px;
    color: #e21316;
    font-weight: 800;
    text-transform: uppercase;
     font-family: 'Oswald', sans-serif;
}

section.services .icon-box h4 a {
    font-size: 16px;
    text-align: center !important;
    color: #252525;
    padding: 10px;
    margin: auto;
    display: block;
}
section.services .icon img.img-fluid {
    width: 100px;
    margin: auto;
    text-align: center;
    display: block;

}
.icon-box {
    padding: 8px 0;
}
img.img-fluid.offering-img {
    width: 40px;
    margin-bottom: 10px;
}
/*--------------------------------------------------------------
# Unique offering Section
--------------------------------------------------------------*/
.service_box {
    background-color: #ffffff;
    border-radius: 4px;
    padding: 10px 0;
    margin: 10px 0;
    position: relative;
    text-align: center;
    
        box-shadow: 0px 0px 10px 1px rgb(2 11 38 / 63%);
}
.service_box:hover {
    box-shadow: 10px 10px 20px rgb(0 0 0 / 60%);
    transform: scale3d(1.03, 1.03, 1.03);
    transition: all 0.30s ease 0s;
    margin: 10px 0;
    background: #1db9b687;
    color: #fff;
}
.service_box h3.title {
    font-size: 16px;
    font-weight: 600;
    padding: 5px;
    height: 60px;
}
h1.unique-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    text-align: center;
    margin: 30px 0 30px 0;
    text-shadow: 10px 8px 15px #252525;
    font-family: 'Oswald', sans-serif;
}
/*--------------------------------------------------------------
# Superior Trading Platforms Section
--------------------------------------------------------------*/
.superior-icon-text {
        margin: 10px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.superior-width {
    width: 90%;
    margin: auto;
}
section.superior-trading {
    padding: 80px 0 40px;
     z-index: 1;
}
h1.superior-title {
    color: #e21316;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 800;   
    font-family: 'Oswald', sans-serif;
}

/*img.img-fluid.superior-img {
    position: absolute;
    margin-left: -70px;
}*/
p.superior {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
}
.superior-img img.img-fluid {
    margin-top: 0px;
    width: 400px;
}
h3.superior-title {
    font-size: 20px;
    font-weight: 600;
}

/*--------------------------------------------------------------
# Unique Offering Section
--------------------------------------------------------------*/
section.unique-offering {
   height: 100vh;
    background-image: url(../img/bg/bg-6.png);
    background-repeat: no-repeat;
    position: relative;
    z-index: -999;
}
/*section.unique-offering {
   height: 100vh;
    background-image: url(../img/bg/bg-6.png);
    position: relative;
    z-index: -999;
}
*/

.img-unique img {
    position: absolute;
    margin-top: 15%;
    left: 50%;
}

.icon-unique-one img {
    position: absolute;
    margin-top: -5%;
    left: 25%;
}

.icon-unique-two img {
 position: absolute;
    margin-top: -5%;
    left: 45%;
    z-index: -9;
}

.icon-unique-three img {
  position: absolute;
    margin-top: -5%;
    left: 70%;
}

.icon-unique-four img {
 position: absolute;
    margin-top: -5%;
    left: 70%;
}

.icon-unique-five img {
 position: absolute;
    margin-top: -5%;
    left: 53%;
}

.icon-unique-six img {
 position: absolute;
    margin-top: -5%;
    left: 30%;
}

.offering-bg {
    position: relative;
    padding: 100px 0 150px;

}

img.img-offer {
    z-index: -9999;
    position: absolute;
    margin-top: 36%;
    width: 40%;
    margin-left: -15%;
}
.icon-remore a img {
    text-align: center;
    display: block;
    margin: auto;
}
/*--------------------------------------------------------------
# Investment Products Section
--------------------------------------------------------------*/
section.investment-products {
    padding: 100px 0 0px;
    background-image: url(../img/bg/bg-5.png);
    background-repeat: no-repeat;
    border-bottom: 5px solid red;
    /*height: 75vh;*/
        background-position: initial;
    background-size: cover;
}

.cs-invest-product p {    
    padding: 50px 0 50px;
    text-align: center;
    display: block;
    margin: auto;
    width: 100%;
}
.cs-invest-product-main {
    margin: 100px 0;
    padding: 100px 0;
}
/*--------------------------------------------------------------
# API Section
--------------------------------------------------------------*/
section.api-brand {
    padding: 80px 0 80px;
    background-image: url(../img/bg/bg-4.png);
    background-repeat: no-repeat;
}
img.img-fluid.api-img {
    width: 100px;
}
.api-width {
    width: 80%;
    margin: auto;
}
.api-left-img img.left-img {
    position: absolute;
    left: 0;
        margin-top: -9%;
}
.api-right-img img.lright-img {
    position: absolute;
    right: 0;
        margin-top: -9%;
}
.api-img img.img-fluid.api-img {
    width: 300px;
    margin: auto;
    display: block;
}
.api-img h1 {
    text-align: center;
    padding: 30px 0 30px;
    color: #ff0000;
    font-weight: 600;
    width: 60%;
    margin: auto;
    font-size: 30px;
}

.address-width {
    padding: 50px 0 50px;
    margin: auto;
}
.address-width span.title {
    font-size: 35px;
    font-weight: 600;
}
i.bx.bxl-whatsapp {
    color: green;
    font-size: 50px;
    position: absolute;
    left: 23%;
    margin-top: 2px;
}
span.sub a {
    color: #ffeb3b;
    font-size: 25px;
    font-weight: 700;
}
.owl-theme .owl-nav [class*=owl-] {
    color: #FFF;
    font-size: 70px !important;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}
.owl-prev {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 20%;
    margin-left: -100px !important;
    display: block !important;
    border:0px solid black;
}

.owl-next {
    width: 15px;
    height: 100px;
    position: absolute;
    top: 20%;
    right: -100px !important;
    display: block !important;
    border:0px solid black;
}

.owl-slider{
width: 80%;
margin: auto;
}


.flip-box {
  background-color: transparent;
  width: 300px;
  height: 130px;
  perspective: 1000px;
}
.flip-box-front {
    background-color: #000;
    color: black;
    padding: 20px 0;
    box-shadow: 0px 0px 8px 1px rgb(243 242 242);
}
.flip-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  margin-top: 30px;
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
  box-shadow: 0px 0px 7px 1px rgb(98 4 4 / 100%);
}

.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
    background-color: #000;
    color: black;
    padding: 10px 0;
}

.flip-box-back {
  background-color: red;
  color: white;
   padding: 10px 0;
  transform: rotateY(180deg);
}
/*--------------------------------------------------------------
# us-equities Section
--------------------------------------------------------------*/
section.us-equities {
    padding: 60px 0 60px;
    background-image: url(../img/breadcrumbs/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

h1.equities-title {
    text-align: center;
    color: #fff;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
}
h2.us-equities-title {
    text-align: center;
    color: #fff;
    padding-bottom: 0px;
    font-family: 'Oswald', sans-serif;
}
.us-equities-width {
    width: 80%;
    margin: auto;
}
.us-equities-icon-text {
    padding-bottom: 20px;
}
h3.us-equities-title {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin: 15px 0;
}
.us-equities-icon-text img.img-fluid {
    text-align: center;
    display: block;
    margin: auto;
    width: 50px;
}
/*.icon-us-equities {
    padding-bottom: 50px;
}*/

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
footer.footer-section {
    padding: 100px 0 50px;
}

#footer {
    background: #fff;
    padding: 10px 0 10px 0;
    color: #4a5562;
    font-size: 14px;
}
#footer .footer-top {
    background: #d9232d;
    padding: 40px 0 10px;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #d9232d;
  color: #fff;
  text-decoration: none;
}

footer#footer h4 span a {
    color: #fff;
}
#footer .footer-top h4 {
    font-size: 16px;
    line-height: 25px;
    font-weight: 600;
    color: #fff;
    position: relative;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
    color: #fff;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    font-size: 16px;
    font-family: 'Open Sans';
}
#footer .footer-top .footer-links ul a:hover {
  color: white;
}
#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #d9232d;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #df3740;
}
#footer .copyright {
  text-align: center;
  padding-top: 10px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
#footer .credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  font-weight: 600;
}
#footer .credits a:hover {
  color: white;
}


/*animation scroll*/
.animated {
   -webkit-animation-duration: 0.6s;
   animation-duration: 0.6s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
}

p.benefits span {
    font-size: 20px;
}
a.back-top img {
  position: fixed;
    top: 80%;
    right: 20px;
    z-index: 100;
    animation: swing ease-in-out 1s infinite alternate;

}

@keyframes back-top {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}

/*phonecall whatsapp*/
.watsapp {
    position: fixed;
    top: 80%;
    left: 10px;
    z-index: 100;
}
.phone-call {
    position: fixed;
    top: 70%;
    right: 10px;
    z-index: 100;
}
.phone-watsapp img {
    width: 60px;
}

i.bx.bx-phone-call {
    color: #ffeb3b;
}

.address-icon {
    margin: 20px 0;
    padding: 15px 0;
}



/*flexiloan*/
.ps-timeline-sec {
    position: relative;
    padding: 40px 0 0;
    background: #f6f6f6;
}
.ps-timeline-sec .container {
  position: relative;
}

.ps-timeline-sec .container ol:before {
  background: #348e80;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  position: absolute;
  left: -3px;
  top: 49.5%;
}
.ps-timeline-sec .container ol:after {
    background: #348e80;
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    position: absolute;
    right: -3px;
    top: 49.5%;
}
.ps-timeline-sec .container ol.ps-timeline {
  margin: 250px 0;
  padding: 0;
  border-top: 2px solid #348e80;
  list-style: none;
}
.ps-timeline-sec .container ol.ps-timeline li {
  float: left;
  width: 20%;
  padding-top: 30px;
  position: relative;
}
.ps-timeline-sec .container ol.ps-timeline li span {
    width: 35px;
    height: 35px;
    margin-left: -25px;
    background: #fff;
    border: 4px solid #348e80;
    border-radius: 50%;
    box-shadow: 0 0 0 0px #fff;
    text-align: center;
    line-height: 50px -10;
    color: #df8625;
    font-size: 16px;
    font-style: normal;
    position: absolute;
    top: -25px;
    left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:before {
  content: "";
  color: #348e80;
  width: 2px;
  height: 50px;
  background: #348e80;
  position: absolute;
  top: -50px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-top:after {
  content: "";
  color: #348e80;
  width: 8px;
  height: 8px;
  background: #348e80;
  position: absolute;
  bottom: 75px;
  left: 44%;
  border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:before {
  content: "";
  color: #348e80;
  width: 2px;
  height: 50px;
  background: #348e80;
  position: absolute;
  bottom: -54px;
  left: 50%;
}
.ps-timeline-sec .container ol.ps-timeline li span.ps-sp-bot:after {
  content: "";
  color: #348e80;
  width: 8px;
  height: 8px;
  background: #348e80;
  position: absolute;
  top: 80px;
  left: 44%;
  border-radius: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 180px;
    margin-left: -5.5%;
    width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-top img {
  display: table;
  margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot {
    position: absolute;
    margin-top: 0;
    margin-left: -70.5%;
    width: 100%;
}
.ps-timeline-sec .container ol.ps-timeline li .img-handler-bot img {
  display: table;
  margin: 0 auto;
}
.ps-timeline-sec .container ol.ps-timeline li p {
    text-align: center;
    width: 100%;
    margin: 0 auto;
    background: #f6f6f6;
    padding: 15px;
    border-radius: 5px;
    border: 1px dotted #252525;
    box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 15%);
}
.ps-timeline-sec .container ol.ps-timeline li .ps-top {
  position: absolute;
  bottom: 0;
  margin-bottom: 100px;
}
.ps-timeline-sec .container ol.ps-timeline li .ps-bot {
  position: absolute;
  margin-top: 35px;
}

h1.flexi-loan-title {
    color: #e21316;
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

/*Sup pages*/
.page_banner{
position: relative;
    /*height: 450px;*/
    padding: 190px 0 120px;
    background-color: #0b1319;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.page_banner:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(11,19,25,.45);
}
.banner-title {
    font-size: 60px;
    line-height: 60px;
    margin: 0;
    text-align: center;
    padding-bottom: 30px;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.breadcrumbs {
    margin: 19px 0 0;
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
    color: #fff;
}
.breadcrumbs a {
    color: inherit;
    display: inline-block;
}
.breadcrumbs a i {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    line-height: 30px;
    margin-right: 11px;
}
.page_banner .container {
    position: relative;
    z-index: 2;
        padding-bottom: 20px;
}

.serviceSection01 {
    position: relative;
    padding: 120px 0;
    background: url(../img/bg/2.png) no-repeat top center;
}

.servicemcxtrader {
    position: relative;
    padding: 120px 0;
    background: #fff;
}
.boxService {
    position: relative;
    background: url(../img/bg/3.png) no-repeat center center/cover #f6f6f6;
    padding: 72px 75px;
    margin: 0 0 30px;
}

.boxService .secTitle {
    font-size: 45px;
    line-height: 60px;
    margin: 0 0 30px;
    font-family: 'Oswald', sans-serif;
}
.boxService p {
    line-height: 28px;
    margin: 0;
}
.secTitle span {
    color: red;
}
.icon_box_01 {
    position: relative;
    z-index: 2;
    margin: 0 0 30px;
    padding: 20px;
    border: 2px solid #fff1f2;
    -webkit-transition: all ease 400ms;
    height: auto;
}
.icon_box_01:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    content: '';
    background: rgba(10,38,62,.86);
    -webkit-transition: all ease 400ms;
}
.ibMeta {
    position: relative;
    z-index: 3;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    margin: 0 0 27px;
    transition: all ease 400ms;
    -moz-transition: all ease 400ms;
    -webkit-transition: all ease 400ms;
}
.ibMeta span {
    font-size: 60px;
    line-height: 82px;
    font-family: poppins,sans-serif;
    font-weight: 700;
    color: rgba(255,255,255,.1);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 1;
    -webkit-transition: all ease 400ms;
}

img.icon-local_1 {
    font-size: 40px;
    line-height: 80px;
    color: red;
    border-radius: 50%;
    border: 2px solid red;
    height: 100%;
    padding: 10px;
    width: 100%;
    display: block;
    -webkit-transition: all ease 400ms;
}

.brleft {
    position: absolute;
    left: 1px;
    top: 18px;
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-transition: all ease 300ms;
}
.brleft:after {
    width: 5px;
    height: 5px;
    content: '';
    background: red;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.brleft {
    position: absolute;
    left: 1px;
    top: 18px;
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-transition: all ease 300ms;
}
.brright {
    position: absolute;
    right: 2px;
    bottom: 15px;
    width: 10px;
    height: 10px;
    background: #fff;
    -webkit-transition: all ease 300ms;
}
.brright:after {
    width: 5px;
    height: 5px;
    content: '';
    background: red;
    border-radius: 50%;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.icon_box_01 h3 {
    font-size: 25px;
    line-height: 30px;
    margin: 0;
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.icon_box_01 p {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    line-height: 30px;
}

.icon_box_01.icon_two {
    height: 650px;
}


/*BASKET STOCKS*/

.processSection02 {
    position: relative;
    background: url(../img/bg/8.png) no-repeat center center/cover;
    padding: 120px 0 114px;
}


.video_banner {
    position: relative;
    border-radius: 5px;
    margin: 15px 0;
}
.video_banner .popup_video {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.popup_video {
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: relative;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    background: linear-gradient(
90deg,rgba(237,28,36,1) 0%,rgba(237,82,28,1) 100%);
    color: #fff;
    z-index: 2;
}
.video_banner:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgb(6 6 6 / 50%);
    border-radius: 5px;
}

.popup_video::after {
    content: "";
    border: 2px solid rgba(255,255,255,.35);
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    animation: zoomBig 3s linear infinite;
    animation-delay: 0s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}


i.popup_video.bx.bx-play {
    font-size: 50px;
}

.worCon .secTitle {
    font-size: 60px;
    line-height: 70px;
    margin: 0;
    text-align: left;
    padding-bottom: 20px;
    color: #252525;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.worCon img.img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}
.worCon li {
    list-style: none;
    padding: 0 20px;
}

.ib_box {
    display: flex;
}

.ib_box p {
    font-size: 16px;
    line-height: 30px;
    padding: 0 20px;
    color: #252525;
    font-weight: 500;
    margin: 10px 0;
}
.ib_box {
    display: inline-flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: center;
}

.video_banner img.card-img-top.img-fluid {
    border-radius: 5px;
}
a.basket-stocks-account-open h1.title {
    margin-top: 10px;
    padding: 0;
    font-weight: 700;
        font-size: 30px;
}
.basket-stocks-account-open {
    display: inline-flex;
    color: #d9232d;
    text-align: center;
    text-transform: uppercase;
}

.pms {
    position: relative;
    background: url(../img/bg/2.jpg) no-repeat center center/cover;
    padding: 120px 0 114px;
    z-index: -999;
}

section.pms h2.secTitle {
    font-size: 35px;
    line-height: 40px;
    margin: 0;
    text-align: left;
    padding-bottom: 20px;
    color: #252525;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.secTitle span {
    color: red;
}
.pms-border {
    box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 15%);
    padding: 10px;
    margin: 10px 0;
}

.pmsthumb-img{
    position: absolute;
    z-index: 999;
    right: 0;

}
.pms-width {
    width: 90%;
    margin: auto;
}
a.basket-stocks-account-open img.img-fluid {
    width: 200px;
}
.intraday-limit {
    position: relative;
    background: url(../img/bg/15.jpg) no-repeat center center/cover;
    padding: 120px 0 114px;
}

.unique-offerings {
    position: relative;
    background: url(../img/bg/5.png) no-repeat center center/cover;
    padding: 120px 0 114px;
}

.boxService.unique-offerings-text h2.secTitle {
    font-size: 18px;
    line-height: 25px;
    margin: 0 0 10px;
    font-family: 'Poppins';
    font-weight: 600;
}
.boxService.unique-offerings-text {
    position: relative;
    background: url(../img/bg/3.png) no-repeat center center/cover #f6f6f6;
    padding: 20px;
    margin: 0 0 30px;
    box-shadow: 0px 0px 7px 1px rgb(0 0 0 / 15%);
}
.blink_me {
    color: #e61c1f;
    font-weight: 900;
    text-transform: capitalize;
    animation: blinker 1s linear infinite;
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.demo-link{
   color: #e61c1f;
    font-weight: 900;

    
}
a.ac-open-btn {
    background: #ff0000;
    color: #fff;
    font-weight: 900;
    padding: 8px;
    height: 32px;
    margin: 10px 0;
    font-size: 12px;
    border-radius: 5px;
}

a.text-center.blink_me {
    border: 2px solid #e61c1f;
    padding: 5px 20px;
    border-radius: 6px;
}
.cta-section {
    position: relative;
    padding: 30px 0px 40px 0px;
}
.cta-section .pattern-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    right: 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.cta-section .title {
    position: relative;
    margin-top: 6px;
}
.cta-section .title h2 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    color: #fff;
    margin: 0px 0 20px;
}

.cta-section .btn-box a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: initial;
    border: 2px solid #fff;
    padding: 12.5px 40px;
    text-align: center;
    font-family: 'Open Sans';
    z-index: 1;
    letter-spacing: 1px;
}
.footer-btn a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    border: 2px solid #fff;
    padding: 12.5px 40px;
    text-align: center;
    z-index: 1;
}
.footer-logo img.logo {
    width: 250px;
}
.address-icon span.title {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
}

.equities-btn .btn-box a {
    font-family: 'Open Sans';
    background: transparent;
    color: #fff;
    letter-spacing: 1px;
    border: 1px solid #fff;
    padding: 15px;
    font-weight: 700;
    text-transform: initial;
}
.api-content {
    border: 2px dotted #252525;
    padding: 20px 30px 20px;
    border-radius: 5px;
    height: 120px;
}

.api-content p {
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
}

.api-content-width {
    width: 75%;
    margin: 50px auto;
}

.ps-bot.flx-register p {
    padding: 10px !important;
}

.title.mcx-trade p.mcx-trade-txt {
    color: #fff;
    text-align: center;
    font-size: 20px;
    line-height: 35px;
}


.title.mcx-trade h2 {
    text-align: left;
}

.mcx-trade-btn{
    margin: 10px 0;
text-transform: capitalize;

}

.service_box.demo-video {
    height: auto;
}

.service_box.demo-video:hover {
    background: #17111ba3;
}

a.demo-link.demo-video-text {
    color: #555;
}

span.wow.bounceInLeft.animated.animated.animated {
    text-align: center;
    color: #fff;
    padding-bottom: 0px;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 500;
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #6d1217;
    background-clip: padding-box;
    border: 3px dotted #fff;
    border-radius: 0.3rem;
    outline: 0;
}

button.call-us {
    background: #ffc107;
    border: 1px solid #ffc107;
    padding: 5px;
    border-radius: 4px;
    font-weight: 500;
    color: #fff;
    margin: 5px;
}
.flexi-register-border a {
    border: 1px dotted #e61c1f;
    text-transform: capitalize;
    padding: 15px;
}

span.whatsapp a {
    color: #00dd09;
    font-size: 25px;
    font-weight: 700;
}
.flexi-rigister-btn {
    border: 1px dotted #ff0000;
    width: fit-content;
    margin: auto;
    padding: 10px;
    margin-bottom: 30px;
}

.api-blink-registration {
    margin: 40px 0 0;
    text-align: center;
}


section.api-brand .api-brand {
    margin: 50px 0 0;
}

section.api-brand .api-brand p {
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    font-weight: 400;
}

.api-blink-registration {
    border: 1px dotted #e24d55;
    padding: 15px;
    width: 600px;
    text-transform: capitalize;
    margin: 15px auto;
}

section.investment-products .unique .service_box p {
    margin: 20px 0;
}

section.processSection02 .unique p {
    margin: 30px 0 5px;
    color: red;
}
.unique-width {
    width: 95%;
    margin: auto;
}
section.processSection02 .unique-width p {
    margin: 25px 0;
}
h1.mutual-funds-title {
    padding-bottom: 10px;
    text-transform: uppercase;
    font-weight: 800;
    font-family: 'Oswald', sans-serif;
}

.text-danger {
    color: #e21316 !important;
}

section.mutual-funds {
    padding: 50px 0 0;
    background-image: url(../img/bg/bg-7.png);
    background-repeat: no-repeat;
        background-position: center;
    background-size: cover;
}

.intraday-img{
margin: 50px 0;

}

.slider-section-01{
  padding-top: 55px;
}

body{
  overflow: hidden;
}


.slider-section-01 .carousel-item img {
    width: 100%!important;
    height: auto!important;
}












