:root {
    --rv-primary: #29a3dc;
    --rv-primary-light: #f4f8fc;
    --rv-secondary: #98999d;
    --rv-secondary-light: #f2f5fa;
    --rv-bg-primary: #2c72a8;
    --rv-bg-secondary: #2d70a3;
    --rv-white: #ffffff;
    --rv-black: #070707;
    --rv-gray: #726d7b;
    --rv-font: "DM Sans", sans-serif;
}

body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  line-height: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #040021;
}

.theme-overlay {
  min-height: 566px;
  background: linear-gradient(60deg, rgba(5, 12, 25, 0.7) 25%, rgba(5, 12, 25, 0.35) 80%);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: " ";
  z-index: 1;
}

section {
  background-color: transparent;
}

img {
  max-width: 100%;
}

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

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

.light-gray {
  color: #999;
}

.blue-bg {
  background-color: var(--rv-secondary);
  color: #fff;
}

.light-bg {
  background-color: #f1f5fd;
}

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

p {
  color: #343338;
  font-size: 16px;
}

a {
  color: var(--rv-primary);
  font-size: 15px;
}

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

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

.btn {
  color: #fff;
  border-radius: 6px;
  padding: 5px 15px;
  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: var(--rv-secondary);
  border: 2px solid var(--rv-secondary);
  font-size: 18px;
}

.btn-primary:hover {
  background-color: var(--rv-secondary);
  border: 2px solid var(--rv-secondary);
  color: #fff;
}

.btn-secondary {
  background-color: var(--rv-primary);
  border: 2px solid var(--rv-primary);
  font-size: 18px;
}

.btn-secondary:hover {
  background-color: var(--rv-bg-primary);
  border: 2px solid var(--rv-bg-primary);
  color: #fff;
}

.btn-gradient {
  background: rgb(20, 191, 181);
  background: linear-gradient(45deg, rgb(20, 191, 181) 0%, rgb(0, 84, 255) 100%);
  border: none !important;
}

.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: 80px 0;
}

.light #logo .logo-light {
  display: block !important;
  padding: 10px 0;
}

.light #logo .logo-light img {
  height: 40px;
}

.light #logo .logo-default {
  display: none !important;
}

.light.header-sticky #logo .logo-light {
  display: none !important;
}

.light.header-sticky #logo .logo-default {
  display: block !important;
}

.light.header-sticky #logo .logo-default img {
  width: 180px;
  padding: 0px;
  border-radius: 8px;
}

.light.header-sticky ul li a {
  color: #040021 !important;
}

.light.header-sticky .btn-danger {
  color: #fff !important;
}

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

.main-heading .inn-box {
  display: block;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 55px;
}

.main-heading .inn-box h1 {
  font-size: 42px;
  font-weight: 800;
  position: relative;
  z-index: 99;
  margin-bottom: 15px;
}

.main-heading .bar {
  height: 5px;
  width: 75px;
  background: var(--rv-primary);
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  margin: auto;
}

.main-heading .bar:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 5px;
  background: #fff;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-name: move-bg;
}

@keyframes move-bg {
  0% {
    -webkit-left: 0;
    left: 0;
  }

  100% {
    -webkit-left: 100%;
    left: 100%;
  }
}

.main-heading .subheading {
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  z-index: 0;
  text-align: center;
  text-transform: uppercase;
}

.main-heading .subheading h6 {
  color: var(--rv-primary);
  font-size: 18px;
}

.investor-corner-section .main-heading .inn-box {
  /*margin-bottom: 0;*/
}

.overlay-section .main-heading .inn-box h1::after {
  background-color: #fff;
}

.overlay-section .main-heading .subheading h6 {
  /*color: #fff;*/
}

.overlay-section .main-heading .bar {
  /*background: #fff;*/
}

.overlay-section .main-heading .bar:before {
  background: #fff;
}

.white-overlay .main-heading .subheading h6 {
  color: var(--rv-primary);
}

.white-overlay .main-heading .bar {
  background: var(--rv-primary);
}

.white-overlay .main-heading .bar:before {
  background: #fff;
}

#mainMenu nav>ul>li .dropdown-menu>li>a {
  font-size: 16px;
}

#mainMenu nav>ul>li .dropdown-submenu:before {
  display: none;
}

#mainMenu nav>ul>li .dropdown-menu>li>a,
#mainMenu nav>ul>li .dropdown-menu>li>span,
#mainMenu nav>ul>li .dropdown-menu>li [class*=col-]>ul>li>a {
  color: #040021;
}

.white-overlay {
  background-color: rgba(255, 255, 255, 0.92);
  padding: 80px 0;
}

.black-overlay {
  background-color: rgba(0, 0, 0, 0.65);
  padding: 80px 0;
}

.main-overlay {
  background-color: rgba(69, 168, 222, 0.8);
  padding: 100px 0;
}

.gradient-overlay {
  background: linear-gradient(90deg, rgba(239, 248, 253, 0.5) 0%, rgb(255, 255, 255) 100%);
  padding: 60px 0;
}

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

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

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

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

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-secondary);
}

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-secondary);
}

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

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

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

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

.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-secondary);
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: var(--rv-secondary);
  opacity: 1;
  margin: 0 !important;
  outline: none;
}

.video-model .model-video video {
  width: 100%;
  padding: 7px 7px 0 7px;
  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-secondary);
  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-secondary);
  border-radius: 100%;
  text-align: center;
  line-height: 30px;
  padding: 0 !important;
  color: var(--rv-secondary);
  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;
  box-shadow: none;
}

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

.video-btn:hover {
  background-color: var(--rv-secondary);
  color: #fff;
}

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

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

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

  100% {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

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

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.bottom-scroller.active .scroller {
  background-color: var(--rv-primary);
  display: block;
  width: 40px;
  height: 40px;
  color: #fff;
  font-size: 24px;
  text-align: center;
  /*line-height: 50px;*/
  border-radius: 5px;
  position: fixed;
  right: 5px;
  bottom: 30px;
  padding: 8px;
  text-decoration: none;
}

.bottom-scroller.active .scroller:hover {
  background-color: var(--rv-primary);
}

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

.card {
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 6px 20px 1px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.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: #daeef9;
  border: 1px solid #daeef9;
  outline: none;
  color: #000;
  height: 50px;
  padding: 8px 30px;
  border-radius: 3px;
  font-size: 16px;
}

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

.form-custom .form-group select {
  display: block;
  width: 100%;
  background-color: #daeef9;
  border: 1px solid #daeef9;
  outline: none;
  color: #000;
  height: 50px !important;
  padding: 8px 30px;
  border-radius: 0;
  font-size: 16px;
}

.form-custom .form-group select:focus {
  border: none;
  border-bottom: 1px solid var(--rv-primary);
  box-shadow: none;
}

.form-custom .form-group textarea {
  display: block;
  width: 100%;
  background-color: #daeef9;
  border: 1px solid #daeef9;
  outline: none;
  color: #000;
  height: 80px;
  padding: 10px 20px 10px 30px;
  border-radius: 0;
  font-size: 16px;
}

.form-custom .form-group textarea:focus {
  border: none;
  border-bottom: 1px solid var(--rv-primary);
  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 #captcha {
  width: calc(100% - 160px);
  display: inline-block;
}

.form-custom #captcha_code {
  height: 50px !important;
  width: 80px !important;
  border-radius: 3px;
  padding: 0;
}

.form-custom .btnRefresh {
  height: 50px;
}

.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: flex;
  align-items: center;
  justify-content: space-around;
  bottom: -150px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.home-slider .main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.home-slider .main-header .header-top {
  padding: 12px 0 18px 0;
}

.home-slider .main-header .header-top .header-top-right {
  margin-left: auto;
  text-align: right;
  padding: 14px 0 0 0;
}

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

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

.home-slider .main-header .header-top .header-top-right .form-custom ::-moz-placeholder {
  color: #ddd;
  opacity: 1;
}

.home-slider .main-header .header-top .header-top-right .form-custom ::placeholder {
  color: #ddd;
  opacity: 1;
}

.home-slider .main-header .header-top .header-top-right .form-custom :-ms-input-placeholder {
  color: #ddd;
}

.home-slider .main-header .header-top .header-top-right .form-custom ::-ms-input-placeholder {
  color: #ddd;
}

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

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

.flickity-prev-next-button::before {
  display: none;
}

.flickity-prev-next-button.next::after {
  content: "\f110";
  font-family: flaticon;
  top: 24px;
  right: 18px;
  position: absolute;
  display: inline-block;
  font-size: 24px;
}

.flickity-prev-next-button.previous::after {
  content: "\f111";
  font-family: flaticon;
  top: 24px;
  right: 18px;
  position: absolute;
  display: inline-block;
  font-size: 24px;
}

.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: 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: var(--rv-secondary);
  color: #fff;
  height: 50px;
  border-radius: 2px;
  border-color: var(--rv-secondary);
  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;
}



@media only screen and (max-width: 767px) {
  .bg-section-down {
    padding-bottom: 50px !important;
  }

  .bg-section-down .text-section {
    padding-top: 40px;
  }
}

