
body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

::selection {
      background: #e44b84;
      text-shadow: none;
      color: #fff;
}

.hidden-lg{
  display: none;
}

a {
  color: #d71756;
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #d71756;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #dc419e;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
      height: 80px;
    z-index: 997;
    transition: all 0.5s;
    background: #fff0;
   
}

#header.header-scrolled {
       height: 60px;
    background: #ffffff;
    box-shadow: 0px 0px 6px #e3e3e3;
}
#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  #header .logo h1 {
    font-size: 28px;
  }
  
}
#header .logo h1 a, #header .logo h1 a:hover {
  color: #00366f;
  text-decoration: none;
}
#header .logo img {
  margin-top: 13px;
  padding: 0;
  max-height: 26px;
}
#header.header-scrolled .imf1{
    display: none;
  }
  .imf2{
    display: none;

  }
  #header.header-scrolled .imf2{
    display: block;
  }


#header.header-scrolled a.nav-link.scrollto.active {
    color: #e6457b;
    border-bottom: 1px solid #e6457b;
}
#header.header-scrolled .navbar a {
    color: #ba1a67;
}

#header.header-scrolled .search-txt {
    height: 28px;
    color: #e44b84;
    border: 1px solid #e44b84;
    border-radius: 4px;
      border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;}
#header.header-scrolled  a.nav-link.scrollto.login-btn {
    border: 1px solid #e44b84;
    padding: 2px 10px 2px 10px;
}

#header.header-scrolled .search-btn {
        background: #e44b84;
    height: 28px;
    color: #ffffff;
    border: 1px solid #e44b84 !important;
    border-radius: 4px;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
  }



.search-box{
  background: #ffffff;
    height: 28px;
    border-radius: 4px;
    padding: 0px;
    text-align: center;
}

.search-box:hover .search-txt{
  width: 200px;
  padding: 0 6px;
}

.search-box:hover .search-btn{
  background: #fff;
}


.search-btn{
    background: #e44b8400;
    color: #e44b84;
    border: none;
    border-radius: 10px;
}

.search-txt{
  border:none;
  outline: none;
  background: none;
  float: left;
  padding: 0;
  color: #e44b84;
  font-size: 14px;
  line-height: 28px;
  width: 0;
  transition: width 400ms;
}

a.nav-link.scrollto.login-btn {
    border: 1px solid white;
    padding: 2px 10px 2px 10px;
    border-radius: 4px;
    margin-right: 30px;
  }
