html {
  scroll-behavior: smooth;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Raleway" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway" !important;
  color: #050e1c;
}


.pt-0{
  padding-top: 0 !important;
}
.theme-gray {
  color: #014a60;
}
.light-gray {
  color: #029ab5;
}

.dark-bg {
  background-color: #014a60;
  color: #fff;
}
.light-bg2 {
  background-color: #029ab5;
}
.light-bg {
  background-color: #f1f7f9;
}
.white-bg {
  background-color: #fff !important;
}

p {
  font-family: "Raleway" !important;
  color: #050e1c;
  font-size: 16px;
}

a {
  font-family: "Raleway" !important;
  color: #0e62df;
  font-size: 16px;
}

.white-color {
  color: #fff !important;
}

.pb-btn-box {
  text-align: center;
  padding: 40px 0 20px 0;
}

.btn {
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  height: 50px;
  line-height: 36px;
  text-align: center;
}

.know-more {
  position: relative;
  padding-right: 40px;
}

.know-more:after {
  content: '\f11e';
  font-family: 'uicons-solid-straight';
  position: absolute;
  margin-left: 5px;
  font-size: 30px;
}

.btn-primary {
  background-color: #014a60;
  border: 2px solid #014a60;
  font-size: 16px;
}

.btn-primary:hover {
  background-color: #02465a;
  border: 2px solid #02465a;
  color: #fff;
}

.btn-secondary {
  background-color: #0aa6c1;
  border: 2px solid #0aa6c1;
  font-size: 16px;
}

.btn-secondary:hover {
  background-color: #0b9cb5;
  border: 2px solid #0b9cb5;
  color: #fff;
}

