
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@500&display=swap');

body {
font-family: 'Open Sans', sans-serif;
  color: #444444;
}

a {
  color: #0971a2;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Open Sans', sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
}

#header.header-scrolled,
#header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #47b2e4;
}

#header .logo img {
  max-height: 60px;
}

/*--------------------------------------------------------------
# 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: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  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: #47b2e4;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: #fff;
  background: #31a9e1;
}

.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;
  border-radius: 4px;
}

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.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: #47b2e4;
}

.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: #fff;
  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(40, 58, 90, 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;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #47b2e4;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #37517e;
}

.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: #47b2e4;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
  visibility: visible !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 80vh;*/
  background:#0088d317;
}
.sstep {
    position: relative;
    border-bottom: 0 solid #CCC;
    padding-top: 30px;
    padding-bottom: 30px;
}
.sstep .ssBox {
    position: relative;
    background: #F1FBFF;
    border-bottom: 0 solid #CCC;
    border-radius: 32px;
    padding: 20px;
    display: inline-block;
    width: 100%;
}
.sstep .ssBox .stepBox {
    position: relative;
    background: url(../../assets/img/sstepBg.png) no-repeat left top;
    width: 750px;
    height: 450px;
    margin: 80px auto 0;
}
.sstep .ssBox .stepBox ul {
    margin: 0;
    padding: 0;
    margin-left: 485px;
    position: relative;
    top: 0;
}
.sstep .ssBox .stepBox ul li {
    list-style: none;
    width: 100%;
    float: left;
    margin: 15px 0 32px;
    color: #212121;
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
}
.sstep .ssBtn {
    position: relative;
    text-align: center;
    display: inline-block;
    width: 100%;
    margin: 50px 0 30px;
}
.sstep .ssBtn .sbtn {
    background:rgb(0 135 210);
    width: 100%;
    color: #fff;
    margin: 0 auto;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 5px 10px rgba(59, 3, 3, .2);
    font-size: 18px;
    line-height: 50px;
}
#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 43px;
  font-weight: 700;
  line-height: 61px;
  color: #003874;
}

#hero h2 {
  color: #003874;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight:bold;
}

#hero .btn-get-started {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  background: #209dd8;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    /*height: 100vh;*/
    text-align: center;
  }
  .head-banner {
    font-size: 29px;
    font-weight: 400;
}
.newheadH3-oapage {
    color: #3f6a99;
    font-size: 16px;
    line-height: 20px;
    /* font-family: 'Open Sans Semi Bold'; */
    text-align: left;
}

  #hero .animated {
    animation: none;
  }

  #hero .hero-img {
    text-align: center;
  }

  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }

  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  /*text-transform: uppercase;*/
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #37517e;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 12px 0;
  text-align: center;
  background:#0088d333;
}

.clients img {
  max-width: 87%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}

.clients img:hover {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .clients img {
    max-width: 40%;
  }
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li+li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 60px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li+li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {

  .why-us .content,
  .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }

  .why-us .content {
    padding-top: 30px;
  }

  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all ease-in-out 0.4s;
    background: #fff;
    height: 114px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align:center;
}
.font-size-rate{
    font-size:20px;
    color:#3c4c6a;
    font-weight:bold;
}
.font-size-rate i{
    color: #0088d3;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

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

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  height: 100%;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
    padding: 30px;
    box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
    background: #0088d3;
    height: 100%;
    border-top: 4px solid #fff;
    border-radius: 5px;
    color: #fff;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  /*color: #37517e;*/
}

.pricing h4 {
  font-size: 48px;
  /*color: #37517e;*/
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 0px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  /*color: #999;*/
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #fbc600;
  content: "\f058";
  font-size: 24px;
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  left: 0;
  top: 6px;
}
.trade .box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: all ease-in-out 0.4s;
    background: #fff;
    min-height: 185px;
    border-top: 4px solid #0088d3;
  
  
}
.trade .box h3{
    font-size: 18px;
    font-weight: bold;
}
.trade ul {
  padding: 0;
  list-style: none;
  /*color: #999;*/
  text-align: left;
  line-height: 20px;
  
}

.trade ul li {
  padding: 6px 0 0px 8px;
    position: relative;
    list-style-type: none;
    font-size: 14px;
    line-height: 20px;
}

.trade ul i {
  color: #fff;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #fff;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured {
  border-top-color: #37517e;
  background:#37517e;
  color:#fff;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li+li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: #47b2e4;
  float: left;
  width: 44px;
  height: 44px;
  background: #e7f5fb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #47b2e4;
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #47b2e4;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

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

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  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: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  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 #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

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

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #47b2e4;
}

.contact .php-email-form input {
  /*height: 44px;*/
}

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

.contact .php-email-form button[type=submit] {
  background: #47b2e4;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #209dd8;
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

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

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 40px 0 30px 0;
  background: #3d4d6a;
  color:#fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #5e5e5e;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #37517e;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 0px;
}

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 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: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #47b2e4;
}

#footer .footer-top .social-links a {
  font-size: 13px;
  display: inline-block;
  /*background: #47b2e4;*/
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  text-align: center;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #209dd8;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
}







/* ---- OPEN ACCOUNT PAGE ---- */

.open-account-page {
    padding-top: 60px;
}

    .open-account-page .open-acc-banner-block {
        background: url("../images/open-account/wave-banner-pattern.svg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 50% 50%
    }

        .open-account-page .open-acc-banner-block h1 {
            width: 500px;
            margin-top: 20px
        }

@media only screen and (max-width: 767px) {
    .open-account-page .open-acc-banner-block h1 {
        width: 100%
    }
}

.form-open-account {
    width: 350px;
    min-height: 315px;
    background-color: #fff;
    border-radius: 5px;
    border-top: 4px solid #1A3967;
    padding: 30px;
    margin-top: 20px;
    transition: all .3s ease;
    margin-bottom: 40px;
    padding-bottom: 0px;
    color: #fff;
    box-shadow:1px 23px 30px rgba(49, 58, 74, .12);
}

    .form-open-account #Message {
        color: #1a3967 !important;
        font-size: 10px;
    }