/*--------------------------------------------------------------
# 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: 6px 5px 6px 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.3s;
    margin: 10px;
    text-transform: uppercase;
}


.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: #ffffff;
    border-bottom: 1px solid white;
}
.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: 14px;
  text-transform: none;
}
.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: #d71756;
}
.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: #283d50;
  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;
    color: white;
  }
  
    .search-box {
    width: fit-content;
    margin-left: 30px;
}
  #header.header-scrolled .mobile-nav-toggle {
    display: block;
    color: #b11b6d;
}
  #header .logo img {
    margin-top: 0px;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #ffffff !important;
}
#header.header-scrolled a.nav-link.scrollto.active {
    border-bottom: 2px solid #ffffff;
}
#header.header-scrolled a.nav-link.scrollto.login-btn {
    border: 2px solid #ffffff;
}
#header.header-scrolled .search-btn {
    background: #ffffff;
    height: 28px;
    color: #e44b84;
    border: 0px solid #e44b84 !important;
}

#header.header-scrolled .search-txt {
    border: 0px solid #e44b84;}
a.nav-link.scrollto.login-btn {
    width: 25%;
    margin-left: 30px;
}

  .navbar ul {
    display: none;
  }
  #header.header-scrolled .navbar a {
    color: #ffffff;
}
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(23, 35, 46, 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: #d71756;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #ffffff;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #d71756;
}
.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: #d71756;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  background: url("../img/sliderBg.png") center bottom no-repeat;
  background-size: cover;
  padding: 140px 0 0px 0;
  background-color: #f3b7cb;
  
}
#hero .hero-img img{
  border-radius:100% 0% 100% 0% / 0% 95% 5% 100% ;
}
  .hero-img:after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: -32px;
    height: 39px;
    width: 100%;
    background-color: #f3b7cb;
    writing-mode: horizontal-tb;
    transform: rotate(355deg);
}

@media (max-width: 991px) {
  #hero {
    padding: 140px 0 60px 0;
    border-radius:0% 0% 174% 174% / 0% 0% 16% 16%;
  }
  .hero-img:after {
    display: none;}
    #hero .hero-img img{
  border-radius:0px ;
}
}
@media (max-width: 574px) {
  #hero {
    padding: 100px 0 20px 0;
  }
}
#hero .hero-img {
  width: 40%;
  float: right;
}
@media (max-width: 991px) {
  #hero .hero-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }
}
#hero .hero-info {
  width: 50%;
  float: left;
}
@media (max-width: 991px) {
  #hero .hero-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }
}
@media (max-width: 767px) {
  #hero .hero-info {
    width: 100%;
  }
}
#hero .hero-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 35px;
  font-weight: 700;
}
#hero .hero-info p {
    color: white;
    width: 90%;
}

@media (max-width: 767px) {
  #hero .hero-info h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
#hero .hero-info .btn-get-started, #hero .hero-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 0 20px 20px 0;
  color: #fff;
}
#hero .hero-info .btn-get-started {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #d71756;
}
#hero .hero-info .btn-get-started:hover {
  background: none;
  border-color: #fff;
  color: #fff;
}
#hero .hero-info .btn-services {
  border: 1px solid #fff;
}
#hero .hero-info .btn-services:hover {
  background: #d71756;
  border-color: #ffffff;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header p {
  text-align: center;
  margin: auto;
  font-size: 20px;
    padding-bottom: 30px;
    color: #5d0c54;
}
@media (max-width: 767px) {
  .section-header p {
    width: 100%;
  }
}

/* Section with background
--------------------------------*/
.section-bg {
  background: #ecf5ff;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 20px 0;
  background-color: #f5faff;
  min-height: 40px;
  margin-top: 80px;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 60px;
  }
}
.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}
@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 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: #6c757d;
  content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
  img.arrow-img {
    right: -68px !important;
    top: 58px !important;
}
}


section.para {
    padding: 45px 0px;
   background-color: #f3b7cb;
}


/* About Us Section
--------------------------------*/
@media (max-width: 991px) {
 
  img.arrow-img {
    right: -68px !important;
    top: 58px !important;
}
}
#about {
  padding: 30px 0px;
  background: linear-gradient(351deg,#ffdeea 0, #d7175654 100%);
}

.about-container h2 {
    font-weight: 600;
    margin-bottom: 5px;
}
img.point-img {
    width: 35%;
    margin-bottom: 60px;
}
#about img.img-1 {
    width: 70%;
    float: right;
}
#about img.img-2 {
    width: 68%;
    float: left;
    margin-left: -36%;
    margin-top: 4%;
}
#about img.img-02 {
    width: 55%;
    margin-bottom: 40px;
    margin-top: -23px;
}
#about img.img-03 {
   width: 55%;
    margin-bottom: 40px;
}
#about img.img-04 {
   width: 55%;
    margin-bottom: 40px;
}
#about img.img-05 {
   width: 55%;
    margin-bottom: 40px;
}
.icon-box1 {
    margin-left: -65%;
}
#about h4 {
    font-weight: 600;
    color: #d71756;
}