.home-about {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.home-about .image-section {
  position: relative;
  border-radius: 0 50px 50px 0;
}

.home-about .image-section img {
  width: 100%;
  border-radius: 0 50px 50px 0;
  position: relative;
  z-index: 99;
  max-height: 600px;
  -o-object-fit: cover;
  object-fit: cover;
}

.home-about .text-section {
  margin-right: 16%;
  margin-left: 10px;
}

@media only screen and (max-width: 767px) {
  .home-about .text-section {
    padding-top: 30px;
  }
}


.home-about .text-section .btn.btn-gradient {
  margin-top: 10px;
}

.home-service {
  /*background-image: url(../images/doodle.jpg);*/
}

.home-service .owl-item.active:nth-child(2)::after {
  content: "Hello";
  position: absolute;
}

.home-service .owl-item.active::nth-child(2) {
  transform: scale(1.2);
}

.service-card {
  background: linear-gradient(45deg, rgb(20, 191, 181) 0%, rgb(0, 84, 255) 100%);
  padding: 15px;
  border-radius: 8px;
}

.service-card h3 {
  color: #fff;
}

.service-card p {
  color: #fff;
}

.service-card a {
  color: #fff;
}

button.btn,
.btn:not(.close):not(.mfp-close),
a.btn:not([href]):not([tabindex]) {
  font-family: poppins, sans-serif;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  outline: none;
  padding: 15px 20px;
  position: relative;
  text-transform: uppercase;
  background-color: var(--rv-primary);
  border-color: var(--rv-primary);
  border-width: 1px;
  border-style: solid;
  color: #fff;
  transition: all 0.3s;
  outline: none;
  line-height: 18px;
  cursor: pointer;
}

.market-watch-section {
  background: url(../images/market-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0 !important;
  text-align: center;
  background-attachment: fixed;
}

.market-watch-section h2 {
  color: #fff;
  width: 70%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
  line-height: 42px;
  font-size: 42px;
}

.market-watch-section p {
  color: #fff;
  width: 70%;
  margin: 0 auto 50px auto;
}


.how-we-work::after {
  content: "";
  position: absolute;
  background-image: url(../images/line.png);
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.how-we-work .work-box {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.15);
  padding: 60px 15px 15px 15px;
  position: relative;
  margin-top: 70px;
  transition: 0.2s ease-in-out 0s all;
  z-index: 9;
  text-align: center;
}
.how-we-work .work-box .text p {
    margin-top: 15px;
}
.how-we-work .work-box .icon {
    background-color: var(--rv-primary);
    display: inline-block;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    text-align: center;
    padding: 20px;
    position: absolute;
    left: 35%;
    right: 30%;
    top: -50px;
    box-shadow: 0 -5px 15px 1px rgba(0, 0, 0, 0.15);
}

@media only screen and (max-width: 767px) {
  .how-we-work .work-box .icon {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.how-we-work .work-box .icon i {
  color: #fff;
}

.how-we-work .work-box .icon i::before {
  font-size: 40px;
  margin: 0;
}

.how-we-work .work-box .text h4 {
  position: relative;
  font-size: 20px;
  font-weight: 800;
  color: var(--rv-primary);
  text-align: center;
}

.how-we-work .work-box .box-tag {
  position: absolute;
  top: 30px;
  left: 10px;
  font-size: 90px;
  font-weight: 900;
  color: #fff;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.14);
  z-index: 0;
}

.how-we-work .work-box:hover {
  background-color: var(--rv-primary);
  transition: 0.2s ease-in-out 0s all;
  transform: translateY(-10px);
  cursor: pointer;
}

.how-we-work .work-box:hover .icon {
  background-color: #fff;
}

.how-we-work .work-box:hover .icon i {
  color: var(--rv-primary);
}

.how-we-work .work-box:hover .text h4 {
  color: #fff;
}

.how-we-work .work-box:hover .text p {
  color: #fff;
}

.how-we-work .work-box:hover .text ul li {
  color: #fff;
}

.how-we-work .work-box:hover .box-tag {
    color: #0d4067;
    transition: 0.2s ease-in-out 0s all;
    text-shadow: 3px 2px #06213636;
}

.investor-corner-section {
  background-image: url(../images/tools.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
  text-align: center;
  background-attachment: fixed;
}



.investor-corner-section .col-md-2 {
  padding: 0 10px;
}

.investor-corner-section .main-heading .inn-box h1 {
  color: #fff;
}

.investor-corner-section p {
  color: #fff;
  width: 80%;
  margin: 0 auto 80px auto;
}

.investor-corner-section .tool-box {
  background-color: #fff;
  border-radius: 6px;
  padding: 25px 15px;
  position: relative;
  margin-bottom: 25px;
}

.investor-corner-section .tool-box::after {
  content: "";
  position: absolute;
  background-color: var(--rv-primary);
  width: 100%;
  height: 0;
  transition: 0.5s;
  top: 0;
  border-radius: 6px;
  left: 0;
}

.investor-corner-section .tool-box:hover::after {
  height: 100%;
  transition: 0.5s;
  z-index: 0;
}

.investor-corner-section .tool-box .icon {
  padding: 15px 18px;
  background-color: #d4edf8;
  border-radius: 8px;
  width: 80px;
  height: 80px;
  position: relative;
  z-index: 999;
}

/* .investor-corner-section .tool-box .icon::after {
    content: "";
    position: absolute;
    background-color: #ece7ff;
    border-radius: 8px;
    width: 80px;
    height: 80px;
    left: 0;
    top: 0;
    z-index: 0;
    transform: rotate(
25deg);
} */
.investor-corner-section .tool-box .icon i {
  position: relative;
  z-index: 99;
  display: block;
  line-height: 42px;
}

.investor-corner-section .tool-box .icon i::before {
  margin: 0;
  font-size: 50px;
  color: var(--rv-primary);
}

.investor-corner-section .tool-box .title {
  font-size: 17px;
  color: #040021;
  font-weight: 800;
  line-height: 22px;
  text-transform: uppercase;
  margin-top: 12px;
  position: relative;
  z-index: 999;
}

.investor-corner-section .tool-box:hover .title {
  color: #fff;
}

.main-section.home-sip-section .sip-img {
  overflow: hidden;
}

.main-section.home-sip-section .sip-img img {
  width: 100%;
}

.home-testimonial-section {
  /*background-image: url(../images/abs-bg7.png);*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home-testimonial-section .owl-dot.active span {
  background: #8d7ad0 !important;
  outline: none;
}

.home-contact-section form.form-custom {
  padding: 25px 15px 10px;
}

.home-contact-section .contact-image {
  overflow: hidden;
}

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

.home-testimonial-section .main-heading h1 {
  /*color: #fff;*/
}

.testimonial-card {
    background: #ffffff url(../images/web-image/about-bg.png);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    background-size: cover;
    position: relative;
    width: 90%;
    box-shadow: 0 3px 15px -4px #ddd;
    margin: 20px auto;
    background-repeat: no-repeat;
    background-position: bottom;
}

.testimonial-card .icon {
  text-align: center;
  /* background-color: var(--rv-primary); */
  width: 75px;
  height: 75px;
  border-radius: 100%;
  transform: rotate(178deg);
  padding: 18px;
  position: absolute;
  left: 25px;
  top: 15px;
}

.testimonial-card .icon i {
  color: var(--rv-primary);
  opacity: 0.25;
}

.testimonial-card .icon i::before {
  font-size: 58px;
  margin: 0;
}

/* .testimonial-card .image {
    width: 100px;
    height: 100px;
    position: absolute;
    bottom: -60px;
    border-radius: 100%;
    overflow: hidden;
    left: 40%;
    border: 2px solid var(--rv-primary);
} */
.testimonial-card .image {
  width: 100px;
  height: 100px;
  bottom: -60px;
  border-radius: 100%;
  overflow: hidden;
  left: 40%;
  border: 2px solid var(--rv-primary);
  margin: 15px auto;
}

.testimonial-card .text {
  margin: 0 auto;
}

.testimonial-card .text h3 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 30px 0 0 !important;
  color: var(--rv-primary);
}

.testimonial-card .text span {
  font-size: 16px;
  color: #353535;
}

.footer-main {
  background-color: var(--rv-black);
  position: relative;
  overflow: hidden;
}

.footer-main::after {
  content: "";
  position: absolute;
  background-image: url(../images/web-image/shape2.png);
  width: 100%;
  height: 100%;
  right: 0px;
  bottom: -80px;
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  opacity: 0.2;
  z-index: 0;
}

.footer-main .footer-top {
  position: relative;
  z-index: 9;
  padding: 50px 0 0px 0;
}

.footer-main .footer-top .logo img {
  width: 180px;
}

.footer-main .footer-top .logo a {
  color: var(--rv-primary);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  display: block;
}

.footer-main .footer-top .downloadapp .foot-title {
  margin: 11px 6px 24px 6px;
}

.footer-main .footer-top .foot-title {
  color: var(--rv-white);
  margin: 18px 6px 24px 6px;
}

.footer-main .footer-top p,
.footer-main .footer-top a {
  color: var(--rv-white);
  margin-bottom: 7px;
}

.footer-main .footer-top p span b {
  /*font-weight: 300;   */
  /*font-size: 13px;*/
}

.footer-main .footer-top .menu {
  list-style-type: none;
  padding-left: 10px;
}

.footer-main .footer-top .contact-info i {
  border-radius: 100%;
  width: 28px;
  height: 28px;
  /*display: inline-block;*/
  /*padding: 8px;*/
  text-align: center;
  margin-right: 5px;
  color: var(--rv-primary);
}

.footer-main .footer-top .social i {
  background-color: var(--rv-white);
  color: var(--rv-primary);
  display: inline-block;
  width: 35px;
  height: 35px;
  border-radius: 100%;
  line-height: 18px;
  padding: 8px 2px;
  margin-right: 5px;
  text-align: center;
}

.footer-main .footer-top .social i::before {
  font-size: 18px;
  margin: 0;
}

.footer-main .footer-top .social i:hover {
  background-color: var(--rv-primary);
  color: #fff;
}

.footer-main .footer-bottom {
  padding: 10px 0 10px;
  position: relative;
  z-index: 999;
}

.footer-main .footer-bottom p {
  color: #fff;
  margin: 0;
}

@media only screen and (max-width: 575px) {
  .footer-main .footer-bottom p {
    text-align: left !important;
  }
}

.footer-main .footer-bottom a {
  color: #fff;
}

.footer-main .footer-bottom a:hover {
  color: var(--rv-primary);
}

.service-box-content {
  padding: 0 30px 25px;
  box-shadow: 20px 10px 30px rgba(16, 0, 71, 0.07);
  background: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  margin-bottom: 25px;
}

.service-box-content.st-1:hover {
  background: var(--rv-primary);
}

.service-box-content-icon i {
  font-size: 40px;
  color: #8500d1;
  width: 78px;
  height: 78px;
  background: #f8ecff;
  text-align: center;
  line-height: 78px;
  border-radius: 0 0 50% 50%;
  display: inline-block;
  transition: all 0.3s ease-out 0s;
}

.service-box-content:hover i {
  background: #ffffff;
}

.service-box-content-icon.st-1 i {
  color: var(--rv-primary);
  background: #ece7ff;
  line-height: 40px;
}

.service-box-content i {
  padding-top: 15px;
}

.service-box-content i::before {
  font-size: 48px;
  padding-top: 15px;
}

.service-box-content-text h4 {
  transition: all 0.3s ease-out 0s;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
}

.service-box-content h4 a {
  color: #040021;
  font-size: 24px;
}

.service-box-content:hover h4 a {
  color: #ffffff;
}

.service-box-content h4 a:hover {
  color: #ffffff !important;
}

.service-box-content:hover p {
  color: #ffffff;
}

.btn-white {
  background-color: #fff !important;
  border: 1px solid #fff !important;
  color: #040021 !important;
}

.contact-box {
  background-color: var(--rv-primary);
  padding: 50px 35px;
  border-radius: 30px;
}

.contact-box hr {
  border-top: none;
  box-shadow: none;
  background-color: #ffc6c2;
}

.contact-box .items h5 {
  color: #fff;
  font-size: 24px;
}

.contact-box .items p {
  color: #fff;
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}

.contact-box .items p a:hover {
  color: var(--rv-white);
}

.contact-box .items a {
  color: #fff;
  font-size: 18px;
}

#mainMenu nav>ul>li.dropdown:before {
  line-height: 40px;
  content: "\f122";
  font-family: "Flaticon";
  opacity: 1;
  position: absolute;
  right: 16px;
  color: #fff;
  font-size: 18px;
  transition: all 0.2s ease;
}

.blog-card {
  margin-bottom: 30px;
}

.blog-card .content h4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.blog-card .content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card a {
  display: block;
}

.blog-card a img {
  border-radius: 15px;
  margin-bottom: 20px;
}

.blog-card .content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.blog-card .content ul li {
  display: inline-block;
  font-size: 15px;
  color: #1c1c25;
  margin-right: 25px;
}

.blog-card .content ul li i {
  color: var(--rv-primary);
  margin-right: 5px;
  font-size: 18px;
  position: relative;
  top: 2px;
}

.blog-card .content ul li a {
  font-size: 15px;
  color: #1c1c25;
}

.blog-card .content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 20px;
}

.blog-card .content h3 a {
  color: #1c1c25;
  font-size: 20px;
}

.blog-card .content .read-more {
  color: var(--rv-primary);
  font-weight: 600;
  transition: 0.3s;
}

.blog-card .content .read-more:hover {
  letter-spacing: 1px;
  transition: 0.3s;
}

#clientCarousel .item {
  position: relative;
}

#clientCarousel .item img {
    box-shadow: 0 0 9px -3px;
    margin: 8px;
    width: 200px;
    border-radius: 15px;
    padding: 15px;
    background: #fff;
}



.whyus-section .images {
  padding-bottom: 30px;
}

.top_bar.dark-bg {
  background: var(--rv-secondary);
  position: relative;
  z-index: 9;
}

.top_bar a {
  position: relative;
}

.top_bar i {
  top: 3px;
  position: inherit;
}

.social i {
  top: 3px;
}

.social i:before {
  font-size: 16px;
  margin-left: 6px;
}

.project-two__img {
  position: relative;
  overflow: hidden;
  border-radius: 3px 3px;
  background-color: #131212;
  margin-bottom: 30px;
}

.project-two__img img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}

.project-two__overlay-box {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.84);
  transition: transform 0.4s ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.project-two__overlay-inner {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: table;
  vertical-align: middle;
  padding: 10px 15px 10px 35px;
}

.project-two__content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.project-two__middle-content {
  position: relative;
  padding-left: 20px;
  margin-bottom: 30px;
  border-left: 3px solid #000000;
}

.project-two__sub-title {
  position: relative;
  font-size: 16px;
  color: #000000;
}

.project-two__title {
  font-weight: 700;
  line-height: 42px;
  font-size: 22px;
  margin-top: 15px;
}

.project-two__title a {
  position: relative;
  color: #131212;
  transition: all 500ms ease;
}

.project-two__text {
  position: relative;
  opacity: 0.8;
  line-height: 30px;
  font-size: 16px;
  color: #0b0b0c;
  margin-top: 10px;
}

.project-two__button-two {
  position: relative;
  padding: 12px 26px;
  border-radius: 50px;
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
  background-color: #ff5152;
  transition: all 500ms ease;
}

.project-two__button-two .arrow {
  position: relative;
  top: 2px;
  margin-left: 5px;
}

.project-two__single .project-two__img:hover .project-two__overlay-box {
  transform: scale(1, 1);
  transform-origin: right center;
}

#team {
  background-image: url(../images/5.jpg);
}

#team:before {
  opacity: 0.8;
  background: #131c34;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}

#team h2 {
  color: #fff !important;
  font-size: 42px;
  line-height: 48px;
}

#team .line-both-side:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 45px;
  top: 12px;
  right: -55px;
  background: #fff;
}

#team .line-both-side:after {
  position: absolute;
  background: #fff;
  height: 2px;
  width: 45px;
  content: "";
  left: -55px;
  top: 12px;
}

