:root {
  --rv-primary: #2a1357;
  --rv-primary-two: #2a1357;
  --rv-primary-light: #f1e9ff;

  --rv-secondary: #55e8c5;
  --rv-secondary-two: #12a583;
  --rv-secondary-light: #effffb;

  --rv-bg-dark: #222935;
  --rv-white: #fff;
  --rv-black: #070707;
  --rv-gray: #726d7b;

  --rv-font: "Barlow", sans-serif;
  --rv-font-heading: "Roboto", sans-serif;

  --rv-gradient-primary: linear-gradient(135deg, #2a1357, #55e8c5);
  --rv-gradient-secondary: linear-gradient(135deg, #55e8c5, #2a1357);
}

body {
  font-family: var(--rv-font);
  font-size: 16px;
}

p,
a,
span,
li {
  font-size: 16px;
  text-decoration: none;
}

h1 {
  font-size: 52px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 36px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--rv-bg-dark);
}

a {
  color: var(--rv-secondary);
}

.main-title {
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #201f1f;
  text-align: center;
}


/* Base Button */
.btn {
  position: relative;
  display: inline-block;
  padding: clamp(0.6rem, 2vw, 0.9rem) clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 12px;
  font-weight: 600;
  font-family: inherit;
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #fff;
  border: none;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition:
    color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--rv-primary, #007bff), var(--rv-secondary, #6610f2));
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.btn-primary:hover::before {
  width: 280%;
  height: 280%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, var(--rv-primary-two, #444), var(--rv-secondary-two, #222));
}

.btn-secondary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 250%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.btn-secondary:hover::after {
  left: 100%;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Ensures text is above effect layers */
.btn span {
  position: relative;
  z-index: 2;
}




.section {
  padding: 80px 0;
}


.blue {
  color: var(--rv-bg-primary);
}

.red {
  color: var(--rv-secondary);
}

.home-about {
  padding-top: 0px;
}

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

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

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

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

ul.navbar-nav .nav-item .nav-link {
  color: var(--rv-primary);
  font-weight: 600;
  border: none;
}

ul.navbar-nav .nav-item .nav-link:hover {
  color: #6a5d5d;
  border-bottom: 1px solid #11715b;
}

ul.navbar-nav .nav-item.active .nav-link {
  color: var(--rv-secondary);
}

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

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: var(--rv-primary);
}

ul.navbar-nav .dropdown-menu .dropdown-item:hover,
ul.navbar-nav .dropdown-menu .dropdown-item:focus {
  color: #fff;
  text-decoration: none;
  background-color: var(--rv-primary);
}

.radio-group {
  text-align: center;
  margin: 30px 0 20px 0 !important;
}

.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 var(--rv-primary);
}

.radio-group .radio-btn input:checked~.checkmark {
  background-color: #fff;
  border: 2px solid var(--rv-primary);
}

.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: var(--rv-primary);
}

.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: var(--rv-primary);
  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: var(--rv-primary);
}

.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 var(--rv-primary);
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: var(--rv-primary);
  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: var(--rv-primary);
  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 var(--rv-primary);
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: var(--rv-primary);
  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: var(--rv-primary);
  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: var(--rv-primary);
  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: #14b08b;
  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: var(--rv-secondary);
}

i.fi-ss-paper-plane {
  margin-left: 3px;
  vertical-align: middle;
  font-size: 14px;
}

.banner-text img {
  width: 269px;
  margin: 0px auto;
  display: block;
}

.home-slider .banner-text .banner-title {
  font-weight: 400;
  line-height: 46px;
  color: var(--rv-secondary);
  font-size: 37px;
}

.home-slider .banner-text .banner-title .blue {
  display: block;
}

.home-slider .banner-text i {
  font-size: 30px;
  vertical-align: middle;
}

.home-slider .banner-text {
  padding: 0 20px;
  padding-top: 00px;
}

.main-header {
  background-color: #ffffff00;
  /* padding: 10px; */
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out 0s all;
  transition: 0.3s ease-in-out 0s all;
  position: absolute;
}

.main-header ul.navbar-nav {
  margin-left: auto;
}

.main-header ul.navbar-nav a.nav-link {
  padding: 10px 10px;
  font-weight: 600;
}

.main-header img {
  /*width: 100%*/
}

.main-header .button_area {
  text-align: right;
}

.main-header .login-btn {
  text-transform: uppercase;
  width: 130px;
  font-size: 18px;
  line-height: 24px;
  margin: 17px 0;
  /*margin-top: 37px;*/
}

.main-header.stickyhead .login-btn {
  margin: 5px 0;
  margin-top: 12px;
}

.main-header .header-menu {
  margin-top: 0px;
}

.main-header .login-btn i {
  margin-left: 5px;
  vertical-align: middle;
}

.main-header.stickyhead {
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  -webkit-transition: 0.3s ease-in-out 0s all;
  transition: 0.3s ease-in-out 0s all;
  -webkit-box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1);
  z-index: 99999;
}

.main-header.stickyhead .logo img {
  width: auto;
}

.main-header.stickyhead .login-btn {
  text-transform: uppercase;
  width: 130px;
  font-size: 18px;
  line-height: 25px;
  padding: 5px;
  height: 40px;
}

.main-header .header-menu {
  padding: 15px 0;
}

.main-header.stickyhead .header-menu {
  padding: 15px 0;
}

.header-menu nav.navbar {
  padding: 0;
}

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

.owl-dot.active span {
  background: var(--rv-primary) !important;
  outline: none;
}

.owl-dot.active .owl-dot:hover span {
  background: var(--rv-primary) !important;
  outline: none;
}

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

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

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