@media only screen and (max-width: 1279px) {
    .open-account-page .open-acc-banner-block .form-open-account {
        width: 325px
    }
}

@media only screen and (max-width: 767px) {
    .open-account-page .open-acc-banner-block .form-open-account {
        width: 100%
    }
}



.form-open-account .form-title {
    font-family: "Open Sans Semi Bold", sans-serif;
    font-size: 20px;
    line-height: 30px;
    /*color: #003874;*/
    margin-bottom: 0;
}

.form-open-account .input-group {
    margin-bottom: 20px
}

    .form-open-account .input-group .input-group-prepend {
        position: relative
    }

        .form-open-account .input-group .input-group-prepend:after {
            content: "";
            position: absolute;
            background-color: #F1ECE6;
            height: 28px;
            width: 1px;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            z-index: 1
        }

    .form-open-account .input-group .input-group-prepend .input-group-text {
            background-color: #fff
        }

     .form-open-account .input-group .form-control {
        height: 45px;
        border-left: 0
    }

.form-open-account .btn-primary {
    width: 100%;
    margin-bottom: 0px;
    padding: 5px;
    background: #003874;
}

.form-open-account .form-check input {
    background-color: #fff;
}

.form-open-account .form-check label {
    font-family: "Open Sans Regular", sans-serif;
    font-size: 12px;
    line-height: 20px;
    color: #666
}

@media only screen and (max-width:767px) {
    .open-account-page .open-acc-banner-block h1 {
        margin-top: 0
    }
}



.open-account-page .open-acc-banner-block {
    background: none !important;
    background: linear-gradient(179.89deg, rgba(245, 130, 32, 0.13) 0.09%, rgba(196, 196, 196, 0) 118.04%) !important;
}

.open-account-page .open-acc-banner-block {
    min-height: 410px;
}

    .form-open-account {
        background-color: #0088d3;
        z-index: 99;
    }

        .form-open-account .form-title {
            font-family: 'Open Sans Bold';
        }

     


@media only screen and (max-width: 960px) {
    .form-open-account {
        width: 325px;
        margin: 50px auto 0;
    }
}

@media only screen and (max-width: 480px) {

    .open-account-page .open-acc-banner-block h1 {
        text-align: left !important;
    }

    .open-account-page .open-acc-banner-block {
        padding-bottom: 20px;
    }
}

.open-account-page .open-acc-banner-block h1 {
    width: 100%;
}

@media only screen and (max-width: 480px) {
    .form-open-account {
        margin: 20px auto 35px;
        /*background-color: #fff;*/
        height: auto;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width:1024px) and (min-width:768px) {
    .form-open-account {
        width: 100%;
        padding: 15px;
    }
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .form-open-account {
        width: 50%;
    }
}

.form-open-account {
    min-height: 340px;
}

@media (max-width:767px) {
    .open-account-page .open-acc-banner-block h1 {
        margin-top: 10px;
    }
}

@media (max-width:320px) {
    .form-open-account {
        width: 290px;
        padding: 15px;
    }
}

@media only screen and (max-width:960px) {
    .form-open-account {
        margin: 15px auto 0;
    }
}

.form-open-account.sticky {
    position: fixed;
    top: 146px;
    transition: all .3s ease
}

@media screen and (min-width:768px) and (max-width:1024px) {
    .form-open-account.sticky {
        position: static
    }
}

.form-open-account.sticky {
    z-index: 1;
}

.form-open-account .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.5);
}

.open-acc-banner-block {
    position: relative;
}

    .open-acc-banner-block:before {
        /*background: url(../images/worldMap-oao.png) 360px -40px no-repeat;*/
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        content: "";
        z-index: 1;
        background-size: 40%;
    }

    .open-acc-banner-block .btn.btn-primary {
        background: #1A3967;
        border: 1px solid #1A3967;
    }

        .open-acc-banner-block .btn.btn-primary:hover {
            color: #1A3967;
            background-color: white;
            border: 1px solid #1A3967;
        }

    .open-acc-banner-block .col-lg-4,
    .open-acc-banner-block .col-lg-8 {
        z-index: 1;
    }


@media only screen and (min-width:1280px) and (max-width:1600px) {
    .open-acc-banner-block:before {
        left: -200px;
        background-size: 55%;
    }
}

@media only screen and (width:1366px) {
    .open-acc-banner-block:before {
        left: -250px;
    }
}

@media only screen and (width:1280px) {
    .open-acc-banner-block:before {
        left: -280px;
        top: 20px;
    }
}

@media only screen and (max-width:480px) {
    .open-acc-banner-block:before {
        background: url(../images/worldMap-oao.png) -280px -60px no-repeat;
        background-size: cover;
    }
}

@media (max-width:1024px) {
    .open-acc-banner-block:before {
        display: none;
    }
}

@media (max-width:767px) {
    .open-acc-banner-block h2.mobon-head {
        font-size: 20px;
    }
}

@media (max-width:360px) {
    .open-acc-banner-block h2.mobon-head {
        font-size: 19px;
    }
}

.open-acc-banner-block .affliate-btn .btn-primary {
    background: #f58220;
    border: 1px solid #f58220;
}

    .open-acc-banner-block .affliate-btn .btn-primary:hover {
        background: #fff;
        border: 1px solid #f58220;
        color: #f58220;
    }