.btn-white-line {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.main-title {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
}

.main-title-white {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-section {
  padding: 50px 0;
}

.main-heading {
  position: relative;
}

.main-heading .title-box {
  background-color: #f1f7f9;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 15px;
  color: #014a60;
  letter-spacing: 1px;
}

.main-heading .main-title {
  font-size: 38px;
  margin-bottom: 35px;
  font-weight: 700;
}

ul.navbar-nav .nav-item .nav-link {
  color: #fff !important;
  padding: 12px 20px 18px 20px !important;
  font-weight: 500;
}

ul.navbar-nav .nav-item .nav-link:hover {
  color: #014a60 !important;
}

ul.navbar-nav .nav-item.active .nav-link {
  color: #014a60 !important;
}

ul.navbar-nav .nav-item:first-child a {
  padding-left: 0;
}

.dropdown-menu {
  padding: 0;
}

.nav-item.dropdown .dropdown-menu {
    min-width: 220px;
    text-align: left;
    border-radius: 0;
    background-color: #014a60;
    transform: translateY(-15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    top: 0;
}
.nav-item.dropdown:hover .dropdown-menu{
    display: block;
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
    top: 50px;
}
.nav-item.dropdown .dropdown-menu a{
    color: #fff;
    padding: 15px;
}

ul.navbar-nav .dropdown-menu .dropdown-divider {
  margin: 0;
}

ul.navbar-nav .dropdown-menu .dropdown-item {
  padding: 10px 15px;
}

ul.navbar-nav .dropdown-menu .dropdown-item.active, ul.navbar-nav .dropdown-menu .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0e62df;
}

ul.navbar-nav .dropdown-menu .dropdown-item:hover, ul.navbar-nav .dropdown-menu .dropdown-item:focus {
  color: #fff;
  text-decoration: none;
  background-color: #029ab5;
}

.radio-group {
  text-align: center;
  margin: 30px 0 20px 0 !important;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* On mouse-over, add a grey background color */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */
}

.radio-group .radio-btn {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: 15px;
}

.radio-group .radio-btn input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.radio-group .radio-btn .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 18px;
  width: 18px;
  border: 2px solid #001522;
  border-radius: 50%;
}

.radio-group .radio-btn:hover input ~ .checkmark {
  border: 2px solid #0e62df;
}

.radio-group .radio-btn input:checked ~ .checkmark {
  background-color: #fff;
  border: 2px solid #0e62df;
}

.radio-group .radio-btn .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.radio-group .radio-btn input:checked ~ .checkmark:after {
  display: block;
}

.radio-group .radio-btn .checkmark:after {
  top: 3px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0e62df;
}

.login-model .model-img img {
  width: 100%;
}

.login-model .modal-dialog {
  max-width: 900px;
  margin: 30px auto;
}

.login-model .modal-title {
  text-transform: uppercase;
  color: #0e62df;
  font-size: 24px;
}

.login-model a.forgot-password {
  display: block;
  text-align: right;
  margin: 15px 0 30px 0;
  color: #001522;
  text-decoration: none;
}

.login-model a.forgot-password:hover {
  color: #0e62df;
}

.login-model .modal-body {
  padding: 30px 20px;
}

.login-model .modal-header {
  padding: 25px 20px;
}

.login-model .modal-header button.close {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #0e62df;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: #0e62df;
  opacity: 1;
  margin: 0 !important;
  outline: none;
}

.video-model .model-video video {
  width: 100%;
  padding: 7px 7px 0 7px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 20px 20px 20px 20px;
}

.video-model .modal-dialog {
  max-width: 850px;
  margin: 50px auto;
}

.video-model .modal-title {
  text-transform: uppercase;
  color: #0e62df;
  font-size: 24px;
}

.video-model .modal-body {
  padding: 0;
}

.video-model .modal-content {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.video-model .modal-header {
  padding: 15px;
  position: absolute;
  top: -5px;
  right: -5px;
  width: 100%;
  height: 70px;
  z-index: 9999;
  border: none;
  overflow: hidden;
}

.video-model .modal-header button.close {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 2px solid #0e62df;
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: #0e62df;
  opacity: 1;
  margin: 0 0 0 auto !important;
  outline: none;
}

.video-btn {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 40%;
  top: 160px;
  border-radius: 100%;
  z-index: 999;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.video-btn:after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 90px;
  height: 90px;
  background-color: #66b60a;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-btn:hover {
  background-color: #0e62df;
  color: #fff;
}

.video-btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.video-btn i {
  font-size: 52px;
  line-height: 86px;
  margin-left: 15px;
}

@-webkit-keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.75, 0.75, 1);
            transform: scale3d(0.75, 0.75, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1);
            transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    -webkit-transform: scale3d(0.75, 0.75, 1);
            transform: scale3d(0.75, 0.75, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1);
            transform: scale3d(1.5, 1.5, 1);
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.bottom-scroller.active .scroller {
  background-color: #014a60;
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 5px;
  position: fixed;
  right: 20px;
  bottom: 30px;
  text-decoration: none;
}

.bottom-scroller.active .scroller:hover {
  background-color: #014a60;
}

i.fi-ss-paper-plane {
  margin-left: 3px;
  /* display: inline-block; */
  /* line-height: 30px; */
  vertical-align: middle;
  font-size: 14px;
}

.card {
  border-radius: 10px;
  padding: 40px 20px;
  -webkit-box-shadow: 0 6px 20px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 6px 20px 1px rgba(0, 0, 0, 0.1);
}

.form-custom {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-right: 20px;
}

.form-custom .form-group {
  position: relative;
}

.form-custom .form-group input {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  color: #014a60;
  height: 45px;
  padding: 5px 40px 5px 5px;
  border-radius: 0;
}

.form-custom .form-group input:focus {
  border: none;
  border-bottom: 1px solid #014a60;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-custom .form-group select {
  display: block;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #999;
  outline: none;
  color:#014a60;
  height: 45px !important;
  padding: 5px 40px 5px 5px;
  border-radius: 0;
}

.form-custom .form-group select:focus {
  border: none;
  border-bottom: 1px solid #014a60;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-custom .form-group textarea {
  display: block;
  width: 100%;
  background-color: transparent !important;
  border: none;
  border-bottom: 1px solid #333;
  outline: none;
  color: #014a60;
  height: 80px;
  padding: 5px 40px 5px 5px;
  border-radius: 0;
}

.form-custom .form-group textarea:focus {
  border: none;
  border-bottom: 1px solid #014a60;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-custom .form-group .search {
  position: absolute;
  top: 3px;
  right: 5px;
  background-color: transparent;
  border: none;
  color: #fff;
}

.form-custom .form-group .search i:before {
  font-size: 24px;
}

.form-custom .form-group .btn.btn-primary {
  margin: 40px auto 0 auto;
  display: block;
}

.form-custom .dropdown {
  position: relative;
}

.form-custom .dropdown:after {
  content: "\f117";
  font-family: flaticon;
  position: absolute;
  color: #656565;
  top: 10px;
  right: 10px;
  font-size: 14px;
}

.home-slider {
  background-image: url(../images/banner-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.home-slider .banner-img {
  margin-top: 100px;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
}

.home-slider .banner-img img {
  width: 100%;
}

.home-slider .banner-img .logos {
  position: absolute;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  bottom: -150px;
}

.home-slider .banner-img .logos img {
  width: 80px !important;
  -webkit-animation: bubble 7s linear infinite;
          animation: bubble 7s linear infinite;
}

.home-slider .banner-img .logos img:nth-child(1) {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
  width: 70px !important;
}

.home-slider .banner-img .logos img:nth-child(2) {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  width: 90px !important;
}

.home-slider .banner-img .logos img:nth-child(3) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  width: 80px !important;
}

.home-slider .banner-img .logos img:nth-child(4) {
  -webkit-animation-delay: 7s;
          animation-delay: 7s;
  width: 90px !important;
}

.home-slider .banner-img .logos img:nth-child(5) {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
  width: 80px !important;
}

.home-slider .banner-img .logos img:nth-child(6) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
  width: 65px !important;
}

.home-slider .banner-img .logos img:nth-child(7) {
  -webkit-animation-delay: 5.56s;
          animation-delay: 5.56s;
  width: 70px !important;
}

.home-slider .banner-img .logos img:nth-child(8) {
  -webkit-animation-delay: 6.9s;
          animation-delay: 6.9s;
  width: 55px !important;
}

.home-slider .banner-img .logos img:nth-child(9) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  width: 85px !important;
}