.home-service {
  background-image: url(../assets/images/line-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.home-service .service-box {
  background-color: #f1f7ed;
  position: relative;
  border-radius: 3px;
  padding-top: 65px;
  margin: 85px 10px 0 10px;
}

.home-service .service-box .icon {
  position: absolute;
  z-index: 9999;
  background-color: #f1f7ed;
  width: 150px;
  height: 150px;
  border-radius: 100%;
  padding: 10px;
  overflow: hidden;
  border: 5px solid #fff;
  text-align: center;
  top: -75px;
  left: 28%;
}

.home-service .service-box .icon img {
  width: 90px !important;
  text-align: center;
  margin: 12px auto;
}

.home-service .service-box .text {
  text-align: center;
  padding: 25px 15px 20px 15px;
}

.home-service .service-box .text .blue {
  font-size: 24px;
}

.home-service .service-box .text p {
  font-size: 18px;
  margin-bottom: 25px;
  min-height: 135px;
}

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

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

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

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

.theme_bg {
  background-color: var(--rv-primary) !important;
}

.theme_bg .main-title {
  color: #fff !important;
}

.theme_bg p,
.theme_bg a {
  color: #fff !important;
}

.home-why-choose {
  padding-bottom: 60px;
}

/*.home-why-choose {
    background-color: var(--rv-primary);
}
.home-why-choose .main-title {
    color: #fff;
}*/
.boxes-main {
  position: relative;
}

.boxes-main .why-box {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 230px;
  height: 190px;
  -webkit-box-shadow: 1px 2px 5px 3px rgba(0, 0, 0, 0.06);
  box-shadow: 1px 2px 5px 3px rgba(0, 0, 0, 0.06);
  display: grid;
  position: absolute;
  align-items: center;
}

.boxes-main .why-box .box-text .number {
  display: inline-block;
  width: 45px;
  height: 45px;
  vertical-align: top;
  position: relative;
}

.boxes-main .why-box .box-text .number img {
  width: 45px;
}

.boxes-main .why-box .box-text .number i {
  width: 45px;
  position: absolute;
  z-index: 99;
  left: 15px;
  top: 0px;
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  color: var(--rv-primary);
}

.boxes-main .why-box .box-text h3 {
  display: inline-block;
  width: calc(100% - 51px);
}

.boxes-main .why-box.box1 {
  top: 60px;
}

.boxes-main .why-box.box2 {
  left: 250px;
  top: 10px;
}

.boxes-main .why-box.box3 {
  left: 250px;
  top: 220px;
}

.boxes-main .why-box.box4 {
  left: 0px;
  top: 270px;
}

.home-investor-education {
  background-image: url(../assets/images/line-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 600px;
}

.home-investor-education .main-title {
  margin-bottom: 35px;
}

.home-investor-education .education-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-investor-education .education-accordian .ui-accordion-header.ui-state-default:after {
  content: "\f1e9";
  position: absolute;
  font-family: uicons-solid-straight;
  right: 15px;
  top: 10px;
  color: #001522;
}

.home-investor-education .education-accordian .ui-accordion-header.ui-state-active {
  background-color: var(--rv-primary);
  color: #fff;
  height: 50px;
  border-radius: 2px;
  border-color: var(--rv-primary);
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

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

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

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

.home-investor-education .video-part {
  border-radius: 15px;
  background-color: var(--rv-primary);
  position: relative;
  text-align: center;
}

.home-investor-education .video-part:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: 99;
}

.home-investor-education .video-part img {
  width: 90%;
}

.home-investor-education .video-part .bg-shadow:after {
  content: "";
  background-color: rgba(98, 182, 5, 0.5);
  position: absolute;
  right: -12px;
  top: 12px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  z-index: -1;
}

.home-testimonials {
  /*background-color: #f3ffe5;*/
}

.home-testimonials #home_testimonials {
  margin: 40px auto 10px auto;
}

.home-testimonials #home_testimonials .investor-info .img {
  border-radius: 10px;
  overflow: hidden;
}

.home-testimonials #home_testimonials .investor-info .name h5 {
  text-align: center;
  color: var(--rv-primary);
  margin-bottom: 0px;
  font-weight: 600;
  font-size: 18px;
}

.home-testimonials #home_testimonials .investor-info .name p {
  text-align: center;
  color: #fff !important;
  margin-bottom: 0px;
  font-size: 16px;
}

.home-testimonials .test-img-section {
  overflow: hidden;
}

.home-testimonials .test-img-section img {
  width: 100%;
}

.form-custom .form-group {
  margin-bottom: 5px;
}

.form-custom .form-group .form-control {
  background-color: #e2edf3;
  height: 40px;
  border: 1px solid #e2edf3;
  outline: none;
  margin-bottom: 17px;
}

.form-custom .form-group input.form-control:focus {
  border: 1px solid var(--rv-primary);
}

.form-custom .form-group textarea.form-control {
  height: 80px;
}

.form-custom .form-group .btn.btn-primary {
  width: 100%;
  height: 40px;
}

#captcha {
  width: calc(100% - 153px);
  display: inline-block;
}

#fcaptcha {
  width: calc(100% - 160px);
  display: inline-block;
}

#wcaptcha {
  width: calc(100% - 160px);
  display: inline-block;
}

#captcha_code {
  height: 40px !important;
}

.btnRefresh {
  height: 40px !important;
}

.main-footer {
  position: relative;
  padding-top: 100px;
  margin-top: 70px;
  background-color: #1f242b;
}

.main-footer .top-info {
  background-color: var(--rv-secondary);
  padding: 20px 30px 20px 30px;
  border-radius: 15px;
  color: #fff;
  margin-top: -170px;
  margin-bottom: 20px;
}

.main-footer .top-info .info-items {
  color: #fff;
  font-size: 20px;
  position: relative;
  margin: 0;
}

.main-footer .top-info .info-items i {
  /*position: absolute;*/
  /*left: 0px;*/
  display: initial;
  margin-right: 5px;
}

.main-footer .footer-bars .logo img {
  /*width: 180px;*/
  margin-bottom: 15px;
}

.main-footer .footer-bars ul {
  padding-left: 0px;
  list-style-type: none;
}

.main-footer .footer-bars ul li a {
  color: #fff;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
}

.main-footer .footer-bars ul li a:hover {
  color: var(--rv-secondary-two);
}

.main-footer .footer-bars .foot-title {
  color: #fff;
  margin-bottom: 15px;
}

.main-footer .footer-bottom {
  padding: 10px 0 3px 0;
}

.main-footer .footer-bottom .social-media {
  text-align: right;
}

.main-footer .footer-bottom .social-media a.items {
  /*background-color: #fff;*/
  /*width: 32px;*/
  height: 32px;
  display: inline-block;
  color: #fff;
  border-radius: 100%;
  text-align: center;
  font-size: 18px;
  line-height: 32px;
}

.main-footer .footer-bottom .social-media a.items:hover {
  /*background-color: var(--rv-primary);*/
}

.home-partner-section .partner-logos img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.home-partner-section .item {
  margin: 20px;
}

.financial-tools .boxes-main {
  display: flex;
}

.financial-tools .boxes-main .tool-box {
  width: calc(20% - 20px);
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
  margin: 0 10px;
  transition: all 0.2s ease-in-out;
}

.financial-tools .boxes-main .tool-box:hover {
  transition: all 0.2s ease-in-out;
  background-color: var(--rv-primary);
}

.financial-tools .boxes-main .tool-box .icon i::before {
  font-size: 60px;
  color: var(--rv-primary);
}

.financial-tools .boxes-main .tool-box:hover .icon i::before {
  color: #fff;
}

.financial-tools .boxes-main .tool-box a {
  font-size: 22px;
  text-decoration: none;
  color: #000;
}

.financial-tools .boxes-main .tool-box:hover a {
  color: #fff;
}

.news .nav.nav-tabs {
  text-align: center;
  margin: 0 auto;
  display: block;
}

.news .nav-tabs .nav-item {
  text-align: center;
  display: inline-block;
  width: 49%;
}

.news .nav-tabs .nav-item .nav-link {
  background-color: #d7efe0;
  height: 50px;
  line-height: 28px;
  font-size: 20px;
}

.news .nav-tabs .nav-item .nav-link.active {
  background-color: var(--rv-primary) !important;
  color: #fff;
}

.news .tab-content {
  padding: 25px 20px;
  background-color: #fff;
}

.inner-banner {
  background-image: url(../assets/images/banner-inn.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 300px;
  position: relative;
}

.inner-banner .banner-text {
  position: absolute;
  bottom: 40px;
}

.inner-banner .banner-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--rv-primary);
}

.contact-info .infobar {
  position: relative;
  margin-bottom: 45px;
}

.contact-info .infobar i {
  font-size: 24px;
  color: #fff;
  background-color: var(--rv-secondary);
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  text-align: center;
  line-height: 48px;
}

.contact-info .infobar .fi-ss-marker {
  line-height: 58px !important;
}