.line-both-side {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

.pdb-150 {
  padding-bottom: 150px;
}

.pdt-110 {
  padding-top: 110px;
}

/*---------- [_Section_Team] -------------*/
/*========================================*/
.team-block {
  position: relative;
  background: #f6f6f6;
  overflow: hidden;
  border-radius: 8px;
  -ms-box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  transition: all 700ms ease-out 0s;
}

.team-block .team-upper-part img {
  border-radius: 8px 0px 0 40px;
  transition: all 500ms ease-out 0s;
}

.team-block .team-upper-part .social-list {
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  transition: all 500ms ease-out 0s;
  opacity: 0;
  transform: scale(0);
}

.team-block .team-bottom-part {
  padding: 20px;
  display: inline-block;
  width: 100%;
  text-align: center;
  z-index: 2;
  min-height: 251px;
}

.team-block .team-bottom-part .designation {
  color: #0c59db;
  transition: all 400ms ease-out 0s;
  height: 89px;
}

.team-block .team-bottom-part .social-list {
  display: inline-block;
  margin-top: 15px;
  text-align: center;
}

.team-block .team-bottom-part .social-list li a {
  background: transparent;
  font-size: 18px;
  color: #333;
}

.team-block .team-bottom-part .social-list li:last-child {
  margin-right: 0;
}

.team-block:after {
  position: absolute;
  content: "";
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
  height: 8%;
  width: 12px;
  bottom: 0;
  right: 0;
  transition: 500ms;
  opacity: 0.6;
}

.team-block:before {
  content: "";
  position: absolute;
  height: 70px;
  width: 80px;
  background: linear-gradient(-20deg, #0E90D5, #3032A2) !important;
  bottom: -30px;
  left: -50px;
  transform: rotate(45deg);
  transition: 500ms;
  opacity: 0.6;
}

.team-block:hover {
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}

.team-block:hover:after {
  content: none;
}

.team-block:hover:before {
  transform: rotate(135deg);
  opacity: 0;
}

.team-block:hover .team-upper-part img {
  /*margin-left: 10px;*/
}

.team-block:hover .team-bottom-part .social-list li a {
  color: #fff;
}

.team-block:hover .team-bottom-part .team-title a {
  color: #fff;
}

.team-title a {
  font-size: 22px;
  line-height: 32px;
}

.designation {
  font-size: 16px;
  line-height: 26px;
}

.team-block:hover .team-bottom-part .designation {
  color: #fff;
}

.social-list li {
  display: inline;
  float: left;
  margin-right: 15px;
}

.social-list li a {
  background: #303743;
  height: 42px;
  width: 42px;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: 50%;
  line-height: 42px;
  font-size: 16px;
}

.social-list li a:hover {
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}

.social-list.list-primary-color li a {
  background: #0c59db;
}

.social-list.list-flat li a {
  border-radius: 0;
}

.social-list.list-lg li a {
  height: 48px;
  width: 48px;
  font-size: 18px;
  line-height: 48px;
}

.social-list.list-sm li {
  margin-right: 3px;
  height: 34px;
  width: 34px;
  font-size: 14px;
  line-height: 34px;
}

.social-list.list-sm li a {
  height: 34px;
  width: 34px;
  font-size: 14px;
  line-height: 34px;
}

.minus-mrt-130 {
  margin-top: -130px;
}

.bg-pos-center-bottom {
  background-position: center bottom;
}

#wrapper,
#wrapper1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px;
}

.content {
  /*max-width: 100%;*/
  /*width: 100%;*/
  /*min-width: 100%;*/
  /*margin: 0 5%;*/
  /*margin-top: 10%;*/
  transition: 0.3s ease;
}

@media screen and (max-width: 512px) {
  .content {
    margin: 0 4%;
    margin-top: 5%;
  }
}

/* Tabs menu */
.tabs {
  margin: 0;
  background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  border-radius: 2px 2px 0px 0px;
}

@media screen and (max-width: 512px) {
  .tabs {
    height: 40px;
  }
}

/* Tab Links */
.tablinks {
  background: transparent;
  background-image: linear-gradient(90deg, transparent 70%, rgba(255, 255, 255, 0.2) 100%);
  border: none;
  outline: none;
  cursor: pointer;
  width: 25%;
  /*change depending on the number of tabs*/
  height: 80px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
  overflow: hidden;
  transition: 0.3s ease;
}

@media screen and (max-width: 512px) {
  .tablinks {
    height: 40px;
    font-size: 12px;
  }
}

.tablinks:before {
  /* Gradient */
  background-image: linear-gradient(135deg, var(--rv-primary) 0%, #242c37 100%);
  content: "";
  width: 100%;
  height: 0px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease-in-out;
  z-index: 2;
}

/*tab buttons hover*/
.tablinks:hover::before {
  height: 100%;
  z-index: 2;
  bottom: 0;
}

@media screen and (max-width: 512px) {
  .tablinks:hover::before {
    height: 0;
  }
}

/* Tab active */
.tablinks.active {
  background-color: white;
  z-index: 0;
  border-right: 0px;
  border-left: 0px;
  height: 110px;
  bottom: 0px;
  overflow: hidden;
}

@media screen and (max-width: 512px) {
  .tablinks.active {
    height: 60px;
  }
}

.tablinks.active:before {
  /* Gradient */
  content: "";
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
}

/* Tabs text */
.tablinks.active p,
.tablinks.active:hover p {
  /*opacity: 1;*/
  /*background: -webkit-linear-gradient(135deg, #bb0323 0%, #2da84d 100%);*/
  /*-webkit-text-fill-color: transparent;*/
}

.tablinks p {
  opacity: 0.6;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: 0.5s ease;
  padding: 0;
  margin: 0;
  color: #000;
  backface-visibility: hidden;
  font-weight: 800;
}

.tablinks:hover p {
  color: white;
  opacity: 1;
}

@media screen and (max-width: 512px) {
  .tablinks:hover p {
    color: #686868;
    opacity: 0.6;
  }
}

/* Tabs text bigger */
.tablinks p:before {
  content: attr(data-title);
  position: absolute;
  height: auto;
  width: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.1;
  font-size: 40px;
  transition: 1s ease-out;
  z-index: -1;
  font-weight: 600;
  top: 110%;
}

@media screen and (max-width: 512px) {
  .tablinks p:before {
    display: none;
  }
}

.tablinks:hover p:before {
  opacity: 0.1;
  font-size: 40px;
  top: -80%;
}

/* tab content */
.wrapper_tabcontent {
  background-color: white;
  margin-top: 0px;
  z-index: -3;
  position: relative;
  opacity: 1;
  padding: 40px 60px;
  overflow: hidden;
  transition: all 1s ease;
  top: 0;
  z-index: 9999;
}

.tabcontent {
  display: none;
  min-height: 180px;
}

@keyframes tabEffect {
  from {
    top: -40px;
  }

  to {
    top: 0px;
  }
}

.tabcontent.active {
  transition: all 1s ease;
  display: block;
}

/* Tab content line */
.wrapper_tabcontent:after {
  content: "";
  height: 5px;
  width: 100%;
  position: absolute;
  background-image: linear-gradient(135deg, var(--rv-primary) 0%, #242c37 100%);
  left: 0;
  bottom: 0;
  z-index: -2;
  transition: all 1s ease;
}

/* Title */
.tabcontent>h3 {
  font-size: 40px;
  top: 75px;
  transform: rotate(90deg);
  position: absolute;
  left: -90px;
  opacity: 0.1;
  width: 200px;
  height: 60px;
  background: -webkit-linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 0;
  animation: city 1s ease;
  display: none;
}

@media screen and (max-width: 512px) {
  .tabcontent h3 {
    top: 65px;
  }
}

@keyframes city {
  from {
    left: -150px;
  }

  to {
    left: -90px;
  }
}

/* Text*/
.tabcontent p {
  color: #686868;
  margin: 0;
  padding: 0;
  line-height: 28px;
  font-weight: 100;
  transition: all 1s ease;
  animation: fadeEffect 0.6s ease;
  width: 100%;
  font-size: 16px;
  font-family: "IBM Plex Sans", sans-serif;
}

@media screen and (max-width: 512px) {
  .tabcontent p {
    font-size: 14px;
    line-height: 26px;
  }
}

@keyframes fadeEffect {
  from {
    opacity: 0;
    margin-left: 30px;
  }

  to {
    opacity: 1;
    margin-left: 0;
  }
}

.rss img {
  display: none;
}

.logo-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.logo-container ul li {
  width: 257px;
  height: 120px;
  background: #fff;
  border-radius: 10px;
  float: left;
/*
	  padding: 20px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.25);
	*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container ul li a {
  text-decoration: none !important;
  display: inline-block;
}

.logo-holder {
  text-align: center;
}

/* Logo-1 */
.logo-1 h3 {
  color: #e74c3c;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 1.3;
}

.logo-1 p {
  font-size: 14px;
  letter-spacing: 8px;
  text-transform: uppercase;
  padding-left: 10px;
  color: #34495e;
  font-weight: 600;
}

/* Logo-2 */
.logo-2 h3 {
  color: #e74c3c;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 50px;
  text-transform: uppercase;
  line-height: 1;
}

.logo-2 p {
  font-size: 14px;
  padding-left: 0px;
  color: #34495e;
  font-weight: 600;
  text-transform: uppercase;
}

/* Logo-3 */
.logo-3 h3 {
  color: #e74c3c;
  font-family: "Oswald", sans-serif;
  font-weight: 300;
  font-size: 50px;
  line-height: 1.3;
}

.logo-3 p {
  font-size: 14px;
  letter-spacing: 7px;
  text-transform: uppercase;
  background: #34495e;
  font-weight: 400;
  color: #fff;
  padding-left: 5px;
}

/* Logo-4 */
.logo-4 h3 {
  color: #e74c3c;
  font-weight: 300;
  font-size: 50px;
  line-height: 0.65;
  font-family: "Lobster", cursive;
}

.logo-4 p {
  font-size: 14px;
  margin-left: 50px;
  color: #545454;
  font-weight: 400;
  text-transform: capitalize;
  font-style: italic;
  font-family: "Mansalva", cursive;
}

/* Logo-5 */
.logo-5 h3 {
  color: #e74c3c;
  font-weight: 300;
  font-size: 50px;
  line-height: 0.6;
  font-family: "Bangers", cursive;
  letter-spacing: 5px;
}

.logo-5 p {
  font-size: 14px;
  margin-left: 0;
  color: #545454;
  font-weight: 400;
  text-transform: capitalize;
  font-style: italic;
  font-family: "Mansalva", cursive;
  position: relative;
}

.logo-5 p:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 12px;
  background: #545454;
  left: 0px;
  top: 5px;
}

.logo-5 p:after {
  position: absolute;
  content: "";
  width: 17px;
  height: 12px;
  background: #545454;
  right: 0px;
  top: 5px;
}

/* Logo-6 */
.logo-6 h3 {
  color: #e74c3c;
  font-family: "Cinzel", serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
}

.logo-6 h3 span {
  background: #e74c3c;
  color: #fff;
  display: inline-block;
  line-height: 1.8;
  padding: 0 16px;
}

/* Logo-7 */
.logo-7 {
  width: 100%;
  display: inline-block;
}

.logo-7 i {
  font-size: 60px;
  display: inline-block;
  float: left;
  margin-right: 5px;
  color: #34495e;
}

.logo-7 .left {
  float: left;
  margin-left: 10px;
  text-align: left;
}

.logo-7 a {
  color: #545454;
}

.logo-7 .left h3 {
  font-family: "Muli", sans-serif;
  font-weight: 300;
  font-size: 25px;
  text-transform: uppercase;
  color: #e74c3c;
}

.logo-7 .left p {
  text-align: right;
  font-size: 14px;
  color: #919191;
  font-style: italic;
  border-top: 1px dashed #919191;
  letter-spacing: 2px;
  padding-top: 3px;
  font-family: "Lobster", cursive;
}

/* Logo-8 */
.logo-8 h3 {
  color: #e74c3c;
  font-family: "Cinzel", serif;
  font-weight: 300;
  font-size: 30px;
  line-height: 1.3;
}

.logo-8 h3 span {
  color: #e74c3c;
  display: inline-block;
  line-height: 1.8;
  padding: 0px;
  transform: scaleX(-1);
  opacity: 0.5;
  margin-left: -34px;
}

/* Logo-9 */
.logo-9 {
  position: relative;
}

.logo-9 i {
  font-size: 80px;
  position: absolute;
  z-index: 0;
  text-align: center;
  width: 100%;
  left: 0;
  top: -10px;
  color: #34495e;
  animation: ring 2s ease infinite;
}

.logo-9 h3 {
  font-family: "Lora", serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 40px;
  position: relative;
  z-index: 1;
  color: #e74c3c;
  text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff;
}

@keyframes ring {
  0% {
    transform: rotate(-15deg);
  }

  2% {
    transform: rotate(15deg);
  }

  4% {
    transform: rotate(-18deg);
  }

  6% {
    transform: rotate(18deg);
  }

  8% {
    transform: rotate(-22deg);
  }

  10% {
    transform: rotate(22deg);
  }

  12% {
    transform: rotate(-18deg);
  }

  14% {
    transform: rotate(18deg);
  }

  16% {
    transform: rotate(-12deg);
  }

  18% {
    transform: rotate(12deg);
  }

  100%,
  20% {
    transform: rotate(0);
  }
}

/* logo-10 */
.logo-10 h3 {
  font-family: "Muli", sans-serif;
  font-weight: 100;
  text-transform: uppercase;
  font-size: 40px;
  color: #545454;
  line-height: 0.3;
}

.logo-10 p {
  color: rgba(255, 255, 255, 0);
  background: #e74c3c;
}

/* Followed */
.follow {
  position: fixed;
  right: 20px;
  bottom: 10px;
}

.follow img {
  width: 40px;
  height: 40px;
  border: 2px solid #3F51B5;
  border-radius: 100%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  padding: 5px;
  background: #fff;
}

@media only screen and (max-width: 736px) {
  .logo-container ul {
    width: 100%;
    text-align: center;
  }

  .logo-container ul li {
    width: 290px;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
  }

  .logo-4 p {
    margin-top: 2px;
  }

  .Logos {
    margin-top: 20px;
  }
}

h1.Logos {
  font-weight: 400;
  font-family: "Bangers", cursive;
  font-size: 40px;
  text-align: center;
  letter-spacing: 3px;
  text-shadow: 2px 2px 0px #2d303a, -2px -2px 0px #2d303a, -2px 2px 0px #2d303a, 2px -2px 0px #2d303a;
  color: #fff;
}

p.para {
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 30px;
  font-family: "Lora", serif;
  padding-top: 5px;
  color: #333333;
}

.bottom-scroller {
  z-index: 99999999;
  position: fixed;
}

.useful-links li {
  display: inline-block;
  margin-bottom: 44px;
}

.useful-links li a {
  padding: 18px 32px;
  background: var(--rv-primary);
  color: #fff;
  border: 1;
  border-radius: 2px;
}

div#testomialCarousel1 img {
  height: 300px;
}

@media only screen and (max-width: 767px) {
  .main-section.contact_us {
    padding-top: 100px;
  }
}

.main-section.contact_us img {
  padding: 14px;
}

.light #logo .logo-light {
  display: none !important;
}

.light #logo .logo-default {
  display: block !important;
}

.light #logo .logo-default img {
  width: 150px;
}