.open-acc-banner-block .home-mtf-banner-699-txt-v2 {
    background: none;
    color: #043B72;
}

    .open-acc-banner-block .home-mtf-banner-699-txt-v2 h3 {
        color: #043b72;
    }

    .open-acc-banner-block .home-mtf-banner-699-txt-v2 b {
        width: 100%;
        display: inline-block;
        color: #f58220;
        margin-bottom: 10px;
    }

    .open-acc-banner-block .home-mtf-banner-699-txt-v2 ul li + li:before {
        background: #ADADAD;
        top: 5px;
    }

    .open-acc-banner-block .home-mtf-banner-699-txt-v2 .mtf-6-99bold {
        font-size: 20px;
        margin-top: 0px;
    }

        .open-acc-banner-block .home-mtf-banner-699-txt-v2 .mtf-6-99bold b {
            width: auto;
            color: #043b72;
            font-size: 32px;
        }

.open-acc-banner-block .mstock-turn-block-ul {
    background: #f58220;
    width: 100%;
}

    .open-acc-banner-block .mstock-turn-block-ul ul li .mstock-turned-txt {
        font-size: 12px;
        width: 55px;
    }

    .open-acc-banner-block .mstock-turn-block-ul ul li span {
        font-size: 50px;
    }

    .open-acc-banner-block .mstock-turn-block-ul ul li:first-child {
        width: 90px;
        padding-top: 5px;
        height: 51px;
    }

    .open-acc-banner-block .mstock-turn-block-ul ul li {
        width: 85px;
        padding: 5px 2px 0px 2px;
        font-size: 13px;
        text-align: center;
        color: #fff;
    }

        .open-acc-banner-block .mstock-turn-block-ul ul li small {
            width: 100%;
            display: inline-block;
            font-size: 10px;
        }

.open-acc-banner-block .home-mtf-banner-699-txt-v2 .mstock-turn-block-ul ul li + li:before {
    height: 55px;
    top: 0px;
    background: #fff;
}

@media only screen and (max-width:767px) {
    .open-acc-banner-block .mstock-turn-block-ul {
        width: 100%;
    }

        .open-acc-banner-block .mstock-turn-block-ul ul li:first-child {
            width: 100%;
        }

        .open-acc-banner-block .mstock-turn-block-ul ul li {
            width: 115px;
        }

        .open-acc-banner-block .mstock-turn-block-ul ul li {
            padding-bottom: 5px;
            line-height: 15px;
        }

            .open-acc-banner-block .mstock-turn-block-ul ul li + li:before {
                height: 43px !important;
            }

    .open-acc-banner-block .home-mtf-banner-699-txt-v2 {
        height: auto;
    }
}

@media only screen and (min-width:768px) and (max-width:1023px) {
    .open-acc-banner-block .mstock-turn-block-ul {
        width: 100%;
    }

    .open-acc-banner-block .home-mtf-banner-699-img {
        margin-top: 40px;
    }

    .open-acc-banner-block .mstock-turn-block-ul {
        width: 100%;
    }

        .open-acc-banner-block .mstock-turn-block-ul ul li {
            width: 100px;
            font-size: 12px;
        }
}

@media only screen and (width:1024px) {
    .open-acc-banner-block .mstock-turn-block-ul {
        width: 100%;
    }

        .open-acc-banner-block .mstock-turn-block-ul ul li {
            width: 85px;
            font-size: 12px;
        }
}

@media only screen and (min-width:1280px) {
    .open-acc-banner-block .home-mtf-banner-699-txt-v2 ul li {
        /*    padding: 10px 15px;*/
    }
}

.padd_0 {
    padding: 0;
}



@media only screen and (max-width:960px) {
    .openacc-lef8bann {
        margin-top: 0;
    }
}



.home-mtf-banner-699-img {
    width: 100%;
    display: inline-block;
    margin-top: 10px;
}

.openacc-lef8bann {
    margin-top: 25px;
}

    .home-mtf-banner-699-img img {
        width: auto;
        max-width: 100%;
    }

@media only screen and (max-width:960px) {
    .home-mtf-banner-699-img {
        margin-top: 20px;
    }

    .home-mtf-banner-699-img {
        margin-top: 50px;
    }
}

@media only screen and (max-width:767px) {
    .home-mtf-banner-699-img {
        margin-top: 0px;
        text-align: center;
    }

        .home-mtf-banner-699-img img {
            width: 80%;
        }
}

@media only screen and (max-width:767px) {
    .openacc-lef8bann {
        display: none;
    }
}

@media only screen and (min-width:768px) and (max-width:1023px) {
    .home-mtf-banner-699-img {
        margin-top: 0;
    }
}

@media only screen and (width:1024px) {
    .home-mtf-banner-699-img {
        padding-top: 20px;
    }
}

.home-mtf-banner-699-txt-v2 {
    width: 100%;
    display: inline-block;
    background: #f58220;
    color: #fff;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
    height: 390px;
}

    .home-mtf-banner-699-txt-v2 h3 {
        color: #fff;
        font-family: "Open Sans Regular", sans-serif;
        font-weight: 300;
    }

    .home-mtf-banner-699-txt-v2 ul {
        margin: 0;
        padding: 0;
        text-align: center;
        margin-top: 20px;
    }

        .home-mtf-banner-699-txt-v2 ul li {
            list-style: none;
            display: inline-block;
            font-size: 20px;
            padding: 0 15px;
            position: relative;
        }

            .home-mtf-banner-699-txt-v2 ul li + li:before {
                width: 1px;
                height: 23px;
                background: #fff;
                content: "";
                position: absolute;
                top: 5px;
                left: 0;
            }

    .home-mtf-banner-699-txt-v2 .form-get-started {
        margin: auto;
    }

    .home-mtf-banner-699-txt-v2 .home-get-call-block h1 {
        color: #fff;
        margin-top: 10px !important;
        font-size: 16px;
    }



    .home-mtf-banner-699-txt-v2 ul li {
        padding: 5px 15px;
    }