.contact-info .infobar b {
  font-size: 20px;
  color: var(--rv-primary);
  padding-left: 5px;
  display: inline-block;
  vertical-align: text-bottom;
}

.contact-info .infobar span {
  left: 60px;
  position: absolute;
}

.about-main {
  padding: 80px 0 0 0;
}

.tabs-part {
  border: none !important;
}

.tabs-part .ui-tabs-nav {
  background: transparent;
  border: none;
}

.tabs-part .ui-tabs-nav .ui-tabs-tab {
  width: calc(50% - 5px);
  padding: 0;
  text-align: center;
  border: 1px solid #c6e0ef;
  background-color: #c6e0ef;
}

.tabs-part .ui-tabs-nav .ui-tabs-tab:hover {
  border: 1px solid var(--rv-primary);
  background-color: var(--rv-primary);
}

.tabs-part .ui-tabs-nav .ui-tabs-tab:hover .ui-tabs-anchor {
  color: #fff !important;
}

.tabs-part .ui-tabs-nav .ui-tabs-tab.ui-tabs-active {
  color: #fff;
  border: 1px solid var(--rv-primary);
  background-color: var(--rv-primary);
}

.tabs-part .ui-tabs-nav .ui-tabs-tab.ui-tabs-active a {
  color: #fff;
}

.tabs-part .ui-tabs-nav .ui-tabs-tab .ui-tabs-anchor {
  float: none;
  padding: 15px 10px;
  text-decoration: none;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
}

.bluebar {
  background-color: var(--rv-primary);
  padding: 10px;
  color: #fff;
  font-size: 24px;
  margin-top: 30px;
}

.bluebar_dark {
  background-color: var(--rv-primary);
  padding: 10px;
  color: #fff;
  font-size: 24px;
  margin-top: 30px;
}

.content-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
  min-height: 215px;
}

.team {
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}

.team img {
  width: 100%;
  border-radius: 10px;
}

.team .text {
  background-color: rgba(7, 175, 80, 0.7);
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 5px 10px;
  border-radius: 0 0 10px 10px;
}

.team .text h4 {
  color: #fff;
  margin-bottom: 0;
}

.team .text p {
  color: #fff;
  margin-bottom: 0;
}

.team .text a {
  color: var(--rv-primary);
  background-color: #fff;
  padding: 5px;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  line-height: 30px;
  text-decoration: none;
  text-align: center;
}

.team-modal .modal-dialog {
  max-width: 700px;
}

.team-modal .modal-header {
  display: block;
}

.team-modal .modal-title {
  display: block;
  width: 100%;
}

.team-modal .close {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--rv-primary);
  opacity: 1;
  box-shadow: none;
  font-weight: 500;
  font-size: 30px;
  border: 2px solid;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  line-height: 10px;
  text-align: center;
  padding: 5px !important;
}

.founder-section .text {
  min-height: 60px;
}

.fund-performance {
  padding: 40px 0;
}

.financial-tools.mf-page .tool-box {
  width: calc(25% - 20px) !important;
}

.mf-calculator .mf-calculators {
  display: inline-block;
  width: 12%;
  min-height: 90px;
  background-color: #fff;
  box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
  border-radius: 5px;
  padding: 10px 10px 0 10px;
  margin: 10px;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
}

.financial-service-tools.mf-calculator .mf-calculators {
  width: 14.4%;
}

.mf-calculator .mf-calculators:hover {
  background-color: var(--rv-primary);
}

.mf-calculator .mf-calculators i {
  font-size: 30px;
}

.mf-calculator .mf-calculators:hover i {
  color: #fff;
}

.mf-calculator .mf-calculators span {
  display: block;
}

.mf-calculator .mf-calculators:hover span {
  color: #fff;
}

.insurance-main ul.nav.nav-pills li {
  display: inline-block;
}

.insurance-main ul.nav.nav-pills li a {
  background-color: #d7efe0;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  border-radius: 5px;
  display: block;
  margin: 0 2px;
}

.insurance-main ul.nav.nav-pills li a.active {
  background-color: #07af50;
  color: #fff;
}

.radio-group .input-in {
  display: inline-block;
}

.TabbedPanelsTabGroup {
  background-color: var(--rv-secondary) !important;
}

.TabbedPanelsTab {
  padding: 15px 30px !important;
  width: 20% !important;
  color: #fff !important;
  font-size: 18px !important;
}

.TabbedPanelsTabSelected {
  background: var(--rv-primary) !important;
  color: #fff !important;
}

.tab.pay-premium img {
  width: 120px !important;
  margin: 20px 0;
}

.buy_mf p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 30px;
}

.blog-post-main .post-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 25px;
}

.blog-post-main .post-card .time {
  position: absolute;
  top: 133px;
  left: 10px;
}

.blog-post-main .post-card .time a {
  height: 30px;
  border-radius: 40px;
  line-height: 10px;
  color: #fff !important;
  font-size: 12px;
  padding: 8px 10px;
}

.btn.btn-primary.ripple-surface {
  min-width: 188px;
  height: auto;
}

.btn-primary span {
  font-size: 20px;
  ;
}

.blog-post-main .post-card .info {
  padding: 25px 15px 15px;
}

.blog-post-main .post-card .info h4 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  max-height: 70px;
}

.blog-post-main .post-card .info .text-truncate {
  overflow: auto;
  text-overflow: inherit;
  white-space: inherit;
  width: 100%;
  /*max-height: 30px;*/
}

.blog-post-main .post-card .btn-primary.post_link {
  display: inline-block;
  width: 150px;
  border-radius: 30px;
  padding: 8px;
  line-height: 22px;
  height: auto;
  margin: 0px 0 25px 10px;
  background-color: var(--rv-secondary);
  border: 2px solid var(--rv-secondary);
}

.box-heading {
  background: var(--rv-primary);
  color: white;
  padding: 11px 0px;
  position: relative;
  /*z-index: 99999;*/
  margin-bottom: 0px;
  text-align: center;
  font-size: 18px;
  border-radius: 10px 10px 0px 0px;
}

.content .box {
  padding: 15px 15px;
  min-height: 285px;
}

.box {
  background: #f5f5f5;
}

.grayBox {
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 99999999;
  -moz-opacity: 0.7;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.box_content {
  background-color: #ffffff;
  border: 2px solid #dddddd;
  left: 35%;
  overflow: hidden;
  padding: 15px;
  position: fixed;
  top: 25%;
  width: 430px;
  z-index: 999999999;
  height: 240px;
}

.imgs {
  top: 0;
  right: 0px;
  position: absolute;
  font-size: 20px;
  color: white;
  font-weight: bold;
  width: 30px;
  height: 30px;
  background: red;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
}

#exampleModal {
  z-index: 999999999999999999;
}

.main-section .tab-content .tab-pane p span,
.main-section .tab-content .tab-pane ul li span {
  font-size: 14px !important;
}

.main-section .tab-content div span {
  font-size: 16px !important;
}

/* SLIDER CSS */
/*---- Slider ---*/
.slider-section {
  position: relative;
  overflow: hidden;
}

.hero-slider-01 {
  position: relative;
}

.single-slide.bg-img {
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 5;
  height: 550px;
}

.slider-content {
  position: relative;
  z-index: 9;
  padding: 0 0;
}

.slider-content .sub-title {
  color: var(--rv-primary);
  font-size: 42px;
  line-height: 42px;
  text-transform: inherit;
  font-weight: 500;
  position: relative;
  margin-bottom: 5px;
}