@media only screen and (min-width:992px) and (max-width:1024px){
#hero .hero-info p {
    width: 100%;
}
ul.mlll {
    margin-left: 30px !important;
}

}
@media only screen and (min-width:0px) and (max-width:600px){
.about-container h2 {
    font-size: 22px;
}
#about img.img-1 {
    width: 100%;
    float: right;
}
#about img.img-2 {
    width: 100%;
    margin-left: -86% !important;
    margin-top: 21% !important;
}
.icon-box1 {
    margin-left: -95% !important;
}
#about img.img-02 {
    width: 85%;
    margin-bottom: 6px;
    margin-top: -5px;
}
#about img.img-03 {
  width: 85%;
    margin-bottom: 6px;
}
#about img.img-04 {
  width: 85%;
    margin-bottom: 6px;
}
#about img.img-05 {
  width: 85%;
    margin-bottom: 40px;
}
#about h4 {
    font-size: 16px;
}
.driven-container h2 {
    font-size: 22px !important;
}

#success-container h2 {
    font-size: 22px !important;
}
#brand-container h2 {
    font-size: 22px !important;
}
img.point-img ,#starttrading img.point-img2 ,#driven img.point-img2 ,#success img.point-img2 ,#brand img.point-img2{
    width: 90% !important;
    margin-bottom: 25px !important;
}
img.img-3 {
    width: 95% !important;
    margin-top: 0px !important;}
img.img-4 {
    width: 95% !important;}
img.img-5 {
    width: 95% !important;}
#starttrading img.img-2 {
    width: 100% !important;
}


}

@media only screen and (min-width:321px) and (max-width:375px){

#about img.img-2 {
    margin-left: -69% !important;
    margin-top: 21% !important;
}


}

@media only screen and (min-width:376px) and (max-width:475px){

#about img.img-2 {
    margin-left: -64% !important;
    margin-top: 18% !important;
}


}

@media only screen and (min-width:476px) and (max-width:600px){

#about img.img-2 {
    margin-left: -58% !important;
    margin-top: 18% !important;
}


}

@media only screen and (min-width:600px) and (max-width:768px){

#about img.img-2 {
    margin-left: -40% !important;
    margin-top: 6% !important;
}
.icon-box1 {
    margin-left: -65% !important;
}
#about img.img-02 {
    width: 50%;
    margin-bottom: 30px;
    margin-top: -10px;
}
#about img.img-03 {
  width: 50%;
    margin-bottom: 30px;
}
#about img.img-04 {
  width: 50%;
    margin-bottom: 30px;
}
#about img.img-05 {
  width: 50%;
    margin-bottom: 30px;
}
#driven img.img-2 {
    width: 100% !important;
}


}
/*==== starttrading ===== */

#starttrading{
  padding: 55px 0px;
  background:linear-gradient(7deg,#ffdeea 0, #d7175654 100%);
}
#starttrading img.point-img2 {
    width: 56%;
    margin-bottom: 60px;
}
#starttrading img.img-2 {
    width: 90%;
    float: right;
}
img.img-3 {
    width: 85%;
    margin-left: -10%;
    margin-top: -15px;
}
img.img-4 {
    width: 85%;
}
img.img-5 {
    width: 85%;
    margin-left: -10%;
}


/*==== download-app ===== */
  #download-app{
   width: 100%;
    position: relative;
    background: url("../img/bg.png") center bottom no-repeat;
    background-size: cover;
    padding: 40px 0 50px 0;
  }
  #download-app h1{
    color: white;
    font-weight: 500;
    margin-bottom: 50px;
  }

  #download-app span{
    font-size: 28px;
    color: white;
    font-weight: 800;

  }
  span.font1{
    font-size: 46px !important;
  }

  #download-app p{
    color: white;
    font-weight: 500;
    font-size: 15px;
  }


/*==== driven ===== */

#driven{
  padding: 55px 0px;
  background:linear-gradient(7deg,#ffdeea 0, #d7175654 100%);
}

.driven-container h2 {
    font-weight: 600;
    margin-bottom: 5px;
}
#driven img.point-img2 {
    width: 33%;
    margin-bottom: 30px;
}

#driven img.img-2 {
    width: 85%;
}
/*==== empowering ===== */