.service_box {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.service_box .service_img img {
  height: 210px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service_box .service_text {
  padding: 15px;
  position: relative;
}

.service_box .service_text .tags {
  position: absolute;
  top: -79px;
  bottom: -7vh;
  left: 12px;
}

.service_box .service_text .name {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
}

.service_box .service_text .description {
  line-height: 16px;
  font-size: 15px;
  margin-bottom: 5px;
}

.service_box .service_text .price {
  font-size: 18px;
  font-weight: 600;
  color: var(--rv-primary);
}

.service_box .service_text .tags .tag {
  background-color: var(--rv-primary);
  padding: 5px 10px;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  margin-top: 3px;
  display: inline-block;
}

.service_box .service_text .btn-realestate {
  background-color: var(--rv-primary);
  padding: 8px 10px;
  border-radius: 30px;
  color: #fff;
  font-size: 12px;
  height: auto;
  margin: 0;
}

/* Horizontal Tab */
.seiin_tab .nav-tabs .nav-item {
  display: block;
  width: 33.33%;
}

.seiin_tab .nav-tabs .nav-item .nav-link {
  display: block;
  width: 100%;
  margin: 0;
  border-radius: 0;
  border: none;
  font-size: 15px;
  outline: none;
}

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

.seiin_tab.seiin_tab_two .nav-tabs {
  width: 100%;
  display: block;
  border: none;
}

.seiin_tab.seiin_tab_two .nav-tabs .nav-item {
  display: inline-block !important;
  width: calc(33% - 2px) !important;
}

.seiin_tab.seiin_tab_two .nav-tabs .nav-item .nav-link {
  background-color: transparent;
  border-bottom: 2px solid #ddd;
}

.seiin_tab.seiin_tab_two .nav-tabs .nav-item .nav-link.active {
  color: var(--rv-primary) !important;
  border-bottom: 2px solid var(--rv-primary);
}

.seiin_tab.seiin_tab_two .tab-content {
  width: 100%;
  margin: 15px 0;
}

/* Verticle Tab */
.seiin_verticel_tab {
  margin: 20px 0;
}

.seiin_verticel_tab .col-md-4 {
  padding: 0 8px;
}

.seiin_verticel_tab .nav-tabs {
  display: inline-block;
  width: 240px;
}

.seiin_verticel_tab .nav-item {
  display: block !important;
  width: 100% !important;
}

.seiin_verticel_tab .nav-item .nav-link {
  display: block;
  width: 100%;
  outline: none;
}

.seiin_verticel_tab .nav-item .nav-link.active {
  background-color: var(--rv-primary);
  color: #fff;
}

.seiin_verticel_tab .tab-content {
  display: inline-block;
  width: calc(100% - 245px);
  vertical-align: top;
  padding-left: 15px;
}

#serviceModal .modal-dialog {
  margin: 150px auto;
}

.seiin-form-box {
  background-color: #fff;
  position: relative;
  box-shadow: 0px 5px 16px 3px rgba(204, 204, 204, 0.8);
  border-radius: 15px;
  padding: 30px;
}

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

.seiin-heading h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

.vacancy_box {
  position: relative;
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
}

.vacancy_box .vacancy_text {
  padding: 15px;
  position: relative;
}

.vacancy_box .vacancy_text .name {
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
}

.vacancy_box .vacancy_text p {
  margin-bottom: 5px;
}

.vacancy_box .vacancy_text .description {
  overflow: hidden;
  line-height: 22px;
}

.vacancy_box .vacancy_text .btn-group {
  box-shadow: none;
  margin-top: 10px;
}

.vacancy_box .vacancy_text .btn-group .btn-apply {
  padding: 10px;
  height: auto;
  border-radius: 30px;
}

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

.career_info_box {
  background-color: #e9f2f7;
}

.career_info_box .col-md-7 {
  padding: 0;
}

.career_info_box .images {
  height: 340px;
  overflow: hidden;
}

.career_info_box .images img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.career_info_box .text {
  display: block;
  text-align: center;
  padding: 65px 20px;
}

.career_info_box .text p {
  line-height: 24px;
}

.fix_right {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 9;
}

.fix_right a {
  /*display: block;*/
  /*width: 40px;*/
  /*height: 40px;*/
  /*background-color: var(--rv-secondary);*/
  /*text-align: center;*/
  /*padding: 7px;*/
  /*color: #fff;*/
  /*border-radius: 5px;*/
  background: #fff;
  color: #404040;
  position: fixed;
  display: block;
  font-weight: 400;
  justify-content: space-between;
  z-index: 98;
  bottom: 28px;
  right: 54px;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 30px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

/* TICKER */
.ticker_section {
  padding: 40px 0;
}

.ticker_section .tickers {
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: space-around;
  align-content: center;
  align-content: center;
}

.tickers .ticker_item {
  position: relative;
  box-shadow: 0 1px 4px 1px rgba(37, 46, 40, 0.11);
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
  padding: 8px 14px;
  margin: 0 5px;
}

.tickers .ticker_item .name {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  letter-spacing: 1px;
}

.tickers .ticker_item .price {
  display: block;
  font-size: 15px;
  padding-top: 5px;
  line-height: 18px;
}

.tickers .ticker_item .difference_percent {
  position: relative;
  color: #39b559;
  display: block;
  line-height: 18px;
  font-size: 12px;
}

.tickers .ticker_item .difference_percent::after {
  content: "\f144";
  position: absolute;
  font-family: "bootstrap-icons";
  font-size: 18px;
  bottom: 1px;
  right: -16px;
}

.tickers .ticker_item .difference_percent.negative {
  color: #d33f3f;
}

.tickers .ticker_item .difference_percent.negative::after {
  content: "\f11e";
}

/*DARK BOX*/
/*        .tickers .ticker_item {
    background-color: #24252ad9;
    }
    .tickers .ticker_item .name {
    color: #fff;
    }
    .tickers .ticker_item .price {
    color: #fff;
    }
    .tickers .ticker_item .difference_percent {
    color: #3cbd5d;
    }
    .tickers .ticker_item .difference_percent.negative {
    color: #f95959;
    }*/
/* TICKER */
.mvv_box {
  background: var(--rv-primary);
  color: #fff;
  border-radius: 5px;
  min-height: 245px;
}

.mvv_box h4,
.mvv_box p {
  color: #fff;
}

@media only screen and (min-width: 992px) {
  .header-extras .portfolio-login {
    margin-top: 0px;
  }
}

.form-custom .btnRefresh {
  margin-top: 0 !important;
}

.contact_info_sec {
  height: 380px;
}

@media only screen and (max-width: 600px) {
  .ticker-area .tickers {
    display: flex;
    justify-content: space-around;
    position: relative;
    flex-wrap: wrap;
  }

  .slider1,
  .slider2,
  .slider3,
  .slider4 {
    height: 300px !important;
  }

  .tickers .ticker_item {
    width: 34%;
  }

  .header-extras {
    display: none;
  }

  .social.text-right {
    text-align: center !important;
  }

  .portfolio_login {
    display: block;
  }

  .seiin_verticel_tab .nav-tabs,
  .seiin_verticel_tab .tab-content {
    width: 100%;
  }

  .top_bar .fs-sm.me-3:first-child {
    display: block;
  }

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

  .main-heading .inn-box {
    margin-bottom: 10px;
  }

  #horizonTab .nav-item button {
    padding: 15px 3px;
    font-size: 13px;
  }

  #testomialCarousel .owl-nav .owl-next,
  #teamCarousel .owl-nav .owl-next {
    right: -20px !important;
  }

  #testomialCarousel .owl-nav .owl-prev,
  #teamCarousel .owl-nav .owl-prev {
    left: -20px !important;
  }

  .investor-corner-section {
    margin-top: 0px !important;
  }

  .contact_info_sec {
    top: 18%;
    height: 380px;
    width: 100%;
  }

  .contact_field {
    padding: 20px;
  }

  .contact_info_sec {
    margin-top: 23px;
    position: relative;
  }

  #horizonTabTwo li button,
  .seiin_tab.seiin_tab_two .nav-tabs .nav-item .nav-link {
    /*padding: 17px 16px 11px;*/
    padding: 17px 6px;
    font-size: 11px;
  }

  .TabbedPanelsContent tabel tr td strong,
  .TabbedPanelsContent tabel tr td a {
    font-size: 10px;
  }

  .filter-button-group {
    flex-wrap: wrap;
  }

  .filter-button-group .btn.btn-default {
    margin-bottom: 4px;
  }

  .fixed_bar .bar_item span {
    display: none;
  }

  .fixed_bar {
    position: fixed;
    top: 93.5% !important;
    right: 0;
    z-index: 9999;
    display: flex;
    left: 0;
    background: #000;
    justify-content: center;
    padding: 5px 0px;
  }

  .fixed_bar .bar_item {
    display: block;
    background-color: #000;
    padding: 6px 6px;
    margin-bottom: 0px !important;
    border-radius: 5px !important;
    color: #fff;
    text-decoration: none;
    vertical-align: middle;
    transition: 0.4s ease-in-out;
    transform: translate(0px, 0px) !important;
    margin-right: 6px;
  }

  .fixed_bar .bar_item img {
    padding-right: 0px !important;
  }
}

.portfolio_login {
  display: none;
}

/* CSS Multiple Whatsapp Chat */
.whatsapp-name {
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 0;
  margin-bottom: 0;
  line-height: 0.5;
  color: #fff;
}

.head-home p {
  color: #fff;
}

#whatsapp-chat {
  box-sizing: border-box !important;
  outline: none !important;
  position: fixed;
  width: 350px;
  border-radius: 10px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
  bottom: 90px;
  right: 30px;
  overflow: hidden;
  z-index: 999999;
  animation-name: showchat;
  animation-duration: 1s;
  transform: scale(1);
}

a.blantershow-chat {
  /*   background: #009688; */
  background: #000;
  color: #404040;
  /*position: fixed;*/
  /*display: flex;*/
  font-weight: 400;
  justify-content: space-between;
  z-index: 9999;
  bottom: 90px;
  right: 1px;
  font-size: 15px;
  padding: 10px 10px;
  border-radius: 5px;
  box-shadow: 0 1px 15px rgba(32, 33, 36, 0.28);
}

a.blantershow-chat svg {
  transform: scale(1.2);
  /*margin: 0 10px 0 0;*/
}

.header-chat {
  /*   background: linear-gradient(to right top, #6f96f3, #164ed2); */
  background: #009688;
  background: #095e54;
  color: #fff;
  padding: 20px;
}

.header-chat h3 {
  margin: 0 0 10px;
}

.header-chat p {
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.info-avatar {
  position: relative;
}

.info-avatar img {
  /*border-radius: 100%;*/
  width: 95px;
  float: left;
  margin: 0 10px 0 0;
}

a.informasi {
  padding: 20px;
  display: block;
  overflow: hidden;
  animation-name: showhide;
  animation-duration: 0.5s;
}

a.informasi:hover {
  background: #f1f1f1;
}

.info-chat span {
  display: block;
}

#get-label,
span.chat-label {
  font-size: 12px;
  color: #888;
}

#get-nama,
span.chat-nama {
  margin: 5px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

#get-label,
#get-nama {
  color: #fff;
}

span.my-number {
  display: none;
}

/* .blanter-msg {
  color: #444;
  padding: 20px;
  font-size: 12.5px;
  text-align: center;
  border-top: 1px solid #ddd;
} */
textarea#chat-input {
  border: none;
  font-family: "Arial", sans-serif;
  width: 100%;
  height: 20px;
  outline: none;
  resize: none;
  padding: 10px;
  font-size: 14px;
}

a#send-it {
  width: 30px;
  font-weight: 700;
  padding: 10px 10px 0;
  background: #eee;
  border-radius: 10px;
}

a#send-it svg {
  fill: #a6a6a6;
  height: 24px;
  width: 24px;
}

.first-msg {
  background: transparent;
  padding: 30px;
  text-align: center;
}

.first-msg span {
  background: #e2e2e2;
  color: #333;
  font-size: 14.2px;
  line-height: 1.7;
  border-radius: 10px;
  padding: 15px 20px;
  display: inline-block;
}

.start-chat .blanter-msg {
  display: none;
}

#get-number {
  display: none;
}

a.close-chat {
  position: absolute;
  top: 5px;
  right: 15px;
  color: #fff;
  font-size: 30px;
}

@keyframes ZpjSY {
  0% {
    background-color: rgb(182, 181, 186);
  }

  15% {
    background-color: rgb(17, 17, 17);
  }

  25% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes hPhMsj {
  15% {
    background-color: rgb(182, 181, 186);
  }

  25% {
    background-color: rgb(17, 17, 17);
  }

  35% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes iUMejp {
  25% {
    background-color: rgb(182, 181, 186);
  }

  35% {
    background-color: rgb(17, 17, 17);
  }

  45% {
    background-color: rgb(182, 181, 186);
  }
}

@keyframes showhide {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes showchat {
  from {
    transform: scale(0);
    opacity: 0;
  }
}

@media screen and (max-width: 480px) {
  #whatsapp-chat {
    width: auto;
    left: 5%;
    right: 5%;
    font-size: 80%;
  }

  .conter {
    width: 100% !important;
  }
}

.hide {
  display: none;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.show {
  display: block;
  animation-name: showhide;
  animation-duration: 0.5s;
  transform: scale(1);
  opacity: 1;
}

.whatsapp-message-container {
  display: flex;
  z-index: 1;
}

.whatsapp-message {
  padding: 7px 14px 6px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  max-width: calc(100% - 66px);
}

.whatsapp-chat-body {
  padding: 20px 20px 20px 10px;
  background-color: rgb(230, 221, 212);
  position: relative;
}

.whatsapp-chat-body::before {
  display: block;
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
  z-index: 0;
  opacity: 0.08;
  background-image: url("https://elfsight.com/assets/chats/patterns/whatsapp.png");
}

.dAbFpq {
  display: flex;
  z-index: 1;
}

.eJJEeC {
  background-color: rgb(255, 255, 255);
  width: 52.5px;
  height: 32px;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  opacity: 0;
  transition: all 0.1s ease 0s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
}

.hFENyl {
  position: relative;
  display: flex;
}

.ixsrax {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  background-color: rgb(158, 157, 162);
  animation-name: ZpjSY;
}

.dRvxoz {
  height: 5px;
  width: 5px;
  margin: 0px 2px;
  background-color: rgb(182, 181, 186);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  top: 0px;
  animation-name: hPhMsj;
}

.kAZgZq {
  padding: 7px 14px 6px;
  /*background-color: rgb(255, 255, 255);*/
  border-radius: 0px 8px 8px;
  position: relative;
  transition: all 0.3s ease 0s;
  opacity: 0;
  transform-origin: center top 0px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.13) 0px 1px 0.5px;
  margin-top: 4px;
  margin-left: -54px;
  width: 100%;
  /*max-width: calc(100% - 66px);*/
}

.kAZgZq::before {
  position: absolute;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAmCAMAAADp2asXAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAACQUExURUxpccPDw9ra2m9vbwAAAAAAADExMf///wAAABoaGk9PT7q6uqurqwsLCycnJz4+PtDQ0JycnIyMjPf3915eXvz8/E9PT/39/RMTE4CAgAAAAJqamv////////r6+u/v7yUlJeXl5f///5ycnOXl5XNzc/Hx8f///xUVFf///+zs7P///+bm5gAAAM7Ozv///2fVensAAAAvdFJOUwCow1cBCCnqAhNAnY0WIDW2f2/hSeo99g1lBYT87vDXG8/6d8oL4sgM5szrkgl660OiZwAAAHRJREFUKM/ty7cSggAABNFVUQFzwizmjPz/39k4YuFWtm55bw7eHR6ny63+alnswT3/rIDzUSC7CrAziPYCJCsB+gbVkgDtVIDh+DsE9OTBpCtAbSBAZSEQNgWIygJ0RgJMDWYNAdYbAeKtAHODlkHIv997AkLqIVOXVU84AAAAAElFTkSuQmCC");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  top: 0px;
  left: -12px;
  width: 12px;
  height: 19px;
}

.bMIBDo {
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.4);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.iSpIQi {
  font-size: 14px;
  line-height: 19px;
  margin-top: 4px;
  color: rgb(17, 17, 17);
}

.cqCDVm {
  text-align: right;
  margin-top: 4px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(17, 17, 17, 0.5);
  margin-right: -8px;
  margin-bottom: -4px;
}

.check-box {
  display: flex;
  align-items: flex-start;
}

.check-box .form-check-input {
  /*margin: 10px;*/
}

.online-icon {
  background: #4caf50;
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 5px;
}

#submit {
  background-color: var(--rv-secondary);
}

.useful-links li a:hover,
.useful-links li a:active,
.useful-links li a:focus {
  color: #fff !important;
}

.team-bottom-part .team-title {
  height: 61px;
}

.gallery .title {
  background: var(--rv-primary);
  padding: 8px 20px;
  color: #fff;
  text-align: center;
}

.info ul li b,
.info div div b,
.info div b,
.info div div {
  font-family: "DM Sans" !important;
  color: #343338;
  font-size: 16px;
  font-weight: 400;
  text-transform: none;
  line-height: 1.7;
  letter-spacing: 0;
}

.info ul li {
  list-style-type: none;
}

#testomialCarousel .owl-nav,
#teamCarousel .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
}