.slider-content h2 {
  font-size: 44px;
  line-height: 44px;
  color: #fd0302;
  margin: 0 0 38px;
  font-weight: bold !important;
}

.slider-content p {
  font-size: 18px;
  line-height: 26px;
  color: #fff;
  margin: -15px 0 0;
}

.slider-content .grap-btn {
  height: 60px;
  padding: 15px 20px;
  background-color: var(--rv-primary);
  color: #fff;
  font-size: 18px;
  border-radius: 2px;
  text-decoration: none;
}

.slider-content .to_bottom {
  margin-left: 14px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffff;
}

.slider-content .to_bottom:hover {
  border-color: var(--rv-primary);
}

.slider-content .to_bottom::before {
  background: var(--rv-primary);
  border-radius: 0;
}

.slider-section .owl-dots {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 40px;
  z-index: 3;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.slider-section .owl-dots button {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  outline: none;
  position: relative;
  margin: 0 5px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-section .owl-dots button.active,
.slider-section .owl-dots button:hover {
  background: var(--rv-primary);
}

.owl-carousel .owl-dots button span {
  display: none;
}

.slider-section .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 1140px;
  text-align: right;
  position: absolute;
  outline: none;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.slider-section .owl-carousel .owl-nav button {
  text-align: center;
  z-index: 5;
  font-size: 28px;
  line-height: 54px;
  width: 50px;
  height: 50px;
  margin: 10px 0 5px auto;
  background: var(--rv-primary);
  color: #fff;
  position: relative;
  border: none;
  outline: none;
  z-index: 1;
  border-radius: 50%;
  display: block;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-section .owl-carousel .owl-nav button:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background: #0f1a2c;
  border-radius: 50%;
  text-align: center;
  width: 0;
  height: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-section .owl-carousel .owl-nav button:hover:after {
  width: 100%;
  height: 100%;
}

.slider-section .owl-item.active .slider-content .sub-title {
  animation-delay: 1.4s;
  animation-name: fadeInUp;
}

.slider-section .owl-item.active .slider-content h2 {
  animation-delay: 1.7s;
  animation-name: fadeInUp;
}

.slider-section .owl-item.active .slider-content .grap-btn {
  animation-delay: 1.9s;
  animation-name: fadeInUp;
}

.service_item {
  transition: all 0.3s ease-in-out;
  margin-top: 20px;
}

.service_item:hover {
  box-shadow: 0px 2px 10px #999;
  transition: all 0.3s ease-in-out;
}

.image-view {
  display: block;
  width: 100%;
  height: 248px;
  object-fit: cover;
}

.service_item .service_text {
  background: var(--rv-primary);
  padding: 10px;
  transition: all 0.3s ease-in-out;
  min-height: 220px;
}

.service_item .service_text h2 {
  font-size: 22px;
  text-align: left;
  font-weight: 600;
}

.service_item .service_text p {
  color: #fff;
}

.service_item .service_text h2 a {
  color: #fff;
  font-size: 22px;
}

.service_item:hover .service_text {
  background: #e92114;
}

.service_item .serv_text h2 {
  font-size: 20px;
  text-align: left;
  font-weight: 600;
}

.service_item .read-more {
  color: #e92114;
  font-size: 16px;
  padding: 2px 5px;
  transition: all 0.3s ease-in-out;
}

.service_item:hover .read-more {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

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

.map {
  margin-bottom: -107px;
}

.sip-calculator-section .grow_gif {
  text-align: center;
  margin-top: 45px;
}

.sip-calculator-section .grow_gif img {
  width: 90%;
  margin: -70px auto 0 auto;
}

.sip-calculator-section #chart_div {
  margin-top: -40px !important;
}

.sip-calculator-section .ui-widget.ui-widget-content {
  border-radius: 30px;
  height: 6px;
  background: #9c9fa1;
  border: 1px solid #9c9fa1;
}

.sip-calculator-section .ui-state-default,
.sip-calculator-section .ui-widget-content .ui-state-default,
.sip-calculator-section .ui-widget-header .ui-state-default {
  border: 1px solid var(--rv-primary);
  background: var(--rv-primary);
  font-weight: normal;
  border-radius: 100%;
  width: 13px;
  height: 13px;
  top: -5px;
}

.sip-calculator-section .ui-slider .ui-slider-range {
  background: var(--rv-primary);
  border: 1px solid var(--rv-primary) !important;
}

.useful_links .links_items {
  list-style-type: none;
  padding: 0;
}

.useful_links .links_items li {
  display: inline-block;
  width: 24%;
}

.useful_links .links_items li a {
  display: block;
  background-color: #53afe0;
  padding: 10px;
  margin-bottom: 10px;
  color: #fff;
  transition: 0.2s;
  text-decoration: none;
}

.useful_links .links_items li a:hover {
  background-color: var(--rv-primary);
  transition: 0.2s;
}

.markrt-view.fund_performance_area .cal-name {
  background-color: var(--rv-primary);
  font-size: 22px;
  font-weight: 500;
  margin-top: 10px;
}

.home-slider {
    height: 80vh;
    display: flex;
    align-items: center;
    max-height: 755px;
}

.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;
}

.pink {
  color: #e75e3a;
}

.home-slider .banner-img {
  /* margin-top: 100px; */
  /* position: absolute; */
  right: 0;
  bottom: 20%;
  /* width: 100%; */
  display: flex;
  justify-content: center;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.home-slider:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background: #0000000a;
}


.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;
}

.home-slider .banner-img .logos img:nth-child(1) {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
  width: 50%;
}

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

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

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

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

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

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

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

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

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

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

.home-slider .banner-img .logos img:nth-child(11) {
  -webkit-animation-delay: 4.4s;
  animation-delay: 4.4s;
  width: 70px;
  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::after {
  /*   content: "";*/
  /*width: 100%;*/
  /*height: 100%;*/
  /*background-image: url(../assets/images/slider/Slider.png);*/
  /*position: absolute;*/
  /*top: 0;*/
  /*z-index: -1;*/
  /*background-repeat: no-repeat;*/
  /*background-size: cover;*/
  /*background-position: center;*/
}

.color-green {
  color: var(--rv-bg-primary);
}

.services {
  /*background-image: url(../assets/images/services.png);*/
}

.collapsible {
  background-color: var(--rv-primary);
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  margin-bottom: 10px;
}

/*.active, .collapsible:hover {*/
/*  background-color: #555;*/
/*}*/

.collapsible:after {
  content: "\002B";
  color: white;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

/*.active:after {*/
/*  content: "\2212";*/
/*}*/

.content.form-content {
  max-height: 100% !important;
  overflow: auto;
}

.home-investor {
  background: none;
}

.home-investor hr {
  margin-bottom: 40px;
  border: 0;
}

.footer-bars p,
.footer-bottom p {
  color: #fff;
}

.footer-text p {
  text-align: justify;
}

#mission ul li {
  font-size: 16px;
}

/*.home-slider {*/
/*  background-image: url(../assets/images/banners.jpg);*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  min-height: 600px;*/
/*}*/

.home-slider .banner-text .banner-title {
  font-weight: 600;
  line-height: 46px;
}

.home-slider .banner-text .banner-title .green {
  display: block;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}

.banner-text p {
    color: #ffffff;
    text-align: justify;
    font-size: 18px;
}

.green {
  color: var(--rv-primary-two);
}

.main-header {
  background-color: #ffffff00;
  /* padding: 10px; */
  width: 100%;
  left: 0;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s ease-in-out 0s all;
  transition: 0.3s ease-in-out 0s all;
  position: absolute;
  z-index: 99;
}

.home-slider .main-header img {
  width: 100%;
  /*width: 120px;*/
  margin-top: 30px;
}

.home-slider .header-menu nav.navbar {
  padding: 0;
}

.home-slider .main-header ul.navbar-nav {
  /*margin: auto;*/
}

.home-slider .main-header ul.navbar-nav a.nav-link {
  padding: 10px 15px !important;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.home-slider .main-header .login-btn {
  text-transform: uppercase;
  width: 130px;
  font-size: 18px;
  line-height: 27px;
}

.inner-banner {
  min-height: 136px;
}

.inner-banner .main-header {
  background: rgb(255 255 255);
}


.home-aboutus .main-title .color-green {
  font-weight: 600;
  font-size: 28px;
  padding: 10px 0px;
  /*color: #fff;*/
}

.home-aboutus p {
  /* color: #fff; */
  text-align: justify;
}

/* div#services1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
} */
.home-aboutus .content {
  display: -webkit-box;
  -webkit-line-clamp: 15;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-cards .icon {
  margin-bottom: 15px;
  text-align: center;
}

.about-cards h5 {
  text-align: center;
}

.investor-info .name h5 {
  color: #fff;
}

.fromindex {
  background: #052944;
  padding: 20px;
  border-radius: 11px;
  /*margin-top: -136px;*/
}

.fromindex h4 {
  /*background: var(--rv-secondary);*/
  color: #fff;
  margin: 0px -20px;
  text-align: center;
  padding: 3px;
  /*margin-bottom: 15px;*/
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  font-size: 18px;
}

.fromindex table b {
  color: #fff;
  display: none;
}

.fromindex table tr {
  line-height: 1;
}

.footer-top .info-items span {
  color: #fff;
  display: block;
  width: 82%;
  float: right;
}

.footer-top .info-items {
  line-height: inherit;
  margin-bottom: 10px;
}

.footer-top .info-items img {
  margin-right: 10px;
  width: 25px;
}

.social-media .items {
  color: #fff;
  font-size: 18px;
  margin-right: 8px;
}

.main-footer .footer-bars .foot-title span {
  display: block;
  font-size: 26px;
  margin-top: 15px;
}

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

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

.home-testimonials .col-md-4 img {
  width: 100%;
}

.inner-news .fa,
.info_box span.btn.btn-primary .fa {
  font-size: 11px;
}

.main-header-top {
  background: #38287b;
  padding: 10px 0px;
  margin-bottom: 18px;
}

.main-header-top ul {
  margin-bottom: 0px;
  margin-top: 3px;
  padding: 0px;
}

.main-header-top ul li {
  display: inline-block;
}

.main-header-top ul li img {
  width: 20px !important;
  margin-right: 14px;
}

.main-header-top ul li a {
  color: #fff;
  margin-right: 12px;
}

.btn.btn-primary.know-more {
  /*height: 30px;*/
  /*padding: 0px 15px;*/
}

.main-heading {
  text-align: center;
}

.downloadapp {
  background: #063659;
  padding-bottom: 0px;
}

.downloadapp .home-aboutus .main-title {
  color: #fff;
}

.downloadapp .main-title,
.downloadapp p {
  color: #fff;
}

.downloadapp.home-aboutus ul {
  padding-left: 0px;
  margin-top: 30px;
}

.downloadapp.home-aboutus ul li {
  display: inline-block;
}

.footer-top .fa {
  color: #fff;
}

.footer-top img {
  margin: 20px 0;
}

.sip-calculator-section .grow_gif {
  text-align: center;
  margin-top: 45px;
}

.sip-calculator-section .grow_gif img {
  width: 90%;
  margin: -70px auto 0 auto;
}

.sip-calculator-section #chart_div {
  margin-top: 40px !important;
}

.sip-calculator-section .ui-widget.ui-widget-content {
  border-radius: 30px;
  height: 6px;
  background: #9c9fa1;
  border: 1px solid #9c9fa1;
}

.sip-calculator-section .ui-state-default,
.sip-calculator-section .ui-widget-content .ui-state-default,
.sip-calculator-section .ui-widget-header .ui-state-default {
  border: 1px solid #fff;
  background: #fff;
  font-weight: normal;
  border-radius: 100%;
  width: 13px;
  height: 13px;
  top: -5px;
}

.sip-calculator-section .ui-slider .ui-slider-range {
  background: #fff;
  border: 1px solid #fff !important;
}

.home-testimonials ul li {
  display: inline-block;
}

.home-testimonials .marquee {
  background: #000000;
  padding: 25px;
  width: 100%;
  box-shadow: 0px 4px 12px -8px #3a3a3a;
  border-radius: 20px 20px 0 0;
}

.home-testimonials ul li img {
  width: 150px;
  padding: 10px;
}

.home-testimonials ul {
  margin-bottom: 0px;
}

.p-0 {
  padding: 0px;
  margin-top: -11rem;
  margin-bottom: 3rem;
}

.p-0 h1 {
  color: #fff;
  margin-bottom: 20px;
}

.logo {
  z-index: 999;
}

.logo a img {
  width: auto;
  height: 75px;
  filter: drop-shadow(1px 1px 2px #023b3250);
}

.main-title.text-center span {
  font-size: 30px;
}

.bg-colour {
  background-color: #f2f2f2;
}

.inner-news h4 {
  font-size: 20px;
  word-break: break-all;
}


.item.partner-item a.img-partner img {
  padding: 4px;
  border: 1px solid #ffffff;
  box-shadow: -8px 0 8px -10px gray;
  border-radius: 10px;
  background: #fff;
}

.marquee .main-title {
  margin-bottom: 10px;
}

.why_redcorel .info_box {
  background: #ffffff;
  padding: 15px;
  text-align: center;
  border: 1px solid #eee;
  margin-bottom: 20px;
  min-height: 430px;
  height: 490px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: 15px;
  /* height: max-content; */
  padding: inherit;
  border-radius: 6px;
}

.why_redcorel .info_box:hover::before {
  content: "";
  height: 100%;
  width: 100%;
  background: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-left: 10px solid var(--rv-primary);
  border-bottom: 10px solid var(--rv-primary);
  border-radius: 6px;
}

.why_redcorel .info_box:hover::after {
  /* content: ""; */
  position: absolute;
  top: -15px;
  left: -14px;
  right: 5px;
  bottom: 0;
  width: 325px;
  height: 510px;
  background: url("../../assets/images/shape_2.png");
  z-index: -1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 4px;
  padding: 90px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.why_redcorel .info_box .icon {
  display: block;
  text-align: center;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  padding: 20px;
  position: relative;
  z-index: 9999;
  transition: 0.4s;
  border: 6px solid #fff;
}

.why_redcorel .info_box img.icon1 {
  width: 100%;
  margin-top: 5px;
  height: 260px;
  object-fit: cover;
}

.why_redcorel .info_box .icon .icon2 {
  position: absolute;
  width: 100%;
  padding: 20px;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

.why_redcorel .info_box .info {
  position: relative;
  z-index: 999;
  color: #fff;
  text-align: left;
}

.why_redcorel .info_box .info h3 {
  margin-top: 20px;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  padding: 19px 17px;
  margin: 0px;
}

.why_redcorel .info_box .info p {
  text-align: left !important;
  letter-spacing: 0;
  font-size: 14px;
  color: #000;
}

.why_redcorel .info_box:hover .icon {
  background-color: #fff;
  border: 6px solid #eee;
  transition: 0.4s;
}

.why_redcorel .info_box:hover .icon .icon2 {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
}

.info_box:hover span.btn.btn-primary {
  color: #fff;
}

.why_redcorel .info_box:hover p,
.why_redcorel .info_box:hover h3 {
  color: #000;
}

.info_box .info .content {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
}

.info_box .info .content .images {
  height: 40px;
  width: 40px;
}

.info_box .info .content .images img {
  height: 100%;
  width: 100%;
}

.why_redcorel .info_box .icon img {
  width: 50px;
  height: 50px;
}

div#services1 .item .row {
  display: block;
  margin: 0px auto;
}

.utility-box {
  position: relative;
  text-align: center;
  padding: 40px;
  margin-bottom: 30px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s;
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
  min-height: 180px;
  text-decoration: none !important;
  border: 0px;
}

.card.utility-box {
  border: none;
  padding: 30px 45px;
  text-align: left;
  height: 380px;
  width: 354px;
  transition: 0.5s;
}

.utility-box h5 {
  font-weight: 600;
  margin: 0px;
  padding: 21px 0px 0px;
}

.utility-box .cont_text p {
  font-size: 15px;
  color: var(--rv-primary-two);
  margin-top: 15px;
  transition: 0.3s;
  position: relative;
  z-index: 999;
  text-align: left;
  font-weight: 500;
}

.utility-box:hover::after {
  content: "";
  position: absolute;
  background: #0077bd;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  border-radius: 5px;
}

.utility-box:hover .cardimg-hover {
  display: block;
  margin: 0px auto;
}

.utility-box a.view_more_btn i {
  color: var(--rv-primary);
}

.utility-box:hover a.view_more_btn i {
  color: var(--rv-primary);
}

.cardimg,
.cardimg-hover {
  font-size: 56px;
  color: #ed3337;
  transition: 0.3s;
  position: relative;
  z-index: 999;
}

.utility-box:hover p {
  color: var(--rv-primary);
}

/* Styling for the testimonial box */


.testimonial-carousel .item .investor-info .img {
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.testimonial-carousel .item .investor-info .img img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-carousel .item .investor-info .content {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: justify;
}																		

.testimonial-carousel .item .investor-info .name h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.testimonial-carousel .item .investor-info .name p {
  font-size: 14px;
  color: #777;
}

.testimonial-carousel .item .investor-info p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* Hover effect on text */
.testimonial-carousel .item .investor-info .info_box:hover p,
.testimonial-carousel .item .investor-info .info_box:hover h3 {
  color: var(--rv-primary);
}

a:hover {
  color: var(--rv-secondary-two);
  text-decoration: none;
}

.card.tool-box.utility-box .icon {
  text-align: center;
}

.card.tool-box.utility-box .icon i {
  font-size: 120px;
  text-align: center;
  color: var(--rv-primary-two);
}

.card.tool-box.utility-box:hover .icon i {
  color: var(--rv-secondary);
}

.blog-top span {
  background: var(--rv-secondary);
  padding: 5px 10px;
  border-radius: 14px;
  color: #fff;
}

.contact-info-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.info-items {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-items i {
  margin-right: 10px;
  font-size: 18px;
  color: #fff;
}

.info-text a {
  color: #fff !important;
  text-transform: capitalize;
  text-decoration: none;
}

.info-text a:hover {
  text-decoration: underline;
}

.info-items span {
  font-size: 16px;
  line-height: 1.5;
}

.follow-company-icon {
  display: flex;
  gap: 15px;
}

.follow-company-icon a {
  font-size: 20px;
  color: var(--rv-secondary);
  border-radius: 50%;
  border: 1px solid gray;
  padding: 6px;
  line-height: 15px;
}

.follow-company-icon a:hover {
  color: var(--rv-secondary-two);
}

.footer-bars img {
  width: 100%;
}

ul.calculator-list .btn-primary span {
  font-size: 16px;
}

.login .marquee {
  display: none;
}

.login .main-footer {
    padding-top: 130px;
    margin-top: 0;
}

.about-cards {
  border-radius: 4px;
  position: relative;
  margin-bottom: 30px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  background-color: var(--rv-white);
  min-height: 180px;
  text-decoration: none !important;
  border: none;
  padding: 30px 30px;
  text-align: left;
  height: 290px;
  width: auto;
  box-shadow: 0 15px 45px -25px rgb(0 0 0 / 38%);
  margin: 30px 5px 10px 20px;
  border-radius: 20px;
}

.about-cards:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.about-cards:hover {
  box-shadow: 0 0 15px 0 #bbb;
  transition: 0.5s;
}

.about-cards:hover::before {
  transition: 0.5s;
  transform: rotate(-4deg) scale(1.02);
  opacity: 0.5;
}

.about-cards:hover::after {
  transition: 0.5s;
  transform: rotate(-8deg) scale(1.02);
  opacity: 0.5;
}

.about-cards::after,
.about-cards::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--rv-gradient-secondary);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

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

.services-home-section .services-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.services-home-section .services-btn button {
  width: 40px;
  height: 40px;
  background: var(--rv-primary) !important;
  box-shadow: 0 0 10px 0 #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  border: unset;
  transition: 0.5s;
}

.services-home-section .services-btn button.owl-prev {
  left: 0;
}

.services-home-section .services-btn button.owl-next {
  right: 0;
}

.services-home-section .services-btn button span {
  font-size: 40px;
  position: relative;
  line-height: 0;
  top: -6px;
}

.services-home-section .service-items {
  padding: 50px 25px;
}

.services-home-section .service-items .service-box {
  position: relative;
  transition: 0.5s;
  border-radius: 15px;
  border: 1px solid #eee;
  box-shadow: 1px 2px 20px -10px gray;
}

.services-home-section .service-items .service-box:hover {
  box-shadow: 0 0 15px 0 #bbb;
  transition: 0.5s;
}

.services-home-section .service-items .service-box:hover::before {
  transition: 0.5s;
  transform: rotate(-4deg) scale(1.02);
  opacity: 0.5;
}

.services-home-section .service-items .service-box:hover::after {
  transition: 0.5s;
  transform: rotate(-8deg) scale(1.02);
  opacity: 0.5;
}

.services-home-section .service-items .service-box::after,
.services-home-section .service-items .service-box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--rv-gradient-primary);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

.services-home-section .service-items .service-box .images img {
  height: 290px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.services-home-section .service-items .service-box .contente {
  display: flex;
  background: var(--rv-white);
  align-items: center;
  padding: 10px 20px;
  border-radius: 0 0 15px 15px;
}

.services-home-section .service-items .service-box .contente h4 {
  color: var(--rv-black);
  transition: 0.5s;
  margin-bottom: 0;
  margin-left: 15px;
  font-size: 24px;
}

.services-home-section .service-items .service-box .contente .icone {
  max-width: 70px;
  width: 100%;
  background: var(--rv-primary);
  height: 70px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-home-section .service-items .service-box .contente .icone img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.tools-section {
  position: relative;
}

.tools-section .services-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: end;
}

.tools-section .services-btn button {
  width: 40px;
  height: 40px;
  background: var(--rv-primary) !important;
  box-shadow: 0 0 10px 0 #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  border: unset;
  transition: 0.5s;
}

.tools-section .services-btn button.owl-prev {
  left: 0;
}

.tools-section .services-btn button.owl-next {
  right: 0;
}

.tools-section .services-btn button span {
  font-size: 40px;
  position: relative;
  line-height: 0;
  top: -6px;
}

.tools-section .tools-items .tool-box,
.investor-info {
  position: relative;
  transition: 0.5s;
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 20px 30px;
  text-align: left;
  height: 290px;
  width: auto;
  transition: 0.5s;
  margin: 23px 23px;
  text-align: center;
  background: var(--rv-white);
  box-shadow: 1px 3px 18px -13px;
}

.tools-section .tools-items .tool-box:hover,
.investor-info:hover {
  box-shadow: 0 0 15px 0 #bbb;
  transition: 0.5s;
}

.tools-section .tools-items .tool-box:hover::before,
.investor-info:hover::before {
  transition: 0.5s;
  transform: rotate(-4deg) scale(1.02);
  opacity: 0.5;
}

.tools-section .tools-items .tool-box:hover::after,
.investor-info:hover::after {
  transition: 0.5s;
  transform: rotate(-8deg) scale(1.02);
  opacity: 0.5;
}

.tools-section .tools-items .tool-box::after,
.tools-section .tools-items .tool-box::before,
.investor-info::after,
.investor-info::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--rv-gradient-primary);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
}

.tools-section .tools-items .tool-box .icon {
  font-size: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--rv-primary);
}

.tools-section .tools-items .tool-box .cont_text h5 {
  font-size: 22px;
  font-weight: 700;
}



a.nav-link.btn.btn-primary {
  color: #FFF;
}

ul.navbar-nav .nav-item .nav-link.btn.btn-primary:hover {
  color: var(--rv-white);
}


.main-title span {
  display: block;
  font-size: 35px;
}

.title-heading {
  padding: 25px 20px;
  text-align: center;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.title-heading .title-shape {
  max-width: 100px;
  margin: 0 auto 20px auto;
  animation: float 3s ease-in-out infinite;
  display: block;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.title-heading .main-title {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.title-heading .sub-title {
  font-size: 20px;
  color: var(--rv-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.title-box {
  text-align: center;
}

.home-testimonials .marquee .title-heading .main-title,
.bg-colour .title-heading .main-title {
  font-size: 36px;
  font-weight: 800;
  background: var(--rv-primary-two);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  text-transform: capitalize;
}

.bg-colour .title-heading .sub-title {
  font-size: 20px;
  color: var(--rv-white);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
}

.footer-bars.foot-padding {
  padding-left: 25px;
}



.contact-info-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  margin-bottom: 5px;
  color: var(--rv-black);
  font-family: var(--rv-font);
}

.contact-item i {
  font-size: 1.2rem;
  margin-right: 12px;
  color: var(--rv-primary);
  min-width: 24px;
  text-align: center;
}

.contact-item a {
  text-decoration: none;
  color: var(--rv-black);
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--rv-primary);
  text-decoration: underline;
}



.team-profiles {
  background: linear-gradient(135deg, var(--rv-primary-light), #eef5e9);
  padding: 60px 20px;
  font-family: var(--rv-font);
  overflow: hidden;
}

.team-profiles .container {
  max-width: 1200px;
  margin: auto;
}

.team-profiles .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  animation: fadeInUp 1s ease forwards;
}

.team-col {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  display: flex;
  position: relative;
}

.team-box {
  background: var(--rv-white);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.team-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(107, 181, 67, 0.1) 0%, transparent 70%);
  transform: rotate(25deg);
  transition: opacity 0.4s ease;
  opacity: 0;
  z-index: 0;
}

.team-box:hover::before {
  opacity: 1;
}

.team-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.team-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

.team-header i {
  font-size: 26px;
  color: var(--rv-primary);
  transition: transform 0.3s ease;
}

.team-box:hover .team-header i {
  transform: scale(1.2) rotate(5deg);
}

.team-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--rv-black);
  z-index: 1;
  position: relative;
}

.team-box p {
  color: var(--rv-gray);
  font-size: 15px;
  line-height: 1.7;
  z-index: 1;
  position: relative;
}

/* Optional: Subtle Entry Animation */
@keyframes fadeInUp {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

.text {
  text-align: justify;
}


.service-banner {
  position: relative;
  padding: 55px 0px 55px;
  background-color: #43b6801a;
  font-family: var(--rv-font-heading);
  text-align: center;
  overflow: hidden;
}

.banner-container {
  position: relative;
  z-index: 2;
}

.banner-title {
  font-size: 3rem;
  color: var(--rv-secondary);
  margin-top: 10px;
}

.breadcrumb-nav {
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 5px;
  font-size: 14px;
  color: var(--rv-gray);
  padding: 0;
  background-color: transparent;
}

.breadcrumb a {
  color: var(--rv-primary);
  text-decoration: none;
}

.line-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
  pointer-events: none;
}

.line-wave-bg svg {
  width: 100%;
  height: 100%;
}

/* Decorative backdrop using ::before */
.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--rv-gradient-primary);
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

/* Backdrop blur behind wave lines */
.line-wave-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

/* SVG container */
.line-wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* SVG lines themselves */
.line-wave-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.banner-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  /* makes sure only arrow buttons are clickable */
}

.banner-carousel .owl-nav span {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 15px;
  border-radius: 50%;
  font-size: 18px;
  pointer-events: auto;
  /* re-enable clicking */
  transition: background 0.3s ease;
  cursor: pointer;
}

.banner-carousel .owl-nav span:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.team-img {
  height: 200px;
  width: 200px;
  border-radius: 25px;
  object-fit: cover;
  object-position: top;
  backdrop-filter: drop-shadow(2px 4px 6px black);
  box-shadow: 0 -1px 25px -7px;
  margin-bottom: 10px;
}

.team-card-left {
  min-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-card {
  border-radius: 24px;
}

.team-profiles-section .team-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-profiles-section .team-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.team-profiles-section .team-card-left {
  background-color: var(--rv-primary-light, #f8f9fa);
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.team-profiles-section .team-img {
  width: 130px;
  height: 145px;
  object-fit: cover;
  border-radius: 25px;
  margin-bottom: 1rem;
  border: 4px solid var(--rv-primary, #0272FE);
  transition: transform 0.3s ease;
}

.team-profiles-section .team-img:hover {
  transform: scale(1.05);
}

.team-profiles-section .team-card-right {
  padding: 1.5rem 2rem;
}

.team-profiles-section .team-card h5 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--rv-black, #070707);
}

.team-profiles-section .team-card p {
  margin: 0;
  color: var(--rv-gray, #666);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .team-profiles-section .team-card {
    flex-direction: row;
  }

  .team-profiles-section .team-card-left {
    width: 280px;
    border-right: 1px solid #e2e8f0;
    border-bottom: none;
  }

  .team-profiles-section .team-card-right {
    flex: 1;
  }
}

.team-profiles-section {
  background: #f4f4f4;
}

div#top_section {
  position: relative;
}

.main-heading {
  text-align: center;
  padding-bottom:15px;
  font-family: var(--rv-font-heading);
  position: relative;
  overflow: hidden;
}

.main-heading .title-box {
  font-size: 20px;
  color: var(--rv-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  animation: fadeInDown 0.8s ease-out both;
}

/* .main-heading .title-box::before,
.main-heading .title-box::after {
  content: '';
  display: block;
  height: 2px;
  width: 40px;
  background: var(--rv-secondary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
} */

/* .main-heading .title-box::before {
  left: -50px;
}

.main-heading .title-box::after {
  right: -50px;
} */

.main-heading:hover .title-box::before,
.main-heading:hover .title-box::after {
  width: 60px;
  background: var(--rv-gradient-primary);
}

.main-heading .main-title {
  font-size: 22px;
  color: var(--rv-primary);
  font-weight: 800;
  background: var(--rv-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: fadeInUp 1s ease-out both;
}

.main-heading .main-title::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--rv-secondary-two);
  border-radius: 2px;
  animation: scaleLine 1.2s ease-in-out forwards;
}

/* Animations */
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleLine {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 60px;
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .main-heading .main-title {
    font-size: 1.75rem;
  }

  .main-heading .title-box::before,
  .main-heading .title-box::after {
    width: 25px;
  }

  .main-heading .title-box::before {
    left: -30px;
  }

  .main-heading .title-box::after {
    right: -30px;
  }
}

.bg-colour .main-heading .title-box {
  color: var(--rv-primary);
  /* or any new color you prefer */
}

.bg-colour .main-heading .main-title {
  color: var(--rv-white);
  /* fallback for older browsers */
  background: var(--rv-secondary);
  /* or your alternate gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-colour .main-heading .main-title::before {
  background: var(--rv-primary-two);
}


.rv-latest-blogs .rv-blog-card {
  position: relative;
  background: var(--rv-white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.1),
    0 6px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Hover: floating effect + layered shadows */
.rv-latest-blogs .rv-blog-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 20px 40px rgba(0, 0, 0, 0.25),
    0 30px 60px rgba(0, 0, 0, 0.2);
}

/* Decorative before/after effect */
.rv-latest-blogs .rv-blog-card::before,
.rv-latest-blogs .rv-blog-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.5s ease;
}

.rv-latest-blogs .rv-blog-card::before {
  width: 120px;
  height: 120px;
  background: var(--rv-secondary);
  top: -30px;
  left: -30px;
}

.rv-latest-blogs .rv-blog-card::after {
  width: 100px;
  height: 100px;
  background: var(--rv-primary);
  bottom: -20px;
  right: -20px;
}

.rv-latest-blogs .rv-blog-card:hover::before {
  transform: scale(1.4) translate(10px, 10px);
}

.rv-latest-blogs .rv-blog-card:hover::after {
  transform: scale(1.3) translate(-10px, -10px);
}

.rv-latest-blogs .rv-blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 15px 15px 0 0;
  transition: transform 0.5s ease;
}

.rv-latest-blogs .rv-blog-card:hover .rv-blog-thumb img {
  transform: scale(1.03);
}

.rv-latest-blogs .rv-blog-content {
  padding: 20px;
  position: relative;
  z-index: 2;
  background: var(--rv-white);
  border-radius: 0 0 15px 15px;
}

.rv-latest-blogs .rv-blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--rv-gray);
  margin-bottom: 12px;
}