@media only screen and (max-width:767px) {
    .home-mtf-banner-699-txt-v2 {
        min-height: 300px;
    }

        .home-mtf-banner-699-txt-v2 ul li {
            font-size: 14px;
            padding: 0 5px;
        }

            .home-mtf-banner-699-txt-v2 ul li + li:before {
                height: 14px;
                left: -2px;
                top: 3px;
            }

        .home-mtf-banner-699-txt-v2 ul {
            margin-top: 10px;
        }

        .home-mtf-banner-699-txt-v2 .home-get-call-block {
            width: 80%;
        }
}

@media only screen and (width:1024px) {
    .home-mtf-banner-699-txt-v2 .form-get-started {
        margin-top: 0 !important;
    }
}

.mtf-6-99bold {
    width: 100%;
    display: inline-block;
    color: #F58220;
    font-family: 'Open Sans Semi Bold';
    font-size: 26px;
}

@media only screen and (max-width:1024px) {
    .mtf-6-99bold {
        font-size: 24px;
    }
}

@media only screen and (max-width:960px) {
    .mtf-6-99bold {
        font-size: 20px;
    }
}

@media only screen and (max-width:767px) {
    .mtf-6-99bold {
        font-size: 18px;
    }
}

.homeup-bnmar {
    font-size: 16px;
    top: -15px;
}

@media only screen and (max-width:1024px) {
    .homeup-bnmar {
        top: -15px;
    }
}

@media only screen and (max-width:960px) {
    .homeup-bnmar {
        font-size: 14px;
        top: -15px;
    }
}

@media only screen and (max-width:767px) {
    .homeup-bnmar {
        top: -17px;
    }
}

.mstock-turn-block-ul {
    width: 90%;
    display: inline-block;
    margin: auto;
    background: #fff;
    color: #f58220;
    border-radius: 10px;
    margin-top: 35px;
}

    .mstock-turn-block-ul ul {
        margin: 0;
        padding: 0;
    }

        .mstock-turn-block-ul ul li {
            float: left;
            width: 140px;
            font-size: 18px;
            padding-top: 10px;
            padding-bottom: 10px;
            font-family: 'Open Sans Semi Bold';
        }

            .mstock-turn-block-ul ul li small {
                font-size: 14px;
                font-family: "Open Sans Regular", sans-serif;
            }

            .mstock-turn-block-ul ul li .mstock-turned-txt {
                width: 80px;
                float: left;
                font-size: 15px;
                line-height: 16px;
                margin-top: 8px;
                margin-bottom: 5px;
            }

            .mstock-turn-block-ul ul li span {
                font-size: 60px;
                float: left;
                font-family: "Nunito Bold", sans-serif;
                margin-top: 13px;
            }

            .mstock-turn-block-ul ul li:first-child {
                width: 150px;
                background: #043b72;
                color: #fff;
                border-top-left-radius: 10px;
                border-bottom-left-radius: 10px;
            }

            .mstock-turn-block-ul ul li + li:before {
                width: 1px;
                height: 65px;
                background: #f58220;
                content: "";
                position: absolute;
                top: 0;
                right: 0;
            }

            .mstock-turn-block-ul ul li + li:nth-child(2):before {
                display: none;
            }

@media only screen and (max-width:767px) {
    .mstock-turn-block-ul ul {
        margin: 0;
    }

        .mstock-turn-block-ul ul li:first-child {
            width: 100%;
            text-align: center;
            padding-bottom: 10px;
            padding-top: 0;
            border-top-right-radius: 10px;
            border-bottom-left-radius: 0;
            height: 55px;
            padding-top: 5px;
        }

        .mstock-turn-block-ul ul li .mstock-turned-txt {
            width: 70px;
            display: inline-block;
            vertical-align: middle;
            float: none;
            margin-top: 10px;
        }

        .mstock-turn-block-ul ul li span {
            display: inline-block;
            text-align: center;
            vertical-align: middle;
            float: none;
            font-size: 50px;
        }

        .mstock-turn-block-ul ul li {
            width: 33%;
            padding-top: 10px;
            padding-bottom: 10px;
        }

            .mstock-turn-block-ul ul li + li:before {
                height: 60px !important;
                top: 0;
            }

            .mstock-turn-block-ul ul li small {
                width: 100%;
                display: inline-block;
            }
}

@media only screen and (width:1024px) {
    .mstock-turn-block-ul ul li {
        padding: 10px;
        width: 124px;
    }

        .mstock-turn-block-ul ul li .mstock-turned-txt {
            width: 60px;
        }

        .mstock-turn-block-ul ul li:first-child {
            width: 120px;
        }

        .mstock-turn-block-ul ul li small {
            display: inline-block;
            width: 100%;
        }
}

@media only screen and (max-width:767px) {
    .mstock-turn-block-ul ul li .mstock-turned-txt {
        margin-top: 5px;
    }

    .mstock-turn-block-ul ul li span {
        margin-top: 4px;
    }
}

@media only screen and (min-width:768px) and (max-width:1023px) {
    .mstock-turn-block-ul {
        width: 73%;
    }
}

.mobon-head {
    display: none;
}

@media only screen and (max-width: 767px) {
    .mobon-head {
        display: block;
        margin-top: 10px !important;
    }
}

/* ---- PRICING SECTION ----- */

.commonsec-newoa {
    padding: 0;
    margin-top: 40px;
}

.bordnewAc-bg {
    border: 1px solid #F58220;
    border-radius: 5px;
    padding: 20px 30px;
}

@media (max-width:767px) {
    .bordnewAc-bg {
        padding: 15px;
    }
}



    

    .commonsec-newoa .reasontable-d {
        width: 80%;
        margin-bottom: 20px;
        margin-top: 20px;
    }

        .commonsec-newoa .reasontable-d table {
            width: 100%;
            text-align: center;
        }

@media (max-width:767px) {
    .commonsec-newoa .reasontable-d {
        width: 100%;
    }

    .commonsec-newoa br.dex-hide {
        display: none;
    }



    .commonsec-newoa {
        margin-top: 30px;
    }
}

.newheadH2-oapage {
    color: #043B72;
    font-family: "Nunito Bold", sans-serif;
    font-size: 32px;
    line-height: 48px;
    text-align: left;
    margin-top: 0;
}