#testomialCarousel .owl-nav .owl-prev,
#teamCarousel .owl-nav .owl-prev {
  float: left;
  background: rgba(0, 0, 0, 0);
  border: none;
  box-shadow: none;
  left: -46px;
}

#teamCarousel .owl-nav .owl-prev {
  left: -70px;
}

#testomialCarousel .owl-nav .owl-next,
#teamCarousel .owl-nav .owl-next {
  float: right;
  background: #fff;
  border: none;
  right: -46px;
  box-shadow: none;
}

#teamCarousel .owl-nav .owl-next {
  right: -70px;
}

#testomialCarousel .owl-nav span,
#teamCarousel .owl-nav span {
  font-size: 88px;
  padding: 35px 10px !important;
  color: var(--rv-primary);
}

.banner_text {
  background: var(--rv-primary);
  display: block;
}

.banner_text a {
  font-size: 19px;
}

.thumbnail {
  display: block;
  padding: 4px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: border 0.2s ease-in-out;
}

.filter-button-group .btn {
  background: #0e598c;
  color: #fff;
  margin-right: 4px;
}

.filter-button-group,
.filter-button-group:hover {
  position: relative;
  display: flex;
  vertical-align: middle;
  justify-content: center;
  align-items: center;
  box-shadow: none;
}

.filter-button-group .btn.is-checked {
  background: #8ec74d;
}

.portfolio-item,
.grid-item,
.grid-item .thumbnail {
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

.fixed_bar {
  position: fixed;
  top: 40%;
  right: 0;
  z-index: 9999;
}

.fixed_bar .bar_item {
  display: block;
  background-color: #000;
  padding: 4px 8px;
  margin-bottom: 5px;
  border-radius: 5px 0 0 5px;
  color: #fff;
  text-decoration: none;
  vertical-align: middle;
  transition: 0.4s ease-in-out;
  transform: translate(122px, 0px);
}

.fixed_bar .bar_item i {
  display: inline-block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 30px;
  font-size: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

.fixed_bar .bar_item span {
  font-size: 18px !important;
  line-height: 34px;
}

.fixed_bar .bar_item:hover {
  background-color: #000;
  transition: 0.4s ease-in-out;
  transform: translate(0px, 0px);
}

.fixed_bar .bar_item img,
.fixed_bar .bar_item svg {
  padding-right: 9px;
}

.fixed_bar .bar_item svg {
  padding: 3px;
  margin-right: 11px;
}

.foot-col .social {
  padding-top: 20px;
}

.foot-col.contact-info {
  padding: 15px 10px;
}

.signup {
  border: 2px solid var(--rv-primary);
  border-radius: 2px;
}

@font-face {
  font-family: hindifont;
  src: url(../fonts/amita/Amita-Regular.ttf);
}

.hindifont {
  /*font-family: hindifont !important;*/
  font-size: 15px;
}

.conters h1 i {
  color: #fff;
  font-size: 71px;
}

.conter {
  /*position: absolute;*/
  /*top:50%;*/
  /*left: 50%;*/
  /*transform: translate(-50%, -50%);*/
  /*width: 400px;*/
  /*background: white;*/
  /*border-radius: 10px;*/
  width: 400px;
  background: #2a4465;
  border-radius: 10px;
  margin: 0px auto;
  padding: 68px 0px;
}

.conters h1 {
  text-align: center;
  padding: 0 0 20px 0;
  border-bottom: 1px solid silver;
  background: var(--rv-primary);
  width: -moz-max-content;
  width: max-content;
  padding: 30px 45px;
  border-radius: 68%;
  margin-top: -58px;
  margin: 0px auto;
  position: absolute;
  left: 0;
  right: 0;
  margin-top: -55px;
}

.conter form {
  padding: 22px 40px 0px;
  box-sizing: border-box;
}

.conter form .txt_field {
  position: relative;
  border-bottom: 2px solid #ffffff;
  margin: 30px 0;
}

.txt_field input {
  width: 100%;
  padding: 0 5px;
  height: 40px;
  font-size: 16px;
  border: none;
  background: none;
  outline: none;
  color: #fff;
}

.conter .txt_field label {
  position: absolute;
  top: 50%;
  left: 5px;
  color: #ffffff;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  transition: 0.5s;
}

.conter .txt_field span::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #2691d9;
  transition: 0.5s;
}

.conter .txt_field input:focus~label,
.conter .txt_field input:valid~label {
  top: -5px;
  color: #2691d9;
}

.conter .txt_field input:focus~span::before,
.conter .txt_field input:valid~span::before {
  width: 100%;
}

.conter .pass {
  margin: -5px 0 20px 5px;
  color: #a6a6a6;
  cursor: pointer;
}

.conter .pass:hover {
  text-decoration: underline;
}

.conter input[type=submit] {
  width: 100%;
  height: 50px;
  border: 1px solid;
  background: #2691d9;
  border-radius: 25px;
  font-size: 18px;
  color: #e9f4fb;
  font-weight: 700;
  cursor: pointer;
  outline: none;
}

.conter input[type=submit]:hover {
  border-color: #2691d9 transparent 0.5s;
}

.conter .signup_link {
  margin: 30px;
  text-align: center;
  font-size: 16px;
  color: #666666;
}

.conter .signup_link a {
  color: #2691d9;
  text-decoration: none;
}

.conter .signup_link a:hover {
  text-decoration: underline;
}

.txt_field.d-flex input {
  height: 18px;
  width: auto;
}

.txt_field.d-flex {
  border-bottom: 0px !important;
}

.txt_field.d-flex span {
  margin-right: 21px;
  color: #fff;
  margin-top: -2px;
  margin-left: 5px;
}

.conters .modal-dialog {
  margin-top: 20%;
}

#teamModalSix1 .modal-dialog {
  max-width: 900px;
}

.skiptranslate {
  /*display: none;*/
}

#buttons {
  top: 0px;
}

.language {
  background: #fff;
  position: fixed !important;
  right: 0;
  top: 0;
  margin: 5px;
  padding: 3px 9px;
  border-radius: 5px;
  z-index: 999;
}

.border-1 {
  border: 0px solid var(--rv-white);
  margin: 15px 0px;
}

.footer-list1 {
  display: flex;
  justify-content: center;
  color: var(--rv-white);
  flex-wrap: wrap;
}

@media only screen and (max-width: 575px) {
  .footer-list1 {
    justify-content: flex-start;
  }
}

.footer-list1 .lo-image {
  padding: 10px 15px;
  display: flex;
  align-items: center;
}

.footer-list1 .lo-image .lobg {
  height: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  padding: 0 7px;
  margin-right: 15px;
}

.footer-list img {
  margin: 0px auto;
  display: block;
}

.footer-list1 img {
  width: 80px;
  margin-right: 10px;
}

.accordion-container {
  width: 80%;
  max-width: 600px;
}

.accordion-item {
  background-color: #FFFFFF;
  /* White background for items */
  border: 1px solid #E0E0E0;
  /* Light border */
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Softer shadow */
}

.accordion-header {
  background-color: #6C63FF;
  /* Soft purple */
  color: #FFFFFF;
  /* White text */
  padding: 15px;
  font-size: 18px;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px 8px 0 0;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #5753C9;
  /* Darker shade of purple */
}

.accordion-content {
  background-color: #FAFAFA;
  /* Very light grey for content */
  overflow: hidden;
  padding: 0 15px;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.accordion-content p {
  margin: 15px 0;
  line-height: 1.5;
}

.icon {
  transition: transform 0.3s ease;
}

.mo-section .features-section .tyi-items .image {
  display: flex;
  justify-content: center;
}

.mo-section .features-section .tyi-items .image .image img {
  width: auto;
}

.mo-section .features-section .features-list {
  padding-left: 0;
}

.mo-section .features-section .features-list li {
  margin-bottom: 30px;
  position: relative;
  list-style: none;
}

.mo-section .features-section .features-list li.active a .tuia-card::before {
  opacity: 1;
  right: -24px;
  top: -80px;
}

.mo-section .features-section .features-list li a {
  display: block;
  text-decoration: none;
}

.mo-section .features-section .features-list li a .tuia-card {
  background-color: var(--rv-white);
  padding: 15px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  transition: 0.5s;
  box-shadow: 0 0 15px 0 #bbb;
}

.mo-section .features-section .features-list li a .tuia-card:hover {
  transition: 0.5s;
}

.mo-section .features-section .features-list li a .tuia-card:hover::before {
  opacity: 0.5;
  right: -24px;
  top: -80px;
}

.mo-section .features-section .features-list li a .tuia-card::before {
  content: "";
  width: 100px;
  height: 150px;
  right: -45px;
  top: -70px;
  position: absolute;
  background: var(--rv-primary);
  transition: 0.5s;
  opacity: 0.2;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.mo-section .features-section .features-list li a .tuia-card .content p {
  color: #555;
}

.mo-section .features-section .features-list li a .tuia-card .content p:last-child {
  margin-bottom: 0;
}

.mo-section .features-section .features-list li a .tuia-card .ih-card {
  display: flex;
}

.mo-section .features-section .features-list li a .tuia-card .ih-card .haddings {
  padding-left: 50px;
}

.mo-section .features-section .features-list li a .tuia-card .ih-card .icone {
  position: absolute;
  width: 40px;
  height: 40px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mo-section .features-section .features-list li a .tuia-card .ih-card .haddings .content {
  margin-bottom: 0;
}

.mo-section .features-section .features-list li a .tuia-card .ih-card .icone img {
  width: 100%;
  filter: grayscale(1);
}

.mo-section .features-section .features-list li a .tuia-card .ih-card .haddings h5 {
  font-weight: 600;
  color: var(--color-theme);
  margin-bottom: 0;
}

.mo-section .stores {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding-top: 20px;
}

.mo-section .stores a {
  display: block;
  border-radius: 50px;
}

.mo-section .stores a img {
  height: 40px;
}

@media only screen and (max-width: 575px) {
  .mo-section .stores {
    justify-content: center;
  }
}

.mo-section .stores .stors {
  padding: 15px;
}

.mo-section .stores .stors:hover {
  transition: 0.5s;
}

.mo-section .stores .stors:hover a img {
  filter: unset;
}

.mo-section .stores .stors a img {
  transition: 0.5s;
  filter: opacity(0.7) grayscale(1);
}

.top_bar a {
  color: var(--rv-white);
}

.ticker_section {
  padding: 5px 15px;
  background-color: var(--rv-black);
  display: flex;
  position: relative;
  z-index: 9;
}

.ticker_section .tickers {
  display: flex;
  margin: 0 -10px;
  align-items: center;
  justify-content: center;
}

.ticker_section .tickers .ticker_item {
  padding: 3px 6px;
  color: var(--rv-white);
  list-style: none;
  display: flex;
  position: relative;
  align-items: center;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 5px;
}

.ticker_section .tickers .ticker_item.mrdown {
  background-color: rgba(238, 238, 238, 0.2);
}

.ticker_section .tickers .ticker_item.mrdown .difference_percent {
  border: 1px solid red;
  color: red;
}

.ticker_section .tickers .ticker_item.mrdown .difference_percent::after {
  background-image: url("../images/web-image/decrease.png");
}

.ticker_section .tickers .ticker_item.mrup {
  background-color: rgba(238, 238, 238, 0.2);
}

.ticker_section .tickers .ticker_item.mrup .difference_percent {
  border: 1px solid #51c948;
  color: #51c948;
}

.ticker_section .tickers .ticker_item.mrup .difference_percent::after {
  background-image: url("../images/web-image/trend.png");
}

.ticker_section .tickers .ticker_item .name {
  letter-spacing: 1px;
  font-size: 14px;
}

.ticker_section .tickers .ticker_item .price {
  font-size: 12px;
  padding: 4px 5px 0;
}

.ticker_section .tickers .ticker_item .difference_percent {
  border: 1px solid #51c948;
  padding: 2px 8px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  padding-right: 30px;
}

.ticker_section .tickers .ticker_item .difference_percent::after {
  content: "";
  width: 16px;
  height: 14px;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  top: 4px;
  right: 8px;
}

.ticker_section .tickers .ticker_item::after {
  content: "";
  position: absolute;
  right: -6px;
  height: 80%;
  width: 2px;
  background: var(--rv-white);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.4;
}

.ticker_section .tickers .ticker_item:last-child::after {
  content: unset;
}

.project-two__single {
  height: 100%;
  padding-bottom: 30px;
}

.project-two__single a {
  height: 100%;
  display: block;
}

.project-two__single a .project-two__img {
  margin-bottom: 0;
  height: 100%;
}

.project-two__single a .project-two__img:hover {
  transition: 0.5s;
}

.project-two__single a .project-two__img:hover .hovername {
  opacity: 0;
  transition: 0.5s;
}

.project-two__single a .project-two__img .hovername {
  transition: 0.5s;
  position: absolute;
  z-index: 99;
  width: 100%;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.project-two__single a .project-two__img .hovername .project-two__title {
  color: var(--rv-white);
  font-size: 18px;
  padding: 10px 20px;
  margin: 0;
  text-align: center;
}

.project-two__single a img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer-main .footer-top .logo a img {
  filter: brightness(0) invert(1);
}

.tebBar-box .tebBar-card {
  border: 1px solid #ddd;
  border-bottom: unset;
  margin-bottom: 20px;
}

.tebBar-box .tebBar-card .tebActione {
  padding: 10px 20px;
  padding-right: 60px;
  position: relative;
  border-bottom: 1px solid #ddd;
  cursor: pointer;
  transition: 0.5s;
}

.tebBar-box .tebBar-card .tebActione h4 {
  color: var(--rv-primary);
  font-size: 18px;
}

.tebBar-box .tebBar-card .tebActione.active {
  transition: 0.5s;
}

.tebBar-box .tebBar-card .tebActione.active::after {
  transition: 0.5s;
  transform: rotate(90deg);
}

.tebBar-box .tebBar-card .tebActione::before,
.tebBar-box .tebBar-card .tebActione::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 25px;
  width: 2px;
  height: 14px;
  top: 18px;
  transition: 0.5s;
  background: var(--rv-primary);
}

.tebBar-box .tebBar-card .tebActione::before {
  transform: rotate(90deg);
}

.tebBar-box .tebBar-card .disc-box {
  display: none;
  border-bottom: 1px solid #ddd;
  padding: 20px;
}

.founder-section .image-section {
  text-align: center;
}

.founder-section .image-section img {
  height: 500px;
  text-align: center;
  margin: 0 auto;
}

.founder-section .sosial-links ul {
  padding: 0;
  display: flex;
  margin: 0 -10px;
}

.founder-section .sosial-links ul li {
  list-style: none;
  padding: 0 10px;
}

.founder-section .sosial-links ul li a {
  width: 50px;
  height: 50px;
  display: block;
  position: relative;
  border: 3px solid #ddd;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-section .sosial-links ul li a i {
  font-size: 25px;
  padding: 10px;
}

@media only screen and (max-width: 767px) {
  .founder-section .sosial-links ul li a {
    width: 40px;
    height: 40px;
  }
}

.founder-section .sosial-links ul li a img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: contain;
  object-fit: contain;
  padding: 10px;
}

.new-service-section .nservice-cards {
  display: grid;
  margin: -15px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

@media only screen and (max-width: 767px) {
  .new-service-section .nservice-cards {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.new-service-section .nservice-cards .ncservice-body {
  padding: 15px;
}

.new-service-section .nservice-cards .ncservice-body .ncbservice-item {
  box-shadow: 0 0 15px 0 #ddd;
  background: var(--rv-white);
  text-align: center;
  padding: 20px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #aaa;
  transition: 0.5s;
}

.new-service-section .nservice-cards .ncservice-body .ncbservice-item:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 10px -10px var(--rv-bg-primary);
  transform: translateY(-10px);
}

.new-service-section .nservice-cards .ncservice-body .ncbservice-item .icone {
  width: 80px;
  height: 80px;
  display: flex;
  margin: 0 auto;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px -2px var(--rv-bg-primary), -2px -2px 10px -2px var(--rv-bg-primary);
  align-items: center;
  justify-content: center;
}

.new-service-section .nservice-cards .ncservice-body .ncbservice-item .icone img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.new-service-section .nservice-cards .ncservice-body .ncbservice-item .title {
  padding-top: 20px;
}

.new-service-section .nservice-cards .ncservice-body .ncbservice-item .title h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
}

.offerings-section .offerings-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
  margin: -15px;
}

@media only screen and (max-width: 992px) {
  .offerings-section .offerings-cards {
    grid-template-columns: repeat(auto-fill, minmax(50%, 1fr));
  }
}

@media only screen and (max-width: 767px) {
  .offerings-section .offerings-cards {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
  }
}

.offerings-section .offerings-cards .offerings-body {
  padding: 15px;
}

.offerings-section .offerings-cards .offerings-body .offerings-item {
  box-shadow: 0 0 15px 0 #ddd;
  background: var(--rv-primary);
  padding: 20px;
  height: 100%;
  border-radius: 3px;
  border: 1px solid #aaa;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  transition: 0.5s;
}

.offerings-section .offerings-cards .offerings-body .offerings-item:hover {
  transition: 0.5s;
  box-shadow: 3px 3px 0px 0 var(--rv-bg-primary);
  transform: translateY(-10px);
  background: var(--rv-white);
}

.offerings-section .offerings-cards .offerings-body .offerings-item:hover .icone {
  box-shadow: 2px 2px 10px -2px var(--rv-bg-primary), -2px -2px 10px -2px var(--rv-bg-primary);
}

.offerings-section .offerings-cards .offerings-body .offerings-item:hover .title h4 {
  color: var(--rv-primary);
}

.whyus-section .images img {
  height: 420px;
}

.offerings-section .offerings-cards .offerings-body .offerings-item .icone {
  width: 80px;
  height: 80px;
  display: flex;
  margin: 0 auto;
  padding: 6px;
  border-radius: 50%;
  background: var(--rv-white);
  align-items: center;
  justify-content: center;
  position: relative;
}

.offerings-section .offerings-cards .offerings-body .offerings-item .icone img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.offerings-section .offerings-cards .offerings-body .offerings-item .title {
  width: calc(100% - 90px);
  padding-left: 10px;
}

.offerings-section .offerings-cards .offerings-body .offerings-item .title h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: var(--rv-white);
}

.ncservice-page .nservice-cards {
  margin: -15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
}

.ncservice-page .ncservice-body {
  padding: 15px;
}

.ncservice-page .ncservice-body .ncbservice-item {
  box-shadow: 0 0 15px 0 #ddd;
  background: var(--rv-white);
  padding: 20px;
  height: 100%;
  border-radius: 10px;
  border: 1px solid #aaa;
  transition: 0.5s;
}

.ncservice-page .ncservice-body .ncbservice-item:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 10px -10px var(--rv-bg-primary);
  transform: translateY(-10px);
}