.rv-latest-blogs .rv-blog-category {
  font-weight: 600;
  color: var(--rv-primary-two);
}

.rv-latest-blogs .rv-blog-date {
  font-weight: 400;
  color: var(--rv-gray);
}

.rv-latest-blogs .rv-blog-date i {
  margin-right: 6px;
  color: var(--rv-primary);
}

.rv-latest-blogs .rv-blog-title {
  font-family: var(--rv-font-heading);
  font-weight: 600;
  color: var(--rv-secondary);
  line-height: 1.4;
  margin-top: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rv-latest-blogs .rv-blog-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rv-latest-blogs .rv-blog-title a:hover {
  color: var(--rv-primary);
}

.about-home-section .images {
    float: right;
    min-height: 102px;
    max-height: 350px;
    min-width: 100px;
    max-width: 500px;
    margin-left: 20px;
    margin-bottom: 20px;
}

.top-banner-section.modern-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.banner-box {
  position: relative;
  z-index: 10;
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease-out;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 10px;
  font-size: 1rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out;
}

.breadcrumb li {
  color: #fff;
  position: relative;
}

.breadcrumb li:not(:last-child)::after {
  content: '›';
  margin-left: 10px;
  color: #55e8c5;
}

.breadcrumb a {
  color: #2a1357;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #3ed6b2;
}

/* Animated Waves */
.wave {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 120px;
  background: url('wave.svg');
  background-size: 50% 100px;
  z-index: 1;
  opacity: 0.4;
  animation: waveAnim 10s linear infinite;
}

.wave1 {
  left: 0;
  z-index: 2;
  animation-delay: 0s;
}

.wave2 {
  left: -50%;
  z-index: 1;
  opacity: 0.3;
  animation-delay: 2s;
}

.wave3 {
  left: -100%;
  z-index: 0;
  opacity: 0.2;
  animation-delay: 4s;
}

@keyframes waveAnim {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(50%);
  }
}