@media (max-width:767px) {
    .newheadH2-oapage {
        font-size: 24px;
        line-height: 34px;
    }
}

@media (max-width:360px) {
    .newheadH2-oapage {
        font-size: 22px;
        line-height: 30px;
    }
}

@media only screen and (max-width:375px) {
    .oaoipage h2 {
        font-size: 20px;
    }
}

.fwbAc-newbar {
    background: rgba(245, 130, 32, 0.1);
    border: 1px solid #F58220;
    border-radius: 4px;
    color: #333333;
    font-size: 16px;
    line-height: 36px;
    padding: 0 20px;
    display: inline-block;
    margin-left: 10px;
    font-family: 'Open Sans Semi Bold';
}

@media (max-width:767px) {
    .fwbAc-newbar {
        font-size: 14px;
        line-height: 30px;
        padding: 0 10px;
    }
}


.pricingAc-newblock {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

    /*.pricingAc-newblock:after {*/
    /*    position: absolute;*/
    /*    left: 18px;*/
    /*    top: 8px;*/
    /*    width: 1px;*/
    /*    height: 70%;*/
    /*    background: #F58220;*/
    /*    content: "";*/
    /*}*/

    .pricingAc-newblock li {
        margin-top: 25px;
    }

        .pricingAc-newblock li img {
            position: relative;
            z-index: 1;
            background: #fff;
        }

        .pricingAc-newblock li img,
        .pricingAc-newblock li div {
            display: inline-block;
            vertical-align: top;
        }

        .pricingAc-newblock li div {
            width: 85%;
            margin-left: 25px;
        }

            .pricingAc-newblock li div p b {
                font-family: "Nunito Bold", sans-serif;
                font-size: 32px;
                color: #043B72;
                display: inline-block;
                vertical-align: middle;
            }

            .pricingAc-newblock li div p span {
                font-size: 14px;
                line-height: 22px;
                color: #333333;
                display: inline-block;
                width: 60%;
                vertical-align: middle;
                margin-left: 15px;
            }

        .pricingAc-newblock li:last-child {
            margin-top: 12px;
        }

@media (max-width:767px) {
    .pricingAc-newblock:after,
    .pricingAc-newblock li img {
        display: none;
    }

    .pricingAc-newblock li div {
        width: 100%;
        margin-left: 0;
    }

        .pricingAc-newblock li div p span {
            width: 70%;
        }

        .pricingAc-newblock li div p b {
            font-size: 24px;
        }
}

.newheadH3-oapage {
    color: #F58220;
    font-size: 20px;
    line-height: 32px;
    font-family: 'Open Sans Semi Bold';
}

@media (max-width:767px) {
    .newheadH3-oapage {
        font-size: 16px;
        line-height: 26px;
    }

        .newheadH3-oapage br {
            display: none;
        }
}

@media (max-width:360px) {
    .newheadH3-oapage {
        font-size: 15px;
        line-height: 24px;
    }
}

.dematac-newlistAc li img {
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
}

.dematac-newlistAc {
    margin: 25px 0 10px 0;
    padding: 0;
    list-style: none;
}

    .dematac-newlistAc li {
        margin-top: 25px;
    }

        .dematac-newlistAc li div {
            display: inline-block;
            width: calc(100% - 80px);
            vertical-align: middle;
            color: #333333;
            font-size: 14px;
            line-height: 22px;
        }

@media (max-width:767px) {
    .dematac-newlistAc li img {
        margin-right: 10px;
        width: 40px;
    }
}

@media (max-width:360px) {
    .dematac-newlistAc li img {
        vertical-align: top;
    }
}

.dematac-newlistb li:nth-child(odd) {
    margin-left: 0;
}

.dematac-newlistb li {
    display: inline-block;
    width: calc(50% - 10px);
    margin-left: 15px;
    border: 1px solid #F58220;
    border-radius: 5px;
    padding: 20px 25px;
    vertical-align: top;
    margin-top: 20px;
}



    .dematac-newlistb li img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 15px;
    }

    .dematac-newlistb li span {
        display: inline-block;
        width: calc(100% - 100px);
        vertical-align: middle;
    }

    .dematac-newlistb li h3 {
        font-size: 16px;
        line-height: 22px;
        font-family: 'Open Sans Semi Bold';
        color: #F58220;
    }

    .dematac-newlistb li p {
        font-size: 13px;
        line-height: 20px;
        min-height: 100px;
    }

@media (max-width:1024px) {
    .dematac-newlistb li {
        padding: 20px 20px;
    }

        .dematac-newlistb li span {
            width: calc(100% - 70px);
        }
}

@media (max-width:767px) {
    .dematac-newlistb li {
        width: 100%;
        margin-left: 0;
    }
        .dematac-newlistb li img {
            margin-right: 10px;
            width: 40px;
        }
}

.oasectiongry-color {
    background: #FAFAFA;
    border-radius: 5px;
    padding: 20px 30px;
}

@media (max-width:767px) {
    .oasectiongry-color {
        padding: 15px;
    }
}

.ourlegacy-newdivma {
    margin-top: 30px;
}

    .ourlegacy-newdivma img {
        display: inline-block;
        vertical-align: middle;
    }

    .ourlegacy-newdivma > div {
        display: inline-block;
        width: calc(100% - 190px);
        margin-left: 30px;
        vertical-align: middle;
    }

@media (max-width:767px) {
    .ourlegacy-newdivma > div {
        width: 100%;
        margin-left: 0;
    }



    .ourlegacy-newdivma img {
        display: none;
    }

    .ourlegacy-newdivma {
        margin-top: 18px;
    }
}