.ncservice-page .ncservice-body .ncbservice-item .icone {
  width: 80px;
  height: 80px;
  display: flex;
  margin: 0 auto;
  padding: 6px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px -2px var(--rv-bg-primary), -2px -2px 10px -2px var(--rv-bg-primary);
  align-items: center;
  justify-content: center;
}

.ncservice-page .ncservice-body .ncbservice-item .icone img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}

.ncservice-page .ncservice-body .ncbservice-item .title {
  padding-top: 20px;
}

.ncservice-page .ncservice-body .ncbservice-item .title h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
  color: #000;
}

.ncservice-page .ncservice-body .ncbservice-item .title ul {
  padding-right: 0;
}

.bfw-items {
  height: 100%;
  padding-bottom: 30px;
}

.bfw-items .bfwitem {
  height: 100%;
  box-shadow: 0 0 15px 0 #ddd;
  padding: 20px;
  border-radius: 5px;
  border: 2px solid #ddd;
  transition: 0.5s;
}

.bfw-items .bfwitem .ititle {
  display: flex;
  margin-bottom: 15px;
}

.bfw-items .bfwitem .ititle h6 {
  padding-left: 20px;
  line-height: 22px;
  width: calc(100% - 110px);
}

.bfw-items .bfwitem:hover {
  transition: 0.5s;
  border-color: var(--colordata);
  box-shadow: 15px 15px 15px 0 #ddd;
}

.bfw-items .bfwitem .image {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -20px;
  margin-top: -20px;
  border-radius: 0 0 30px;
  padding: 13px;
  position: relative;
  overflow: hidden;
}

.bfw-items .bfwitem .image::after {
  content: "";
  background: var(--colordata);
  opacity: 0.2;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}

.top-box {
  display: flex;
  padding: 10px 0;
  justify-content: space-between;
  align-items: center;
}

.top-box #logo .logo-img img {
  height: 75px;
}

.top-box .contact-bar {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media only screen and (max-width: 992px) {
  .top-box .contact-bar .rv-mo {
    display: none;
  }
}

.top-box .contact-bar a {
  color: var(--rv-primary);
}

.blog-section .blog-card {
  box-shadow: 0 0 15px 0 #ddd;
  background: var(--rv-white);
}

.blog-section .blog-card .image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-section .blog-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-section .blog-card .text {
  padding: 20px;
}

.blog-section .blog-card .text h3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.blog-section .blog-card .text .content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.footer-bottom-right-text {
  text-align: end;
}


.home-SIP .SIP-image img {
  position: absolute;
  width: auto;
  top: 73px;
  right: 40px;
  height: 300px;
  z-index: 0;
}

.sip-calculator-section .sip_cart {
  position: relative;
}



.process-step {
  background: var(--rv-white);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.04),
    0 12px 24px rgba(0, 0, 0, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 280px;
  background: linear-gradient(145deg, var(--rv-white), #f4f6fa);
  position: relative;
  z-index: 1;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.06),
    0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.step-circle {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    margin-left: auto;
    margin-right: auto;
    background: var(--rv-primary-light);
    border-radius: 50%;
    box-shadow: inset 2px 1px 8px -1px #70a2c9, 0px 2px 10px -3px #a39d9d;
}

.step-circle i {
  color: var(--rv-primary);
  font-size: 25px;
  padding: 10px;
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    background: var(--rv-secondary);
    color: #fff;
    font-size: 11px;
    padding: 2px 9px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.process-step h5 {
    margin: 10px 0 10px;
    color: var(--rv-black);
    font-size: 24px;
    font-weight: 600;
}

.process-step p {
  color: var(--rv-black);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .process-step {
    width: 100%;
    height: auto;
    padding: 20px 15px;
  }
}


.team-card {
  padding: 20px;
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

.team-card .image-box {
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 1/1;
}

.team-card .image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.team-card:hover .image-box img {
  transform: scale(1.05);
}

.team-card h5 {
  color: var(--rv-black, #070707);
  margin-top: 15px;
  font-weight: 600;
}


.social-midia-f {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 99;
}

.social-midia-f ul {
  padding: 0;
  margin: 0;
}

.social-midia-f ul li {
    list-style: none;
    background: #ffffff;
    margin-bottom: 5px;
    border-radius: 50px 0 0 50px;
    border: 1px solid #ddd;
    transition: transform 0.4s ease;
    transform: translateX(70%);
}
.foot-col .social img {
    max-height: 40px;
    max-width: 30px;
    object-fit: cover;
    margin-left: 10px;
    background: #fff;
    border-radius: 100%;
}
.social-midia-f ul li:hover {
  transform: translateX(0);
  background: var(--rv-white);
  border-right: none;
}

.social-midia-f ul li a {
  display: flex;
  align-items: center;
  padding: 5px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.social-midia-f ul li a .icone {
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.social-midia-f ul li a .icone svg {
  width: 20px;
  height: 20px;
}

.social-midia-f ul li a .name-links {
  opacity: 0;
  margin-left: 10px;
  white-space: nowrap;
  color: transparent;
  transition: all 0.3s ease;
}

.social-midia-f ul li:hover a .name-links {
  opacity: 1;
  color: var(--rv-primary);
  /* visible color on hover */
}


.bg-section-up {
  background: #ededed;
}

.home-contact {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 20px;
  background: var(--rv-white);
  transition: 0.5s;
  height: 100%;
  box-shadow: 0 0 10px -5px;
}

.hover-text::before {
  content: "";
  position: absolute;
  left: 0;
  transition: 0.5s;
  top: 0;
  width: 100%;
  height: 100%;
  rotate: 50deg;
  background: linear-gradient(95deg, var(--rv-primary) 0%, rgba(133, 206, 228, 0.2) 95%);
  transform: translateY(-41px) translateX(-365px);
  z-index: 0;
}

.hover-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -60%;
  width: 100%;
  height: 100%;
  rotate: 50deg;
  background: linear-gradient(95deg, rgba(133, 206, 228, 0.2) 0%, var(--rv-secondary) 95%);
  transform: translateY(41px) translateX(365px);
  z-index: 0;
  transition: 0.5s;
}

.hover-text:hover {
  transition: 0.5s;
}

.hover-text:hover::before {
  transition: 0.5s;
  top: -60%;
}

.hover-text:hover::after {
  transition: 0.5s;
  bottom: 0%;
}

.about-content {
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom:15px;
}
.mv-box {
    padding: 30px;
    height: 100%;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s ease;
}
.mv-box:hover {
    transform: translateY(-5px);
}

.mv-box .icon {
    margin-bottom: 20px;
    color: #0d6efd; /* Bootstrap primary color */
}

.mv-box .icon i {
    font-size: 2rem;
}

.mv-box .mv-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #212529;
}

.mv-box .mv-text {
    color: #555;
    margin: 0;
}
.home-about .text-section .mv-box .icon {
  display: block;
  width: 100%;
}

.home-about .text-section .mv-box .icon i {
  color: var(--rv-primary);
}

.home-about .text-section .mv-box .icon i::before {
  font-size: 48px;
}


.blog-section-modern {
  padding: 60px 0;
  background: #f9f9f9;
}

.blog-section-modern__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.blog-section-modern__card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-section-modern__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.blog-section-modern__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-section-modern__card:hover .blog-section-modern__img img {
  transform: scale(1.05);
}

.blog-section-modern__content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-section-modern__meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.blog-section-modern__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-section-modern__read-more {
    font-size: 16px;
    color: var(--rv-bg-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.blog-section-modern__read-more i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.blog-section-modern__card:hover .blog-section-modern__read-more i {
  transform: translateX(4px);
}


.video-section-modern__card {
  background: var(--rv-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
}

.video-section-modern__card:hover {
  transform: translateY(-8px);
  border-color: var(--rv-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.video-section-modern__thumb-wrapper {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.video-section-modern__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-section-modern__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-section-modern__card:hover .video-section-modern__thumb {
  transform: scale(1.08);
}

.video-section-modern__card:hover .video-section-modern__overlay {
  opacity: 1;
}

.video-section-modern__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--rv-primary);
  color: var(--rv-white);
  font-size: 24px;
  padding: 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(107, 181, 67, 0.4);
  transition: transform 0.3s ease;
  animation: pulse 1.5s infinite;
  z-index: 1;
}

.video-section-modern__info {
  padding: 20px;
}

.video-section-modern__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--rv-black);
  margin-bottom: 5px;
}

.video-section-modern__subtitle {
  font-size: 14px;
  color: var(--rv-gray);
  margin: 0;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(107, 181, 67, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(107, 181, 67, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(107, 181, 67, 0);
  }
}



.awards-section-modern .award-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.awards-section-modern .award-card:hover {
  transform: scale(1.03);
}

.awards-section-modern .award-card img.award-image {
    width: 100%;
    height: 400px;
    display: block;
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.awards-section-modern .award-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  width: 100%;
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease-in-out;
}

.awards-section-modern .award-card:hover .award-overlay {
  transform: translateY(0);
}

.awards-section-modern .award-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

.awards-section-modern .award-title h5.award-title {
  color: #fff;
}

.contact-section .iframe {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
  margin-bottom: 40px;
}

.contact-section iframe {
  border: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

/* Info Cards Styling */
.contact-section .info {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-section .info-card {
  background: var(--rv-white);
  padding: 10px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgb(0 0 0 / 0.07);
  display: flex;
  transition: box-shadow 0.3s ease;
  flex-direction: column;
  text-align: center;
}

.contact-section .info-card:hover {
  box-shadow: 0 10px 25px rgb(0 0 0 / 0.12);
}

.contact-section .info-card i {
  font-size: 28px;
  color: var(--rv-primary);
  /* primary color */
  margin-top: 5px;
  flex-shrink: 0;
}

.contact-section .info-card h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--rv-black);
}

.contact-section .info-card p {
  margin: 0;
  font-size: 15px;
  color: var(--rv-gray);
}

.contact-section .info-card p a {
  color: var(--rv-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section .info-card p a:hover {
  color: var(--rv-primary);
  text-decoration: underline;
}

/* Contact Form Wrapper */
.contact-section .contact-form {
  background: var(--rv-white);
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgb(0 0 0 / 0.1);
  min-height: 400px;
  /* Adjust if needed */
}

.project-two__text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.inspiro-slider .slide .slide-captions h5 {
    margin-bottom: 15px;
}

/* Banner slider caption styling */
.slide-captions h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;

}

.slide-captions h5 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 24px;

}

.slide-captions .btn {
    margin-top: 8px;
    text-align: left;
}

/* Responsive tweaks for mobile */
@media (max-width: 576px) {
    .slide-captions h1 {
        font-size: 24px;
    }

    .slide-captions h5 {
        font-size: 16px;
    }
}

#investorCar .item {
    transition: all 0.3s ease-in-out;
}

.investor_box {
    display: block;
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.investor_box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    background-color: #eef7ff;
}

.investor_box .icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.investor_box h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--rv-bg-primary);
}

.investor_box p {
    color: #555;
    line-height: 1.5;
}

/* Owl Carousel spacing fix */
#investorCar .owl-item {
    padding: 10px;
}

.slider-container {
    perspective: 1000px;
}

.card-3d {
    width: 260px;
    height: 200px;
    display: inline-block;
    margin: 0 20px;
    position: relative;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1); /* smooth & elegant */
}

.card-3d:hover .card-inner {
    transform: rotateY(-180deg); /* Right to left flip */
}

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    backface-visibility: hidden;
    background: var(--rv-bg-primary);
    padding: 25px;
    box-sizing: border-box;
    transform-style: preserve-3d;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 13px -2px;
}

.card-front {
    transform: rotateY(0deg);
}

.card-back {
    transform: rotateY(-180deg); /* must match the hover rotation */
}

.card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    transform: translateZ(40px);
    width: 100%;
    text-align: center; /* center the title specifically */
}

.card-desc {
    color: #fff;
    transform: translateZ(30px);
    width: 100%;
    text-align: center; /* center the title specifically */
}
.temp_theme_flipbox_font {
    border: 1px solid var(--rv-primary);
    border-radius: 8px;
}
.flipbox .section_main_title h1,
.flipbox .section_sub_title h6 {
    color: var(--rv-white);
}
.flipbox .section_title {
	margin-bottom: 30px;
}
.temp_theme_flipbox {
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    -webkit-perspective: 1000px;
    -webkit-transform-style: preserve-3d;
    z-index: 1;
    margin-bottom: 30px;
}

.temp_theme_flipbox .temp_theme_flipbox_font, .temp_theme_flipbox .temp_theme_flipbox_back {
    min-height: 280px;
    height: auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: rotateX(0);
    -webkit-transform: rotateX(0);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    transition: transform .7s ease, -webkit-transform .7s ease;
    position: relative;
    background: linear-gradient(10deg, #3a90d491, transparent);
    box-shadow: 0 3px 11px -4px #928c8c;
}
.temp_theme_flipbox .temp_theme_flipbox_back::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent -80%, var(--rv-bg-secondary));
    border-radius: 8px;
}
.icon {
    font-size: 45px;
    line-height: 45px;
}
.temp_theme_flipbox .temp_theme_flipbox_inner {
	text-align: center;
	padding: 0 25px;
	border-radius: 2px;
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	perspective: inherit;
	-webkit-perspective: inherit;
	outline: transparent solid 1px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateY(-50%) translateZ(60px) scale(0.94);
	transform: translateY(-50%) translateZ(60px) scale(0.94);
	z-index: 2;
}
.temp_theme_flipbox_icon {
    font-size: 45px;
    text-align: center;
    display: inline-block;
    color: var(--rv-white);
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 33% 66% 70% 30% / 49% 62% 38% 51% !important;
    object-fit: fill;
}