/* Curved SVG bottom separator */
.banner-curve {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 5;
}

span.btn-primary.btn-primary {
  background: linear-gradient(135deg, var(--rv-primary, #007bff), var(--rv-secondary, #6610f2));
  padding: 15px 25px;
  border-radius: 10px;
}

.services-page-section p strong {
  margin-left: 0;
  font-size: 18px;
  position: relative;
}

.services-page-section p strong:before {
  content: "";
  width: 20%;
  height: 2px;
  position: absolute;
  bottom: -4px;
  background-color: var(--rv-secondary-two);
}

.imgdiv {
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.imgdiv img {
    display: block;
    width: 100%;
    object-fit: contain;
    height: 100%;
}


.btn-primary-simple {
    display: inline-block;
    padding: 8px 16px;
    font-family: var(--rv-font);
    background-color: var(--rv-primary);
    color: var(--rv-white);
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary-simple:hover {
    background-color: var(--rv-primary-two);
    transform: translateY(-2px);
    text-decoration: none;
}


.signup-section {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px -6px rgb(0 0 0);
    font-family: var(--rv-font);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

    .signup-section h3 {
        font-size: 32px;
        color: var(--rv-primary);
        margin-bottom: 10px;
        font-family: var(--rv-font-heading);
    }

.signup-section p {
    font-size: 18px;
    color: var(--rv-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

    .signup-btn {
        display: inline-block;
        background: var(--rv-secondary);
        color: var(--rv-black);
        padding: 14px 30px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .signup-btn:hover {
        background: var(--rv-secondary-two);
        transform: translateY(-2px);
    }

.icon-circle {
    background: var(--rv-primary);
    color: var(--rv-white);
    border-radius: 50%;
    padding: 12px 25px;
    font-size: 50px;
    display: inline-block;
    margin-bottom: 15px;
}


section#loginsection {
    background: #dddddd;
    background-repeat: no-repeat;
    background-size: cover;
}