#empowering{
  background-color: #d7175654;
  padding: 60px 0px;
}
#empowering img.img-2 {
    width: 100%;
}

.box {
    background-color: #d71756;
    height: 183px;
    border: 3px solid white;
    border-radius: 10px;
}
.box iframe{
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.box01 {
    background-color: #d71756;
    height: 380px;
    border: 3px solid white;
    border-radius: 10px;
}

.box01 iframe{
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
/*==== Success Storeies ===== */

#success{
  background-color: #fdd7e4;
  padding: 30px 0px;
  height: 500px;
}
#success h2 {
    font-weight: 500;
}
#success img.point-img2 {
    width: 56%;
    margin-bottom: 60px;
}


/*==== Top Brand ===== */

#brand{
  background-color: #fff;
  padding: 30px 0px;
  /*box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);*/
}
#brand h2 {
    font-weight: 500;
}
#brand img.point-img2 {
    width: 56%;
    margin-bottom: 30px;
}

#brand .brand-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  margin-bottom: 30px;
}
#brand .brand-logo {
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border-right: 1px solid #d6eaff;*/
  /*border-bottom: 1px solid #d6eaff;*/
  overflow: hidden;
  background: #fff;
  height: 100px;
}
#brand .brand-logo:hover img {
  transform: scale(1.2);
}
#brand img {
  transition: all 0.4s ease-in-out;
}




/*==== Register-app ===== */
  #register-app{
   width: 100%;
    position: relative;
    background: url("../img/bg.png") center bottom no-repeat;
    background-size: cover;
    padding: 50px 0 35px 0;
  }
  #register-app h4{
    color: white;
    font-weight: 600;
    margin-top: 10px;
  }

  img.img-link {
    width: 55%;
    float: right;
  }



@media (max-width: 600px) {
    a.btn-register {
        padding: 10px;
        font-size: 14px;
    }
    #download-app h1 {
        font-size: 25px;
    }
    #download-app span {
        font-size: 24px !important;
    }
    #download-app p {
        font-size: 12px;
    }
    #register-app h4 {
        margin-top: 0px;
        font-size: 18px;
    }


}











footer{background-color: #27272f; padding-top: 80px; padding-bottom: 80px;}
footer ul {
    margin-top: 0;
    margin-bottom: 1rem;
    list-style-type: none;
    padding-left: 0px;
}
footer li {
  margin-top: 10px;

  }
footer li a {
  color: #d1d1d1;
  font-size: 15px;
}

footer li a:hover {
  color: #d1d1d1;
}
ul.mlll {
    margin-left: 45px;
}


footer .hove a {
  color: #fff;
  position: relative; /* 1 */
  text-decoration: none; /* 2 */
  display: inline; /* 3 */
  font-size: 18px;
    line-height: 45px;
}

footer .hove a::before,
footer .hove a::after {
  content: '';
  position: absolute; /* 1 */
  top: 100%; /* 1 */
  height: 1px; /* 2 */
  width: 50%; /* 2 */
  transform: scaleX(0); /* 3 */
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1); /* 4 */
  background-color: #fdd7e4; /* 5 */
}

footer .hove a::before {
  left: 0;
  transform-origin: left;
}
footer .hove a::after {
  right: 0;
  transform-origin: right;
}

footer .hove a:active::before,
footer .hove a:hover::before,
footer .hove a:active::after,
footer .hove a:hover::after {
  transform: scaleX(1); /* 1 */
}


@media (max-width: 991px) {
  .hidden-sm{
  display: none;
}
.hidden-lg{
  display: block;
}
footer li a {
    font-size: 13px !important;
    font-weight: 500;
    line-height: 25px !important;
}
footer .img-fluid {
    max-width: 51% !important;
}
ul.mlll {
    margin-left: 7px !important;
}
footer li {
  margin-top: 5px;
}
footer {
    padding-top: 40px;
    padding-bottom: 25px;
}
}