.temp_theme_flipbox_icon img{
    width: 80px;
    height: 80px;
    border-radius: 33% 66% 70% 30% / 49% 62% 38% 51% !important;
    object-fit: cover;
}
.temp_theme_flipbox_font .flipbox_desc p {
    color: var(--rv-black);
}
.temp_theme_flipbox .flipbox_title h3 {
    font-size: 22px;
    padding-bottom: 13px;
    text-transform: capitalize;
    -webkit-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
    color: var(--rv-black);
}
.temp_theme_flipbox .temp_theme_flipbox_back {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	border-radius: 2px;
	-webkit-transform: rotateX(180deg);
	transform: rotateX(180deg);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a {
    text-transform: capitalize;
    margin-top: 22px;
    background: var(--rv-white);
    color: var(--rv-primary);
    display: inline-block;
    padding: 4px 25px;
    border-radius: 5px;
    border: 2px solid var(--rv-white);
    transition: .5s;
}
.temp_theme_flipbox_back .flipbox_desc p {
    color: var(--rv-white);
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a i {
	display: none;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_title h3 {
	padding-bottom: 16px;
	padding-top: 0;
	color: var(--rv-white);
	margin-bottom: 0;
}
.temp_theme_flipbox .temp_theme_flipbox_font .flipbox_desc,
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_desc {
	color: var(--rv-white);
}

/* Flipbox Hover Css */
.temp_theme_flipbox:hover .temp_theme_flipbox_font {
	-webkit-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}
.temp_theme_flipbox:hover .temp_theme_flipbox_back {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    border-radius: 8px;
}
.temp_theme_flipbox .temp_theme_flipbox_back .flipbox_button a:hover {
	color: var(--rv-white);
	border-color: var(--rv-primary);
	background: var(--rv-primary);
}

/* Pages Variant */
.pages .temp_theme_flipbox .temp_theme_flipbox_font .flipbox_title h3 {
    color: var(--rv-black);
}
.pages .temp_theme_flipbox_font .flipbox_desc p {
    color: var(--rv-gray);
}
#apart-caraousel .owl-stage {
    margin: 15px 0;
}


button.btn.btn-danger:hover, button.btn.btn-danger:focus, button.btn.btn-danger:not(:disabled):not(.disabled):active, button.btn.btn-danger:not(:disabled):not(.disabled).active, .btn:not(.close):not(.mfp-close).btn-danger:hover, .btn:not(.close):not(.mfp-close).btn-danger:focus, .btn:not(.close):not(.mfp-close).btn-danger:not(:disabled):not(.disabled):active, .btn:not(.close):not(.mfp-close).btn-danger:not(:disabled):not(.disabled).active, a.btn:not([href]):not([tabindex]).btn-danger:hover, a.btn:not([href]):not([tabindex]).btn-danger:focus, a.btn:not([href]):not([tabindex]).btn-danger:not(:disabled):not(.disabled):active, a.btn:not([href]):not([tabindex]).btn-danger:not(:disabled):not(.disabled).active {
    background-color: #2a6cc0;
    border-color: #214e8a;
    color: #fff;
}

/* Card Wrapper */
.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 1px 2px 11px -5px #aaa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    padding: 10px 15px;
    perspective: 800px;
    transform-style: preserve-3d;
}

/* Card Hover */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Icon Container */
.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e6f1fa;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 2;
}

/* Icon Itself */
.feature-icon i {
    font-size: 28px;
    color: #3589cb;
    text-shadow: 1px 1px 1px #aaa;
    transform-style: preserve-3d;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: translateZ(0px) scale(1.04);
    box-shadow: 0 8px 10px -1px rgba(53, 137, 203, 0.3);
    z-index: 10;
}

.feature-card:hover .feature-icon i {
    transform: translateZ(0px);
    text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.3);
}
.why-images img {
    border-radius: 20px;
    box-shadow: 0 0 15px -8px;
}


.home-features-section .features-row {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  align-items: center;
}
.home-features-section .features-row .features-icon {
  padding: 15px;
  max-width: 20%;
  width: 100%;
}
.home-features-section .features-row .features-icon .icone-row {
  display: grid;
  grid-template-columns: 1fr;
}

.home-features-section .features-row .features-icon .icone-row .icone {
  padding: 15px;
  text-align: center;
}
.home-features-section .features-row .features-icon .icone-row .icone a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--rv-secondary);
  padding: 15px;
}
.home-features-section .features-row .features-icon .icone-row .icone a.active {
  background: var(--rv-primary);
}
.home-features-section .features-row .features-icon .icone-row .icone a.active img {
  width: 100%;
  filter: drop-shadow(2px 4px 6px #999);
}
.home-features-section .features-row .features-icon .icone-row .icone a img {
  width: 100%;
}
.home-features-section .features-row .features-image {
  padding: 15px;
  max-width: 35%;
  width: 100%;
}
.home-features-section .features-row .features-image .image img {
  height: 500px;
  filter: drop-shadow(2px 4px 6px #888);
}
.home-features-section .features-row .features-content {
  padding: 15px;
  max-width: 45%;
  width: 100%;
}
.home-features-section .features-row .features-content h5 {
  text-transform: capitalize;
}


.captcha-code-form {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}


.captcha-code-form img {
    max-width: 100%;
    height: 38px;
}
.btnrefresh {
    background-color: var(--rv-primary);
    color: var(--rv-white);
    border: none;
    outline: none;
    padding: 10px;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btnrefresh:hover {
    background-color: var(--rv-bg-primary);
}
.home-contact-cta {
    background-color: var(--rv-bg-primary);
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}

.home-contact-cta .contact-heading {
    font-size: 46px;
    font-weight: 750;
    margin-bottom: 16px;
    color: #f9f9f9;
}

.home-contact-cta .contact-heading strong {
    font-weight: 900;
}

.home-contact-cta .contact-subheading {
    font-size: 16px;
    margin-bottom: 16px;
    color: #aaa;
}

.home-contact-cta ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.home-contact-cta ul li {
    margin-bottom: 12px;
    font-size: 20px;
    color: #fff;
    display: flex;
    align-items: center;
}

.home-contact-cta ul li i {
    margin-right: 10px;
    font-size: 18px;
    color: #fff;
}

.home-contact-cta h4 {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    cursor: pointer;
}

.home-contact-cta h4 i {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #fff;
}

.home-contact-cta h4:hover i {
    transform: translateX(5px);
}
.rv-modern-banner {
    position: relative;
    background: linear-gradient(to right, var(--rv-primary), var(--rv-secondary));
    color: #fff;
    padding: 70px 0;
    overflow: hidden;
}

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

.rv-banner-content {
    text-align: center;
    animation: fadeInUp 1s ease;
}

.rv-banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: capitalize;
    animation: fadeInDown 1s ease-in-out;
}

.rv-breadcrumb-modern {
    font-size: 14px;
    color: #ffffffcc;
    animation: fadeIn 2s ease-in-out;
}

.rv-breadcrumb-modern a {
    color: #ffffff;
    text-decoration: none;
}

.rv-pattern-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/bg-pattern.svg'); /* use custom pattern */
    background-repeat: repeat;
    opacity: 0.06;
    z-index: 1;
}

/* SHAPES (ANIMATED) */
.animated-shapes .shape {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgb(39 125 192);
    border-radius: 50%;
    animation: floatShape 8s infinite ease-in-out;
    z-index: 0;
}

.shape.one {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape.two {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.shape.three {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}
.shape.fourth {
    top: 80%;
    left: 60%;
    animation-delay: 2s;
}
@keyframes floatShape {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
}

/* Text Animations */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
h5.award-title {
    color: #fff;
}
.section-contact {
    background-color: var(--rv-secondary-light);
    padding: 60px 0;
}

.info-card-box {
    background-color: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.icon-style {
    font-size: 30PX;
    color: var(--rv-primary);
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: inset 4px 1px 9px -3px , 2px 1px 10px -4px;
    padding: 15px;
    border-radius: 100%;
}
.heading-contact {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
}
.info-card-box p {
    color: #000;
    font-size: 16px;
    text-align: center;
}
.info-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.info-link {
    text-decoration: none;
    color: #222;
}

.info-link:hover {
    color: var(--rv-primary);
}

.cta-box {
    background-color: var(--rv-bg-primary);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta-heading {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}

.cta-subtext {
    font-size: 16px;
    color: #555;
}
.highlight-text {
    color: #58c7fa;
    font-weight: 700;
}



.map-box {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.how-we-work .work-box .icon img {
    position: relative;
    top: -8px;
    left: 0px;
}
.social-midia-f ul li a .icone img {
    border-radius: 100%;
}

.fundsSections .top_fund_performance {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tfp-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.all_top_funds {
    display: flex;
    flex: 1;
    gap: 20px;
}

.category_side_bar {
    width: 250px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.search_bar_sub input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.search_bar_sub input[type="text"]:focus {
    border-color: #0d6efd;
    outline: none;
}

.tfpall-content {
    flex: 1;
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    min-height: 400px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.loader img {
    width: 60px;
    height: auto;
}

@media (max-width: 768px) {
    .tfp-row, .all_top_funds {
        flex-direction: column;
    }

    .category_side_bar {
        width: 100%;
    }
}

.fundsSections .top_fund_performance .all_top_funds .category_side_bar {
    display: inline-block;
    max-width: 240px;
    width: 100%;
    background-color: #eee;
    max-height: 654px !important;
    overflow-y: scroll;
    overflow-x: hidden;
}

.map-box {
    height: auto !important;
    min-height: 450px;
}

    .map-box iframe {
        height: 450px !important;
        width: 100% !important;
    }


/* Base Section */
.fund-showcase {
  background: var(--rv-secondary-light);
  font-size: 16px;
}

/* Title */
.fund-showcase .title h2  {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--rv-black);
  text-align: center;
  position: relative;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.fund-performance-section h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--rv-black);
    text-align: center;
    letter-spacing: -0.5px;
    line-height: 1.2;
    position: relative;
}

.fund-showcase .title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
  border-radius: 2px;
}

.fund-performance-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1976d2, #42a5f5);
  border-radius: 2px;
}

.fund-showcase .title h2::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 8px;
  background: rgba(66, 165, 245, 0.3);
  filter: blur(8px);
  border-radius: 50%;
  z-index: -1;
}

.fund-performance-section h3::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 8px;
  background: rgba(66, 165, 245, 0.3);
  filter: blur(8px);
  border-radius: 50%;
  z-index: -1;
}

/* Body Layout */
.fund-showcase .fund-showcase-body {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
    /* backdrop-filter: blur(14px); */
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    text-align: justify;
}

/* Left Side */
.fund-showcase .fund-showcase-left {
  flex: 1 1 50%;
  display: flex;
}

.fund-showcase .fund-showcase-description {
  font-size: 18px;
  line-height: 1.8;
  color: #2c3e50;
  margin: 0;
}

/* Right Side */
.fund-showcase .fund-showcase-right {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
}

.fund-showcase .fund-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.fund-showcase .fund-showcase-list li {
  padding: 5px 15px ;
  font-size: 16px;
  font-weight: 500;
  color: #000;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.fund-showcase .fund-showcase-list li:hover {
  transform: translateX(6px);
}

/* FAQ Section */
.df-section-faq {
  font-family: var(--rv-font);
}

.df-faq-title {
  font-size: 38px;
  color: var(--rv-bg-primary);
  font-weight: 700;
  margin-bottom: 50px;
  position: relative;
}

.df-faq-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  background: var(--rv-primary);
  border-radius: 2px;
}

.df-faq-item {
  background: var(--rv-white);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.df-faq-question {
    width: 100%;
    padding: 18px 24px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--rv-bg-primary);
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px -2px;
    background: #fff;
}

.df-faq-question:hover {
  background: var(--rv-primary-light);
}

.df-arrow {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--rv-primary);
  border-bottom: 2px solid var(--rv-primary);
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.df-faq-question[aria-expanded="true"] .df-arrow {
  transform: rotate(-135deg);
}

.df-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--rv-black);
  font-size: 16px;
  line-height: 1.7;
}