.home-slider .banner-img .logos img:nth-child(10) {
  -webkit-animation-delay: 7.3s;
          animation-delay: 7.3s;
  width: 60px !important;
}

.home-slider .banner-img .logos img:nth-child(11) {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
  width: 70px !important;
  margin-right: 40px;
}

@-webkit-keyframes bubble {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-650px);
            transform: translateY(-650px);
    opacity: 0;
  }
}

@keyframes bubble {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 0;
  }
  60% {
    opacity: 1;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    -webkit-transform: translateY(-650px);
            transform: translateY(-650px);
    opacity: 0;
  }
}

.home-slider .banner-text {
  padding: 200px 0;
}

.home-slider .banner-text .banner-title1 {
  color: #fff;
  font-size: 32px;
  text-transform: uppercase;
}

.home-slider .banner-text .banner-title2 {
  color: #fff;
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 700;
}

.home-slider .banner-text .btn.btn-secondary {
  margin-top: 30px;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
}
.sticky-logo{
  display: none;
}
.main-header.stickyhead .header-bottom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9999;
    padding: 10px 0;
    box-shadow: 0 2px 15px 2px rgb(0 0 0 / 12%);
}
.main-header.stickyhead .header-bottom .navbar-nav {
    justify-content: flex-end;
}

.main-header.stickyhead .header-bottom .navbar.navbar-expand-lg {
    width: 80%;
    margin-left: auto;
}
.main-header.stickyhead .header-bottom .navbar-nav .nav-item .nav-link {
    padding: 12px 14px !important;
    font-size: 15px;
     color: #000 !important;
}
.main-header.stickyhead .logo .sticky-logo{
   display: block;
    position: fixed;
    z-index: 99999;
    width: 135px;
    top: 5px;
}
.slider_inner .main-header {
    background-color: rgba(11,156,181,0.7);
}
.main-header .header-top {
  padding: 12px 0 18px 0;
}
.slider_inner .header-top .logo img {
    width: 180px;
}
.header-top .logo img {
    width: 220px;
}
.main-header .header-top .header-top-right {
  margin-left: auto;
  text-align: right;
  padding: 25px 0 0 0;
}

.main-header .header-top .header-top-right .form-custom {
  width: 300px;
}

.main-header .header-top .header-top-right .form-custom input {
  border-bottom: 1px solid #ddd;
  color: #fff;
}

.main-header .header-top .header-top-right .form-custom ::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ddd;
  opacity: 1;
  /* Firefox */
}

.main-header .header-top .header-top-right .form-custom :-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ddd;
  opacity: 1;
  /* Firefox */
}

.main-header .header-top .header-top-right .form-custom ::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ddd;
  opacity: 1;
  /* Firefox */
}

.main-header .header-top .header-top-right .form-custom ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ddd;
  opacity: 1;
  /* Firefox */
}

.main-header .header-top .header-top-right .form-custom :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #ddd;
}

.main-header .header-top .header-top-right .form-custom ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #ddd;
}

.main-header .header-bottom {
  border-top: 1px solid #ddd;
}

.main-header .header-bottom .navbar {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
}

.owl-dot span {
  width: 25px !important;
  height: 4px !important;
  margin: 5px 3px !important;
}

.owl-dot.active span {
  background: #0e62df !important;
  outline: none;
}

.owl-dot.active .owl-dot:hover span {
  background: #0e62df !important;
  outline: none;
}