.technolognew-oalist {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

    .technolognew-oalist li {
        background: #FFFFFF;
        border: 1px solid #C4C4C4;
        border-radius: 4px;
        display: inline-block;
        margin-left: 25px;
        width: calc(100%/3 - 20px);
        padding: 10px 15px;
    }

        .technolognew-oalist li:first-child {
            margin-left: 0;
        }

        .technolognew-oalist li img {
            display: inline-block;
            width: 45px;
        }

        .technolognew-oalist li span {
            width: calc(100% - 70px);
            display: inline-block;
            vertical-align: middle;
            font-size: 15px;
            color: #333333;
            margin-left: 15px;
        }

@media (max-width:1024px) {
    .technolognew-oalist li {
        width: calc(100%/3 - 10px);
        padding: 10px 10px;
        margin-left: 10px;
    }

        .technolognew-oalist li span {
            width: calc(100% - 60px);
            margin-left: 10px;
            font-size: 14px;
        }
}

@media (max-width:767px) {
    .technolognew-oalist li {
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

        .technolognew-oalist li:first-child {
            margin-top: 10px;
        }
}

.prodmirae-new ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .prodmirae-new ul li {
        background: #FFF5EA;
        border: 1px solid #E6E6E6;
        box-sizing: border-box;
        border-radius: 8px;
        color: #f58220;
        font-size: 20px;
        line-height: 27px;
        font-family: 'Open Sans Semi Bold';
        padding: 10px 15px;
        display: inline-block;
        margin-right: 20px;
        margin-top: 15px;
    }

        .prodmirae-new ul li img {
            display: inline-block;
            margin-right: 10px;
        }

        .prodmirae-new ul li:last-child {
            margin-right: 0;
        }

@media only screen and (max-width: 767px) {

    .prodmirae-new ul li {
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .prodmirae-new ul li {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width:1024px) {
    .prodmirae-new ul li {
        font-size: 17px;
    }
}

.hrlineAc-div {
    border-color: #ECECEC;
}

.reasontable-d {
    background: #FFF6EA;
    border: 1px solid #FFDBB0;
    border-radius: 4px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

@media only screen and (max-width:960px) {
    .reasontable-d table {
        width: 100%;
    }
}

.reasontable-b table th {
    font-size: 14px;
    line-height: 20px;
    color: #F08200;
    font-family: 'Open Sans Semi Bold';
    width: 50%;
    padding: 7px 7px;
    border-bottom: 1px solid #FFDBB0;
}

    .reasontable-b table th:last-child {
        text-align: center;
        border-left: 1px solid #FFDBB0;
    }

@media only screen and (max-width:1024px) {
    .reasontable-b table th {
        padding: 7px 10px;
        font-size: 12px;
        line-height: 18px;
    }
}

.reasontable-b table td {
    font-size: 10px;
    line-height: 26px;
    color: #000000;
    width: 50%;
    padding: 7px 7px;
}

    .reasontable-b table td b {
        color: #F08200;
        font-size: 14px;
        font-family: 'Open Sans Bold';
    }


    .reasontable-b table td:last-child {
        text-align: center;
        border-left: 1px solid #FFDBB0;
    }

@media only screen and (max-width:1024px) {
    .reasontable-b table td {
        font-size: 11px;
        line-height: 18px;
        padding: 7px 10px;
    }

        .reasontable-b table td b {
            font-size: 12px;
        }
}

.reasontable-b p {
    font-size: 14px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 0;
    margin-top: 10px;
}



@media only screen and (max-width:1024px) {
    .reasontable-b p {
        font-size: 13px;
        line-height: 20px;
    }
}

.commonsec-newoa p {
    font-size: 14px;
    line-height: 22px;
    color: #333333;
    margin-bottom: 0;
}

.before-hide {
    margin: 0;
    padding: 0 !important;
}

    .before-hide li:before {
        display: none
    }

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

    .before-hide li u {
        text-decoration: none;
    }

.dex-hide {
    display: none
}

@media only screen and (max-width:480px) {
    .dex-hide {
        display: block
    }
}

/* ----- sem-landing/demat-account ------ */

.home-mtf-banner-699-txt {
    width: 100%;
    display: inline-block;
    text-align: center;
}

    .home-mtf-banner-699-txt h3 {
        font-family: "Open Sans Regular", sans-serif;
        font-weight: 300;
        font-size: 38px;
        margin-bottom: 5px;
    }

        .home-mtf-banner-699-txt h3 b {
            font-family: 'Open Sans Bold';
            color: #f58220;
        }

    .home-mtf-banner-699-txt ul {
        margin-top: 20px;
        margin-bottom: 20px;
        display: inline-block;
    }

        .home-mtf-banner-699-txt ul li {
            float: left;
            font-size: 22px;
            color: #043B72;
            position: relative;
            list-style: none;
            padding: 0 15px;
            font-family: 'Open Sans Semi Bold';
        }

            .home-mtf-banner-699-txt ul li + li:before {
                width: 1px;
                height: 22px;
                position: absolute;
                top: 1px;
                left: 0;
                content: '';
                background: #ADADAD;
            }

    .home-mtf-banner-699-txt .form-get-started {
        margin: auto;
    }

    .home-mtf-banner-699-txt .seo-h1-p-txt {
        color: #043b72;
        font-size: 18px;
        font-family: 'Open Sans Semi Bold';
    }

    .home-mtf-banner-699-txt .home-get-call-block .btn.btn-primary {
        background: #f58220;
        border: solid 1px #f58220;
    }

@media only screen and (max-width:1024px) {
    .home-mtf-banner-699-txt ul {
        margin-top: 15px;
        margin-bottom: 15px;
    }

        .home-mtf-banner-699-txt ul li {
            font-size: 20px;
        }

    .home-mtf-banner-699-txt .seo-h1-p-txt {
        line-height: normal;
        margin-top: 25px !important;
    }
}

@media only screen and (max-width:960px) {
    .home-mtf-banner-699-txt h3 {
        font-size: 32px;
    }

    .home-mtf-banner-699-txt ul {
        margin-top: 5px;
        margin-bottom: 10px;
    }

        .home-mtf-banner-699-txt ul li {
            font-size: 15px;
            padding: 0 10px;
        }
}

@media only screen and (max-width:767px) {
    

    .home-mtf-banner-699-txt ul li:first-child {
        padding-left: 0;
    }

    .home-mtf-banner-699-txt ul li:last-child {
        padding-right: 0;
    }

    .home-mtf-banner-699-txt ul li + li:before {
        top: 4px;
        height: 12px;
    }

   

    

    .home-mtf-banner-699-txt .seo-h1-p-txt {
        margin-bottom: 10px !important;
        font-size: 14px;
    }

    .home-mtf-banner-699-txt h3 b {
        display: block;
    }

   
}


@media only screen and (max-width:360px) {
    .home-mtf-banner-699-txt h3 {
        font-size: 30px;
    }
}

.home-mtf-banner-699-txt-bg-v2:after {
    width: 53%;
    height: 430px;
    background: #f58220;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    z-index: -1;
}



.home-mtf-banner-699-txt-bg-v2 .mtf-6-99bold {
    color: #fff;
    margin-top: 5px;
}

    .home-mtf-banner-699-txt-bg-v2 .mtf-6-99bold b {
        color: #043b72;
        font-size: 36px;
        font-family: 'Open Sans Bold';
    }

        .home-mtf-banner-699-txt-bg-v2 .mtf-6-99bold b .homeup-bnmar {
            color: #fff;
        }

@media only screen and (max-width:767px) {
    .home-mtf-banner-699-txt-bg-v2:after {
        display: none;
    }

    .home-mtf-banner-699-txt-bg-v2 .col-12 {
        padding: 0;
    }



    .home-mtf-banner-699-txt-bg-v2 .mtf-6-99bold {
        margin-top: 0;
    }
}

@media only screen and (min-width:768px) and (max-width:1023px) {
    .home-mtf-banner-699-txt-bg-v2:after {
        display: none;
    }
}

@media only screen and (width:1024px) {
    .home-mtf-banner-699-txt-bg-v2:after {
        width: 57%;
        height: 410px;
    }



    .home-mtf-banner-699-txt-bg-v2 .mtf-6-99bold {
        margin-top: 0;
    }
}

.openacc-newbann h3 {
    line-height: 44px;
    margin-top: 60px;
}

@media only screen and (max-width:960px) {
    .openacc-newbann h3 {
        margin-top: 0;
    }
}

@media only screen and (max-width:767px) {
    .home-mtf-banner-699-txt h3 {
        line-height: 38px;
        font-size: 32px;
    }
}

    @media only screen and (max-width:767px) {

        .openacc-newbann h3 br {
            display: none;
        }
    }

    .sem-landing-pg h3 {
        font-size: 23px;
    }

        .sem-landing-pg h3 b {
            font-size: 40px;
        }

    .openacc-newbann ul {
        margin-top: 8px;
        margin-bottom: 0;
    }

        .openacc-newbann ul li {
            font-size: 14px;
            padding: 0 6px;
        }

            .openacc-newbann ul li + li:before {
                height: 14px;
                top: 4px;
            }

    @media only screen and (max-width:1024px) {
        .openacc-newbann ul {
            margin-top: 5px;
            margin-bottom: 0;
        }

            .openacc-newbann ul li {
                padding: 0 5px;
                font-size: 12px;
            }
    }

    @media only screen and (max-width:960px) {
        .openacc-newbann ul li {
            font-size: 14px;
        }

        .openacc-newbann ul {
            margin-bottom: 0;
        }





            .openacc-newbann ul li {
                padding: 0 5px;
            }
    }

@media only screen and (max-width:767px) {
    .home-mtf-banner-699-txt ul li {
        padding: 0 10px;
        font-size: 14px;
    }
}

    @media only screen and (max-width:767px) {
        .home-mtf-banner-699-txt ul {
            margin-bottom: 0;
            margin-top: 5px;
        }
    }

@media only screen and (max-width:384px) {
    .home-mtf-banner-699-txt ul li {
        padding: 0 8px;
        font-size: 13px;
    }
}


    .openacc-newbann .mtf-6-99bold {
        font-size: 16px;
    }

    @media only screen and (max-width:1024px) {
        .openacc-newbann .mtf-6-99bold {
            font-size: 14px;
        }
    }

    @media only screen and (max-width:767px) {
        .openacc-newbann .mtf-6-99bold {
            font-size: 18px;
        }
    }

    .no-order-block-mtf-699 {
        width: 80%;
        margin: auto;
        border: solid 1px #F58220;
        padding: 20px;
        border-radius: 60px;
        margin-top: 30px;
        font-size: 26px;
        color: #043B72;
        background: #FFF5ED;
    }

        .no-order-block-mtf-699 span {
            color: #f58220;
            font-family: 'Open Sans Bold';
            font-size: 40px;
        }

    @media only screen and (max-width:1024px) {
        .no-order-block-mtf-699 {
            font-size: 16px;
            margin-top: 25px;
        }
    }

    @media only screen and (max-width:960px) {
        .no-order-block-mtf-699 {
            font-size: 14px;
            margin-top: 20px;
            width: 96%;
            /*border-radius: 6px;*/
            padding: 15px 7px;
        }
    }

    @media only screen and (max-width:767px) {
        .no-order-block-mtf-699 {
            font-size: 15px;
            padding: 10px 5px 7px 5px;
            margin-top: 15px;
            width: 100%;
            line-height: 30px;
        }

            .no-order-block-mtf-699 span {
                font-size: 30px;
            }
    }

    @media only screen and (max-width:384px) {
        .no-order-block-mtf-699 {
            font-size: 13px;
            line-height: 20px;
        }
    }

    .openacc-newbann .no-order-block-mtf-699 {
        width: 90%;
        font-size: 14px;
        padding: 10px 10px;
        margin-top: 25px;
        background: #FFF5ED;
    }

        .openacc-newbann .no-order-block-mtf-699 span {
            font-size: 30px;
        }

    @media only screen and (max-width:1024px) {
        .openacc-newbann .no-order-block-mtf-699 {
            font-size: 13px;
        }
    }

    .sem-landing-pg .no-order-block-mtf-699 {
        margin-top: 45px;
    }

    @media only screen and (min-width:768px) and (max-width:1023px) {
        .sem-landing-page-img {
            margin-top: 0px !important;
        }
    }

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






        .sem-landing-pg {
            margin-top: 30px;
        }
    }

    @media only screen and (max-width:767px) {
        .openacc-newbann {
            margin-bottom: 20px;
        }
    }

/* ----- NEW BANNER: OPEN DEMAT ----- */

.bannernewAc-top {
    margin-top: 40px;
}

    .bannernewAc-top > span {
        display: inline-block;
        font-family: "Nunito Bold", sans-serif;
        color: #043B72;
        font-size: 230px;
        vertical-align: text-bottom;
    }

    .bannernewAc-top span small {
        font-size: 60px;
        position: relative;
        top: -100px;
    }

    .bannernewAc-top > h2 {
        display: inline-block;
        font-family: "Nunito Bold", sans-serif;
        font-size: 42px;
        line-height: 50px;
        color: #043B72;
        text-align: left;
        width: calc(100% - 260px);
        margin-left: 20px;
        vertical-align: inherit;
        margin-bottom: 0;
    }

    .bannernewAc-top h2 small {
        font-size: 42px;
        display: none;
    }

    .bannernewAc-top h2 span {
        font-size: 30px;
        line-height: 50px;
        color: #F58220;
        display: block;
    }

@media (max-width:1024px) {
    .bannernewAc-top > h2 {
        width: calc(100% - 220px);
    }
}

@media (max-width:767px) {
    .bannernewAc-top {
        display: none;
    }
}

.bannernewAc-bottom {
    margin: 10px 0 40px 0;
}

    .bannernewAc-bottom ul {
        list-style: none;
    }

        .bannernewAc-bottom ul li {
            display: inline-block;
            background: #FFFFFF;
            border: 1px solid #EBEBEB;
            box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.05);
            border-radius: 4px;
            padding: 10px;
            width: 28%;
            margin-left: 4%;
            margin-top: 35px;
        }

            .bannernewAc-bottom ul li:first-child,
            .bannernewAc-bottom ul li:nth-child(4) {
                margin-left: 0;
            }

            .bannernewAc-bottom ul li:nth-child(4),
            .bannernewAc-bottom ul li:nth-child(5) {
                width: 44%;
            }

            .bannernewAc-bottom ul li img {
                display: inline-block;
                vertical-align: middle;
                margin-right: 10px;
            }

            .bannernewAc-bottom ul li div {
                display: inline-block;
                vertical-align: middle;
            }

                .bannernewAc-bottom ul li div h4 {
                    font-size: 16px;
                    line-height: 20px;
                    color: #043B72;
                    font-family: 'Open Sans Bold';
                    margin-bottom: 5px;
                    text-transform: capitalize;
                }

                .bannernewAc-bottom ul li div p {
                    font-size: 14px;
                    line-height: 20px;
                    color: #000000;
                    margin-bottom: 0;
                }

@media (max-width:1024px) {
    .bannernewAc-bottom ul li {
        width: 30.5%;
        margin-left: 3%;
    }

        .bannernewAc-bottom ul li:nth-child(4),
        .bannernewAc-bottom ul li:nth-child(5) {
            width: 48%;
        }

    .bannernewAc-bottom ul li {
        width: 32%;
        margin-left: 1%;
    }
}

@media (max-width:767px) {


    .bannernewAc-bottom ul li,
    .bannernewAc-bottom ul li:nth-child(5),
    .bannernewAc-bottom ul li:nth-child(4) {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

        .bannernewAc-bottom ul li:first-child {
            margin-top: 0;
        }

    .bannernewAc-bottom {
        margin: 0 0 5px 0;
    }
}

@media only screen and (max-width:767px) {
    .mt-n1 {
        margin-top: 20px;
    }
    .form-open-account .form-title {
        text-align: center !important;
        font-size: 18px;
        line-height: 28px;
    }
}

.head-banner{
    font-size:44px;
    font-weight:400;
}
.plan-text{
        border: 1px solid #337ea25e;
    border-radius: 5px;
    padding: 10px;
}
}

.pricingAc-newblock {
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}
.pricingAc-newblock li {
    margin-top: 12px;
}

.pricingAc-newblock li div {
    width: 85%;
    margin-left: 9px;
}
.newheadH3-oapage {
    color: #3f6a99;
    font-size: 18px;
    line-height: 26px;
    /*font-family: 'Open Sans Semi Bold';*/
}
.lazy{border-radius: 50%;
    border: 2px solid #003874;
    padding: 1px;
    margin-top:2px;
}

.client {
    width: 100%;
    height: 100%;
    background: #7F00FF;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #668799, #1394db);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #668799, #1394db); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.carousel-icon i {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
}

.carousel-item i {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.3);
}

.t-card {
  padding: 1.8125rem 1.125rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 1.25rem;
  color: #fff;
  height: auto;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 1.5625rem solid transparent;
  border-right: 1.5625rem solid transparent;
  border-top: 1.25rem solid rgba(0, 0, 0, 0.5);
}
#free-offer-button{
background-color:#3f9dc9;
border-color: #3f9dc9;
border-radius:0px;
color:#ffffff;
font-size:18px;
font-weight:bold;
padding:9px 23px;
display:none;
}
@media only screen and (max-width: 575px) {
  #free-offer-button {
    position:fixed;
    bottom:0;
    display:block;
    font-size:14px;
    width:100%;
    font-weight:normal;
    border:1px solid #3f9dc9;
	text-align: center !important;
  }
}