.df-faq-item.active .df-faq-answer {
  padding: 18px 24px;
  max-height: 500px;
}

.df-faq-answer a.cta-link {
  color: var(--rv-primary);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.df-faq-answer a.cta-link:hover {
  color: var(--rv-bg-primary);
}

.df-faq-item button:focus {
  outline: none;
}

/* Responsive */
@media (max-width: 992px) {
  .fund-showcase .title h2 { font-size: 32px; }
}

@media (max-width: 768px) {
  .fund-showcase .fund-showcase-body { flex-direction: column; padding: 25px; }
  .fund-showcase .fund-showcase-description { font-size: 16px; }
  .fund-showcase .fund-showcase-list li { font-size: 16px; padding: 14px 16px; }
}

@media (max-width: 576px) {
  .fund-showcase .title h2 { font-size: 26px; }
}

.df-fund-showcase{
    background: var(--rv-secondary-light);
}
	/* Section Wrapper */
.df-fund-showcase-content {
  margin-top: 30px;
}

/* Section Blocks (Card-like separation) */
.df-fund-showcase-content > h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--rv-bg-primary);
  margin: 40px 0 16px;
  position: relative;
  padding-bottom: 8px;
}

.df-fund-showcase-content > h3::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--rv-primary);
  border-radius: 2px;
  margin-top: 8px;
}

/* Subheadings */
.df-fund-showcase-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--rv-primary);
  margin: 24px 0 10px;
  padding-bottom: 4px;
  border-bottom: 1px dashed var(--rv-primary-light);
  display: inline-block;
}

/* Paragraphs */
.df-fund-showcase-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 0;
  color: var(--rv-black);
  width: auto;
}
.df-fund-showcase-content p strong {
    color: var(--rv-bg-primary);
}

/* Highlights Card */
.df-highlights-card {
  margin-top: 50px;
  border-radius: 18px;
  transition: all 0.3s ease;
}


.df-highlights-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--rv-primary);
  margin-bottom: 20px;
  position: relative;
}

.df-highlights-card h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--rv-primary);
  margin-top: 6px;
  border-radius: 2px;
}

.df-fund-showcase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
}

.df-fund-showcase-list li {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px 15px 15px 15px;
    border-radius: 12px;
    background: var(--rv-white);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.df-fund-showcase-list li i {
    font-size: 18px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-primary-light);
    color: var(--rv-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 5px;
    box-shadow: 0px 1px 4px -1px;
}

.df-fund-showcase-list li:hover {
  background: #c3e1ff;
  transform: translateX(6px);
  
}

.df-fund-showcase-list li:hover i {
  background: var(--rv-primary);
  color: var(--rv-white);
  transform: scale(1.1);
  box-shadow: 0px 2px 6px -1px #000;
}

.df-fund-showcase-list li ul li {
    box-shadow: none;
    gap: 10px;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 10px 0;
}
.df-fund-showcase-list li ul:hover li {
  box-shadow: none;
  transform: none;
  background: none;
}
.df-fund-showcase-list li ul li {
    list-style: disc;
}
.df-fund-showcase-list li:hover ul li {
    background: none;
    transform: none;
}



/* ---------- Global Section ---------- */
.ppc-section {
    position: relative;
    overflow: hidden;
    background: var(--rv-bg-primary);
}

/* ---------- Floating 3D Image ---------- */
.ppc-floating-img {
  perspective: 1200px;
  display: inline-block;
}
.ppc-floating-img img {
  transform: rotateY(-15deg) rotateX(10deg) translateZ(60px);
  transition: transform 0.8s ease, box-shadow 0.8s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-radius: 15px;
}
.ppc-floating-img img:hover {
  transform: rotateY(0deg) rotateX(0deg) translateZ(80px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* ---------- Flip Cards ---------- */
.ppc-flip-card {
  background: transparent;
  perspective: 1200px;
  width: 100%;
  height: 460px;
  margin: 30px 0;
  text-align: justify;
}
.ppc-flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.ppc-flip-card:hover .ppc-flip-card-inner {
  transform: rotateY(-180deg) translateZ(20px);
}
.ppc-flip-card-front,
.ppc-flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  justify-content: center;
  align-items: justify;
  flex-direction: column;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.25);
  color: var(--rv-white);
  font-family: var(--rv-font);
  transform-style: preserve-3d;
}
.ppc-flip-card-front {
    background: linear-gradient(135deg, #eefaff, #95c4e7);
    transform: rotateY(0deg) translateZ(40px);
}
.ppc-flip-card-back {
    background: linear-gradient(135deg, #99cce3, var(--rv-white));
    transform: rotateY(-180deg) translateZ(40px);
}
.ppc-flip-card-front h3 {
    font-size: 28px;
    transform: translateZ(50px);
    text-align: center;
    font-weight: 600;
}
.ppc-flip-card-back p {
  transform: translateZ(30px);
  margin-bottom: 10px;
}

.ppc-flip-card-back ul,.ppc-flip-card-back  li {
  transform: translateZ(30px);
  list-style: none;
  color: var(--rv-black);
}
.ppc-flip-card-back li::before {
    content: "✓";
    position: absolute;
    left: -26px;
    top: -4px;
    color: var(--rv-primary);
    font-size: 20px;
    transform: translateZ(40px);
    border-radius: 100%;
    padding: 5px;
}

.ppc-carousel .item, .ppc-carousel2 .item {
  padding: 10px;
}

.ppc-carousel .owl-nav button.owl-prev,
.ppc-carousel .owl-nav button.owl-next {
  background: var(--rv-primary);
  color: var(--rv-white);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 20px;
  margin: 0 5px;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}
.ppc-carousel .owl-nav button.owl-prev:hover,
.ppc-carousel .owl-nav button.owl-next:hover {
  background-color: var(--rv-bg-primary) !important;
  transform: scale(1.1);
}

/* Dots */
.ppc-carousel .owl-dots {
  text-align: center;
  margin-top: 20px;
}
.ppc-carousel .owl-dot span {
  width: 12px;
  height: 12px;
  background: var(--rv-secondary);
  display: inline-block;
  margin: 0 6px;
  border-radius: 50%;
  transition: 0.3s ease;
}
.ppc-carousel .owl-dot.active span {
  background: var(--rv-primary);
  transform: scale(1.3);
}

/* Nav Positioning */
.ppc-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* so nav container doesn’t block clicks */
}
.ppc-section .owl-nav button {
  pointer-events: all; /* re-enable clicks on buttons */
}
.ppc-section .owl-nav .owl-prev {
  position: absolute;
  left: -50px; /* adjust as needed */
}
.ppc-section .owl-nav .owl-next {
  position: absolute;
  right: -50px; /* adjust as needed */
}


/* Section Heading with before/after */
.section-heading {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  display: inline-block;
  padding-bottom: 10px;
}

.section-heading::before{
  content: "";
  position: absolute;
  height: 3px;
  width: 40%;
  background: linear-gradient(90deg, #007bff, #00c6ff);
  bottom: 0;
  transition: all 0.4s ease;
}

.section-heading::before {
  left: 0;
}

/* 3D Image Effect */
.image-3d {
  perspective: 1200px;
  display: inline-block;
}

.image-3d img {
  transform: rotateY(0deg) rotateX(0deg) translateZ(0);
  transform-style: preserve-3d;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: float3d 6s ease-in-out infinite; /* Continuous animation */
}


/* Keyframes for floating wobble */
@keyframes float3d {
  0% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0);
  }
  25% {
    transform: rotateY(6deg) rotateX(3deg) translateZ(15px);
  }
  50% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(25px);
  }
  75% {
    transform: rotateY(-6deg) rotateX(-3deg) translateZ(15px);
  }
  100% {
    transform: rotateY(0deg) rotateX(0deg) translateZ(0);
  }
}

/* Section Heading */
.protection-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.protection-heading::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 4px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(90deg, var(--rv-primary), var(--rv-primary-light));
  border-radius: 2px;
}

.protection-image-3d {
    perspective: 1000px;
    display: inline-block;
    margin: 0px 20px;
    margin-top: 50px;
}

.protection-image-3d img {
  border-radius: 14px;
  transform: rotateY(0deg) rotateX(0deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: floatProtection 6s ease-in-out infinite;
}


@keyframes floatProtection {
  0%, 100% { transform: rotateY(0deg) rotateX(0deg) translateZ(0); }
  25% { transform: rotateY(5deg) rotateX(3deg) translateZ(15px); }
  50% { transform: rotateY(0deg) rotateX(0deg) translateZ(25px); }
  75% { transform: rotateY(-5deg) rotateX(-3deg) translateZ(15px); }
}

/* Protection List */
.protection-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.protection-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.protection-list li i {
  font-size: 20px;
  min-width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rv-primary-light);
  color: var(--rv-primary);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0px 1px 4px -1px rgba(0,0,0,0.2);
  margin-top: 3px;
}

.protection-list li:hover {
  background: #e8f3ff;
  transform: translateX(6px);
}

.protection-list li:hover i {
  background: var(--rv-primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0px 2px 6px -1px rgba(0,0,0,0.3);
}

/* Bottom Note */
.protection-note {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.ppc-flip-card-front  i {
    font-size: 80px;
    background: linear-gradient(45deg, #034e99, var(--rv-bg-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 10px;
    transform: translateZ(40px);
    text-shadow: 1px 2px 9px rgb(112 158 217 / 20%);
}



.main-pyramid {
    display: flex;
    flex-direction: column;
}
.main-pyramid  img {
    max-width: 100%;
    min-width: 100%;
    width: 100%;
}

.pyramid-main-container .heading-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pyramid-main-container h3 {
    font-size: 50px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px; /* space between text and line */
}

.pyramid-main-container h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px; /* thickness of the underline */
    width: 50%; /* length of the underline */
    background-color: var(--rv-primary); /* or any color you want */
    border-radius: 2px;
}

.services-page-section th,
.services-page-section td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

.services-page-section th {
  background-color: #f2f2f2;
  font-weight: 600;
}
table {
    border-collapse: collapse;
    width: 100%;
}

.fund-performance {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 1px 1px 12px -5px #aaa;
}
.fp-section{
	background:var(--rv-secondary-light);
}

.main-pyramid img:hover {
    scale: 1.05;
}


.debtTabs { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:18px; }
.debtTabs button {
  padding:10px 16px; border:none; background:transparent; color:#000;
  font-size:14px; cursor:pointer; border-radius:4px; transition:.3s;
}
.debtTabs button.active, .debtTabs button:hover { background:#102f9b; }

.debtTab-content-wrapper { background:#fff;  border-radius:6px; line-height:1.6; }
.debtTab-content { display:none; }
.mf-disclaimer {
  background:#fff9dd; padding:14px; border-left:4px solid #ff9800; margin-top:16px;
  font-size:14px; font-style:italic;
}

.debtTab-body {
  font-family: Arial, sans-serif;
  padding: 20px;
}

.debtTab-title {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
}

/* Tab Buttons */
.debtTabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.debtTabs button {
  padding: 10px 16px;
  border-radius: 6px;
  border: 1px solid #0050c8;
  background: white;
  cursor: pointer;
  transition: .3s;
  font-size: 15px;
  font-weight: 600;
}

.debtTabs button.active,
.debtTabs button:hover {
  background: #0050c8;
  color: white;
}

/* Tab Content */
.debtTab-content {
  display: none;
  background: #f7faff;
  border-radius: 8px;
  padding: 22px;
  border: 1px solid #d5e4ff;
  animation: fadeIn .3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Tables inside tabs */
.debtTab-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

.debtTab-content table td {
  border: 1px solid #d3d3d3;
  padding: 10px;
  vertical-align: top;
}

/* Disclaimer */
.debtTab-content .mf-disclaimer {
  font-size: 13px;
  margin-top: 18px;
  font-style: italic;
  color: #a30000;
  border-top: 1px solid #e2e2e2;
  padding-top: 12px;
}
.debtTab-content-wrapper th {
    text-align: center;
}