.home-about .about-image {
  text-align: center;
}

.home-about .about-image img {
  width: 94%;
}

.home-SIP-graph .main-title {
  font-size: 28px;
}

.home-SIP-graph .main-title span.green {
  display: block;
}

.home-SIP-graph .SIP-image {
  overflow: hidden;
}


/*.home-SIP-graph .SIP-image img {
  width: 100%;
}*/

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-default {
  height: 50px;
  background-color: #e3fdc4;
  position: relative;
  color: #001522;
  border-radius: 2px;
  border-color: #e3fdc4;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 5px;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-default:after {
  content: "\f1e9";
  position: absolute;
  font-family: uicons-solid-straight;
  right: 15px;
  top: 10px;
  color: #001522;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active {
  background-color: #0e62df;
  color: #fff;
  height: 50px;
  border-radius: 2px;
  border-color: #0e62df;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active:after {
  content: "\f1ce";
  position: absolute;
  font-family: uicons-solid-straight;
  right: 15px;
  top: 10px;
  color: #fff;
}

.home-faq-section .faq-accordian .ui-accordion-header.ui-state-active.ui-state-focus {
  outline: none;
}

.home-faq-section .faq-accordian .ui-accordion-content {
  padding: 15px;
  background-color: #ecfdd7;
  border-color: #e3fdc4;
  margin-bottom: 10px;
}

.home-service .owl-carousel.owl-theme.home-services {
  position: relative;
}

.home-service .owl-carousel.owl-theme.home-services .service-card {
  margin: 15px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 10px 1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  padding: 150px 15px 20px 15px;
  min-height: 444px;
}
.home-service .owl-carousel.owl-theme.home-services .service-card p {
    line-height: 20px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .icon {
  height: 150px;
  background-color: #f1f7f9;
  display: block;
  width: 150px;
  padding: 30px 25px 25px 30px;
  border-radius: 100%;
  position: absolute;
  top: -22px;
  left: -22px;
}
.home-service .owl-carousel.owl-theme.home-services .service-card h3 {
    white-space: nowrap;
    text-overflow: ellipsis;
    width: 100%;
    overflow: hidden;
}
.home-service .owl-carousel.owl-theme.home-services .service-card a {
  text-decoration: none;
  color: #029ab5;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 50%;
  right: 0;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-color: #e3f0f5;
  border-radius: 100%;
  -webkit-animation: blinking 3s linear infinite;
          animation: blinking 3s linear infinite;
  -webkit-transition: 0.3s ease-in 0s all;
  transition: 0.3s ease-in 0s all;
  position: absolute;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(1) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  top: 60px;
  right: 40px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(2) {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  width: 9px;
  height: 9px;
  top: 8px;
  right: 55px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(3) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  width: 20px;
  height: 20px;
  top: 20px;
  right: 75px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(4) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  width: 17px;
  height: 17px;
  top: 33px;
  right: 46px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(5) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  width: 20px;
  height: 20px;
  top: 38px;
  right: 10px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(6) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  width: 10px;
  height: 10px;
  top: 15px;
  right: 32px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(7) {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
  width: 17px;
  height: 17px;
  top: 50px;
  right: 80px;
}

.home-service .owl-carousel.owl-theme.home-services .service-card .blinking-bubble span.bubble:nth-child(8) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  width: 8px;
  height: 8px;
  top: 5px;
  right: 14px;
}

@-webkit-keyframes blinking {
  0% {
    opacity: 0;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
  40% {
    opacity: 1;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
  70% {
    opacity: 1;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
  100% {
    opacity: 0;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
}

@keyframes blinking {
  0% {
    opacity: 0;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
  40% {
    opacity: 1;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
  70% {
    opacity: 1;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
  100% {
    opacity: 0;
    -webkit-transition: 0.3s ease-in os all;
    transition: 0.3s ease-in os all;
  }
}

.owl-nav {
  position: absolute;
  top: -80px;
  right: 15px;
}

.owl-nav button {
  background-color: #014a60 !important;
  display: inline-block;
  width: 45px;
  height: 45px;
}

.owl-nav button span {
  color: #fff;
  font-size: 24px;
  line-height: 22px;
}

.home-trust-section {
  position: relative;
}

.home-trust-section .trust-text .title {
  font-size: 58px;
  font-weight: 900;
  line-height: 60px;
  color: #fff;
}

.home-trust-section .trust-text p {
  color: #fff;
  margin-top: 10px;
}

.home-trust-section .trust-text .vm-box {
  margin-top: 20px;
  background-color: #035a73;
  border-radius: 10px;
  padding: 15px 20px 5px 20px;
}

.home-trust-section .trust-text .vm-box h3 {
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 24px;
}

.home-trust-section .trust-text .vm-box p {
  font-size: 15px;
  line-height: 20px;
}

.home-trust-section .img-col {
  position: static;
}

.home-trust-section .trust-image:after {
  content: "";
  background-image: url(../images/light.png);
  width: 380px;
  height: 494px;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0px;
  right: 7%;
  z-index: 0;
  opacity: 0.6;
}

.home-trust-section .trust-image:before {
  content: "";
  background-image: url(../images/light.png);
  width: 380px;
  height: 494px;
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  right: 12%;
  z-index: 0;
  opacity: 0.5;
}

.home-trust-section .trust-image img {
  position: absolute;
  -webkit-animation: popup 8s ease-in-out infinite;
          animation: popup 8s ease-in-out infinite;
  z-index: 9;
}

.home-trust-section .trust-image img:nth-child(1) {
  right: 25%;
  top: 80px;
  width: 160px;
}

.home-trust-section .trust-image img:nth-child(2) {
  right: 10%;
  top: 100px;
  width: 170px;
}

.home-trust-section .trust-image img:nth-child(3) {
  right: 20%;
  top: 350px;
  width: 140px;
}

@-webkit-keyframes popup {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes popup {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.how-we-work {
  position: relative;
}

.how-we-work .work-img-bg {
  background-color: #f1f7f9;
  width: 450px;
  height: 450px;
  text-align: center;
  margin: 30px auto 0 auto;
  border-radius: 100%;
}

.how-we-work .work-img-bg:after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 54%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 400px;
  height: 400px;
  background-color: #d9e6ea;
  border-radius: 50%;
  z-index: -1;
  -webkit-animation: pulse-border 0200ms ease-out infinite;
  animation: pulse-border 2000ms ease-out infinite;
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.how-we-work .work-steps {
  margin-bottom: 35px;
}

.how-we-work .work-steps:last-child {
  margin-bottom: 0;
}

.how-we-work .work-steps .number {
  background-color: #f1f7f9;
    color: #014a60;
  display: inline-block;
  width: 60px;
  height: 60px;
  position: relative;
  border-radius: 100%;
}

.how-we-work .work-steps .number span {
  position: absolute;
  top: -7px;
  left: 19px;
  font-size: 42px;
  font-weight: 600;
}

.how-we-work .work-steps .text {
  display: inline-block;
  width: calc(100% - 65px);
  padding-left: 15px;
}

.how-we-work .work-steps .text .title {
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.how-we-work .work-steps .text p {
  font-size: 14px;
}

.how-we-work .work-steps .work-image {
  display: none;
  position: absolute;
  right: 100%;
  top: 50px;
}

.how-we-work .work-steps .work-image img {
  width: 350px;
}

.how-we-work .work-steps.active .number {
  background-color: #014a60;
  color: #fff;
}

.how-we-work .work-steps.active .work-image {
  display: block;
}

.how-we-work .work-steps.active .work-image img {
  margin-right: 50px;
}

.home-SIP .SIP-image img {
  width: 100%;
}

.home-invest-fund {
  position: relative;
  overflow: hidden;
  background-blend-mode: overlay;
  background-image: url(../images/parallax.png);
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-invest-fund .btn-outline-primary {
  border-color: #fff;
  color: #fff;
  margin-left: auto;
  display: block;
  width: 170px;
  font-size: 16px;
  text-align: center;
  margin-top: 50px;
}

.home-invest-fund p {
  color: #fff;
}

.home-testimonial-section .testimonial-card {
  background-color: #f1f7f9;
  padding: 20px;
  border-radius: 10px;
  margin: 15px;
  min-height: 275px;
}

.home-testimonial-section .testimonial-card .image {
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
  margin-bottom: 5px;
}

.home-testimonial-section .testimonial-card .image img {
  width: 100%;
}

.home-testimonial-section .testimonial-card .text {
  position: relative;
}

.home-testimonial-section .testimonial-card .text h3 {
  font-size: 16px;
  font-weight: 600;
  color: #014a60;
}

.home-testimonial-section .testimonial-card .text h3 span {
  font-size: 13px !important;
  font-weight: 500;
}

.home-testimonial-section .testimonial-card .text p {
  font-size: 15px;
  margin-bottom: 0;
}

.home-testimonial-section .testimonial-card .text:after {
    content: "\f10f";
    font-family: flaticon;
    position: absolute;
    color: #b5d1da;
    top: -20px;
    right: 0;
    font-size: 22px;
}

.home-FAQ-section .nav-pills .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  text-align: center;
}

.home-FAQ-section .nav-pills .nav-item .nav-link {
  margin: 3px;
  padding: 18px;
  font-size: 16px;
  background-color: #f1f7f9;
}

.home-FAQ-section .nav-pills .nav-item .nav-link.active {
  background-color: #014a60;
}

.home-FAQ-section .accordion .accordion-item button.accordion-button:after {
  margin-left: auto !important;
  margin-right: 0;
  font-family: fontawesome;
  font-weight: 100;
  font-size: 20px;
}

.home-contact-section .card {
  padding: 20px;
  -webkit-box-shadow: 0 3px 24px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0 3px 24px 0px rgba(0, 0, 0, 0.15);
}

.footer-main {
  background-image: url(../images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  min-height: 400px;
  padding: 80px 0 20px 0;
}

.footer-main .foot-col .foot-title {
  color: #dde9ec;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  margin: 35px 0;
}

.footer-main .foot-col p {
  color: #dde9ec;
  font-size: 15px;
}

.footer-main .foot-col a {
  color: #dde9ec;
  text-decoration: none;
  font-size: 15px;
  margin-right: 5px;
}

.footer-main .foot-col a:hover {
  color: #fff;
}

.footer-main .foot-col a:hover i {
  background-color: #fff;
  color: #06101e;
}

.footer-main .foot-col a i {
  background-color: #1a3254;
  display: inline-block;
  width: 32px;
  height: 32px;
  text-align: center;
  border-radius: 100%;
}

.footer-main .foot-col a i:before {
  margin: 0;
  line-height: 32px;
}

.footer-main .foot-col a i:hover {
  background-color: #fff;
  color: #06101e;
}

.footer-main .foot-col .menu {
  list-style: none;
  padding: 0;
}

.footer-main .foot-col .menu a {
  margin-bottom: 10px;
  display: block;
}

.footer-main .foot-col .logo {
  margin-bottom: 20px;
}
.footer-top .logo img {
    width: 200px;
}
.foot-col.app-info a img {
    width: 140px;
}
.footer-main .contact-info p {
  position: relative;
  padding-left: 28px;
}
.footer-main .contact-info p i {
    position: absolute;
    left: 0;
    top: -3px;
}

.footer-main .contact-info p a i {
  position: absolute;
  left: 0;
}

.footer-main .footer-bottom {
  border-top: 1px solid #54637b;
  margin-top: 40px;
  padding: 25px 0 0 0;
}

.footer-main .footer-bottom p {
  color: #dde9ec;
  font-size: 14px;
}

.footer-main .footer-bottom a {
  color: #dde9ec;
  font-size: 14px;
  text-decoration: none;
}

.footer-main .footer-bottom a:hover {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */
.home-service .owl-carousel .owl-item img
{
    display: none;
}
.owl-carousel .owl-item i:before
{
    color: #014a60;
    font-size: 65px;
}
#contact_body button
{
    border: 0px;
    padding: 3px 18px;
    border-radius: 4px;
    background: #014a60;
    color: #fff;
    font-weight: 700;
}
.footer-main .contact-info p i:before
{
    margin-left: 0px;
    padding-right: 10px;
}
.header-section
{
    padding: 10px 0px 25px;
}
.header-section h4 {
    margin-bottom: 0px;
    text-align: center;
    color: #014a60;
    font-size: 36px;
    font-weight: 700;
}
.divide-img
{
    margin: 0px auto;
    display: block;
    padding: 7px;
    display: none;
}
#signinForm button
{
    border: 0px;
    padding: 3px 18px;
    border-radius: 4px;
    background: #014a60;
    color: #fff;
    font-weight: 700;
}
.login-model .modal-header button.close
{
    border: 0px;
}
body
{
    padding-right: 0px !important;
}
.contacts-section
{
    background-image: url(../images/inner-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    /*min-height: 600px;*/
    /*position: relative;*/
    /*overflow: hidden;*/
    /*background-size: contain;*/
    /*background-position: top;*/
    background-position: 0px -64px;
    /*min-height: 245px;*/
    min-height: 306px;
    overflow: inherit;
}
.navbar-light .navbar-toggler-icon
{
    background-image: conic-gradient !important;
}
.pro-img
{
    width: 100%;
}
.divided
{
    padding: 50px 0px;
}
.align-right p
{
    text-align: right;
}
.align-right h4
{
    text-align: right;
}
.more-content a
{
    border: 0px;
    padding: 9px 13px;
    border-radius: 4px;
    background: #014a60;
    color: #fff;
    font-weight: 700;
}
.main-section #nav-tab ul
{
    padding: 0px;
    width: 100%;
    background: #0e62df;
    border-radius: 18px;
}
.main-section #nav-tab ul li
{
    list-style-type: none;
    border: 1px solid #fff;
    border-radius: 6px;
}
.main-section #nav-tab ul li a.active , .main-section #nav-tab ul li a
{
    padding: 13px 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.main-section #nav-tab ul li a.show
{
    color: #fff;
    background: #0e62df;
    border-radius: 6px;
}
.nav-tabs .nav-link:hover
{
    background: none;
    color: #fff !important;
}
#nav-tabContent .active.in
{
    display: block;
    opacity: 1;
}
.main-section #nav-tab ul li.active a:hover.show
{
    background: #fff !important;
    color: #014a60 !important;
}
.main-section #nav-tab ul li.active a.show
{
    background: #fff;
    color: #014a60;
}
.invest-now a
{
    border: 0px;
    padding: 9px 13px;
    border-radius: 4px;
    background: #014a60;
    color: #fff;
    font-weight: 700;
}
.calname a
{
	font-size:14px;
}
.stick_option
{
	display:none;
}
.caclulator
{
	padding:20px 0px;
}
.cal-name,
.summary-heading,
.cal-type,
.fundperfonmance .blue,
.blue a:link,
.fundperfonmance .blue>a,
.fundname:hover .whythismf,
.fundname:hover .closewhythismf 
{
    color: #030303;
}

.btn.submit,
.calname a,
.cal-result .summary .table th,
.cal-result .sip-tg .nav li,
.presales-container .ins-amt,
.pre-inputbox #removeButton > span,
.presales-result .lc-box,
.presales-cal .sip-tg .nav li,
.presales-cal .summary table th 
{
    background: #014a60;
    margin-top: 15px;
    width: 150px;
}
            
.cal-name 
{
    border-bottom: 1px solid #00418c;
}

.fundname:hover .whythismf,
.fundname:hover .closewhythismf 
{
    border: 1px solid #00418c;
}

.amount-text,
.fundperfonmance .green 
{
    color: #a4d035;
}
            
.cal-result .nav-pills>li.active>a,
.cal-result .nav-pills>li.active>a:focus,
.cal-result .nav-pills>li.active>a:hover,
.pre-inputbox #btnAdd > span,
.presales-cal .nav-pills>li.active>a,
.presales-cal .nav-pills>li.active>a:focus,
.presales-cal .nav-pills>li.active>a:hover {
    background: #a4d035 !important;
}
		
#sipbarchart
{
    overflow: unset !important;
}
#sipbarchart .highcharts-container 
{
    width: 100%;
}
.download
{
    padding-bottom: 80px;
}
#download1
{
    padding-bottom: 20px;
}
.services-section img
{
    width: 67%;
    margin: 0px auto;
    display: block;
}


.product-card {
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 10%);
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    min-height: 300px;
    background-color: #fff;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
}
.product-card:hover {
    background-color: #014a60;
}
.product-card .icon {
    display: inline-block;
    width: 90px;
    height: 90px;
    vertical-align: middle;
}
.product-card .icon i::before {
    font-size: 65px;
    color: #014a60;
}
.product-card h4 {
    display: inline-block;
    color: #014a60;
    width: calc(100% - 96px);
    vertical-align: middle;
    font-weight: 600;
}
.product-card:hover .icon i::before{
    color: #fff;
}
.product-card:hover h4{
    color: #fff;
}
.product-card:hover p{
    color: #fff;
    margin-top: 5px;
}

.product-card .btn.btn-secondary.readmore-btn {
    font-size: 15px;
    padding: 8px 10px;
    height: 36px;
    line-height: 18px;
    border-radius: 3px;
    transform: translateY(85px);
    transition: all 0.4s ease-in-out;
}
.product-card:hover .btn.btn-secondary.readmore-btn {
    transition: all 0.4s ease-in-out;
    transform: translateY(0px);
}

.accordion-button:not(.collapsed) {
    color: #014a60;
    background-color: #f1f7f9;
}

.personal-advisor img {
    width: 100%;
}



.infobar-contact {
    margin-bottom: 30px;
}
.contact-box .icon {
    margin-bottom: 10px;
}
.contact-box .icon i::before {
    font-size: 30px;
    color: #014a60;
    margin: 0;
}
.contact-box .info-title {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 500;
    padding-left: 15px;
    vertical-align: text-bottom;
    color: #014a60;
}
.contact-box a, .contact-box p  {
    font-size: 18px;
    color: #000;
    text-decoration: none;
}

.interest-rate-slip {
    text-align: center;
}

.contact-image.wow.fadeInDown {
    margin-left: 170px;
}
.contact-image img {
    width: 100%;
    transform: scale(1.6);
    margin-bottom: 0px;
    max-width: 40vw;
    margin-top: 60px;
}

.sip-section-main .sip-image-slider h4 {
    font-size: 16px;
    font-weight: 600;
    color: #014a60 !important;
}
.sip-section-main .sip-image-slider h4 div{
    font-size: 16px;
    font-weight: 600;
    color: #014a60 !important;
}
.sip-section-main .sip_slider {
    background-color: #fff;
    border: 1px solid #9aa5a9 !important;
    border-radius: 30px;
    height: 12px;
    margin-left: 30px !important;
}
.sip-section-main .sip_slider .ui-slider-range {
    background: #014a60 !important;
}
.sip-section-main .sip_slider .ui-slider-handle {
    background: #f0f6f8 !important;
    border: 1px solid #014a60;
    height: 21px;
}
.sip-section-main .SIP-image img {
    margin-top: -230px;
    width: 90%;
    margin-left: auto;
    display: block;
}
.sip-section-main .sip-graph {
    text-align: center;
    margin-top: -60px;
    margin-left: 50px;
}


.whatappicon a i {
    background-color: #000000;
    color: #ffffff;
    width: 60px;
    text-align: center;
    height: 60px;
    line-height: 56px;
    border-radius: 50%;
    position: fixed;
    bottom: 90px;
    right: 10px;
    z-index: 9;
    font-size: 38px;
}


#aboutCarousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 43%;
}
.form-group.form-dropdown::after {
    content: "\f0d7";
    position: absolute;
    font-family: 'FontAwesome';
    right: 10px;
    top: 10px;
}

.insurance-form-title {
    font-size: 22px;
    font-weight: 600;
    color: #607880;
    margin-bottom: 15px;
    margin-top: 15px;
}
.insuarance-tieup-title {
    font-size: 28px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
    margin-top: 15px;
}

.TabbedPanelsTab {
    background: #0aa6c1 !important;
}
.TabbedPanelsTabSelected {
    background: #014a60 !important;
}

.mutual-fund-main .calname a {
    width: 15.7%;
    max-width: 16.6%;
    text-align: center;
    background-color: #e1f0f3;
    padding: 5px;
    border-radius: 5px;
}
.mutual-fund-main .calname a i {
    font-size: 30px;
    color: #014a60;
}
.mutual-fund-main .calname a span {
    display: block;
    color: #014a60;
    font-size: 16px;
}
.mutual-fund-main .calname a:hover {
    background-color: #014a60;
}
.mutual-fund-main .calname a:hover i {
    color: #fff;
}
.mutual-fund-main .calname a:hover span {
    color: #fff;
}


.stocks-commodities-main {
    text-align: center;
}
.stocks-commodities-main .demat-account {
    padding-bottom: 70px;
}
.stocks-commodities-main .whatsapp-chat {
    padding: 70px 0;
}
.stocks-commodities-main .whatsapp-btn {
    background-color: #24cc63;
    border: 1px solid #24cc63;
}
.stocks-commodities-main .whatsapp-btn i {
    font-size: 30px;
    vertical-align: top;
    margin-right: 5px;
}

.stocks-commodities-main .other-info {
    padding: 70px 0 30px 0;
}
.stocks-commodities-main .other-info .info-card {
    padding: 0;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 15px 2px rgb(0 0 0 / 15%);
    overflow: hidden;
}
.stocks-commodities-main .other-info .info-card .image {
    min-height: 230px;
}
.stocks-commodities-main .info-card .image img {
    width: 100%;
    height: 230px;
}
.stocks-commodities-main .other-info .info-card .info {
    padding: 15px;
}
.stocks-commodities-main .other-info .info-card .info h4 {
    font-weight: 600;
    color: #014a60;
}
.stocks-commodities-main .btns-only .btn {
    margin: 70px 10px 0 10px;
}


.footer-main .foot-col.contact-info p a i {
    background-color: transparent;
    font-size: 28px !important;
}
.footer-main .foot-col.contact-info p a:hover i {
    background-color: transparent;
    color: #fff !important;
}

.partner-images{
    padding: 40px 0;
}
.partner-images img {
    width: 100%;
    margin-bottom: 25px;
}